Skip to content

Commit f5030dc

Browse files
committed
Remove publishing to maven.
1 parent aa8909f commit f5030dc

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Jenkinsfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,11 @@ pipeline {
55
steps {
66
sh 'rm -f private.gradle'
77
sh './gradlew setupCiWorkspace clean build'
8-
archive 'build/libs/*jar'
98
}
109
}
1110
stage('Deploy') {
1211
steps {
13-
withCredentials([file(credentialsId: 'privateGradle', variable: 'PRIVATEGRADLE')]) {
14-
sh '''
15-
cp "$PRIVATEGRADLE" private.gradle
16-
./gradlew upload
17-
'''
18-
}
12+
archive 'build/libs/*jar'
1913
}
2014
}
2115
}

0 commit comments

Comments
 (0)