Author: thomas.diesler(a)jboss.com
Date: 2008-04-24 04:13:02 -0400 (Thu, 24 Apr 2008)
New Revision: 6648
Modified:
stack/cxf/trunk/.classpath
stack/cxf/trunk/modules/testsuite/pom.xml
Log:
command line cannot overwrite pom properties
http://jira.codehaus.org/browse/MNG-3546
Modified: stack/cxf/trunk/.classpath
===================================================================
--- stack/cxf/trunk/.classpath 2008-04-24 06:49:47 UTC (rev 6647)
+++ stack/cxf/trunk/.classpath 2008-04-24 08:13:02 UTC (rev 6648)
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src"
path="modules/server/src/main/java"/>
+ <classpathentry kind="src"
path="modules/testsuite/framework-tests/src/test/java"/>
+ <classpathentry kind="src"
path="modules/testsuite/cxf-tests/src/test/java"/>
<classpathentry kind="src"
path="modules/client/src/main/java"/>
<classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con"
path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
Modified: stack/cxf/trunk/modules/testsuite/pom.xml
===================================================================
--- stack/cxf/trunk/modules/testsuite/pom.xml 2008-04-24 06:49:47 UTC (rev 6647)
+++ stack/cxf/trunk/modules/testsuite/pom.xml 2008-04-24 08:13:02 UTC (rev 6648)
@@ -15,7 +15,6 @@
<!-- Properties -->
<properties>
- <jboss.bind.address>localhost</jboss.bind.address>
<surefire.jdpw.args>-Xdebug -Xnoagent -Djava.compiler=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdpw.args>
<surefire.jvm.args>-Djava.security.manager
-Djava.security.policy=src/test/etc/tst.policy</surefire.jvm.args>
</properties>
@@ -145,6 +144,11 @@
<!-- Profiles -->
<profiles>
+
+ <!--
+ Name: jboss422
+ Descr: JBoss-4.2.2 specific options
+ -->
<profile>
<id>jboss422</id>
<properties>
@@ -173,6 +177,25 @@
</plugins>
</build>
</profile>
+
+ <!--
+ Name: no-jboss-bind-address
+ Descr: Set the default jboss.bind.address
+
+ command line cannot overwrite pom properties
+
http://jira.codehaus.org/browse/MNG-3546
+ -->
+ <profile>
+ <id>no-jboss-bind-address</id>
+ <activation>
+ <property>
+ <name>!jboss.bind.address</name>
+ </property>
+ </activation>
+ <properties>
+ <jboss.bind.address>localhost</jboss.bind.address>
+ </properties>
+ </profile>
</profiles>
</project>