Skip to content

Commit cc331d5

Browse files
committed
update dependencies graphhopper#1629
1 parent dffc748 commit cc331d5

File tree

7 files changed

+26
-21
lines changed

7 files changed

+26
-21
lines changed

client-hc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>com.squareup.okhttp3</groupId>
4444
<artifactId>okhttp</artifactId>
45-
<version>3.8.0</version>
45+
<version>3.14.2</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.slf4j</groupId>

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-jar-plugin</artifactId>
101-
<version>3.1.0</version>
101+
<version>3.1.2</version>
102102
<executions>
103103
<execution>
104104
<goals>
@@ -111,7 +111,7 @@
111111
<plugin>
112112
<groupId>pl.project13.maven</groupId>
113113
<artifactId>git-commit-id-plugin</artifactId>
114-
<version>2.2.5</version>
114+
<version>3.0.0</version>
115115
</plugin>
116116
</plugins>
117117
</pluginManagement>

pom.xml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18-
<slf4j.version>1.7.25</slf4j.version>
18+
<slf4j.version>1.7.26</slf4j.version>
1919
<log4j.version>1.2.17</log4j.version>
20-
<commons-compress.version>1.15</commons-compress.version>
20+
<commons-compress.version>1.18</commons-compress.version>
21+
22+
<!-- for the correct jackson and guava versions see https://github.com/dropwizard/dropwizard/blob/release/1.3.x/dropwizard-bom/pom.xml -->
23+
<!-- make also sure that the dropwizard version is working with 1.3.5 of dropwizard-configurable-assets-bundle used in web -->
24+
<dropwizard.version>1.3.12</dropwizard.version>
2125
<jackson.version>2.9.9</jackson.version>
22-
<dropwizard.version>1.3.5</dropwizard.version>
26+
<guava.version>24.1.1-jre</guava.version>
27+
2328
<directions-api-client.version>0.10.1-3</directions-api-client.version>
2429
<maven.compiler.target>1.8</maven.compiler.target>
2530

@@ -90,7 +95,7 @@
9095
<plugin>
9196
<groupId>org.apache.maven.plugins</groupId>
9297
<artifactId>maven-compiler-plugin</artifactId>
93-
<version>3.8.0</version>
98+
<version>3.8.1</version>
9499
<configuration>
95100
<!--
96101
<compilerArgument>-Xlint:unchecked</compilerArgument>
@@ -109,7 +114,7 @@
109114
<plugin>
110115
<groupId>org.apache.maven.plugins</groupId>
111116
<artifactId>maven-surefire-plugin</artifactId>
112-
<version>2.22.1</version>
117+
<version>2.22.2</version>
113118
<configuration>
114119
<argLine>-Xmx100m -Xms100m</argLine>
115120
</configuration>
@@ -118,7 +123,7 @@
118123
<plugin>
119124
<groupId>org.apache.maven.plugins</groupId>
120125
<artifactId>maven-failsafe-plugin</artifactId>
121-
<version>2.22.1</version>
126+
<version>2.22.2</version>
122127
<executions>
123128
<execution>
124129
<goals>
@@ -132,18 +137,18 @@
132137
<plugin>
133138
<groupId>org.apache.maven.plugins</groupId>
134139
<artifactId>maven-assembly-plugin</artifactId>
135-
<version>3.1.0</version>
140+
<version>3.1.1</version>
136141
</plugin>
137142
<plugin>
138143
<groupId>org.apache.maven.plugins</groupId>
139144
<artifactId>maven-jar-plugin</artifactId>
140-
<version>3.1.0</version>
145+
<version>3.1.1</version>
141146
</plugin>
142147
<!-- example https://github.com/tananaev/traccar/blob/master/checkstyle.xml -->
143148
<plugin>
144149
<groupId>org.apache.maven.plugins</groupId>
145150
<artifactId>maven-checkstyle-plugin</artifactId>
146-
<version>2.17</version>
151+
<version>3.1.0</version>
147152
<configuration>
148153
<configLocation>${user.dir}/core/files/checkstyle.xml</configLocation>
149154
<failsOnError>true</failsOnError>
@@ -165,7 +170,7 @@
165170
<plugin>
166171
<groupId>org.apache.maven.plugins</groupId>
167172
<artifactId>maven-pmd-plugin</artifactId>
168-
<version>3.7</version>
173+
<version>3.12</version>
169174
<!-- e.g. under core/target/site/pmd.html
170175
<configuration>
171176
<format>html</format>
@@ -251,7 +256,7 @@
251256
<plugin>
252257
<groupId>org.apache.maven.plugins</groupId>
253258
<artifactId>maven-javadoc-plugin</artifactId>
254-
<version>3.0.1</version>
259+
<version>3.1.0</version>
255260
<configuration>
256261
<quiet>true</quiet>
257262
</configuration>
@@ -267,7 +272,7 @@
267272
<plugin>
268273
<groupId>org.apache.maven.plugins</groupId>
269274
<artifactId>maven-source-plugin</artifactId>
270-
<version>3.0.1</version>
275+
<version>3.1.0</version>
271276
<executions>
272277
<execution>
273278
<id>attach-sources</id>

reader-gtfs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>com.google.guava</groupId>
3636
<artifactId>guava</artifactId>
37-
<version>24.0-jre</version>
37+
<version>${guava.version}</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>net.sourceforge.javacsv</groupId>

reader-osm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.openstreetmap.osmosis</groupId>
2727
<artifactId>osmosis-osm-binary</artifactId>
28-
<version>0.46</version>
28+
<version>0.47</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>org.slf4j</groupId>

web-bundle/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
<dependency>
4444
<groupId>javax.xml.ws</groupId>
4545
<artifactId>jaxws-api</artifactId>
46-
<version>2.3.0</version>
46+
<version>2.3.1</version>
4747
</dependency>
4848
<!-- required for dropwizard -->
4949
<dependency>
5050
<groupId>com.google.guava</groupId>
5151
<artifactId>guava</artifactId>
52-
<version>24.0-jre</version>
52+
<version>${guava.version}</version>
5353
</dependency>
5454
<dependency>
5555
<groupId>io.dropwizard</groupId>

web/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>io.dropwizard-bundles</groupId>
4040
<artifactId>dropwizard-configurable-assets-bundle</artifactId>
41-
<version>${dropwizard.version}</version>
41+
<version>1.3.5</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>io.dropwizard</groupId>
@@ -76,7 +76,7 @@
7676
<plugin>
7777
<groupId>org.apache.maven.plugins</groupId>
7878
<artifactId>maven-shade-plugin</artifactId>
79-
<version>3.1.1</version>
79+
<version>3.2.1</version>
8080
<configuration>
8181
<createDependencyReducedPom>true</createDependencyReducedPom>
8282
<filters>

0 commit comments

Comments
 (0)