You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/10/23 20:01:01 UTC

svn commit: r587575 - in /incubator/cxf/trunk: parent/pom.xml systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java

Author: dkulp
Date: Tue Oct 23 11:01:00 2007
New Revision: 587575

URL: http://svn.apache.org/viewvc?rev=587575&view=rev
Log:
Refork the server
Update to latest remote-resources and jar bundle for latest NOTICE file format

Modified:
    incubator/cxf/trunk/parent/pom.xml
    incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java

Modified: incubator/cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/parent/pom.xml?rev=587575&r1=587574&r2=587575&view=diff
==============================================================================
--- incubator/cxf/trunk/parent/pom.xml (original)
+++ incubator/cxf/trunk/parent/pom.xml Tue Oct 23 11:01:00 2007
@@ -251,7 +251,7 @@
         <plugins>
             <plugin>
                 <artifactId>maven-remote-resources-plugin</artifactId>
-                <version>1.0-alpha-5</version>
+                <version>1.0-alpha-6</version>
                 <dependencies>
                     <dependency>
                         <groupId>org.apache.cxf</groupId>
@@ -267,13 +267,14 @@
                         <configuration>
                             <resourceBundles>
                                 <resourceBundle>org.apache:apache-incubator-disclaimer-resource-bundle:1.1</resourceBundle>
-                                <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+                                <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
                             </resourceBundles>
                             <supplementalModels>
                                 <supplementalModel>notice-supplements.xml</supplementalModel>
                             </supplementalModels>
                             <properties>
                                 <addLicense>true</addLicense>
+                                <addArtifact>true</addArtifact>
                                 <projectName>Apache CXF</projectName>
                             </properties>
                         </configuration>

Modified: incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java?rev=587575&r1=587574&r2=587575&view=diff
==============================================================================
--- incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java (original)
+++ incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/jaxws/ClientServerMiscTest.java Tue Oct 23 11:01:00 2007
@@ -58,7 +58,7 @@
 
     @BeforeClass
     public static void startServers() throws Exception {
-        assertTrue("server did not launch correctly", launchServer(ServerMisc.class, true));
+        assertTrue("server did not launch correctly", launchServer(ServerMisc.class));
     }
     
     @Test