Skip to content

Commit 7c2e40e

Browse files
committed
chore(pom): update pom files
1 parent 70b9084 commit 7c2e40e

File tree

14 files changed

+118
-52
lines changed

14 files changed

+118
-52
lines changed

assistant/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
@@ -52,7 +52,6 @@
5252
<scope>test</scope>
5353
</dependency>
5454
</dependencies>
55-
5655
<developers>
5756
<developer>
5857
<name>Watson Developer Experience</name>

common/pom.xml

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>
@@ -68,29 +68,10 @@
6868
<directory>src/main/resources</directory>
6969
<filtering>true</filtering>
7070
<includes>
71-
<include>${project.parent.artifactId}.properties</include>
72-
</includes>
73-
</resource>
74-
<resource>
75-
<directory>${project.basedir}/bin/</directory>
76-
<includes>
77-
<include>**/*</include>
71+
<include>java-sdk-version.properties</include>
7872
</includes>
7973
</resource>
8074
</resources>
81-
<plugins>
82-
<plugin>
83-
<groupId>org.apache.maven.plugins</groupId>
84-
<artifactId>maven-jar-plugin</artifactId>
85-
<executions>
86-
<execution>
87-
<goals>
88-
<goal>test-jar</goal>
89-
</goals>
90-
</execution>
91-
</executions>
92-
</plugin>
93-
</plugins>
9475
</build>
9576

9677
<developers>

compare-comply/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

discovery/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

ibm-watson/pom.xml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<artifactId>ibm-watson-parent</artifactId>
8+
<groupId>com.ibm.watson</groupId>
9+
<version>99-SNAPSHOT</version>
10+
<relativePath>../pom.xml</relativePath>
11+
</parent>
12+
13+
<artifactId>ibm-watson</artifactId>
14+
<packaging>jar</packaging>
15+
<name>IBM Watson Java SDK</name>
16+
17+
<description>Java client library to use the IBM Watson APIs</description>
18+
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.ibm.watson</groupId>
22+
<artifactId>assistant</artifactId>
23+
<version>${project.version}</version>
24+
<scope>compile</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.ibm.watson</groupId>
28+
<artifactId>common</artifactId>
29+
<version>${project.version}</version>
30+
<scope>compile</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.ibm.watson</groupId>
34+
<artifactId>compare-comply</artifactId>
35+
<version>${project.version}</version>
36+
<scope>compile</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.ibm.watson</groupId>
40+
<artifactId>discovery</artifactId>
41+
<version>${project.version}</version>
42+
<scope>compile</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.ibm.watson</groupId>
46+
<artifactId>language-translator</artifactId>
47+
<version>${project.version}</version>
48+
<scope>compile</scope>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.ibm.watson</groupId>
52+
<artifactId>natural-language-classifier</artifactId>
53+
<version>${project.version}</version>
54+
<scope>compile</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>com.ibm.watson</groupId>
58+
<artifactId>natural-language-understanding</artifactId>
59+
<version>${project.version}</version>
60+
<scope>compile</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>com.ibm.watson</groupId>
64+
<artifactId>personality-insights</artifactId>
65+
<version>${project.version}</version>
66+
<scope>compile</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.ibm.watson</groupId>
70+
<artifactId>speech-to-text</artifactId>
71+
<version>${project.version}</version>
72+
<scope>compile</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>com.ibm.watson</groupId>
76+
<artifactId>text-to-speech</artifactId>
77+
<version>${project.version}</version>
78+
<scope>compile</scope>
79+
</dependency>
80+
<dependency>
81+
<groupId>com.ibm.watson</groupId>
82+
<artifactId>tone-analyzer</artifactId>
83+
<version>${project.version}</version>
84+
<scope>compile</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>com.ibm.watson</groupId>
88+
<artifactId>visual-recognition</artifactId>
89+
<version>${project.version}</version>
90+
<scope>compile</scope>
91+
</dependency>
92+
</dependencies>
93+
94+
<developers>
95+
<developer>
96+
<name>Watson Developer Experience</name>
97+
<email>watdevex@us.ibm.com</email>
98+
<url>https://www.ibm.com/</url>
99+
</developer>
100+
</developers>
101+
</project>

language-translator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

natural-language-classifier/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

natural-language-understanding/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

personality-insights/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<artifactId>ibm-watson</artifactId>
7+
<artifactId>ibm-watson-parent</artifactId>
88
<groupId>com.ibm.watson</groupId>
99
<version>99-SNAPSHOT</version>
1010
<relativePath>../pom.xml</relativePath>

pom.xml

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<!-- >>> Replace this with your service category (e.g. "platform-services") -->
6-
<artifactId>ibm-watson</artifactId>
5+
<artifactId>ibm-watson-parent</artifactId>
76

8-
<!-- >>> Update this field to reflect your project -->
97
<name>IBM Watson Java SDK</name>
108

11-
<!-- >>> Update this field to reflect your project -->
129
<description>Java client library to use the IBM Watson APIs</description>
1310

14-
<!-- >>> Update this field to reflect your project's github URL -->
15-
<url> https://github.com/watson-developer-cloud/java-sdk</url>
11+
<url>https://github.com/watson-developer-cloud/java-sdk</url>
1612

1713
<groupId>com.ibm.watson</groupId>
1814
<version>99-SNAPSHOT</version>
@@ -21,11 +17,6 @@
2117
<properties>
2218
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2319

24-
<!--
25-
This is the version associated with the Java core. The version used here should be compatible with the version
26-
of the SDK generator used to generate your SDK code.
27-
See this link for details: https://github.ibm.com/CloudEngineering/openapi-sdkgen/wiki/Compatibility-Chart
28-
-->
2920
<sdk-core-version>9.5.4</sdk-core-version>
3021

3122
<!-- >>> Replace this with the name of your SDK's github repository -->
@@ -70,6 +61,8 @@
7061
<module>/text-to-speech</module>
7162
<module>/tone-analyzer</module>
7263
<module>/visual-recognition</module>
64+
65+
<module>/ibm-watson</module>
7366
<!-- This module should be listed after all the service-related modules above -->
7467
<!-- <module>modules/coverage-reports</module> -->
7568

@@ -108,14 +101,6 @@
108101
<url>https://travis-ci.org/watson-developer-cloud/java-sdk</url>
109102
</ciManagement>
110103

111-
<repositories>
112-
<!-- these definitions are useful only for internal SDK projects -->
113-
<repository>
114-
<id>na-artifactory-ibmcloud-sdks</id>
115-
<url>https://na.artifactory.swg-devops.com:443/artifactory/wcp-ibmcloud-sdks-team-maven-local/</url>
116-
</repository>
117-
</repositories>
118-
119104
<!-- This section is commented out because we use an alternate deploy plugin.
120105
<distributionManagement>
121106
</distributionManagement>

0 commit comments

Comments
 (0)