You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2018/10/07 21:21:16 UTC

svn commit: r1843089 - in /webservices/axiom/trunk/systests/wildfly-tests: pom.xml src/test/conf/standalone.xml

Author: veithen
Date: Sun Oct  7 21:21:16 2018
New Revision: 1843089

URL: http://svn.apache.org/viewvc?rev=1843089&view=rev
Log:
Fix wildfly-tests on Java 9.

Modified:
    webservices/axiom/trunk/systests/wildfly-tests/pom.xml
    webservices/axiom/trunk/systests/wildfly-tests/src/test/conf/standalone.xml

Modified: webservices/axiom/trunk/systests/wildfly-tests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/wildfly-tests/pom.xml?rev=1843089&r1=1843088&r2=1843089&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/wildfly-tests/pom.xml (original)
+++ webservices/axiom/trunk/systests/wildfly-tests/pom.xml Sun Oct  7 21:21:16 2018
@@ -32,7 +32,7 @@
     <name>Wildfly Tests</name>
 
     <properties>
-        <wildfly.version>8.2.1.Final</wildfly.version>
+        <wildfly.version>14.0.1.Final</wildfly.version>
         <wildfly.home>${project.build.directory}/wildfly-${wildfly.version}</wildfly.home>
         <hermeticTests>false</hermeticTests>
     </properties>
@@ -52,13 +52,13 @@
         <dependency>
             <groupId>org.jboss.arquillian.junit</groupId>
             <artifactId>arquillian-junit-container</artifactId>
-            <version>1.1.2.Final-wildfly-1</version>
+            <version>1.1.13.Final</version>
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.wildfly</groupId>
+            <groupId>org.wildfly.arquillian</groupId>
             <artifactId>wildfly-arquillian-container-managed</artifactId>
-            <version>${wildfly.version}</version>
+            <version>2.1.1.Final</version>
             <scope>test</scope>
         </dependency>
     </dependencies>

Modified: webservices/axiom/trunk/systests/wildfly-tests/src/test/conf/standalone.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/wildfly-tests/src/test/conf/standalone.xml?rev=1843089&r1=1843088&r2=1843089&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/wildfly-tests/src/test/conf/standalone.xml (original)
+++ webservices/axiom/trunk/systests/wildfly-tests/src/test/conf/standalone.xml Sun Oct  7 21:21:16 2018
@@ -39,7 +39,6 @@
         <extension module="org.jboss.as.transactions"/>
         <extension module="org.jboss.as.webservices"/>
         <extension module="org.jboss.as.weld"/>
-        <extension module="org.wildfly.extension.batch"/>
         <extension module="org.wildfly.extension.io"/>
         <extension module="org.wildfly.extension.undertow"/>
     </extensions>
@@ -140,15 +139,6 @@
                 <pattern-formatter pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n"/>
             </formatter>
         </subsystem>
-        <subsystem xmlns="urn:jboss:domain:batch:1.0">
-            <job-repository>
-                <in-memory/>
-            </job-repository>
-            <thread-pool>
-                <max-threads count="10"/>
-                <keepalive-time time="30" unit="seconds"/>
-            </thread-pool>
-        </subsystem>
         <subsystem xmlns="urn:jboss:domain:deployment-scanner:2.0">
             <deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" runtime-failure-causes-rollback="${jboss.deployment.scanner.rollback.on.failure:false}"/>
         </subsystem>