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 2009/10/15 18:02:30 UTC

svn commit: r825538 - in /cxf/branches/2.2.x-fixes: ./ systests/ systests/wsdl_maven/ systests/wsdl_maven/codegen/ systests/wsdl_maven/java2ws/ systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/

Author: dkulp
Date: Thu Oct 15 16:02:29 2009
New Revision: 825538

URL: http://svn.apache.org/viewvc?rev=825538&view=rev
Log:
Merged revisions 823260,823314,823870-823871,823940 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r823260 | cschneider | 2009-10-08 14:34:35 -0400 (Thu, 08 Oct 2009) | 1 line
  
  Activate wsdl_maven systest
........
  r823314 | cschneider | 2009-10-08 16:41:00 -0400 (Thu, 08 Oct 2009) | 1 line
  
  Added parent to poms and license header to java class
........
  r823870 | cschneider | 2009-10-10 11:23:38 -0400 (Sat, 10 Oct 2009) | 1 line
  
  ignore some resources
........
  r823871 | cschneider | 2009-10-10 11:26:28 -0400 (Sat, 10 Oct 2009) | 1 line
  
  Added wsdldocumentation and webparam annotation
........
  r823940 | cschneider | 2009-10-10 17:17:32 -0400 (Sat, 10 Oct 2009) | 1 line
  
  Corrected indentation
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/systests/pom.xml
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/   (props changed)
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/pom.xml
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/   (props changed)
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/pom.xml
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java
    cxf/branches/2.2.x-fixes/systests/wsdl_maven/pom.xml

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Oct 15 16:02:29 2009
@@ -1 +1 @@
-/cxf/trunk:825284
+/cxf/trunk:823260-823314,823870-823940,825284

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.2.x-fixes/systests/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/pom.xml?rev=825538&r1=825537&r2=825538&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/pom.xml (original)
+++ cxf/branches/2.2.x-fixes/systests/pom.xml Thu Oct 15 16:02:29 2009
@@ -38,6 +38,7 @@
         <module>databinding</module>
         <module>jaxrs</module>
         <module>ws-specs</module>
+        <module>wsdl_maven</module>
     </modules>
 
 </project>

Propchange: cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Oct 15 16:02:29 2009
@@ -1,2 +1,12 @@
 .settings
 target
+
+.project
+
+.classpath
+
+.pmd
+
+.checkstyle
+
+.ruleset

Modified: cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/pom.xml?rev=825538&r1=825537&r2=825538&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/pom.xml (original)
+++ cxf/branches/2.2.x-fixes/systests/wsdl_maven/codegen/pom.xml Thu Oct 15 16:02:29 2009
@@ -20,18 +20,17 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.cxf.systests.wsdl_maven</groupId>
     <artifactId>cxf-systests-codegen</artifactId>
-    <version>2.2.4-SNAPSHOT</version>
+    <version>2.2.5-SNAPSHOT</version>
     <name>Test for reading wsdl from repo and generating code from it</name>
+    <parent>
+        <groupId>org.apache.cxf</groupId>
+        <artifactId>cxf-parent</artifactId>
+        <version>2.2.5-SNAPSHOT</version>
+        <relativePath>../../../parent/pom.xml</relativePath>
+    </parent>
     <build>
         <plugins>
             <plugin>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-            <plugin>
                 <groupId>org.apache.cxf</groupId>
                 <artifactId>cxf-codegen-plugin</artifactId>
                 <version>${project.version}</version>
@@ -43,10 +42,10 @@
                             <wsdlOptions>
                                 <wsdlOption>
                                     <wsdlArtifact>
-                                        <groupId>org.apache.cxf.systests.wsdl_maven</groupId>
-                                        <artifactId>cxf-systests-java2ws</artifactId>
-                                        <version>${project.version}</version>
-                                    </wsdlArtifact>
+				                        <groupId>org.apache.cxf.systests.wsdl_maven</groupId>
+				                        <artifactId>cxf-systests-java2ws</artifactId>
+				                        <version>${project.version}</version>
+			                        </wsdlArtifact>
                                 </wsdlOption>
                             </wsdlOptions>
                         </configuration>

Propchange: cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Thu Oct 15 16:02:29 2009
@@ -2,3 +2,9 @@
 .project
 .settings
 target
+
+.checkstyle
+
+.pmd
+
+.ruleset

Modified: cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/pom.xml?rev=825538&r1=825537&r2=825538&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/pom.xml (original)
+++ cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/pom.xml Thu Oct 15 16:02:29 2009
@@ -20,18 +20,16 @@
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.cxf.systests.wsdl_maven</groupId>
     <artifactId>cxf-systests-java2ws</artifactId>
-    <version>2.2.4-SNAPSHOT</version>
+    <version>2.2.5-SNAPSHOT</version>
     <name>Test for writing wsdl to repo</name>
+    <parent>
+        <groupId>org.apache.cxf</groupId>
+        <artifactId>cxf-parent</artifactId>
+        <version>2.2.5-SNAPSHOT</version>
+        <relativePath>../../../parent/pom.xml</relativePath>
+    </parent>
     <build>
         <plugins>
-            <plugin>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-
 			<plugin>
 				<groupId>org.apache.cxf</groupId>
 				<artifactId>cxf-java2ws-plugin</artifactId>

Modified: cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java?rev=825538&r1=825537&r2=825538&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java (original)
+++ cxf/branches/2.2.x-fixes/systests/wsdl_maven/java2ws/src/main/java/org/apache/cxf/systests/java2ws/HelloWorld.java Thu Oct 15 16:02:29 2009
@@ -1,9 +1,29 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 package org.apache.cxf.systests.java2ws;
 
+import javax.jws.WebParam;
 import javax.jws.WebService;
 
+
 @WebService
 public interface HelloWorld {
-    String sayHi(String text);
+    String sayHi(@WebParam(name = "text") String text);
 }
-

Modified: cxf/branches/2.2.x-fixes/systests/wsdl_maven/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/wsdl_maven/pom.xml?rev=825538&r1=825537&r2=825538&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/wsdl_maven/pom.xml (original)
+++ cxf/branches/2.2.x-fixes/systests/wsdl_maven/pom.xml Thu Oct 15 16:02:29 2009
@@ -21,14 +21,14 @@
     <groupId>org.apache.cxf.systests</groupId>
     <artifactId>cxf-wsdl-maven</artifactId>
     <packaging>pom</packaging>
-    <version>2.2.4-SNAPSHOT</version>
+    <version>2.2.5-SNAPSHOT</version>
     <name>Apache CXF System Tests for WSDL generation and retrieval</name>
     <url>http://cxf.apache.org</url>
 
     <parent>
         <groupId>org.apache.cxf.systests</groupId>
         <artifactId>cxf-systests</artifactId>
-        <version>2.2.4-SNAPSHOT</version>
+        <version>2.2.5-SNAPSHOT</version>
     </parent>
 
     <modules>