summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/maven
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-27 08:40:28 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-27 08:40:28 +0000
commitb40240b02b7edb32e0e68b40fc9bc0a6707136b0 (patch)
tree53dc5582bae2329900b33b68d6cbdcc4d23e9128 /sca-java-2.x/trunk/maven
parentae8f0fbfd36754e01a9211b7b41a0042db3e75ec (diff)
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}
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1128196 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/maven')
-rw-r--r--sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml10
1 files changed, 3 insertions, 7 deletions
diff --git a/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml b/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
index 3ec16988b1..9e885e0baf 100644
--- a/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
+++ b/sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml
@@ -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>