Skip to content

Commit

Permalink
Update to drop Java 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jhanders34 committed Oct 15, 2024
1 parent a5b64fe commit 25ea26b
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@ jobs:
max-parallel: 7
matrix:
os: [ubuntu-latest, windows-latest]
java: [8, 11, 17]
java: [11, 17, 21]
runtime: [ol, wlp-ee9, wlp-ee10]
runtime_version: [24.0.0.9]
exclude:
- java: 8
runtime: wlp-ee10

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions liberty-managed/JakartaEE9_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This `DeployableContainer` has been tested with the latest release of Open Liber

For Java EE 8 projects and below, check out the documentation [here](README.md).

For Jakarta EE 9 projects using Java SE 8, you will need to use the 2.x versions of the Liberty Arquillian plugin.

**Prerequisite Configuration**

The following features are required in the `server.xml` of the Liberty server.
Expand Down
2 changes: 1 addition & 1 deletion liberty-managed/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-parent-liberty-jakarta</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 2 additions & 0 deletions liberty-remote/JakartaEE9_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This `DeployableContainer` has been tested with the latest release of Open Liber

For Java EE 8 projects and below, check out the documentation [here](README.md).

For Jakarta EE 9 projects using Java SE 8, you will need to use the 2.x versions of the Liberty Arquillian plugin.

**Prerequisite Configuration**

The following features are required in the `server.xml` of the Liberty server.
Expand Down
2 changes: 1 addition & 1 deletion liberty-remote/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-parent-liberty-jakarta</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>arquillian-liberty-remote-jakarta</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions liberty-support-feature/JakartaEE9_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ It is only for supporting the running of Arquillian tests and must not be instal

Requires Jakarta EE 9, 10 or 11. For Java EE 8 projects and below, check out the documentation [here](README.md).

For Jakarta EE 9 projects using Java SE 8, you will need to use the 2.x versions of the Liberty Arquillian plugin.

## Configuring with a Maven project

You can install the arquillian-liberty-support-jakarta feature as part of a maven build using the [maven-dependency-plugin:unpack goal](https://maven.apache.org/plugins/maven-dependency-plugin/unpack-mojo.html).
Expand Down
6 changes: 3 additions & 3 deletions liberty-support-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-parent-liberty-jakarta</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>3.5.0</version>
<version>6.4.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -124,4 +124,4 @@
</dependencies>


</project>
</project>
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!-- Artifact Configuration -->
<groupId>io.openliberty.arquillian</groupId>
<artifactId>arquillian-parent-liberty-jakarta</artifactId>
<version>3.0-SNAPSHOT</version>
<version>3.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Arquillian Container Liberty Jakarta Parent</name>
<description>Jakarta Liberty Container integrations for the Arquillian Project</description>
Expand Down Expand Up @@ -43,8 +43,9 @@
<version.surefire.plugin>3.2.5</version.surefire.plugin>

<!-- override from parent -->
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down

0 comments on commit 25ea26b

Please sign in to comment.