Skip to content

Commit df44438

Browse files
committed
Updated to Java 25
1 parent b72593f commit df44438

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up JDK
2525
uses: actions/setup-java@v4
2626
with:
27-
java-version: 21
27+
java-version: 25
2828
distribution: 'adopt'
2929
- name: OWASP Dependency Checks
3030
env:

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>1.0.0</version>
1010

1111
<properties>
12-
<maven.compiler.release>21</maven.compiler.release>
12+
<maven.compiler.release>25</maven.compiler.release>
1313

1414
<google-guava.version>33.5.0-jre</google-guava.version>
1515
<commons-collectiosns.version>4.5.0</commons-collectiosns.version>
@@ -145,6 +145,13 @@
145145
<version>3.14.1</version>
146146
<configuration>
147147
<release>${maven.compiler.release}</release>
148+
<annotationProcessorPaths>
149+
<path>
150+
<groupId>org.projectlombok</groupId>
151+
<artifactId>lombok</artifactId>
152+
<version>${lombok.version}</version>
153+
</path>
154+
</annotationProcessorPaths>
148155
</configuration>
149156
</plugin>
150157

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
package nl.rdb.java_examples;
22

3-
import lombok.extern.slf4j.Slf4j;
43
import nl.rdb.java_examples.scanner.ExampleScanner;
54

6-
@Slf4j
75
public class JavaExamples {
86

9-
public static void main(String[] args) {
7+
static void main() {
108
ExampleScanner.executeExamples();
119
}
1210
}

0 commit comments

Comments
 (0)