Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for JDK 21 #243

Merged
merged 3 commits into from
Sep 11, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
java: [ 11, 17 ]
java: [ 11, 17, 21 ]
fail-fast: false
name: Non-elytron tests on JDK ${{ matrix.java }} - default WildFly profile
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
java: [ 11, 17 ]
java: [ 11, 17, 21 ]
fail-fast: false
name: Elytron tests on JDK ${{ matrix.java }} - default WildFly profile
steps:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## 2.0.3 (not yet released)

- added support for WildFly 28 - 30
- upgraded groovy to 4.0.22
- added JDK 21 CI

## 2.0.2 (2023-01-18)

Expand Down
4 changes: 2 additions & 2 deletions commands/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
</dependency>

<dependency>
<groupId>org.codehaus.groovy</groupId>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-xml</artifactId>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* <li>undefined value - current value will be undefined</li>
* </ul>
*/
final class Attribute<T> {
public final class Attribute<T> {
private final T value;
private final boolean isToUndefine;

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
<version.com.puppycrawl.tools.checkstyle>9.3</version.com.puppycrawl.tools.checkstyle>
<version.junit.junit>4.13.2</version.junit.junit>

<version.org.apache.groovy.groovy-everything>4.0.22</version.org.apache.groovy.groovy-everything>
<version.org.apache.httpcomponents.httpclient>4.5.13</version.org.apache.httpcomponents.httpclient>
<version.org.apache.maven.plugins.maven-antrun-plugin>3.1.0</version.org.apache.maven.plugins.maven-antrun-plugin>
<version.org.apache.maven.plugins.maven-checkstyle-plugin>3.3.0</version.org.apache.maven.plugins.maven-checkstyle-plugin>
Expand All @@ -90,7 +91,6 @@
<version.org.apache.maven.plugins.maven-source-plugin>3.3.0</version.org.apache.maven.plugins.maven-source-plugin>
<version.org.apache.maven.plugins.maven-surefire-plugin>3.1.2</version.org.apache.maven.plugins.maven-surefire-plugin>
<version.org.bouncycastle>1.74</version.org.bouncycastle>
<version.org.codehaus.groovy.groovy-everything>3.0.9</version.org.codehaus.groovy.groovy-everything>
<version.org.codehaus.mojo.codenarc-maven-plugin>0.22-1</version.org.codehaus.mojo.codenarc-maven-plugin>
<version.com.github.spotbugs.spotbugs-maven-plugin>4.7.3.5</version.com.github.spotbugs.spotbugs-maven-plugin>
<version.org.hamcrest.hamcrest-core>2.2</version.org.hamcrest.hamcrest-core>
Expand Down Expand Up @@ -131,14 +131,14 @@
<version>${version.org.apache.httpcomponents.httpclient}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>${version.org.codehaus.groovy.groovy-everything}</version>
<version>${version.org.apache.groovy.groovy-everything}</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-xml</artifactId>
<version>${version.org.codehaus.groovy.groovy-everything}</version>
<version>${version.org.apache.groovy.groovy-everything}</version>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
Expand Down
Loading