BAEL-3265: Properly set non-default port for the managed WildFly (#9630)
* BAEL-3265: Change the default port number * BAEL-3265: Properly set non-default port for the managed WildFly instance
This commit is contained in:
parent
c0d79a157a
commit
3d220068f3
@ -274,10 +274,6 @@
|
|||||||
<activation>
|
<activation>
|
||||||
<activeByDefault>true</activeByDefault>
|
<activeByDefault>true</activeByDefault>
|
||||||
</activation>
|
</activation>
|
||||||
<properties>
|
|
||||||
<serverProfile>standalone-full.xml</serverProfile>
|
|
||||||
<serverRoot>${project.build.directory}/wildfly-${wildfly.version}</serverRoot>
|
|
||||||
</properties>
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.undertow</groupId>
|
<groupId>io.undertow</groupId>
|
||||||
@ -347,15 +343,6 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<version>${maven-surefire-plugin.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<environmentVariables>
|
|
||||||
<JBOSS_HOME>${project.build.directory}/wildfly-${wildfly.version}</JBOSS_HOME>
|
|
||||||
</environmentVariables>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
23
jee-7/src/test/resources/arquillian.xml
Normal file
23
jee-7/src/test/resources/arquillian.xml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<arquillian xmlns="http://jboss.org/schema/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
|
||||||
|
|
||||||
|
<container qualifier="wildfly-managed" default="true">
|
||||||
|
<configuration>
|
||||||
|
<property name="jbossHome">target/wildfly-8.2.1.Final</property>
|
||||||
|
<property name="serverConfig">standalone.xml</property>
|
||||||
|
<property name="outputToConsole">true</property>
|
||||||
|
<property name="managementPort">9990</property>
|
||||||
|
<property name="javaVmArguments">-Djboss.http.port=8639</property>
|
||||||
|
</configuration>
|
||||||
|
</container>
|
||||||
|
|
||||||
|
<container qualifier="wildfly-remote">
|
||||||
|
<configuration>
|
||||||
|
<property name="managementAddress">127.0.0.1</property>
|
||||||
|
<property name="managementPort">9990</property>
|
||||||
|
<property name="username">admin</property>
|
||||||
|
<property name="password">pass</property>
|
||||||
|
<property name="allowConnectingToRunningServer">true</property>
|
||||||
|
</configuration>
|
||||||
|
</container>
|
||||||
|
|
||||||
|
</arquillian>
|
Loading…
x
Reference in New Issue
Block a user