summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2026-01-17 19:33:21 +0200
committerGravatar Uko Kokņevičs2026-01-17 19:33:21 +0200
commitb5240cad7168a961ca01df44f8722c007a0685af (patch)
tree4cbab01d204c2d2bdad09f433201892b1278ac90 /pom.xml
parentChange the maven wrapper to download from my mirror (diff)
downloadlv.enes:parent-b5240cad7168a961ca01df44f8722c007a0685af.tar.gz
lv.enes:parent-b5240cad7168a961ca01df44f8722c007a0685af.tar.xz
lv.enes:parent-b5240cad7168a961ca01df44f8722c007a0685af.zip
Add modernizer
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index c7a1057..490a23b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -81,6 +81,7 @@
81 <logback.version>1.5.24</logback.version> 81 <logback.version>1.5.24</logback.version>
82 <lombok.version>1.18.42</lombok.version> 82 <lombok.version>1.18.42</lombok.version>
83 <lwjgl.version>3.3.6</lwjgl.version> 83 <lwjgl.version>3.3.6</lwjgl.version>
84 <modernizer.version>3.2.0</modernizer.version>
84 <netty.version>4.2.9.Final</netty.version> 85 <netty.version>4.2.9.Final</netty.version>
85 <picocli.version>4.7.7</picocli.version> 86 <picocli.version>4.7.7</picocli.version>
86 <plugin-annotations.version>3.15.2</plugin-annotations.version> 87 <plugin-annotations.version>3.15.2</plugin-annotations.version>
@@ -246,6 +247,11 @@
246 <version>${jansi.version}</version> 247 <version>${jansi.version}</version>
247 </dependency> 248 </dependency>
248 <dependency> 249 <dependency>
250 <groupId>org.gaul</groupId>
251 <artifactId>modernizer-maven-annotations</artifactId>
252 <version>${modernizer.version}</version>
253 </dependency>
254 <dependency>
249 <groupId>org.jline</groupId> 255 <groupId>org.jline</groupId>
250 <artifactId>jline</artifactId> 256 <artifactId>jline</artifactId>
251 <version>${jline.version}</version> 257 <version>${jline.version}</version>
@@ -288,6 +294,11 @@
288 294
289 <!-- provided scope --> 295 <!-- provided scope -->
290 <dependency> 296 <dependency>
297 <groupId>org.gaul</groupId>
298 <artifactId>modernizer-maven-annotations</artifactId>
299 <scope>provided</scope>
300 </dependency>
301 <dependency>
291 <groupId>org.projectlombok</groupId> 302 <groupId>org.projectlombok</groupId>
292 <artifactId>lombok</artifactId> 303 <artifactId>lombok</artifactId>
293 <scope>provided</scope> 304 <scope>provided</scope>
@@ -523,6 +534,14 @@
523 </configuration> 534 </configuration>
524 </plugin> 535 </plugin>
525 <plugin> 536 <plugin>
537 <groupId>org.gaul</groupId>
538 <artifactId>modernizer-maven-plugin</artifactId>
539 <version>${modernizer.version}</version>
540 <configuration>
541 <javaVersion>${java.version}</javaVersion>
542 </configuration>
543 </plugin>
544 <plugin>
526 <groupId>org.jacoco</groupId> 545 <groupId>org.jacoco</groupId>
527 <artifactId>jacoco-maven-plugin</artifactId> 546 <artifactId>jacoco-maven-plugin</artifactId>
528 <version>${jacoco-plugin.version}</version> 547 <version>${jacoco-plugin.version}</version>
@@ -625,6 +644,20 @@
625 </plugin> 644 </plugin>
626 645
627 <plugin> 646 <plugin>
647 <groupId>org.gaul</groupId>
648 <artifactId>modernizer-maven-plugin</artifactId>
649 <executions>
650 <execution>
651 <id>modernizer</id>
652 <phase>verify</phase>
653 <goals>
654 <goal>modernizer</goal>
655 </goals>
656 </execution>
657 </executions>
658 </plugin>
659
660 <plugin>
628 <groupId>org.jacoco</groupId> 661 <groupId>org.jacoco</groupId>
629 <artifactId>jacoco-maven-plugin</artifactId> 662 <artifactId>jacoco-maven-plugin</artifactId>
630 <executions> 663 <executions>