Skip to content

Commit 9fcd4d7

Browse files
committed
Update the dependencies and JDK version
1 parent 712a174 commit 9fcd4d7

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

pom.xml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<properties>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
<maven.compiler.release>17</maven.compiler.release>
18+
<maven.compiler.release>24</maven.compiler.release>
1919
</properties>
2020

2121
<repositories>
@@ -40,12 +40,12 @@
4040
<dependency>
4141
<groupId>io.github.classgraph</groupId>
4242
<artifactId>classgraph</artifactId>
43-
<version>4.8.172</version>
43+
<version>4.8.179</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>org.apache.groovy</groupId>
4747
<artifactId>groovy</artifactId>
48-
<version>4.0.21</version>
48+
<version>5.0.0-alpha-12</version>
4949
</dependency>
5050
<!-- https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin -->
5151
</dependencies>
@@ -78,7 +78,7 @@
7878
<plugin>
7979
<groupId>io.github.git-commit-id</groupId>
8080
<artifactId>git-commit-id-maven-plugin</artifactId>
81-
<version>8.0.2</version>
81+
<version>9.0.1</version>
8282
<executions>
8383
<execution>
8484
<goals>
@@ -97,7 +97,7 @@
9797
<plugin>
9898
<groupId>org.apache.maven.plugins</groupId>
9999
<artifactId>maven-jar-plugin</artifactId>
100-
<version>3.4.1</version>
100+
<version>3.4.2</version>
101101
<configuration>
102102
<archive>
103103
<manifest>
@@ -122,7 +122,7 @@
122122
<plugin>
123123
<groupId>org.apache.maven.plugins</groupId>
124124
<artifactId>maven-javadoc-plugin</artifactId>
125-
<version>3.6.3</version>
125+
<version>3.11.2</version>
126126
<configuration>
127127
<sourceFileIncludes>
128128
<include>io/github/arrayv/groovyapi/**/*.java</include>
@@ -132,8 +132,8 @@
132132
<include>io/github/arrayv/utils/**/*.java</include>
133133
</sourceFileIncludes>
134134
<links>
135-
<link>https://javadoc.io/doc/io.github.classgraph/classgraph/4.8.172</link>
136-
<link>https://docs.groovy-lang.org/4.0.0/html/api</link>
135+
<link>https://javadoc.io/doc/io.github.classgraph/classgraph/latest</link>
136+
<link>https://docs.groovy-lang.org/latest/html/api</link>
137137
</links>
138138
</configuration>
139139
<executions>
@@ -148,7 +148,7 @@
148148
<plugin>
149149
<groupId>org.apache.maven.plugins</groupId>
150150
<artifactId>maven-shade-plugin</artifactId>
151-
<version>3.5.3</version>
151+
<version>3.6.0</version>
152152
<executions>
153153
<execution>
154154
<phase>package</phase>
@@ -161,7 +161,7 @@
161161
<plugin>
162162
<groupId>org.apache.maven.plugins</groupId>
163163
<artifactId>maven-checkstyle-plugin</artifactId>
164-
<version>3.3.1</version>
164+
<version>3.6.0</version>
165165
<configuration>
166166
<configLocation>checkstyle.xml</configLocation>
167167
<consoleOutput>true</consoleOutput>
@@ -185,7 +185,7 @@
185185
<dependency>
186186
<groupId>com.puppycrawl.tools</groupId>
187187
<artifactId>checkstyle</artifactId>
188-
<version>10.16.0</version>
188+
<version>10.21.4</version>
189189
</dependency>
190190
</dependencies>
191191
</plugin>
@@ -194,7 +194,7 @@
194194
<plugins>
195195
<plugin>
196196
<artifactId>maven-clean-plugin</artifactId>
197-
<version>3.3.2</version>
197+
<version>3.4.1</version>
198198
</plugin>
199199
<!-- see
200200
http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
@@ -204,29 +204,29 @@
204204
</plugin>
205205
<plugin>
206206
<artifactId>maven-compiler-plugin</artifactId>
207-
<version>3.13.0</version>
207+
<version>3.14.0</version>
208208
</plugin>
209209
<plugin>
210210
<artifactId>maven-surefire-plugin</artifactId>
211-
<version>3.2.5</version>
211+
<version>3.5.2</version>
212212
</plugin>
213213
<plugin>
214214
<artifactId>maven-install-plugin</artifactId>
215-
<version>3.1.2</version>
215+
<version>3.1.4</version>
216216
</plugin>
217217
<plugin>
218218
<artifactId>maven-deploy-plugin</artifactId>
219-
<version>3.1.2</version>
219+
<version>3.1.4</version>
220220
</plugin>
221221
<!-- site lifecycle, see
222222
https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
223223
<plugin>
224224
<artifactId>maven-site-plugin</artifactId>
225-
<version>3.12.1</version>
225+
<version>3.21.0</version>
226226
</plugin>
227227
<plugin>
228228
<artifactId>maven-project-info-reports-plugin</artifactId>
229-
<version>3.5.0</version>
229+
<version>3.9.0</version>
230230
</plugin>
231231
</plugins>
232232
</pluginManagement>

0 commit comments

Comments
 (0)