-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from jhanders34/jhanders34-branch
Update dependencies for Jakarta EE 11 TCK
- Loading branch information
Showing
12 changed files
with
55 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
# Arquillian support Liberty user feature with Jakarta EE 9 and 10 | ||
# Arquillian support Liberty user feature with Jakarta EE 9, 10 and 11 | ||
|
||
A Liberty user feature which allows deployment exceptions to be reported more reliably when using the Liberty Managed Jakarta container. | ||
|
||
The Arquillian support feature adds an additional http endpoint which the Arquillian container can query to determine the cause when an application fails to start. | ||
|
||
It is only for supporting the running of Arquillian tests and must not be installed on a production system. | ||
|
||
Requires Jakarta EE 9 or 10. For Java EE 8 projects and below, check out the documentation [here](README.md). | ||
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 | ||
|
||
|
@@ -19,7 +21,7 @@ Example: | |
<dependency> | ||
<groupId>io.openliberty.arquillian</groupId> | ||
<artifactId>arquillian-liberty-support-jakarta</artifactId> | ||
<version>2.1.3</version> | ||
<version>3.0.0</version> | ||
</dependency> | ||
</dependencies> | ||
<plugin> | ||
|
@@ -40,7 +42,7 @@ Example: | |
<artifactItem> | ||
<groupId>io.openliberty.arquillian</groupId> | ||
<artifactId>arquillian-liberty-support-jakarta</artifactId> | ||
<version>2.1.3</version> | ||
<version>3.0.0</version> | ||
<type>zip</type> | ||
<classifier>feature</classifier> | ||
<overWrite>false</overWrite> | ||
|
@@ -50,12 +52,12 @@ Example: | |
</configuration> | ||
</plugin> | ||
``` | ||
Then add `<feature>usr:arquillian-support-jakarta-2.1</feature>` to the `<featureManager>` section of your `server.xml`. | ||
Then add `<feature>usr:arquillian-support-jakarta-3.0</feature>` to the `<featureManager>` section of your `server.xml`. | ||
``` | ||
<featureManager> | ||
<feature>pages-3.0</feature> | ||
<feature>localConnector-1.0</feature> | ||
<feature>usr:arquillian-support-jakarta-2.1</feature> | ||
<feature>usr:arquillian-support-jakarta-3.0</feature> | ||
</featureManager> | ||
``` | ||
|
||
|
@@ -67,12 +69,12 @@ git clone [email protected]:OpenLiberty/liberty-arquillian.git | |
mvn install | ||
``` | ||
2. Extract the arquillian-liberty-support-jakarta-x.x.x-feature.zip into the `usr` directory of your Liberty runtime | ||
3. Add `<feature>usr:arquillian-support-jakarta-2.1</feature>` to the `<featureManager>` section of your `server.xml` | ||
3. Add `<feature>usr:arquillian-support-jakarta-3.0</feature>` to the `<featureManager>` section of your `server.xml` | ||
|
||
``` | ||
<featureManager> | ||
<feature>pages-3.0</feature> | ||
<feature>localConnector-1.0</feature> | ||
<feature>usr:arquillian-support-jakarta-2.1</feature> | ||
<feature>usr:arquillian-support-jakarta-3.0</feature> | ||
</featureManager> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters