Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
Bump libraries and plugins to latest versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed May 27, 2019
1 parent 2e07c46 commit 28f2886
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 43 deletions.
25 changes: 0 additions & 25 deletions library/library.iml

This file was deleted.

31 changes: 13 additions & 18 deletions library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
<groupId>org.jvnet.hudson.plugins.findbugs</groupId>
<artifactId>library</artifactId>
<packaging>jar</packaging>
<version>4.0.1-SNAPSHOT</version>
<name>FindBugs Plug-in shaded libraries</name>
<version>5.0.0-SNAPSHOT</version>
<name>SpotBugs Plug-in shaded libraries</name>

<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>findbugs</artifactId>
<version>2.0.3</version>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs</artifactId>
<version>3.1.11</version>
<exclusions>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.code.findbugs</groupId>
Expand All @@ -50,7 +50,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.3.1</version>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -63,6 +63,10 @@
<pattern>org.apache.bcel</pattern>
<shadedPattern>shaded.org.apache.bcel</shadedPattern>
</relocation>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>shaded.org.objectweb.asm</shadedPattern>
</relocation>
<relocation>
<pattern>org.dom4j.io</pattern>
<shadedPattern>shaded.org.dom4j.io</shadedPattern>
Expand Down Expand Up @@ -94,22 +98,13 @@
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

<scm>
<connection>scm:git:git://github.com/jenkinsci/findbugs-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/findbugs-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/findbugs-plugin</url>
<tag>library-3.0.0</tag>
<tag>HEAD</tag>
</scm>

<repositories>
Expand Down

0 comments on commit 28f2886

Please sign in to comment.