Skip to content

Commit

Permalink
Merge pull request #115 from batmat/java11-readiness
Browse files Browse the repository at this point in the history
Java 11 readiness: build both on JDK8 and JDK11
  • Loading branch information
jglick committed Jun 28, 2019
2 parents cbe283c + e6202f8 commit 828f54f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
buildPlugin()
buildPlugin(configurations: buildPlugin.recommendedConfigurations())
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/tasks/junit/TestResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public int getSkipCount() {
}

/**
* Returns <tt>true</tt> if this doesn't have any any test results.
* Returns <code>true</code> if this doesn't have any any test results.
*
* @return whether this doesn't contain any test results.
* @since 1.511
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ public Api getApi() {
*
* <p>
* If such a concept doesn't make sense for a particular subtype,
* return <tt>this</tt>.
* return <code>this</code>.
*/
public abstract Object getResult();

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/hudson/tasks/test/package.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

<html><head/><body>
Defines contracts that need to be implemented by a test reporting
action (such as the built-in JUnit one). This contract allows <tt>Project</tt>
action (such as the built-in JUnit one). This contract allows <code>Project</code>
to display a test result trend history.
</body></html>
</body></html>

0 comments on commit 828f54f

Please sign in to comment.