Skip to content

Commit 7a125b2

Browse files
committed
ci: Update information added to generated POM files
1 parent 83bef53 commit 7a125b2

File tree

13 files changed

+483
-2
lines changed

13 files changed

+483
-2
lines changed

assistant/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,43 @@ processResources {
6767
"build.date" : getDate()
6868
]
6969
}
70+
71+
task writeNewPom {
72+
doLast {
73+
pom {
74+
project {
75+
packaging 'jar'
76+
description 'Java client library to use the IBM Assistant API'
77+
url 'https://cloud.ibm.com/developer/watson/dashboard'
78+
79+
scm {
80+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
81+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
82+
url 'https://github.com/watson-developer-cloud/java-sdk'
83+
}
84+
85+
licenses {
86+
license {
87+
name 'The Apache License, Version 2.0'
88+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
89+
}
90+
}
91+
92+
developers {
93+
developer {
94+
id 'german'
95+
name 'German Attanasio'
96+
97+
}
98+
developer {
99+
id 'logan'
100+
name 'Logan Patino'
101+
102+
}
103+
}
104+
}
105+
}.writeTo("$buildDir/poms/pom-default.xml")
106+
}
107+
}
108+
109+
install.finalizedBy(writeNewPom)

compare-comply/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,43 @@ processResources {
6767
"build.date" : getDate()
6868
]
6969
}
70+
71+
task writeNewPom {
72+
doLast {
73+
pom {
74+
project {
75+
packaging 'jar'
76+
description 'Java client library to use the IBM Compare and Comply API'
77+
url 'https://cloud.ibm.com/developer/watson/dashboard'
78+
79+
scm {
80+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
81+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
82+
url 'https://github.com/watson-developer-cloud/java-sdk'
83+
}
84+
85+
licenses {
86+
license {
87+
name 'The Apache License, Version 2.0'
88+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
89+
}
90+
}
91+
92+
developers {
93+
developer {
94+
id 'german'
95+
name 'German Attanasio'
96+
97+
}
98+
developer {
99+
id 'logan'
100+
name 'Logan Patino'
101+
102+
}
103+
}
104+
}
105+
}.writeTo("$buildDir/poms/pom-default.xml")
106+
}
107+
}
108+
109+
install.finalizedBy(writeNewPom)

discovery/build.gradle

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,44 @@ processResources {
7070
"pom.version": project.version,
7171
"build.date" : getDate()
7272
]
73-
}
73+
}
74+
75+
task writeNewPom {
76+
doLast {
77+
pom {
78+
project {
79+
packaging 'jar'
80+
description 'Java client library to use the IBM Discovery API'
81+
url 'https://cloud.ibm.com/developer/watson/dashboard'
82+
83+
scm {
84+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
85+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
86+
url 'https://github.com/watson-developer-cloud/java-sdk'
87+
}
88+
89+
licenses {
90+
license {
91+
name 'The Apache License, Version 2.0'
92+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
93+
}
94+
}
95+
96+
developers {
97+
developer {
98+
id 'german'
99+
name 'German Attanasio'
100+
101+
}
102+
developer {
103+
id 'logan'
104+
name 'Logan Patino'
105+
106+
}
107+
}
108+
}
109+
}.writeTo("$buildDir/poms/pom-default.xml")
110+
}
111+
}
112+
113+
install.finalizedBy(writeNewPom)

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
version=6.14.1
2-
group = com.ibm.watson
2+
group=com.ibm.watson
3+

ibm-watson/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,43 @@ processResources {
103103
"build.date" : getDate()
104104
]
105105
}
106+
107+
task writeNewPom {
108+
doLast {
109+
pom {
110+
project {
111+
packaging 'jar'
112+
description 'Java client library to use the IBM Watson APIs'
113+
url 'https://cloud.ibm.com/developer/watson/dashboard'
114+
115+
scm {
116+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
117+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
118+
url 'https://github.com/watson-developer-cloud/java-sdk'
119+
}
120+
121+
licenses {
122+
license {
123+
name 'The Apache License, Version 2.0'
124+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
125+
}
126+
}
127+
128+
developers {
129+
developer {
130+
id 'german'
131+
name 'German Attanasio'
132+
133+
}
134+
developer {
135+
id 'logan'
136+
name 'Logan Patino'
137+
138+
}
139+
}
140+
}
141+
}.writeTo("$buildDir/poms/pom-default.xml")
142+
}
143+
}
144+
145+
install.finalizedBy(writeNewPom)

language-translator/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,43 @@ processResources {
6767
"build.date" : getDate()
6868
]
6969
}
70+
71+
task writeNewPom {
72+
doLast {
73+
pom {
74+
project {
75+
packaging 'jar'
76+
description 'Java client library to use the IBM Language Translator API'
77+
url 'https://cloud.ibm.com/developer/watson/dashboard'
78+
79+
scm {
80+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
81+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
82+
url 'https://github.com/watson-developer-cloud/java-sdk'
83+
}
84+
85+
licenses {
86+
license {
87+
name 'The Apache License, Version 2.0'
88+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
89+
}
90+
}
91+
92+
developers {
93+
developer {
94+
id 'german'
95+
name 'German Attanasio'
96+
97+
}
98+
developer {
99+
id 'logan'
100+
name 'Logan Patino'
101+
102+
}
103+
}
104+
}
105+
}.writeTo("$buildDir/poms/pom-default.xml")
106+
}
107+
}
108+
109+
install.finalizedBy(writeNewPom)

natural-language-classifier/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,43 @@ processResources {
7272
"build.date" : getDate()
7373
]
7474
}
75+
76+
task writeNewPom {
77+
doLast {
78+
pom {
79+
project {
80+
packaging 'jar'
81+
description 'Java client library to use the IBM Natural Language Classifier API'
82+
url 'https://cloud.ibm.com/developer/watson/dashboard'
83+
84+
scm {
85+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
86+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
87+
url 'https://github.com/watson-developer-cloud/java-sdk'
88+
}
89+
90+
licenses {
91+
license {
92+
name 'The Apache License, Version 2.0'
93+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
94+
}
95+
}
96+
97+
developers {
98+
developer {
99+
id 'german'
100+
name 'German Attanasio'
101+
102+
}
103+
developer {
104+
id 'logan'
105+
name 'Logan Patino'
106+
107+
}
108+
}
109+
}
110+
}.writeTo("$buildDir/poms/pom-default.xml")
111+
}
112+
}
113+
114+
install.finalizedBy(writeNewPom)

natural-language-understanding/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,43 @@ processResources {
6767
"build.date" : getDate()
6868
]
6969
}
70+
71+
task writeNewPom {
72+
doLast {
73+
pom {
74+
project {
75+
packaging 'jar'
76+
description 'Java client library to use the IBM Natural Language Understanding API'
77+
url 'https://cloud.ibm.com/developer/watson/dashboard'
78+
79+
scm {
80+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
81+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
82+
url 'https://github.com/watson-developer-cloud/java-sdk'
83+
}
84+
85+
licenses {
86+
license {
87+
name 'The Apache License, Version 2.0'
88+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
89+
}
90+
}
91+
92+
developers {
93+
developer {
94+
id 'german'
95+
name 'German Attanasio'
96+
97+
}
98+
developer {
99+
id 'logan'
100+
name 'Logan Patino'
101+
102+
}
103+
}
104+
}
105+
}.writeTo("$buildDir/poms/pom-default.xml")
106+
}
107+
}
108+
109+
install.finalizedBy(writeNewPom)

personality-insights/build.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,43 @@ processResources {
6767
"build.date" : getDate()
6868
]
6969
}
70+
71+
task writeNewPom {
72+
doLast {
73+
pom {
74+
project {
75+
packaging 'jar'
76+
description 'Java client library to use the IBM Personality Insights API'
77+
url 'https://cloud.ibm.com/developer/watson/dashboard'
78+
79+
scm {
80+
connection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
81+
developerConnection 'scm:git:[email protected]:watson-developer-cloud/java-sdk.git'
82+
url 'https://github.com/watson-developer-cloud/java-sdk'
83+
}
84+
85+
licenses {
86+
license {
87+
name 'The Apache License, Version 2.0'
88+
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
89+
}
90+
}
91+
92+
developers {
93+
developer {
94+
id 'german'
95+
name 'German Attanasio'
96+
97+
}
98+
developer {
99+
id 'logan'
100+
name 'Logan Patino'
101+
102+
}
103+
}
104+
}
105+
}.writeTo("$buildDir/poms/pom-default.xml")
106+
}
107+
}
108+
109+
install.finalizedBy(writeNewPom)

0 commit comments

Comments
 (0)