File tree Expand file tree Collapse file tree 2 files changed +21
-19
lines changed
Expand file tree Collapse file tree 2 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 11language : groovy
22
33jdk :
4- - oraclejdk7
4+ - oraclejdk8
55
66notifications :
77 email : false
Original file line number Diff line number Diff line change @@ -51,25 +51,27 @@ try {
5151 println " Could not load Maven Properties... You are not a developer!"
5252}
5353
54- uploadArchives {
55- repositories. mavenDeployer {
56- configuration = configurations. deployerJars
57- repository(url : mavenProps. jaci. url) {
58- authentication(userName : mavenProps. jaci. user, password : mavenProps. jaci. auth)
59- }
54+ try {
55+ uploadArchives {
56+ repositories. mavenDeployer {
57+ configuration = configurations. deployerJars
58+ repository(url : mavenProps. jaci. url) {
59+ authentication(userName : mavenProps. jaci. user, password : mavenProps. jaci. auth)
60+ }
6061
61- pom {
62- groupId = project. group
63- version = project. version
64- artifactId = project. archivesBaseName
65- project {
66- name project. archivesBaseName
67- packaging ' jar'
68- description ' Build Plugin'
69- }
70- }
71- }
72- }
62+ pom {
63+ groupId = project. group
64+ version = project. version
65+ artifactId = project. archivesBaseName
66+ project {
67+ name project. archivesBaseName
68+ packaging ' jar'
69+ description ' Build Plugin'
70+ }
71+ }
72+ }
73+ }
74+ } catch (Exception e) {}
7375
7476class BuildGradle implements Plugin<Project > {
7577 void apply (Project project ) {
You can’t perform that action at this time.
0 commit comments