This is an automated email from the ASF dual-hosted git repository. dblevins pushed a commit to branch jakartaee9-tck in repository https://gitbox.apache.org/repos/asf/tomee-tck.git
commit 7632d13b977098f8228bbfcd0ebab3b849447911 Author: David Blevins <[email protected]> AuthorDate: Fri Mar 12 17:12:33 2021 -0800 Profile to switch to the Jakarta EE 9.1 TCK --- pom.xml | 19 +++++++++++++++++++ runtests | 4 ++++ 2 files changed, 23 insertions(+) diff --git a/pom.xml b/pom.xml index fd9fbf6..e92959b 100644 --- a/pom.xml +++ b/pom.xml @@ -640,6 +640,25 @@ </plugins> </build> </profile> + + <profile> + <id>jakartaee-9.1</id> + + <activation> + <property> + <name>jakartaee</name> + <value>9.1</value> + </property> + </activation> + + <properties> + <cts.home>${jakartaee91.cts.home}</cts.home> + <ri.home>${jakartaee91.ri.home}</ri.home> + <tck.version>9.1</tck.version> + </properties> + + </profile> + </profiles> <build> diff --git a/runtests b/runtests index d7807c4..7e60be8 100755 --- a/runtests +++ b/runtests @@ -176,6 +176,10 @@ processOptions() { appendArgs "-Dinterop=true" ;; + --ee91) + appendArgs "-Djakartaee=9.1" + ;; + --reverse) appendArgs "-Dreverse=true" ;;
