Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-41631] Demonstration of POM update (#113)
* [JENKINS-41631] Demonstration of POM update.

* plugin-pom 2.31
  • Loading branch information
jglick authored and oleg-nenashev committed Sep 1, 2017
1 parent 6dd0fc4 commit 95056c1
Showing 1 changed file with 36 additions and 2 deletions.
38 changes: 36 additions & 2 deletions pom.xml
Expand Up @@ -4,7 +4,8 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.23</version>
<version>2.31</version>
<relativePath/>
</parent>

<licenses>
Expand Down Expand Up @@ -38,6 +39,12 @@
<artifactId>subversion</artifactId>
<version>2.5.7</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>scm-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -66,13 +73,17 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>conditional-buildstep</artifactId>
<version>1.3.1</version>
</dependency>
</dependency>

<!-- Workflow plugin imports are used to test compatibility -->
<dependency>
Expand All @@ -86,6 +97,12 @@
<artifactId>workflow-cps</artifactId>
<version>2.27</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jenkins-ci</groupId>
<artifactId>symbol-annotation</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
Expand Down Expand Up @@ -116,6 +133,12 @@
<artifactId>matrix-auth</artifactId>
<version>1.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.jenkins-ci.plugins.icon-shim</groupId>
<artifactId>icon-set</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand All @@ -129,6 +152,17 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
<version>1.25</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>token-macro</artifactId>
<version>1.10</version>
<scope>test</scope>
</dependency>
</dependencies>

<scm>
Expand Down

0 comments on commit 95056c1

Please sign in to comment.