Skip to content

Commit

Permalink
Merge pull request #135 from hazendaz/spotbugs
Browse files Browse the repository at this point in the history
Up support to jdk 14 / mark new support as 3.1.12.2 in preparation for release
  • Loading branch information
hazendaz committed Aug 1, 2019
2 parents c4c670d + f162ac8 commit 05de8a5
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ dist: xenial
language: java

jdk:
- openjdk14
- openjdk13
- openjdk12
- openjdk11
- openjdk8

Expand Down
30 changes: 29 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.hazendaz</groupId>
<artifactId>base-parent</artifactId>
<version>22</version>
<version>23</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -176,6 +176,7 @@
<jgit.version>5.4.0.201906121030-r</jgit.version>

<!-- Targeted patches -->
<asm.version>7.2-beta</asm.version>
<beanutils.version>1.9.3</beanutils.version>
<chain.version>1.2</chain.version>
<codec.version>1.13</codec.version>
Expand Down Expand Up @@ -432,6 +433,33 @@
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>

<!-- Better jdk support -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>${asm.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class SpotBugsGui extends AbstractMojo implements SpotBugsPluginsTrait {
/**
* Set the name of the output XML file produced
*
* @since 3.1.13
* @since 3.1.12.2
*/
@Parameter(property = "spotbugs.outputXmlFilename", defaultValue = "spotbugsXml.xml")
String spotbugsXmlOutputFilename
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class SpotBugsMojo extends AbstractMavenReport implements SpotBugsPluginsTrait {
/**
* Set the name of the output XML file produced
*
* @since 3.1.13
* @since 3.1.12.2
*/
@Parameter(property = "spotbugs.outputXmlFilename", defaultValue = "spotbugsXml.xml")
String spotbugsXmlOutputFilename
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class SpotbugsViolationCheckMojo extends AbstractMojo {
/**
* Set the name of the output XML file produced
*
* @since 3.1.13
* @since 3.1.12.2
*/
@Parameter(property = "spotbugs.outputXmlFilename", defaultValue = "spotbugsXml.xml")
String spotbugsXmlOutputFilename
Expand Down

0 comments on commit 05de8a5

Please sign in to comment.