Author: antelder
Date: Fri May 27 08:40:28 2011
New Revision: 1128196
URL: http://svn.apache.org/viewvc?rev=1128196&view=rev
Log:
Fix quickstart archetype. The various varriables got incorrectly altered on the
global change to fix the maven3 updates, eg, in an archetype config it should
use ${artifactId} not ${project.artifactId}
Modified:
tuscany/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
Modified:
tuscany/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml?rev=1128196&r1=1128195&r2=1128196&view=diff
==============================================================================
---
tuscany/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
(original)
+++
tuscany/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
Fri May 27 08:40:28 2011
@@ -22,9 +22,9 @@
<modelVersion>4.0.0</modelVersion>
<groupId>${groupId}</groupId>
- <artifactId>${project.artifactId}</artifactId>
+ <artifactId>${artifactId}</artifactId>
<packaging>war</packaging>
- <version>${project.version}</version>
+ <version>${version}</version>
<name>quickstart</name>
<dependencies>
@@ -33,16 +33,12 @@
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-sca-api</artifactId>
<version>${tuscany.version}</version>
-#if(${includeTuscanyRuntime} == "Y")
- <scope>compile</scope>
-#else
<scope>provided</scope>
-#end
</dependency>
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-implementation-web-runtime</artifactId>
+ <artifactId>tuscany-base-runtime</artifactId>
<version>${tuscany.version}</version>
#if( $includeTuscanyRuntime == "Y")
<scope>runtime</scope>