Merge branch 'master' into requireUpperBoundDeps-JENKINS-41631

This commit is contained in:
Jesse Glick 2017-06-15 10:14:00 -04:00
commit e51c97af59
3 changed files with 20 additions and 9 deletions

2
Jenkinsfile vendored
View File

@ -1 +1 @@
buildPlugin(jenkinsVersions: [null, '2.32.3'])
buildPlugin(jenkinsVersions: [null, '2.60'])

View File

@ -8,6 +8,6 @@ else
username=$1
fi
for p in $(cat demo/plugins.txt | perl -pe s/:.+//g | grep -E 'workflow-|pipeline-' | grep -v 'pipeline-rest-api' | grep -v 'workflow-aggregator'); do
for p in $(cat demo/plugins.txt | awk -F ':' '{print $2}' | grep -E 'workflow-|pipeline-' | grep -v 'pipeline-rest-api' | grep -v 'workflow-aggregator'); do
git clone git@github.com:$username/$p-plugin.git ../$p-plugin
done

25
pom.xml
View File

@ -28,7 +28,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.31-20170612.235547-1</version> <!-- TODO https://github.com/jenkinsci/plugin-pom/pull/67 -->
<version>2.31-20170613.190825-2</version> <!-- TODO https://github.com/jenkinsci/plugin-pom/pull/67 -->
<relativePath />
</parent>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
@ -80,12 +80,6 @@
<groupId>${project.groupId}</groupId>
<artifactId>workflow-support</artifactId>
<version>2.12</version>
<exclusions>
<exclusion>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
@ -97,6 +91,11 @@
<artifactId>workflow-scm-step</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.6wind.jenkins</groupId>
<artifactId>lockable-resources</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>workflow-cps</artifactId>
@ -170,6 +169,18 @@
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>script-security</artifactId>
<version>1.28</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
<version>1.13</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>