You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2010/09/20 06:06:15 UTC

svn commit: r998773 - in /cxf/trunk/distribution/src/main/release/samples/java_first_jms: pom.xml src/main/java/demo/client/ClientHTTP.java src/main/java/demo/server/ServerHTTP.java

Author: ningjiang
Date: Mon Sep 20 04:06:15 2010
New Revision: 998773

URL: http://svn.apache.org/viewvc?rev=998773&view=rev
Log:
CXF-3003 Removed the java files of ServerHTTP and ClientHTTP, also updated the pom.xml with jaxws profile

Removed:
    cxf/trunk/distribution/src/main/release/samples/java_first_jms/src/main/java/demo/client/ClientHTTP.java
    cxf/trunk/distribution/src/main/release/samples/java_first_jms/src/main/java/demo/server/ServerHTTP.java
Modified:
    cxf/trunk/distribution/src/main/release/samples/java_first_jms/pom.xml

Modified: cxf/trunk/distribution/src/main/release/samples/java_first_jms/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/java_first_jms/pom.xml?rev=998773&r1=998772&r2=998773&view=diff
==============================================================================
--- cxf/trunk/distribution/src/main/release/samples/java_first_jms/pom.xml (original)
+++ cxf/trunk/distribution/src/main/release/samples/java_first_jms/pom.xml Mon Sep 20 04:06:15 2010
@@ -48,6 +48,12 @@
     </build>
     <profiles>
         <profile>
+            <id>jaxws</id>
+            <properties>
+                <usingJaxws>-jaxws</usingJaxws>
+            </properties>
+        </profile>
+        <profile>
             <id>server</id>
             <build>
                 <defaultGoal>test</defaultGoal>
@@ -55,6 +61,7 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
+                        <version>1.2</version>
                         <executions>
                             <execution>
                                 <phase>test</phase>
@@ -65,6 +72,7 @@
                                     <mainClass>demo.server.ServerJMS</mainClass>
                                     <arguments>
                                     	<argument>-activemqbroker</argument>
+                                    	<argument>${usingJaxws}</argument>
                                     </arguments>
                                 </configuration>
                             </execution>
@@ -81,6 +89,7 @@
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
+                        <version>1.2</version>
                         <executions>
                             <execution>
                                 <phase>test</phase>
@@ -89,6 +98,9 @@
                                 </goals>
                                 <configuration>
                                     <mainClass>demo.client.ClientJMS</mainClass>
+                                    <arguments>
+                                    	<argument>${usingJaxws}</argument>
+                                    </arguments>
                                 </configuration>
                             </execution>
                         </executions>