Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pipeline {
agent any

environment {
JDK_TOOL_NAME = 'JDK 11'
JDK_TOOL_NAME = 'JDK 21'
MAVEN_TOOL_NAME = 'Maven 3.9.9'
}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Maven by running:
$ sudo apt-get install maven
```

ModifiableVariable currently needs Java JDK 11 to run. If you have the correct Java version you can install
ModifiableVariable currently needs Java JDK 21 to run. If you have the correct Java version you can install
ModifiableVariable as follows.

```bash
Expand All @@ -30,7 +30,7 @@ If you want to use this project as a dependency, you do not have to compile it y
<dependency>
<groupId>de.rub.nds</groupId>
<artifactId>modifiable-variable</artifactId>
<version>4.0.0</version>
<version>5.0.0</version>
</dependency>
```

Expand Down
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<!-- The following variables are required for Jenkins CI -->
<skipTests>false</skipTests>
<skip.surefire.tests>${skipTests}</skip.surefire.tests>
Expand Down Expand Up @@ -116,7 +116,7 @@
<spacesPerTab>4</spacesPerTab>
</indent>
<googleJavaFormat>
<version>1.16.0</version>
<version>1.25.2</version>
<style>AOSP</style>
</googleJavaFormat>
<licenseHeader>
Expand Down Expand Up @@ -156,6 +156,9 @@
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<compilerArgs>
<compilerArg>-proc:full</compilerArg>
</compilerArgs>
</configuration>
</plugin>
<!-- Execute unit tests -->
Expand Down
Loading