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 2008/11/24 22:13:05 UTC

svn commit: r720293 - in /cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main: java/HelloWorld.java java/HelloWorldImpl.java webapp/WEB-INF/beans.xml

Author: dkulp
Date: Mon Nov 24 13:13:05 2008
New Revision: 720293

URL: http://svn.apache.org/viewvc?rev=720293&view=rev
Log:
Use the packagename, not groupId, to define the package

Modified:
    cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorld.java
    cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorldImpl.java
    cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml

Modified: cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorld.java
URL: http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorld.java?rev=720293&r1=720292&r2=720293&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorld.java (original)
+++ cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorld.java Mon Nov 24 13:13:05 2008
@@ -14,7 +14,7 @@
 ##    KIND, either express or implied. See the License for the
 ##    specific language governing permissions and limitations
 ##    under the License.
-package ${groupId};
+package ${packageName};
 
 import javax.jws.WebService;
 

Modified: cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorldImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorldImpl.java?rev=720293&r1=720292&r2=720293&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorldImpl.java (original)
+++ cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/java/HelloWorldImpl.java Mon Nov 24 13:13:05 2008
@@ -15,11 +15,11 @@
 ##    specific language governing permissions and limitations
 ##    under the License.
 
-package ${groupId};
+package ${packageName};
 
 import javax.jws.WebService;
 
-@WebService(endpointInterface = "${groupId}.HelloWorld")
+@WebService(endpointInterface = "${packageName}.HelloWorld")
 public class HelloWorldImpl implements HelloWorld {
 
     public String sayHi(String text) {

Modified: cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml?rev=720293&r1=720292&r2=720293&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml (original)
+++ cxf/trunk/maven-plugins/archetypes/cxf-http-basic/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/beans.xml Mon Nov 24 13:13:05 2008
@@ -29,7 +29,7 @@
 
 	<jaxws:endpoint 
 	  id="helloWorld" 
-	  implementor="${groupId}.HelloWorldImpl" 
+	  implementor="${packageName}.HelloWorldImpl" 
 	  address="/HelloWorld" />
 	  
 </beans>