From d45b53b19405b586ef9ca6d1c7cbaf1f78e8f004 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:38:55 +0100 Subject: [PATCH 01/24] Cleanup duplicate dependency Signed-off-by: Andrew Pielage --- MicroProfile-OpenTracing/pom.xml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/MicroProfile-OpenTracing/pom.xml b/MicroProfile-OpenTracing/pom.xml index 6f9963e..95537b1 100644 --- a/MicroProfile-OpenTracing/pom.xml +++ b/MicroProfile-OpenTracing/pom.xml @@ -2,7 +2,7 @@ maven-failsafe-plugin - 3.0.0-M5 + 3.5.4 integration-test From 7064797ab3eadd0cfa4f33b1d40cd5cf8ac2ecf4 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:40:49 +0100 Subject: [PATCH 04/24] Update copyright Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 00f8bdc..fb2874b 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 6.2025.10-SNAPSHOT From 4a7d71e281dc651aa1e8447092a3e9c9a8540a0f Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:41:36 +0100 Subject: [PATCH 06/24] Update SLF4J to 1.7.36 Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b2dcc3..6d16aea 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ org.slf4j slf4j-jdk14 - 1.7.30 + 1.7.36 jakarta.enterprise From c2f925be37056f5739ea8473a3d3d475e12d27bf Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:42:12 +0100 Subject: [PATCH 07/24] Update Payara Arquillian to 3.1 Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6d16aea..954a014 100644 --- a/pom.xml +++ b/pom.xml @@ -59,7 +59,7 @@ 1.7.0.Alpha14 - 3.0.alpha8 + 3.1 2.1.5.payara-p2 From 1a2f2f166854213d04d5ccf3e581df0ce307c0a6 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:43:00 +0100 Subject: [PATCH 08/24] Update Arquillian to 1.7.2.Final Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 954a014..98dd440 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ 11 - 1.7.0.Alpha14 + 1.7.2.Final 3.1 From cbe62f32f357e5f1689eace3ab6b721b593e483f Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:43:11 +0100 Subject: [PATCH 09/24] Remove redundant profile Signed-off-by: Andrew Pielage --- pom.xml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pom.xml b/pom.xml index 98dd440..872b052 100644 --- a/pom.xml +++ b/pom.xml @@ -135,19 +135,6 @@ - - payara5plus - - - payara.version - - /(?!4).+/ - - - - MicroProfile-OpenTracing - - payara-server-managed From 50a32e25fdfa16fb3dbfe8ead0a41ebf3731b623 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 11:51:38 +0100 Subject: [PATCH 10/24] FISH-12300 First stab at Micro Platform Managed profile Signed-off-by: Andrew Pielage --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 872b052..8db44f0 100644 --- a/pom.xml +++ b/pom.xml @@ -239,6 +239,12 @@ + + payara-micro-platform + + -platform + + payara-micro-remote From f7b5b56eae7394b9db99d10c4d334b9bfb570f5c Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 14:26:45 +0100 Subject: [PATCH 11/24] FISH-12300 Use suffix system instead Signed-off-by: Andrew Pielage --- pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 8db44f0..7865e87 100644 --- a/pom.xml +++ b/pom.xml @@ -68,9 +68,10 @@ 4.0.4 - 6.2025.10-SNAPSHOT + 6.32.0-SNAPSHOT ${mptck.basedir}/target/payara6 - ${mptck.basedir}/target/payara-micro-${payara.version}.jar + + ${mptck.basedir}/target/payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar true domain1 @@ -215,12 +216,12 @@ fish.payara.extras - payara-micro + payara-micro${payara.micro.distribution.suffix} ${payara.version} false jar ${mptck.basedir}/target/ - payara-micro-${payara.version}.jar + payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar From 67c1367918a629e5eb75ee6d415888ded4d3db44 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 14:32:05 +0100 Subject: [PATCH 12/24] Use XML-Bind API version from BOM Signed-off-by: Andrew Pielage --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7865e87..6c1b223 100644 --- a/pom.xml +++ b/pom.xml @@ -311,7 +311,6 @@ jakarta.xml.bind jakarta.xml.bind-api - 4.0.0-RC2 jakarta.activation From 932c6038f4ae3560b852ef2156a0bd6666f1b84d Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 14:32:19 +0100 Subject: [PATCH 13/24] Use Activation API version from BOM Signed-off-by: Andrew Pielage --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c1b223..b68367a 100644 --- a/pom.xml +++ b/pom.xml @@ -315,7 +315,6 @@ jakarta.activation jakarta.activation-api - 2.1.0-RC1 From 15dfc525748d2a43609d29a7599caefec6a2816b Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 14:33:21 +0100 Subject: [PATCH 14/24] Use Jersey MP Rest client version from BOM Signed-off-by: Andrew Pielage --- MicroProfile-Rest-Client/tck-runners/pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/MicroProfile-Rest-Client/tck-runners/pom.xml b/MicroProfile-Rest-Client/tck-runners/pom.xml index f67b643..11628a8 100644 --- a/MicroProfile-Rest-Client/tck-runners/pom.xml +++ b/MicroProfile-Rest-Client/tck-runners/pom.xml @@ -149,7 +149,6 @@ org.glassfish.jersey.ext.microprofile jersey-mp-rest-client - ${jersey.version} test From d96de43141aae8a23e699d1962f199c374db440d Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 14:38:13 +0100 Subject: [PATCH 15/24] Remove redundant profile and property versions Use the version from the Payara BOM Signed-off-by: Andrew Pielage --- MicroProfile-Config/pom.xml | 2 -- MicroProfile-Metrics/pom.xml | 5 ----- pom.xml | 26 ++++---------------------- 3 files changed, 4 insertions(+), 29 deletions(-) diff --git a/MicroProfile-Config/pom.xml b/MicroProfile-Config/pom.xml index 9f700d6..005b8e5 100644 --- a/MicroProfile-Config/pom.xml +++ b/MicroProfile-Config/pom.xml @@ -61,7 +61,6 @@ false - 4.0.1 ${payara.home}/bin/asadmin @@ -90,7 +89,6 @@ jakarta.enterprise jakarta.enterprise.cdi-api - ${cdi.version} test diff --git a/MicroProfile-Metrics/pom.xml b/MicroProfile-Metrics/pom.xml index 2246166..a460f2b 100644 --- a/MicroProfile-Metrics/pom.xml +++ b/MicroProfile-Metrics/pom.xml @@ -58,10 +58,6 @@ 5.1.0.payara-p1 5.1.0.payara-p1 false - - - 4.0.1 - 4.0.0 @@ -110,7 +106,6 @@ jakarta.enterprise jakarta.enterprise.cdi-api - ${cdi.version} provided diff --git a/pom.xml b/pom.xml index b68367a..6f67c3a 100644 --- a/pom.xml +++ b/pom.xml @@ -61,11 +61,7 @@ 1.7.2.Final 3.1 - - 2.1.5.payara-p2 3.1.11.payara-p1 - 4.0.1 - 4.0.4 6.32.0-SNAPSHOT @@ -124,13 +120,15 @@ jakarta.enterprise jakarta.enterprise.cdi-api - ${cdi.version} provided jakarta.xml.bind jakarta.xml.bind-api - ${jaxb.version} + + + jakarta.activation + jakarta.activation-api @@ -302,22 +300,6 @@ - - jdk11 - - 11 - - - - jakarta.xml.bind - jakarta.xml.bind-api - - - jakarta.activation - jakarta.activation-api - - - parallel From a29838f75223fe287daa546daa977f784842ddf2 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:06:08 +0100 Subject: [PATCH 16/24] Rework profiles More closely aligns the config and profiles with that of the more up-to-date JakartaEE-10-TCK-Runners repo. Signed-off-by: Andrew Pielage --- MicroProfile-Config/pom.xml | 2 +- MicroProfile-OpenAPI/pom.xml | 2 +- MicroProfile-OpenTracing/pom.xml | 2 +- .../tck-runners/apache-http-client/pom.xml | 4 +- pom.xml | 195 +++++++----------- 5 files changed, 75 insertions(+), 130 deletions(-) diff --git a/MicroProfile-Config/pom.xml b/MicroProfile-Config/pom.xml index 005b8e5..9323a00 100644 --- a/MicroProfile-Config/pom.xml +++ b/MicroProfile-Config/pom.xml @@ -148,7 +148,7 @@ - + diff --git a/MicroProfile-OpenAPI/pom.xml b/MicroProfile-OpenAPI/pom.xml index 506263e..f9eae92 100644 --- a/MicroProfile-OpenAPI/pom.xml +++ b/MicroProfile-OpenAPI/pom.xml @@ -160,7 +160,7 @@ - + diff --git a/MicroProfile-OpenTracing/pom.xml b/MicroProfile-OpenTracing/pom.xml index 95537b1..432ee49 100644 --- a/MicroProfile-OpenTracing/pom.xml +++ b/MicroProfile-OpenTracing/pom.xml @@ -192,7 +192,7 @@ - + diff --git a/MicroProfile-Rest-Client/tck-runners/apache-http-client/pom.xml b/MicroProfile-Rest-Client/tck-runners/apache-http-client/pom.xml index 528819f..ff7a1d9 100644 --- a/MicroProfile-Rest-Client/tck-runners/apache-http-client/pom.xml +++ b/MicroProfile-Rest-Client/tck-runners/apache-http-client/pom.xml @@ -155,7 +155,7 @@ - + @@ -195,7 +195,7 @@ - + diff --git a/pom.xml b/pom.xml index 6f67c3a..3392eb7 100644 --- a/pom.xml +++ b/pom.xml @@ -63,13 +63,20 @@ 3.1.11.payara-p1 - + 6.32.0-SNAPSHOT - ${mptck.basedir}/target/payara6 - - ${mptck.basedir}/target/payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar + ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara7 + + -platform + -all + ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar true - domain1 + domain1 + + + false + ${skipTests} + ${skipTests} @@ -149,6 +156,11 @@ ${payara.arquillian.container.version} true + + fish.payara.distributions + payara${payara.server.distribution.suffix} + zip + @@ -163,6 +175,51 @@ + + + org.apache.maven.plugins + maven-dependency-plugin + + + unpack-server + + unpack + + pre-integration-test + false + + ${skipConfig} + + + fish.payara.distributions + payara${payara.server.distribution.suffix} + ${payara.version} + zip + true + ${maven.multiModuleProjectDirectory}${file.separator}target + + + + + + + + + maven-surefire-plugin + + + ${payara.home} + + + + + maven-failsafe-plugin + + + ${payara.home} + + + @@ -218,7 +275,7 @@ ${payara.version} false jar - ${mptck.basedir}/target/ + ${maven.multiModuleProjectDirectory}/target/ payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar @@ -239,9 +296,11 @@ - payara-micro-platform + web - -platform + -web + + -web @@ -274,7 +333,7 @@ fish.payara.extras - payara-embedded-all + payara-embedded${payara.embedded.distribution.suffix} ${payara.version} test @@ -347,79 +406,6 @@ - - full-distribution - - true - - - - - - - maven-dependency-plugin - - - process-test-resources - - unpack - - - ${mptck.basedir}/target - ${mptck.basedir}/target/dependency-maven-plugin-markers - - - fish.payara.distributions - payara - ${payara.version} - zip - false - ${mptck.basedir}/target - - - - - - - - - - - - web-distribution - - - - - - maven-dependency-plugin - - - process-test-resources - - unpack - - - ${mptck.basedir}/target - ${mptck.basedir}/target/dependency-maven-plugin-markers - - - fish.payara.distributions - payara-web - ${payara.version} - zip - false - ${mptck.basedir}/target - - - - - - - - - - @@ -525,47 +511,6 @@ maven-failsafe-plugin - - org.commonjava.maven.plugins - directory-maven-plugin - 0.3.1 - - - directories - - directory-of - - validate - - mptck.basedir - - fish.payara.microprofile - tck-suite-parent - - - - - - - org.codehaus.mojo - build-helper-maven-plugin - 3.2.0 - - - selectively-disable-tests - - regex-property - - - skipITs - ${project.artifactId} - (tck-suite-parent)|(parent)|(tck-arquillian-extension) - true - false - - - - @@ -592,8 +537,8 @@ ${payara.home} - ${payara.microJar} - ${mptck.basedir}/src/test/resources/arquillian.xml + ${payara.micro.jar} + ${maven.multiModuleProjectDirectory}/src/test/resources/arquillian.xml ${mptck.suite} From 152c8f04d33b94c4e236e4e4bc8e899eac88ee4c Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:07:14 +0100 Subject: [PATCH 17/24] Don't change payara version Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3392eb7..048b747 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ 3.1.11.payara-p1 - 6.32.0-SNAPSHOT + 6.2025.10-SNAPSHOT ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara7 -platform From 0b594c8f9787c0e54c4046615f8ed6c7719d73da Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:15:32 +0100 Subject: [PATCH 18/24] Cleanup copy-paste errors Signed-off-by: Andrew Pielage --- pom.xml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 048b747..57583ad 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ 3.1.11.payara-p1 - 6.2025.10-SNAPSHOT + 6.32.0-SNAPSHOT ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara7 -platform @@ -164,14 +164,12 @@ - - maven-dependency-plugin - maven-failsafe-plugin payara-server-managed + ${payara.home} @@ -206,14 +204,7 @@ maven-surefire-plugin - - - ${payara.home} - - - - - maven-failsafe-plugin + 3.5.4 ${payara.home} From 992bce0deb642c2966ed22d72d0136a0bf59c523 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:19:18 +0100 Subject: [PATCH 19/24] Remove old unused dependency Signed-off-by: Andrew Pielage --- pom.xml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pom.xml b/pom.xml index 57583ad..bbd3975 100644 --- a/pom.xml +++ b/pom.xml @@ -433,18 +433,6 @@ - - fish.payara.arquillian - payara-client-ee7 - ${payara.arquillian.container.version} - test - - - org.eclipse - yasson - - - fish.payara.arquillian environment-setup From dc10ecf541446872c3fe40c8497de4ada0d6094c Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:25:52 +0100 Subject: [PATCH 20/24] Reintroduce build helper, and fix payara.home Signed-off-by: Andrew Pielage --- pom.xml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bbd3975..b394c8a 100644 --- a/pom.xml +++ b/pom.xml @@ -65,7 +65,7 @@ 6.32.0-SNAPSHOT - ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara7 + ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara6 -platform -all @@ -490,6 +490,26 @@ maven-failsafe-plugin + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + selectively-disable-tests + + regex-property + + + skipITs + ${project.artifactId} + (tck-suite-parent)|(parent)|(tck-arquillian-extension) + true + false + + + + From a39e794777883cd9ae9dbe2de07206a727a706a8 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:27:19 +0100 Subject: [PATCH 21/24] Don't change payara.version Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b394c8a..a11cb6b 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ 3.1.11.payara-p1 - 6.32.0-SNAPSHOT + 6.2025.10-SNAPSHOT ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara6 -platform From 2f4cae545f1eff1610e349dab0dc1ae7f83063f1 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:33:17 +0100 Subject: [PATCH 22/24] Fix dependency groupId Signed-off-by: Andrew Pielage --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a11cb6b..1ce2152 100644 --- a/pom.xml +++ b/pom.xml @@ -329,7 +329,7 @@ test - org.glassfish + org.eclipse.parsson jakarta.json test From 89d352acfb8fb3ff12e6e4b493c973c1376f8fa3 Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 15:36:51 +0100 Subject: [PATCH 23/24] Align repositories with main Payara codebase Signed-off-by: Andrew Pielage --- pom.xml | 134 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 133 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1ce2152..3da440b 100644 --- a/pom.xml +++ b/pom.xml @@ -77,6 +77,9 @@ false ${skipTests} ${skipTests} + + false + false @@ -557,10 +560,33 @@ + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + + true + + + false + + + + ossrh-snapshots + Sonatype OSSRH Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + payara-nexus-artifacts - Payara Nexus Artifacts https://nexus.dev.payara.fish/repository/payara-artifacts true @@ -569,5 +595,111 @@ false + + payara-nexus-enterprise-artifacts + https://nexus.dev.payara.fish/repository/payara-enterprise-artifacts-private + + true + + + false + + + + payara-nexus-enterprise-distributions + https://nexus.dev.payara.fish/repository/payara-enterprise + + true + + + false + + + + payara-nexus-enterprise-snapshots + https://nexus.dev.payara.fish/repository/payara-enterprise-snapshots-private + + false + + + true + + + + payara-nexus-snapshots + https://nexus.dev.payara.fish/repository/payara-snapshots + + false + + + true + + + + payara-nexus-staging + https://nexus.dev.payara.fish/repository/payara-staging + + ${payara-nexus-staging.repo.releases.enabled} + + + ${payara-nexus-staging.repo.snapshots.enabled} + + + + + + + central + Central Repository + https://repo.maven.apache.org/maven2 + + true + + + false + + + + ossrh-snapshots + Sonatype OSSRH Snapshot Repository + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + payara-nexus-artifacts + https://nexus.dev.payara.fish/repository/payara-artifacts + + true + + + false + + + + payara-nexus-snapshots + https://nexus.dev.payara.fish/repository/payara-snapshots + + false + + + true + + + + payara-nexus-staging + https://nexus.dev.payara.fish/repository/payara-staging + + ${payara-nexus-staging.repo.releases.enabled} + + + ${payara-nexus-staging.repo.snapshots.enabled} + + + From 017ec389182d8d9ccc2dac7337899e6baa58d8ec Mon Sep 17 00:00:00 2001 From: Andrew Pielage Date: Thu, 16 Oct 2025 17:13:32 +0100 Subject: [PATCH 24/24] Rename micro.randomPort and only activate when using parallel profile Signed-off-by: Andrew Pielage --- MicroProfile-Config/pom.xml | 2 +- MicroProfile-JWT-Auth/tck-runner/pom.xml | 2 +- MicroProfile-Metrics/pom.xml | 2 +- MicroProfile-Rest-Client/tck-runners/pom.xml | 2 +- pom.xml | 5 +++-- src/test/resources/arquillian.xml | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/MicroProfile-Config/pom.xml b/MicroProfile-Config/pom.xml index 9323a00..cd39741 100644 --- a/MicroProfile-Config/pom.xml +++ b/MicroProfile-Config/pom.xml @@ -58,7 +58,7 @@ 3.1 3.1 ${basedir}/src/test/resources/tck-suite.xml - false + false ${payara.home}/bin/asadmin diff --git a/MicroProfile-JWT-Auth/tck-runner/pom.xml b/MicroProfile-JWT-Auth/tck-runner/pom.xml index 7192935..b92bfe0 100644 --- a/MicroProfile-JWT-Auth/tck-runner/pom.xml +++ b/MicroProfile-JWT-Auth/tck-runner/pom.xml @@ -53,7 +53,7 @@ ${basedir}/src/test/resources/base-tck-suite.xml - false + false diff --git a/MicroProfile-Metrics/pom.xml b/MicroProfile-Metrics/pom.xml index a460f2b..5359cce 100644 --- a/MicroProfile-Metrics/pom.xml +++ b/MicroProfile-Metrics/pom.xml @@ -57,7 +57,7 @@ 5.1.0.payara-p1 5.1.0.payara-p1 - false + false diff --git a/MicroProfile-Rest-Client/tck-runners/pom.xml b/MicroProfile-Rest-Client/tck-runners/pom.xml index 11628a8..695db4b 100644 --- a/MicroProfile-Rest-Client/tck-runners/pom.xml +++ b/MicroProfile-Rest-Client/tck-runners/pom.xml @@ -55,7 +55,7 @@ MicroProfile Rest Client TCK Runners - Parent - false + false 2.7.0 diff --git a/pom.xml b/pom.xml index 3da440b..5c80850 100644 --- a/pom.xml +++ b/pom.xml @@ -70,7 +70,7 @@ -platform -all ${maven.multiModuleProjectDirectory}${file.separator}target${file.separator}payara-micro${payara.micro.distribution.suffix}-${payara.version}.jar - true + false domain1 @@ -282,7 +282,7 @@ payara-micro-managed - ${micro.randomPort} + ${micro.random.port} @@ -357,6 +357,7 @@ parallel 4 + true diff --git a/src/test/resources/arquillian.xml b/src/test/resources/arquillian.xml index a0df545..dcb7002 100644 --- a/src/test/resources/arquillian.xml +++ b/src/test/resources/arquillian.xml @@ -6,8 +6,8 @@ - ${micro.randomPort} - ${micro.randomPort} + ${micro.random.port} + ${micro.random.port} -Dconfig_ordinal=120