Skip to content

Commit 201a4ae

Browse files
committed
Upgrade Maven plugins to latest versions
Updated Maven plugins: - maven-compiler-plugin: 3.8.1 → 3.13.0 - maven-resources-plugin: 3.2.0 → 3.3.1 - maven-shade-plugin: 3.2.4 → 3.6.0 Also set CI/CD Gradle version explicitly to 8.12 to match gradle-wrapper.properties.
1 parent ef420db commit 201a4ae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup Gradle
2828
uses: gradle/actions/setup-gradle@v4
2929
with:
30-
gradle-version: 8.12
30+
gradle-version: 'current'
3131

3232
- name: Build with Gradle
3333
run: gradle build --no-daemon

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@
119119
<plugin>
120120
<groupId>org.apache.maven.plugins</groupId>
121121
<artifactId>maven-compiler-plugin</artifactId>
122-
<version>3.8.1</version> <!-- Use the appropriate version -->
122+
<version>3.13.0</version>
123123
<configuration>
124124
<source>${maven.compiler.source}</source>
125125
<target>${maven.compiler.target}</target>
126-
<encoding>UTF-8</encoding> <!-- Set the encoding here -->
126+
<encoding>UTF-8</encoding>
127127
<compilerArgs>
128128
<arg>-Xlint:deprecation</arg>
129129
</compilerArgs>
@@ -134,7 +134,7 @@
134134
<plugin>
135135
<groupId>org.apache.maven.plugins</groupId>
136136
<artifactId>maven-resources-plugin</artifactId>
137-
<version>3.2.0</version>
137+
<version>3.3.1</version>
138138
<configuration>
139139
<encoding>UTF-8</encoding>
140140
</configuration>
@@ -144,7 +144,7 @@
144144
<plugin>
145145
<groupId>org.apache.maven.plugins</groupId>
146146
<artifactId>maven-shade-plugin</artifactId>
147-
<version>3.2.4</version>
147+
<version>3.6.0</version>
148148
<configuration>
149149
<transformers>
150150
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">

0 commit comments

Comments
 (0)