This is an automated email from the ASF dual-hosted git repository. struberg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/deltaspike.git
commit 1123a239d93e91d1fe0d46fec8784acd224e9c6d Author: Mark Struberg <[email protected]> AuthorDate: Sat Jul 9 23:40:14 2022 +0200 fix ee container setup --- deltaspike/buildall.sh | 4 ++-- deltaspike/modules/data/impl/pom.xml | 2 +- deltaspike/modules/data/test-ee7/pom.xml | 2 +- deltaspike/parent/code/pom.xml | 1 + 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/deltaspike/buildall.sh b/deltaspike/buildall.sh index bef82e2c..d93ffa7b 100755 --- a/deltaspike/buildall.sh +++ b/deltaspike/buildall.sh @@ -34,10 +34,10 @@ mvn clean install -Ptomee-build-managed -Dtomee.version=1.7.5 -Dopenejb.version= # mvn clean install -Pjbossas-build-managed-7 | tee mvn-jbossas_7.log # CDI-1.2, EE7 -mvn clean install -POWB15,OpenEJB-TomEE -Dowb.version=1.7.5 -Dopenejb.owb.version=1.7.5 -Dopenejb.version=7.0.5 | tee mvn-owb1.7.5.log +mvn clean install -POWB15 -Dowb.version=1.7.5 -Dopenejb.owb.version=1.7.5 -Dopenejb.version=7.0.5 | tee mvn-owb1.7.5.log mvn clean install -PWeld2 -Dweld.version=2.4.6.Final | tee mvn-weld2_4_6.log mvn clean install -Pwildfly-build-managed | tee mvn-wildfly9.log -mvn clean install -Ptomee7-build-managed,OpenEJB-TomEE -Dtomee.version=7.0.4 -Dopenejb.version=7.0.4 -Dopenejb.owb.version=1.7.4 | tee mvn-tomee_7_0_4.log +mvn clean install -Ptomee7-build-managed -Dtomee.version=7.1.4 -Dopenejb.version=7.1.4 -Dopenejb.owb.version=1.7.6 | tee mvn-tomee_7_1.4.log # CDI-2.0, EE8 diff --git a/deltaspike/modules/data/impl/pom.xml b/deltaspike/modules/data/impl/pom.xml index 642262cb..861e68fe 100755 --- a/deltaspike/modules/data/impl/pom.xml +++ b/deltaspike/modules/data/impl/pom.xml @@ -56,7 +56,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <argLine>-Xms128m -Xmx1024m -XX:MaxPermSize=256m</argLine> + <argLine>-Xms128m -Xmx1024m</argLine> </configuration> </plugin> </plugins> diff --git a/deltaspike/modules/data/test-ee7/pom.xml b/deltaspike/modules/data/test-ee7/pom.xml index 2e825f1b..d489097d 100644 --- a/deltaspike/modules/data/test-ee7/pom.xml +++ b/deltaspike/modules/data/test-ee7/pom.xml @@ -43,7 +43,7 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> - <argLine>-Xms128m -Xmx1024m -XX:MaxPermSize=256m</argLine> + <argLine>-Xms128m -Xmx1024m</argLine> </configuration> </plugin> </plugins> diff --git a/deltaspike/parent/code/pom.xml b/deltaspike/parent/code/pom.xml index 7cb4f9b0..46074e9d 100644 --- a/deltaspike/parent/code/pom.xml +++ b/deltaspike/parent/code/pom.xml @@ -1513,6 +1513,7 @@ there are currently issues with arquillian. if a test isn't restricted to an environment, no category is used for the test-class. --> <excludedGroups> + org.apache.deltaspike.test.category.EnterpriseArchiveProfileCategory, org.apache.deltaspike.test.category.FullProfileCategory, org.apache.deltaspike.test.category.SeCategory </excludedGroups>
