Skip to content

Commit

Permalink
Preparation for gp-java-tools 1.2.7 (#142)
Browse files Browse the repository at this point in the history
- Updated common component versions
- Defined component versions shared by sub modules
- Minor fix in custom-filter-usage example
  • Loading branch information
yumaoka authored Mar 26, 2019
1 parent 46e30e1 commit f5855a2
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion csv-res-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions custom-filter-usage/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
<plugin>
<groupId>com.ibm.g11n.pipeline</groupId>
<artifactId>gp-maven-plugin</artifactId>
<version>1.2.0</version>
<version>1.2.7</version>
<dependencies>
<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
<artifactId>csv-filter</artifactId>
<version>1.0.0</version>
<artifactId>csv-res-filter</artifactId>
<version>1.2.7</version>
</dependency>
</dependencies>
<configuration>
Expand Down
6 changes: 3 additions & 3 deletions gp-ant-task/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.1</version>
<version>${gson-version}</version>
</dependency>
<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
<artifactId>gp-java-client</artifactId>
<version>1.2.0</version>
<version>${gp-java-client-version}</version>
</dependency>
<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
Expand All @@ -43,7 +43,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
6 changes: 3 additions & 3 deletions gp-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -90,13 +90,13 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.1</version>
<version>${gson-version}</version>
</dependency>

<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
<artifactId>gp-java-client</artifactId>
<version>1.2.0</version>
<version>${gp-java-client-version}</version>
</dependency>

<dependency>
Expand Down
6 changes: 3 additions & 3 deletions gp-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,19 +188,19 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.1</version>
<version>${gson-version}</version>
</dependency>
<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
<artifactId>gp-java-client</artifactId>
<version>1.2.0</version>
<version>${gp-java-client-version}</version>
</dependency>
<dependency>
<groupId>com.ibm.g11n.pipeline</groupId>
Expand Down
4 changes: 2 additions & 2 deletions gp-res-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.6.1</version>
<version>${gson-version}</version>
</dependency>

<!-- For parsing AMD js -->
Expand Down Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
11 changes: 7 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<gp-java-client-version>1.2.0</gp-java-client-version>
<gson-version>2.8.5</gson-version>
<junit-version>4.12</junit-version>
</properties>

<url>https://github.com/IBM-Cloud/gp-java-tools</url>
Expand Down Expand Up @@ -56,7 +59,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.2</version>
<version>3.1.1</version>
<executions>
<execution>
<id>analyze</id>
Expand All @@ -74,7 +77,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand All @@ -85,7 +88,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
Expand Down Expand Up @@ -158,7 +161,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand Down

0 comments on commit f5855a2

Please sign in to comment.