Skip to content

Commit 3c6e0b1

Browse files
committed
java: Bump deps
* remove pom.xml.in dead code
1 parent 9c84a99 commit 3c6e0b1

6 files changed

+25
-188
lines changed

ortools/java/pom-full.xml.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-source-plugin</artifactId>
121-
<version>3.2.0</version>
121+
<version>3.3.1</version>
122122
<executions>
123123
<execution>
124124
<id>attach-sources</id>
@@ -131,7 +131,7 @@
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-javadoc-plugin</artifactId>
134-
<version>3.2.0</version>
134+
<version>3.8.0</version>
135135
<configuration>
136136
<detectJavaApiLink>false</detectJavaApiLink>
137137
<source>${maven.compiler.source}</source>
@@ -150,7 +150,7 @@
150150
<plugin>
151151
<groupId>org.apache.maven.plugins</groupId>
152152
<artifactId>maven-gpg-plugin</artifactId>
153-
<version>1.6</version>
153+
<version>3.2.5</version>
154154
<executions>
155155
<execution>
156156
<id>sign-artifacts</id>

ortools/java/pom-local.xml.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<plugin>
9191
<groupId>org.apache.maven.plugins</groupId>
9292
<artifactId>maven-source-plugin</artifactId>
93-
<version>3.2.0</version>
93+
<version>3.3.1</version>
9494
<executions>
9595
<execution>
9696
<id>attach-sources</id>
@@ -103,7 +103,7 @@
103103
<plugin>
104104
<groupId>org.apache.maven.plugins</groupId>
105105
<artifactId>maven-javadoc-plugin</artifactId>
106-
<version>3.2.0</version>
106+
<version>3.8.0</version>
107107
<configuration>
108108
<detectJavaApiLink>false</detectJavaApiLink>
109109
<source>${maven.compiler.source}</source>
@@ -122,7 +122,7 @@
122122
<plugin>
123123
<groupId>org.apache.maven.plugins</groupId>
124124
<artifactId>maven-gpg-plugin</artifactId>
125-
<version>1.6</version>
125+
<version>3.2.5</version>
126126
<executions>
127127
<execution>
128128
<id>sign-artifacts</id>

ortools/java/pom-native.xml.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<plugin>
7171
<groupId>org.apache.maven.plugins</groupId>
7272
<artifactId>maven-source-plugin</artifactId>
73-
<version>3.2.0</version>
73+
<version>3.3.1</version>
7474
<configuration>
7575
<excludes>
7676
<exclude>**/*.cxx</exclude>
@@ -88,7 +88,7 @@
8888
<plugin>
8989
<groupId>org.apache.maven.plugins</groupId>
9090
<artifactId>maven-javadoc-plugin</artifactId>
91-
<version>3.2.0</version>
91+
<version>3.8.0</version>
9292
<configuration>
9393
<detectJavaApiLink>false</detectJavaApiLink>
9494
<source>${maven.compiler.source}</source>
@@ -107,7 +107,7 @@
107107
<plugin>
108108
<groupId>org.apache.maven.plugins</groupId>
109109
<artifactId>maven-gpg-plugin</artifactId>
110-
<version>1.6</version>
110+
<version>3.2.5</version>
111111
<executions>
112112
<execution>
113113
<id>sign-artifacts</id>

ortools/java/pom-sample.xml.in

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>com.google.guava</groupId>
7979
<artifactId>guava</artifactId>
80-
<version>30.1.1-jre</version>
80+
<version>33.3.0-jre</version>
8181
</dependency>
8282
</dependencies>
8383

@@ -86,7 +86,7 @@
8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-source-plugin</artifactId>
89-
<version>3.2.0</version>
89+
<version>3.3.1</version>
9090
<executions>
9191
<execution>
9292
<id>attach-sources</id>
@@ -99,7 +99,7 @@
9999
<plugin>
100100
<groupId>org.apache.maven.plugins</groupId>
101101
<artifactId>maven-javadoc-plugin</artifactId>
102-
<version>3.2.0</version>
102+
<version>3.8.0</version>
103103
<configuration>
104104
<detectJavaApiLink>false</detectJavaApiLink>
105105
<source>${maven.compiler.source}</source>
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-gpg-plugin</artifactId>
121-
<version>1.6</version>
121+
<version>3.2.5</version>
122122
<executions>
123123
<execution>
124124
<id>sign-artifacts</id>

ortools/java/pom-test.xml.in

+12-8
Original file line numberDiff line numberDiff line change
@@ -76,24 +76,24 @@
7676
<dependency>
7777
<groupId>org.junit.jupiter</groupId>
7878
<artifactId>junit-jupiter-engine</artifactId>
79-
<version>5.7.0</version>
79+
<version>5.11.0</version>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>com.google.truth</groupId>
8484
<artifactId>truth</artifactId>
85-
<version>1.1.3</version>
85+
<version>1.4.4</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>
8989
<groupId>com.google.guava</groupId>
9090
<artifactId>guava</artifactId>
91-
<version>30.1.1-jre</version>
91+
<version>33.3.0-jre</version>
9292
</dependency>
9393
<dependency>
9494
<groupId>com.google.auto.value</groupId>
9595
<artifactId>auto-value</artifactId>
96-
<version>1.8.2</version>
96+
<version>1.11.0</version>
9797
<scope>provided</scope>
9898
</dependency>
9999
</dependencies>
@@ -102,12 +102,16 @@
102102
<plugins>
103103
<plugin>
104104
<artifactId>maven-surefire-plugin</artifactId>
105-
<version>2.22.2</version>
105+
<version>3.5.0</version>
106+
<configuration>
107+
<!-- Activate the use of TCP to transmit events to the plugin -->
108+
<forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory"/>
109+
</configuration>
106110
</plugin>
107111
<plugin>
108112
<groupId>org.apache.maven.plugins</groupId>
109113
<artifactId>maven-source-plugin</artifactId>
110-
<version>3.2.0</version>
114+
<version>3.3.1</version>
111115
<executions>
112116
<execution>
113117
<id>attach-sources</id>
@@ -120,7 +124,7 @@
120124
<plugin>
121125
<groupId>org.apache.maven.plugins</groupId>
122126
<artifactId>maven-javadoc-plugin</artifactId>
123-
<version>3.2.0</version>
127+
<version>3.8.0</version>
124128
<configuration>
125129
<detectJavaApiLink>false</detectJavaApiLink>
126130
<source>${maven.compiler.source}</source>
@@ -139,7 +143,7 @@
139143
<plugin>
140144
<groupId>org.apache.maven.plugins</groupId>
141145
<artifactId>maven-gpg-plugin</artifactId>
142-
<version>1.6</version>
146+
<version>3.2.5</version>
143147
<executions>
144148
<execution>
145149
<id>sign-artifacts</id>

ortools/java/pom.xml.in

-167
This file was deleted.

0 commit comments

Comments
 (0)