Skip to content

Commit f5855a2

Browse files
authored
Preparation for gp-java-tools 1.2.7 (#142)
- Updated common component versions - Defined component versions shared by sub modules - Minor fix in custom-filter-usage example
1 parent 46e30e1 commit f5855a2

7 files changed

Lines changed: 22 additions & 19 deletions

File tree

csv-res-filter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>junit</groupId>
3131
<artifactId>junit</artifactId>
32-
<version>4.12</version>
32+
<version>${junit-version}</version>
3333
<scope>test</scope>
3434
</dependency>
3535
</dependencies>

custom-filter-usage/maven/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<plugin>
1212
<groupId>com.ibm.g11n.pipeline</groupId>
1313
<artifactId>gp-maven-plugin</artifactId>
14-
<version>1.2.0</version>
14+
<version>1.2.7</version>
1515
<dependencies>
1616
<dependency>
1717
<groupId>com.ibm.g11n.pipeline</groupId>
18-
<artifactId>csv-filter</artifactId>
19-
<version>1.0.0</version>
18+
<artifactId>csv-res-filter</artifactId>
19+
<version>1.2.7</version>
2020
</dependency>
2121
</dependencies>
2222
<configuration>

gp-ant-task/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
<dependency>
2525
<groupId>com.google.code.gson</groupId>
2626
<artifactId>gson</artifactId>
27-
<version>2.6.1</version>
27+
<version>${gson-version}</version>
2828
</dependency>
2929
<dependency>
3030
<groupId>com.ibm.g11n.pipeline</groupId>
3131
<artifactId>gp-java-client</artifactId>
32-
<version>1.2.0</version>
32+
<version>${gp-java-client-version}</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>com.ibm.g11n.pipeline</groupId>
@@ -43,7 +43,7 @@
4343
<plugin>
4444
<groupId>org.apache.maven.plugins</groupId>
4545
<artifactId>maven-shade-plugin</artifactId>
46-
<version>3.1.0</version>
46+
<version>3.2.1</version>
4747
<executions>
4848
<execution>
4949
<phase>package</phase>

gp-cli/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<plugin>
3232
<groupId>org.apache.maven.plugins</groupId>
3333
<artifactId>maven-shade-plugin</artifactId>
34-
<version>3.1.0</version>
34+
<version>3.2.1</version>
3535
<executions>
3636
<execution>
3737
<phase>package</phase>
@@ -90,13 +90,13 @@
9090
<dependency>
9191
<groupId>com.google.code.gson</groupId>
9292
<artifactId>gson</artifactId>
93-
<version>2.6.1</version>
93+
<version>${gson-version}</version>
9494
</dependency>
9595

9696
<dependency>
9797
<groupId>com.ibm.g11n.pipeline</groupId>
9898
<artifactId>gp-java-client</artifactId>
99-
<version>1.2.0</version>
99+
<version>${gp-java-client-version}</version>
100100
</dependency>
101101

102102
<dependency>

gp-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,19 +188,19 @@
188188
<dependency>
189189
<groupId>junit</groupId>
190190
<artifactId>junit</artifactId>
191-
<version>4.12</version>
191+
<version>${junit-version}</version>
192192
<scope>test</scope>
193193
</dependency>
194194

195195
<dependency>
196196
<groupId>com.google.code.gson</groupId>
197197
<artifactId>gson</artifactId>
198-
<version>2.6.1</version>
198+
<version>${gson-version}</version>
199199
</dependency>
200200
<dependency>
201201
<groupId>com.ibm.g11n.pipeline</groupId>
202202
<artifactId>gp-java-client</artifactId>
203-
<version>1.2.0</version>
203+
<version>${gp-java-client-version}</version>
204204
</dependency>
205205
<dependency>
206206
<groupId>com.ibm.g11n.pipeline</groupId>

gp-res-filter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>com.google.code.gson</groupId>
7171
<artifactId>gson</artifactId>
72-
<version>2.6.1</version>
72+
<version>${gson-version}</version>
7373
</dependency>
7474

7575
<!-- For parsing AMD js -->
@@ -105,7 +105,7 @@
105105
<dependency>
106106
<groupId>junit</groupId>
107107
<artifactId>junit</artifactId>
108-
<version>4.12</version>
108+
<version>${junit-version}</version>
109109
<scope>test</scope>
110110
</dependency>
111111
<dependency>

pom.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<gp-java-client-version>1.2.0</gp-java-client-version>
16+
<gson-version>2.8.5</gson-version>
17+
<junit-version>4.12</junit-version>
1518
</properties>
1619

1720
<url>https://github.com/IBM-Cloud/gp-java-tools</url>
@@ -56,7 +59,7 @@
5659
<plugin>
5760
<groupId>org.apache.maven.plugins</groupId>
5861
<artifactId>maven-dependency-plugin</artifactId>
59-
<version>3.0.2</version>
62+
<version>3.1.1</version>
6063
<executions>
6164
<execution>
6265
<id>analyze</id>
@@ -74,7 +77,7 @@
7477
<plugin>
7578
<groupId>org.apache.maven.plugins</groupId>
7679
<artifactId>maven-compiler-plugin</artifactId>
77-
<version>3.7.0</version>
80+
<version>3.8.0</version>
7881
<configuration>
7982
<source>1.7</source>
8083
<target>1.7</target>
@@ -85,7 +88,7 @@
8588
<plugin>
8689
<groupId>org.apache.maven.plugins</groupId>
8790
<artifactId>maven-javadoc-plugin</artifactId>
88-
<version>3.0.0</version>
91+
<version>3.1.0</version>
8992
<configuration>
9093
<encoding>UTF-8</encoding>
9194
</configuration>
@@ -158,7 +161,7 @@
158161
<plugin>
159162
<groupId>org.sonatype.plugins</groupId>
160163
<artifactId>nexus-staging-maven-plugin</artifactId>
161-
<version>1.6.7</version>
164+
<version>1.6.8</version>
162165
<extensions>true</extensions>
163166
<configuration>
164167
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)