Skip to content

Commit

Permalink
Merge pull request #14 from ikedam/feature/fixMavenFindbugsIssue
Browse files Browse the repository at this point in the history
Fix maven-findbugs-plugin issue
  • Loading branch information
ikedam committed Aug 31, 2020
2 parents bb33b69 + e8f1d2d commit acd246c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion 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>2.9</version>
<version>2.37</version>
</parent>

<groupId>jp.ikedam.jenkins.plugins</groupId>
Expand Down Expand Up @@ -85,6 +85,21 @@
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<!-- To resolve RequireUpperBoundDeps errors -->
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.9.2</version>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
Expand Down

0 comments on commit acd246c

Please sign in to comment.