Skip to content

Commit

Permalink
Fix test-scoped deps.
Browse files Browse the repository at this point in the history
Otherwise with jenkinsci/jenkins#2172 plugins will (correctly) be disabled due to version mismatches.
  • Loading branch information
jglick committed Apr 6, 2016
1 parent 61fb586 commit fc963aa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pom.xml
Expand Up @@ -108,6 +108,12 @@
<artifactId>workflow-basic-steps</artifactId>
<version>1.15</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down Expand Up @@ -172,6 +178,12 @@
</exclusion>
</exclusions>
</dependency>
<dependency> <!-- optional dep of workflow-scm-step, have to override 1.54 version that gets pulled in somehow during tests -->
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>subversion</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
Expand Down

0 comments on commit fc963aa

Please sign in to comment.