|
15 | 15 |
|
16 | 16 | <properties> |
17 | 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
18 | | - <maven.compiler.release>17</maven.compiler.release> |
| 18 | + <maven.compiler.release>24</maven.compiler.release> |
19 | 19 | </properties> |
20 | 20 |
|
21 | 21 | <repositories> |
|
40 | 40 | <dependency> |
41 | 41 | <groupId>io.github.classgraph</groupId> |
42 | 42 | <artifactId>classgraph</artifactId> |
43 | | - <version>4.8.172</version> |
| 43 | + <version>4.8.179</version> |
44 | 44 | </dependency> |
45 | 45 | <dependency> |
46 | 46 | <groupId>org.apache.groovy</groupId> |
47 | 47 | <artifactId>groovy</artifactId> |
48 | | - <version>4.0.21</version> |
| 48 | + <version>5.0.0-alpha-12</version> |
49 | 49 | </dependency> |
50 | 50 | <!-- https://mvnrepository.com/artifact/org.sonarsource.scanner.maven/sonar-maven-plugin --> |
51 | 51 | </dependencies> |
|
78 | 78 | <plugin> |
79 | 79 | <groupId>io.github.git-commit-id</groupId> |
80 | 80 | <artifactId>git-commit-id-maven-plugin</artifactId> |
81 | | - <version>8.0.2</version> |
| 81 | + <version>9.0.1</version> |
82 | 82 | <executions> |
83 | 83 | <execution> |
84 | 84 | <goals> |
|
97 | 97 | <plugin> |
98 | 98 | <groupId>org.apache.maven.plugins</groupId> |
99 | 99 | <artifactId>maven-jar-plugin</artifactId> |
100 | | - <version>3.4.1</version> |
| 100 | + <version>3.4.2</version> |
101 | 101 | <configuration> |
102 | 102 | <archive> |
103 | 103 | <manifest> |
|
122 | 122 | <plugin> |
123 | 123 | <groupId>org.apache.maven.plugins</groupId> |
124 | 124 | <artifactId>maven-javadoc-plugin</artifactId> |
125 | | - <version>3.6.3</version> |
| 125 | + <version>3.11.2</version> |
126 | 126 | <configuration> |
127 | 127 | <sourceFileIncludes> |
128 | 128 | <include>io/github/arrayv/groovyapi/**/*.java</include> |
|
132 | 132 | <include>io/github/arrayv/utils/**/*.java</include> |
133 | 133 | </sourceFileIncludes> |
134 | 134 | <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> |
137 | 137 | </links> |
138 | 138 | </configuration> |
139 | 139 | <executions> |
|
148 | 148 | <plugin> |
149 | 149 | <groupId>org.apache.maven.plugins</groupId> |
150 | 150 | <artifactId>maven-shade-plugin</artifactId> |
151 | | - <version>3.5.3</version> |
| 151 | + <version>3.6.0</version> |
152 | 152 | <executions> |
153 | 153 | <execution> |
154 | 154 | <phase>package</phase> |
|
161 | 161 | <plugin> |
162 | 162 | <groupId>org.apache.maven.plugins</groupId> |
163 | 163 | <artifactId>maven-checkstyle-plugin</artifactId> |
164 | | - <version>3.3.1</version> |
| 164 | + <version>3.6.0</version> |
165 | 165 | <configuration> |
166 | 166 | <configLocation>checkstyle.xml</configLocation> |
167 | 167 | <consoleOutput>true</consoleOutput> |
|
185 | 185 | <dependency> |
186 | 186 | <groupId>com.puppycrawl.tools</groupId> |
187 | 187 | <artifactId>checkstyle</artifactId> |
188 | | - <version>10.16.0</version> |
| 188 | + <version>10.21.4</version> |
189 | 189 | </dependency> |
190 | 190 | </dependencies> |
191 | 191 | </plugin> |
|
194 | 194 | <plugins> |
195 | 195 | <plugin> |
196 | 196 | <artifactId>maven-clean-plugin</artifactId> |
197 | | - <version>3.3.2</version> |
| 197 | + <version>3.4.1</version> |
198 | 198 | </plugin> |
199 | 199 | <!-- see |
200 | 200 | http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> |
|
204 | 204 | </plugin> |
205 | 205 | <plugin> |
206 | 206 | <artifactId>maven-compiler-plugin</artifactId> |
207 | | - <version>3.13.0</version> |
| 207 | + <version>3.14.0</version> |
208 | 208 | </plugin> |
209 | 209 | <plugin> |
210 | 210 | <artifactId>maven-surefire-plugin</artifactId> |
211 | | - <version>3.2.5</version> |
| 211 | + <version>3.5.2</version> |
212 | 212 | </plugin> |
213 | 213 | <plugin> |
214 | 214 | <artifactId>maven-install-plugin</artifactId> |
215 | | - <version>3.1.2</version> |
| 215 | + <version>3.1.4</version> |
216 | 216 | </plugin> |
217 | 217 | <plugin> |
218 | 218 | <artifactId>maven-deploy-plugin</artifactId> |
219 | | - <version>3.1.2</version> |
| 219 | + <version>3.1.4</version> |
220 | 220 | </plugin> |
221 | 221 | <!-- site lifecycle, see |
222 | 222 | https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
223 | 223 | <plugin> |
224 | 224 | <artifactId>maven-site-plugin</artifactId> |
225 | | - <version>3.12.1</version> |
| 225 | + <version>3.21.0</version> |
226 | 226 | </plugin> |
227 | 227 | <plugin> |
228 | 228 | <artifactId>maven-project-info-reports-plugin</artifactId> |
229 | | - <version>3.5.0</version> |
| 229 | + <version>3.9.0</version> |
230 | 230 | </plugin> |
231 | 231 | </plugins> |
232 | 232 | </pluginManagement> |
|
0 commit comments