Skip to content

Commit f2c049f

Browse files
committed
Plugin updates
1 parent 7c047e8 commit f2c049f

File tree

3 files changed

+52
-49
lines changed

3 files changed

+52
-49
lines changed

convex-benchmarks/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<plugin>
2222
<groupId>org.apache.maven.plugins</groupId>
2323
<artifactId>maven-compiler-plugin</artifactId>
24-
<version>3.10.1</version>
2524
<configuration>
2625
<annotationProcessorPaths>
2726
<path>

convex-core/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</parent>
99

1010
<properties>
11-
<antlr.version>4.13.1</antlr.version>
11+
<antlr.version>4.13.2</antlr.version>
1212
<bc.version>1.78</bc.version>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
</properties>
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>org.codehaus.mojo</groupId>
6969
<artifactId>build-helper-maven-plugin</artifactId>
70-
<version>3.4.0</version>
70+
<version>3.6.0</version>
7171
<executions>
7272
<execution>
7373
<id>add-source</id>
@@ -84,7 +84,7 @@
8484
</executions>
8585
</plugin>
8686

87-
<!-- This plugin ensures we get a test-jar which is used as a dependency for some other tests -->
87+
<!-- This plugin ensures we get a test-jar which is used as a dependency for some other tests. Not needed any more?
8888
<plugin>
8989
<groupId>org.apache.maven.plugins</groupId>
9090
<artifactId>maven-jar-plugin</artifactId>
@@ -96,6 +96,7 @@
9696
</execution>
9797
</executions>
9898
</plugin>
99+
-->
99100
</plugins>
100101
<resources>
101102
<resource>

pom.xml

Lines changed: 48 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
<plugin>
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-gpg-plugin</artifactId>
89-
<version>3.0.1</version>
89+
<version>3.2.5</version>
9090
<executions>
9191
<execution>
9292
<id>sign-artifacts</id>
@@ -98,39 +98,7 @@
9898
</executions>
9999
</plugin>
100100

101-
<!-- This adds sources -->
102-
<plugin>
103-
<groupId>org.apache.maven.plugins</groupId>
104-
<artifactId>maven-source-plugin</artifactId>
105-
<version>3.2.1</version>
106-
<executions>
107-
<execution>
108-
<id>attach-sources</id>
109-
<goals>
110-
<goal>jar-no-fork</goal>
111-
</goals>
112-
</execution>
113-
</executions>
114-
</plugin>
115101

116-
<!-- This generates JavaDocs -->
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-javadoc-plugin</artifactId>
120-
<version>3.2.0</version>
121-
<configuration>
122-
<doclint>syntax</doclint>
123-
<quiet />
124-
</configuration>
125-
<executions>
126-
<execution>
127-
<id>attach-javadocs</id>
128-
<goals>
129-
<goal>jar</goal>
130-
</goals>
131-
</execution>
132-
</executions>
133-
</plugin>
134102
</plugins>
135103
</build>
136104
</profile>
@@ -142,7 +110,7 @@
142110
<plugin>
143111
<groupId>org.apache.maven.plugins</groupId>
144112
<artifactId>maven-enforcer-plugin</artifactId>
145-
<version>3.0.0-M3</version>
113+
<version>3.5.0</version>
146114
<executions>
147115
<execution>
148116
<id>enforce-maven</id>
@@ -159,16 +127,6 @@
159127
</execution>
160128
</executions>
161129
</plugin>
162-
<plugin>
163-
<groupId>org.apache.maven.plugins</groupId>
164-
<artifactId>maven-compiler-plugin</artifactId>
165-
<version>3.13.0</version>
166-
</plugin>
167-
<plugin>
168-
<groupId>org.apache.maven.plugins</groupId>
169-
<artifactId>maven-surefire-plugin</artifactId>
170-
<version>3.4.0</version>
171-
</plugin>
172130

173131
<plugin>
174132
<groupId>org.sonatype.plugins</groupId>
@@ -212,12 +170,57 @@
212170
</configuration>
213171
</plugin>
214172
</plugins>
173+
215174
<pluginManagement>
216175
<plugins>
217176
<plugin>
218177
<groupId>org.apache.maven.plugins</groupId>
219178
<artifactId>maven-jar-plugin</artifactId>
220-
<version>3.3.0</version>
179+
<version>3.4.2</version>
180+
</plugin>
181+
<plugin>
182+
<groupId>org.apache.maven.plugins</groupId>
183+
<artifactId>maven-compiler-plugin</artifactId>
184+
<version>3.13.0</version>
185+
</plugin>
186+
<plugin>
187+
<groupId>org.apache.maven.plugins</groupId>
188+
<artifactId>maven-surefire-plugin</artifactId>
189+
<version>3.4.0</version>
190+
</plugin>
191+
192+
<!-- This adds sources -->
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-source-plugin</artifactId>
196+
<version>3.2.1</version>
197+
<executions>
198+
<execution>
199+
<id>attach-sources</id>
200+
<goals>
201+
<goal>jar-no-fork</goal>
202+
</goals>
203+
</execution>
204+
</executions>
205+
</plugin>
206+
207+
<!-- This generates JavaDocs -->
208+
<plugin>
209+
<groupId>org.apache.maven.plugins</groupId>
210+
<artifactId>maven-javadoc-plugin</artifactId>
211+
<version>3.2.0</version>
212+
<configuration>
213+
<doclint>syntax</doclint>
214+
<quiet />
215+
</configuration>
216+
<executions>
217+
<execution>
218+
<id>attach-javadocs</id>
219+
<goals>
220+
<goal>jar</goal>
221+
</goals>
222+
</execution>
223+
</executions>
221224
</plugin>
222225
</plugins>
223226
</pluginManagement>

0 commit comments

Comments
 (0)