Skip to content

Commit

Permalink
Stop using workflow-aggregator and bump all pipeline plugins to latest
Browse files Browse the repository at this point in the history
also bumping jenkins.version to 2.138.4 in the go.
  • Loading branch information
batmat committed Mar 31, 2019
1 parent 55c1bb0 commit a489b08
Showing 1 changed file with 43 additions and 26 deletions.
69 changes: 43 additions & 26 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.40</version>
<version>3.41</version>
<relativePath />
</parent>
<groupId>org.jvnet.hudson.plugins</groupId>
Expand All @@ -13,12 +13,11 @@
<description>Displays a picture of Chuck Norris (instead of Jenkins the butler) and a random Chuck Norris 'The Programmer' fact on each build page.</description>

<properties>
<jenkins.version>2.60.3</jenkins.version>
<java.level>8</java.level>
<workflow.version>1.14</workflow.version>
<jenkins.version>2.138.4</jenkins.version>
</properties>

<url>http://wiki.jenkins-ci.org/display/JENKINS/ChuckNorris+Plugin</url>
<url>https://wiki.jenkins-ci.org/display/JENKINS/ChuckNorris+Plugin</url>
<packaging>hpi</packaging>

<developers>
Expand All @@ -37,35 +36,53 @@
</licenses>

<dependencies>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-step-api</artifactId>
<version>${workflow.version}</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-step-api</artifactId>
<version>2.19</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
<exclusions>
<exclusion> <!-- excluding to take the one from JTH -->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
<exclusion> <!-- excluding to take the one from JTH -->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-aggregator</artifactId>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-support</artifactId>
<version>${workflow.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-support</artifactId>
<version>3.2</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>2.32</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<version>2.65</version>
<scope>test</scope>
</dependency>
<!-- RequireUpperBoundDeps -->
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-api</artifactId>
<version>2.33</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
<version>1.56</version>
</dependency>
</dependencies>

<repositories>
Expand Down

0 comments on commit a489b08

Please sign in to comment.