Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e8c1ec8

Browse files
committedJul 24, 2024·
build: fix plugins version
1 parent d8f9135 commit e8c1ec8

File tree

1 file changed

+31
-24
lines changed

1 file changed

+31
-24
lines changed
 

‎pom.xml

+31-24
Original file line numberDiff line numberDiff line change
@@ -318,18 +318,44 @@
318318
<pluginManagement>
319319
<plugins>
320320
<plugin>
321-
<groupId>org.apache.maven.plugins</groupId>
321+
<artifactId>maven-antrun-plugin</artifactId>
322+
<version>3.1.0</version>
323+
</plugin>
324+
<plugin>
325+
<artifactId>maven-dependency-plugin</artifactId>
326+
<version>3.7.1</version>
327+
</plugin>
328+
<plugin>
329+
<artifactId>maven-release-plugin</artifactId>
330+
<version>3.1.1</version>
331+
</plugin>
332+
<plugin>
322333
<artifactId>maven-surefire-plugin</artifactId>
323-
<version>2.12.4</version>
324-
<configuration>
325-
<argLine>-Dfile.encoding=UTF-8</argLine>
326-
</configuration>
334+
<version>3.3.1</version>
327335
</plugin>
328336
<plugin>
329337
<groupId>org.apache.maven.plugins</groupId>
330338
<artifactId>maven-assembly-plugin</artifactId>
331339
<version>3.7.1</version>
332340
</plugin>
341+
<plugin>
342+
<artifactId>maven-compiler-plugin</artifactId>
343+
<version>3.13.0</version>
344+
<configuration>
345+
<annotationProcessorPaths>
346+
<path>
347+
<groupId>com.google.auto.service</groupId>
348+
<artifactId>auto-service</artifactId>
349+
<version>${auto-service.version}</version>
350+
</path>
351+
<path>
352+
<groupId>org.projectlombok</groupId>
353+
<artifactId>lombok</artifactId>
354+
<version>${lombok.version}</version>
355+
</path>
356+
</annotationProcessorPaths>
357+
</configuration>
358+
</plugin>
333359
<plugin>
334360
<groupId>com.mycila</groupId>
335361
<artifactId>license-maven-plugin</artifactId>
@@ -352,25 +378,6 @@
352378
</mapping>
353379
</configuration>
354380
</plugin>
355-
<plugin>
356-
<groupId>org.apache.maven.plugins</groupId>
357-
<artifactId>maven-compiler-plugin</artifactId>
358-
<version>3.13.0</version>
359-
<configuration>
360-
<annotationProcessorPaths>
361-
<path>
362-
<groupId>com.google.auto.service</groupId>
363-
<artifactId>auto-service</artifactId>
364-
<version>${auto-service.version}</version>
365-
</path>
366-
<path>
367-
<groupId>org.projectlombok</groupId>
368-
<artifactId>lombok</artifactId>
369-
<version>${lombok.version}</version>
370-
</path>
371-
</annotationProcessorPaths>
372-
</configuration>
373-
</plugin>
374381
<plugin>
375382
<groupId>org.codehaus.mojo</groupId>
376383
<artifactId>flatten-maven-plugin</artifactId>

0 commit comments

Comments
 (0)
Please sign in to comment.