Skip to content

Commit

Permalink
Update to latest parent pom and fix Javadoc errors on JDK11
Browse files Browse the repository at this point in the history
  • Loading branch information
batmat committed Apr 11, 2019
1 parent 3b43992 commit ea66b35
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.9</version>
<version>3.42</version>
<relativePath />
</parent>
<artifactId>junit</artifactId>
Expand All @@ -13,8 +13,8 @@
<description>Allows JUnit-format test results to be published.</description>
<url>http://wiki.jenkins-ci.org/display/JENKINS/JUnit+Plugin</url>
<properties>
<jenkins.version>2.7.3</jenkins.version>
<java.level>7</java.level>
<jenkins.version>2.60.3</jenkins.version>
<java.level>8</java.level>
<no-test-jar>false</no-test-jar>
<workflow-cps.version>2.37</workflow-cps.version>
<workflow-support.version>2.14</workflow-support.version>
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 ea66b35

Please sign in to comment.