Skip to content

Commit 75d149c

Browse files
committed
update maven & plugins
1 parent 159a95a commit 75d149c

2 files changed

Lines changed: 22 additions & 11 deletions

File tree

.mvn/maven.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
-Dmaven.compiler.showWarnings=true
22
-Dmaven.compiler.showDeprecation=true
3+
-Dmaven.plugin.validation=VERBOSE

pom.xml

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</scm>
3939

4040
<prerequisites>
41-
<maven>3.8.4</maven>
41+
<maven>3.9.6</maven>
4242
</prerequisites>
4343

4444
<properties>
@@ -63,51 +63,61 @@
6363
<!-- plugin interfaces and base classes -->
6464
<groupId>org.apache.maven</groupId>
6565
<artifactId>maven-plugin-api</artifactId>
66-
<version>3.8.1</version>
66+
<version>3.9.2</version>
6767
<scope>provided</scope>
6868
</dependency>
6969
<dependency>
7070
<!-- needed when injecting the Maven Project into a plugin -->
7171
<groupId>org.apache.maven</groupId>
7272
<artifactId>maven-core</artifactId>
73-
<version>3.8.1</version>
73+
<version>3.9.2</version>
7474
<scope>provided</scope>
7575
</dependency>
7676
<dependency>
7777
<!-- annotations used to describe the plugin meta-data -->
7878
<groupId>org.apache.maven.plugin-tools</groupId>
7979
<artifactId>maven-plugin-annotations</artifactId>
80-
<version>3.6.2</version>
80+
<version>3.9.0</version>
8181
<scope>provided</scope>
8282
</dependency>
8383
<dependency>
8484
<groupId>org.apache.maven.shared</groupId>
8585
<artifactId>maven-shared-utils</artifactId>
86-
<version>3.3.4</version>
86+
<version>3.4.2</version>
8787
</dependency>
8888
<dependency>
8989
<groupId>io.openapiprocessor</groupId>
9090
<artifactId>openapi-processor-api</artifactId>
91-
<version>2021.1</version>
91+
<version>2023.1</version>
9292
</dependency>
9393
</dependencies>
9494

9595
<build>
9696
<plugins>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-compiler-plugin</artifactId>
100+
<version>3.11.0</version>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-resources-plugin</artifactId>
105+
<version>3.3.1</version>
106+
</plugin>
97107
<plugin>
98108
<groupId>org.apache.maven.plugins</groupId>
99109
<artifactId>maven-plugin-plugin</artifactId>
100-
<version>3.6.0</version>
110+
<version>3.10.2</version>
101111
</plugin>
102112
<plugin>
103113
<groupId>org.apache.maven.plugins</groupId>
104114
<artifactId>maven-deploy-plugin</artifactId>
105-
<version>3.0.0-M2</version>
115+
<version>3.1.1</version>
106116
</plugin>
107117
<plugin>
108118
<groupId>org.apache.maven.plugins</groupId>
109119
<artifactId>maven-source-plugin</artifactId>
110-
<version>3.2.1</version>
120+
<version>3.3.0</version>
111121
<executions>
112122
<execution>
113123
<id>sources</id>
@@ -120,7 +130,7 @@
120130
<plugin>
121131
<groupId>org.apache.maven.plugins</groupId>
122132
<artifactId>maven-javadoc-plugin</artifactId>
123-
<version>3.2.0</version>
133+
<version>3.5.0</version>
124134
<configuration>
125135
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
126136
</configuration>
@@ -136,7 +146,7 @@
136146
<plugin>
137147
<groupId>org.simplify4u.plugins</groupId>
138148
<artifactId>sign-maven-plugin</artifactId>
139-
<version>1.0.0</version>
149+
<version>1.0.1</version>
140150
<executions>
141151
<execution>
142152
<goals>

0 commit comments

Comments
 (0)