Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 47779 invoked from network); 24 Nov 2008 21:13:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Nov 2008 21:13:27 -0000 Received: (qmail 37306 invoked by uid 500); 24 Nov 2008 21:13:37 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 37249 invoked by uid 500); 24 Nov 2008 21:13:37 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 37240 invoked by uid 99); 24 Nov 2008 21:13:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Nov 2008 13:13:37 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Nov 2008 21:12:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 152C3238896E; Mon, 24 Nov 2008 13:13:06 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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 Date: Mon, 24 Nov 2008 21:13:05 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081124211306.152C3238896E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 @@