88
99buildscript {
1010 repositories {
11- maven {
12- url ' http://dl.bintray.com/ecpluginsdev/maven'
13- }
14-
15- jcenter()
11+ mavenCentral()
12+ mavenLocal()
13+ maven {
14+ url ' https://nexus-internal.cloudbees.com/content/groups/mirror'
15+ credentials {
16+ username = System . getenv(' NEXUS_USERNAME' ) ?: nexusUsername
17+ password = System . getenv(' NEXUS_PASSWORD' ) ?: nexusPassword
18+ }
19+ }
1620 }
1721 dependencies {
18- classpath group : ' com.electriccloud.plugins' , name : ' flow-gradle-plugin' , version : ' +'
19- classpath ' nl.javadude.gradle.plugins:license-gradle-plugin:0.11.0'
22+ classpath group : ' com.electriccloud.plugins' , name : ' flow-gradle-plugin' , version : ' 2.4'
2023 }
2124}
2225
2326repositories {
27+ mavenCentral()
28+ mavenLocal()
2429 maven {
25- url " https://oss.sonatype.org/content/repositories/snapshots"
30+ url ' https://nexus-internal.cloudbees.com/content/repositories/snapshots'
31+ credentials {
32+ username = System . getenv(' NEXUS_USERNAME' ) ?: nexusUsername
33+ password = System . getenv(' NEXUS_PASSWORD' ) ?: nexusPassword
34+ }
35+ }
36+ maven {
37+ url ' https://nexus-internal.cloudbees.com/service/local/staging/deploy/maven2'
38+ credentials {
39+ username = System . getenv(' NEXUS_USERNAME' ) ?: nexusUsername
40+ password = System . getenv(' NEXUS_PASSWORD' ) ?: nexusPassword
41+ }
42+ }
43+ maven {
44+ url ' https://nexus-internal.cloudbees.com/content/groups/mirror'
45+ credentials {
46+ username = System . getenv(' NEXUS_USERNAME' ) ?: nexusUsername
47+ password = System . getenv(' NEXUS_PASSWORD' ) ?: nexusPassword
48+ }
49+ }
50+ }
51+
52+ configurations. all {
53+ resolutionStrategy {
54+ force group : ' com.electriccloud' , name : ' ec-test' , version : ' 10.1.0'
55+ force group : ' com.electriccloud' , name : ' commander-client' , version : ' 10.1.0'
56+ force group : ' com.electriccloud' , name : ' commander-sdk' , version : ' 6.1.2.1'
57+ force group : ' com.electriccloud' , name : ' ec_internal' , version : ' 6.1.2.1'
58+ force group : ' com.google.gwt' , name : ' gwt-user' , version : ' 2.5.0-ec3'
59+ force group : ' com.google.gwt' , name : ' gwt-dev' , version : ' 2.5.0-ec1'
60+
61+ // force group: 'com.electriccloud', name: 'commander-client', version: '10.1.0'
62+ // force group: 'com.electriccloud', name: 'commander-sdk', version: '6.1.2.1'
63+ // force group: 'com.electriccloud', name: 'ec_internal', version: '6.1.2.1'
64+ // force group: 'com.google.gwt', name: 'gwt-user', version: '2.5.0-ec3'
65+ // force group: 'com.google.gwt', name: 'gwt-dev', version: '2.5.0-ec1'
66+
67+ cacheChangingModulesFor 0 , ' seconds'
2668 }
2769}
2870
2971group = " com.electriccloud"
3072description = " Plugins : EC-OpenStack"
31- version = " 1.3.6 "
73+ version = " 1.3.7 "
3274
3375apply plugin : ' groovy'
3476apply plugin : ' flow-gradle-plugin'
@@ -37,7 +79,7 @@ apply plugin: 'license'
3779license {
3880 header = file (' shortHeader.txt' )
3981 exclude " **/project.xml"
40- }
82+ }
4183
4284configurations {
4385 // Configuration for the jar files we want
@@ -85,7 +127,7 @@ test {
85127}
86128
87129task wrapper(type : Wrapper ) {
88- gradleVersion = ' 2.3 '
130+ gradleVersion = ' 2.13 '
89131}
90132
91133// Include any dependent jars in the plugin jar file for
0 commit comments