diff options
Diffstat (limited to 'sca-java-2.x')
-rw-r--r-- | sca-java-2.x/trunk/maven/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml | 10 |
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> |