Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
JENKINS-24478: bump version numbers of dependencies
Browse files Browse the repository at this point in the history
the version updates are necessary due to api changes in jenkins that break old implementations. in order to support the new api, the min version of jenkins core had to be bumped - and with it the plugins we use (checkstyle, findbugs et. al)
  • Loading branch information
simschla committed Feb 13, 2015
1 parent cd6c3b9 commit c8cceef
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.499</version>
<version>1.580.3</version>
</parent>

<artifactId>ci-game</artifactId>
Expand Down Expand Up @@ -93,13 +93,13 @@
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>checkstyle</artifactId>
<version>3.1</version>
<version>3.40</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>findbugs</artifactId>
<version>4.0</version>
<version>4.50</version>
<optional>true</optional>
<exclusions>
<exclusion><!-- collides with our own dom4j -->
Expand Down Expand Up @@ -135,25 +135,30 @@
<dependency>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>analysis-core</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
<version>1.58</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>junit</artifactId>
<version>1.0</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit c8cceef

Please sign in to comment.