Author: ffang
Date: Tue Dec  8 05:09:43 2009
New Revision: 888266

URL: http://svn.apache.org/viewvc?rev=888266&view=rev
Log:
[SM-1917]servicemix-osgi-cxf-wsdl-first-archetype generates a wrong package 
structure

Modified:
    
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
    
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/spring/beans.xml

Modified: 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
URL: 
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/java/PersonImpl.java?rev=888266&r1=888265&r2=888266&view=diff
==============================================================================
--- 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
 (original)
+++ 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/java/PersonImpl.java
 Tue Dec  8 05:09:43 2009
@@ -14,11 +14,12 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.servicemix.samples.wsdl_first;
+package ${packageName};
 
 import javax.jws.WebService;
 import javax.xml.ws.Holder;
-
+import org.apache.servicemix.samples.wsdl_first.Person;
+import org.apache.servicemix.samples.wsdl_first.UnknownPersonFault;
 import org.apache.servicemix.samples.wsdl_first.types.GetPerson;
 import org.apache.servicemix.samples.wsdl_first.types.GetPersonResponse;
 

Modified: 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/spring/beans.xml
URL: 
http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/spring/beans.xml?rev=888266&r1=888265&r2=888266&view=diff
==============================================================================
--- 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/spring/beans.xml
 (original)
+++ 
servicemix/archetypes/trunk/servicemix-osgi-cxf-wsdl-first-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/spring/beans.xml
 Tue Dec  8 05:09:43 2009
@@ -32,7 +32,7 @@
     <import resource="classpath:META-INF/cxf/osgi/cxf-extension-osgi.xml" />
 
        <jaxws:endpoint id="HTTPEndpoint"
-           implementor="org.apache.servicemix.samples.wsdl_first.PersonImpl"
+           implementor="${packageName}.PersonImpl"
            address="/PersonService"
            wsdlLocation="wsdl/person.wsdl"
            endpointName="e:soap"


Reply via email to