Skip to content

Commit 5b6b8d4

Browse files
yoshito-umaokayumaoka
authored andcommitted
Update dependency component versions
- jackson-databind 2.9.8 has a security problem. Updated the version to 2.9.9.3.
1 parent 9f3dcfa commit 5b6b8d4

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

csv-res-filter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>org.apache.commons</groupId>
1919
<artifactId>commons-csv</artifactId>
20-
<version>1.5</version>
20+
<version>1.7</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>com.ibm.g11n.pipeline</groupId>

gp-ant-task/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>org.apache.ant</groupId>
2020
<artifactId>ant</artifactId>
21-
<version>1.9.9</version>
21+
<version>1.9.14</version>
2222
<scope>provided</scope>
2323
</dependency>
2424
<dependency>

gp-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>com.beust</groupId>
8989
<artifactId>jcommander</artifactId>
90-
<version>1.72</version>
90+
<version>1.78</version>
9191
</dependency>
9292

9393
<dependency>
@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>junit</groupId>
113113
<artifactId>junit</artifactId>
114-
<version>4.12</version>
114+
<version>${junit-version}</version>
115115
<scope>test</scope>
116116
</dependency>
117117
</dependencies>

gp-maven-plugin/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<plugin>
3535
<groupId>org.apache.maven.plugins</groupId>
3636
<artifactId>maven-plugin-plugin</artifactId>
37-
<version>3.5</version>
37+
<version>3.6.0</version>
3838
<configuration>
3939
<goalPrefix>gp</goalPrefix>
4040
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
@@ -132,7 +132,7 @@
132132
<plugin>
133133
<groupId>org.apache.maven.plugins</groupId>
134134
<artifactId>maven-invoker-plugin</artifactId>
135-
<version>3.0.1</version>
135+
<version>3.2.0</version>
136136
<configuration>
137137
<debug>true</debug>
138138
<addTestClassPath>true</addTestClassPath>
@@ -170,17 +170,17 @@
170170
<dependency>
171171
<groupId>org.apache.maven</groupId>
172172
<artifactId>maven-core</artifactId>
173-
<version>3.5.2</version>
173+
<version>3.6.1</version>
174174
</dependency>
175175
<dependency>
176176
<groupId>org.apache.maven</groupId>
177177
<artifactId>maven-plugin-api</artifactId>
178-
<version>3.5.2</version>
178+
<version>3.6.1</version>
179179
</dependency>
180180
<dependency>
181181
<groupId>org.apache.maven.plugin-tools</groupId>
182182
<artifactId>maven-plugin-annotations</artifactId>
183-
<version>3.5</version>
183+
<version>3.6.0</version>
184184
<scope>provided</scope>
185185
</dependency>
186186
<dependency>

gp-res-filter/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,29 +79,29 @@
7979
<dependency>
8080
<groupId>org.mozilla</groupId>
8181
<artifactId>rhino</artifactId>
82-
<version>1.7R4</version>
82+
<version>1.7.11</version>
8383
</dependency>
8484

8585
<!-- For parsing YML -->
8686
<dependency>
8787
<groupId>com.fasterxml.jackson.dataformat</groupId>
8888
<artifactId>jackson-dataformat-yaml</artifactId>
89-
<version>2.9.8</version>
89+
<version>2.9.9</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>com.fasterxml.jackson.core</groupId>
9393
<artifactId>jackson-core</artifactId>
94-
<version>2.9.8</version>
94+
<version>2.9.9</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>com.fasterxml.jackson.core</groupId>
9898
<artifactId>jackson-databind</artifactId>
99-
<version>2.9.8</version>
99+
<version>2.9.9.3</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>com.ibm.icu</groupId>
103103
<artifactId>icu4j</artifactId>
104-
<version>63.1</version>
104+
<version>64.2</version>
105105
</dependency>
106106

107107
<!-- JUnit -->
@@ -114,7 +114,7 @@
114114
<dependency>
115115
<groupId>org.xmlunit</groupId>
116116
<artifactId>xmlunit-matchers</artifactId>
117-
<version>2.5.1</version>
117+
<version>2.6.3</version>
118118
<scope>test</scope>
119119
</dependency>
120120
</dependencies>

pom.xml

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

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<gp-java-client-version>1.2.0</gp-java-client-version>
15+
<gp-java-client-version>1.2.1</gp-java-client-version>
1616
<gson-version>2.8.5</gson-version>
1717
<junit-version>4.12</junit-version>
1818
</properties>
@@ -77,7 +77,7 @@
7777
<plugin>
7878
<groupId>org.apache.maven.plugins</groupId>
7979
<artifactId>maven-compiler-plugin</artifactId>
80-
<version>3.8.0</version>
80+
<version>3.8.1</version>
8181
<configuration>
8282
<source>1.7</source>
8383
<target>1.7</target>
@@ -88,7 +88,7 @@
8888
<plugin>
8989
<groupId>org.apache.maven.plugins</groupId>
9090
<artifactId>maven-javadoc-plugin</artifactId>
91-
<version>3.1.0</version>
91+
<version>3.1.1</version>
9292
<configuration>
9393
<encoding>UTF-8</encoding>
9494
</configuration>
@@ -134,7 +134,7 @@
134134
<plugin>
135135
<groupId>org.apache.maven.plugins</groupId>
136136
<artifactId>maven-source-plugin</artifactId>
137-
<version>3.0.1</version>
137+
<version>3.1.0</version>
138138
<executions>
139139
<execution>
140140
<id>attach-sources</id>

0 commit comments

Comments
 (0)