-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
49 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>4.51</version> | ||
<version>4.67</version> | ||
<relativePath /> | ||
</parent> | ||
|
||
|
@@ -56,10 +56,10 @@ | |
|
||
<properties> | ||
<changelist>999999-SNAPSHOT</changelist> | ||
<ivy.plugin.version>2.2</ivy.plugin.version> | ||
<jenkins.version>2.332.1</jenkins.version> | ||
<jenkins.version>2.361.4</jenkins.version> | ||
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> | ||
<!-- Remove once JENKINS-45055 is fixed --> | ||
<spotbugs.failOnError>false</spotbugs.failOnError> | ||
<spotbugs.threshold>High</spotbugs.threshold> | ||
<!-- | ||
Incompatible changes: | ||
1.93 - Fix of JENKINS-31573 changed the property file parsing approach. | ||
|
@@ -71,21 +71,46 @@ | |
</properties> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/jenkinsci/envinject-plugin.git</connection> | ||
<developerConnection>scm:git:[email protected]:jenkinsci/envinject-plugin.git</developerConnection> | ||
<url>https://github.com/jenkinsci/envinject-plugin</url> | ||
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection> | ||
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection> | ||
<url>https://github.com/${gitHubRepo}</url> | ||
<tag>${scmTag}</tag> | ||
</scm> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.jenkins.tools.bom</groupId> | ||
<artifactId>bom-2.332.x</artifactId> | ||
<version>1382.v7d694476f340</version> | ||
<artifactId>bom-2.361.x</artifactId> | ||
<version>1580.v47b_429a_c853a</version> | ||
<scope>import</scope> | ||
<type>pom</type> | ||
</dependency> | ||
<!-- | ||
TODO script-security 1172.v35f6a_0b_8207e breaks | ||
EnvInjectEvaluatedGroovyScriptTest#testWorkaroundSecurity86, so downgrade it to the | ||
last working version along with anything that depends on the newer broken version | ||
--> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>1.63</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>matrix-project</artifactId> | ||
<version>771.v574584b_39e60</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>script-security</artifactId> | ||
<version>1158.v7c1b_73a_69a_08</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins.workflow</groupId> | ||
<artifactId>workflow-support</artifactId> | ||
<version>820.vd1a_6cc65ef33</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
|
@@ -99,7 +124,7 @@ | |
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>ivy</artifactId> | ||
<version>${ivy.plugin.version}</version> | ||
<version>2.2</version> | ||
<optional>true</optional> | ||
</dependency> | ||
|
||
|
@@ -108,17 +133,6 @@ | |
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>ant</artifactId> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<!--Upper bounds conflict--> | ||
<groupId>org.jenkins-ci</groupId> | ||
<artifactId>annotation-indexer</artifactId> | ||
</exclusion> | ||
<exclusion> <!-- TODO pending update to structs --> | ||
<groupId>org.jenkins-ci</groupId> | ||
<artifactId>symbol-annotation</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
|
@@ -130,7 +144,6 @@ | |
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>matrix-project</artifactId> | ||
<type>jar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
|
@@ -139,7 +152,6 @@ | |
<dependency> | ||
<groupId>org.hamcrest</groupId> | ||
<artifactId>hamcrest</artifactId> | ||
<version>2.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
@@ -151,12 +163,6 @@ | |
<groupId>io.jenkins</groupId> | ||
<artifactId>configuration-as-code</artifactId> | ||
<scope>test</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-lang3</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/test/java/org/jenkinsci/plugins/envinject/EnvInjectEvaluatedGroovyScriptTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters