Skip to content

Commit 930ade9

Browse files
authored
Upgrading several maven plugins. (#213)
- The maven-enforcer-plugin had an API incompatibility that might be fixed with a version upgrade. - Several other plugins were out-of-date, and worth upgrading. - Some plugins were not upgraded out of concern that they might break the build.
1 parent d1c404d commit 930ade9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

code_gen/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,24 @@
4343
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
4444
<plugin>
4545
<artifactId>maven-clean-plugin</artifactId>
46-
<version>3.1.0</version>
46+
<version>3.2.0</version>
4747
</plugin>
4848
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
4949
<plugin>
5050
<artifactId>maven-resources-plugin</artifactId>
51-
<version>3.0.2</version>
51+
<version>3.2.0</version>
5252
</plugin>
5353
<plugin>
5454
<artifactId>maven-compiler-plugin</artifactId>
55-
<version>3.8.0</version>
55+
<version>3.10.1</version>
5656
</plugin>
5757
<plugin>
5858
<artifactId>maven-surefire-plugin</artifactId>
5959
<version>2.22.1</version>
6060
</plugin>
6161
<plugin>
6262
<artifactId>maven-jar-plugin</artifactId>
63-
<version>3.0.2</version>
63+
<version>3.2.2</version>
6464
</plugin>
6565
<plugin>
6666
<artifactId>maven-install-plugin</artifactId>

library/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<plugin>
9999
<groupId>org.apache.maven.plugins</groupId>
100100
<artifactId>maven-compiler-plugin</artifactId>
101-
<version>3.3</version>
101+
<version>3.10.1</version>
102102
<configuration>
103103
<source>1.8</source>
104104
<target>1.8</target>
@@ -111,7 +111,7 @@
111111
<plugin>
112112
<groupId>org.apache.maven.plugins</groupId>
113113
<artifactId>maven-enforcer-plugin</artifactId>
114-
<version>1.4</version>
114+
<version>3.1.0</version>
115115
<executions>
116116
<execution>
117117
<id>enforce-java</id>
@@ -131,14 +131,14 @@
131131
<plugin>
132132
<groupId>org.apache.maven.plugins</groupId>
133133
<artifactId>maven-javadoc-plugin</artifactId>
134-
<version>2.10.3</version>
134+
<version>3.4.0</version>
135135
<configuration>
136136
</configuration>
137137
</plugin>
138138
<plugin>
139139
<groupId>org.apache.maven.plugins</groupId>
140140
<artifactId>maven-jar-plugin</artifactId>
141-
<version>2.4</version>
141+
<version>3.2.2</version>
142142
<configuration>
143143
<archive>
144144
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
@@ -154,7 +154,7 @@
154154
<plugin>
155155
<groupId>org.apache.felix</groupId>
156156
<artifactId>maven-bundle-plugin</artifactId>
157-
<version>2.5.0</version>
157+
<version>5.1.6</version>
158158
<executions>
159159
<execution>
160160
<id>bundle-manifest</id>
@@ -220,7 +220,7 @@
220220
<plugin>
221221
<groupId>org.apache.maven.plugins</groupId>
222222
<artifactId>maven-gpg-plugin</artifactId>
223-
<version>1.6</version>
223+
<version>3.0.1</version>
224224
<executions>
225225
<execution>
226226
<id>sign-artifacts</id>

website/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<plugin>
4646
<groupId>org.apache.maven.plugins</groupId>
4747
<artifactId>maven-compiler-plugin</artifactId>
48-
<version>3.1</version>
48+
<version>3.10.1</version>
4949
<configuration>
5050
<source>1.8</source>
5151
<target>1.8</target>

0 commit comments

Comments
 (0)