Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix management port mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Feb 13, 2015
1 parent 53ff007 commit d1d680d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions functional-test/pom.xml
Expand Up @@ -21,6 +21,8 @@
<!-- This may be changed by the JBOSS_HTTP_PORT profile -->
<!-- This needs to agree with the http socket-binding in standalone.xml -->
<cargo.servlet.port>8180</cargo.servlet.port>
<cargo.jboss.management-http.port>10090</cargo.jboss.management-http.port>
<cargo.jboss.management-native.port>10099</cargo.jboss.management-native.port>
<cargo.extract.dir>${project.build.directory}/cargo/installs</cargo.extract.dir>
<cargo.container.home>${project.build.directory}/jboss/container</cargo.container.home>
<context.path>zanata</context.path>
Expand Down Expand Up @@ -553,6 +555,8 @@
<configuration>
<properties>
<cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>
<cargo.jboss.management-http.port>${cargo.jboss.management-http.port}</cargo.jboss.management-http.port>
<cargo.jboss.management-native.port>${cargo.jboss.management-native.port}</cargo.jboss.management-native.port>
</properties>
</configuration>
<deployables>
Expand Down Expand Up @@ -627,6 +631,30 @@
</properties>
</profile>

<profile>
<id>JBOSS_MANAGEMENT_HTTP_PORT</id>
<activation>
<property>
<name>env.JBOSS_MANAGEMENT_HTTP_PORT</name>
</property>
</activation>
<properties>
<cargo.jboss.management-http.port>${env.JBOSS_MANAGEMENT_HTTP_PORT}</cargo.jboss.management-http.port>
</properties>
</profile>

<profile>
<id>JBOSS_MANAGEMENT_NATIVE_PORT</id>
<activation>
<property>
<name>env.JBOSS_MANAGEMENT_NATIVE_PORT</name>
</property>
</activation>
<properties>
<cargo.jboss.management-native.port>${env.JBOSS_MANAGEMENT_NATIVE_PORT}</cargo.jboss.management-native.port>
</properties>
</profile>

<profile>
<id>SMTP_PORT</id>
<activation>
Expand Down

0 comments on commit d1d680d

Please sign in to comment.