Skip to content

Commit

Permalink
[JENKINS-45448] OK, need to bump to git 3.4.0 to pick up dependency f…
Browse files Browse the repository at this point in the history
…ixes for tests

- Likely could get away with slightly older, but needs to be newer than 2.4.0
  • Loading branch information
stephenc committed Jul 31, 2017
1 parent ba40dcc commit 407fd1f
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions pom.xml
Expand Up @@ -6,6 +6,7 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.6</version>
<relativePath/>
</parent>

<groupId>com.coravy.hudson.plugins.github</groupId>
Expand Down Expand Up @@ -54,6 +55,7 @@
<concurrency>1</concurrency>
<java.level>7</java.level>
<hpi-plugin.version>1.120</hpi-plugin.version>
<workflow.version>1.14.2</workflow.version>
</properties>

<repositories>
Expand Down Expand Up @@ -99,7 +101,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>git</artifactId>
<version>2.4.0</version> <!-- should really be 3.4.0 to match scm-api but ok as git was forward compat -->
<version>3.4.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -152,11 +154,24 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>2.4.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand All @@ -183,14 +198,14 @@
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>1.4</version>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<version>1.4</version>
<version>${workflow.version}</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 407fd1f

Please sign in to comment.