Skip to content

Commit d2c06e9

Browse files
committedJun 7, 2016
Handle auto update of release dependencies via pipeline
1 parent ae60976 commit d2c06e9

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed
 

‎Jenkinsfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,8 @@ node{
2121

2222
def pipeline = load 'release.groovy'
2323

24-
// Dont update dependencies yet, working issue on kubernetes-model thats using SNAPSHOT - cc jdyson
25-
// Uncomemnt below to update dependencies
26-
//stage 'Updating dependencies'
27-
//def prId = pipeline.updateDependencies('http://central.maven.org/maven2/')
24+
stage 'Updating dependencies'
25+
def prId = pipeline.updateDependencies('http://central.maven.org/maven2/')
2826

2927
stage 'Staging project'
3028
def stagedProject = pipeline.stage()

‎release.groovy

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def updateDependencies(source){
1919

2020
def properties = []
2121
properties << ['<openshift-client.version>','io/fabric8/openshift-client']
22-
properties << ['<kubernetes-model.version>','io/fabric8/kubernetes-model']
2322

2423
updatePropertyVersion{
2524
updates = properties

0 commit comments

Comments
 (0)
Please sign in to comment.