summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-contribution/pom.xml2
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml2
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/scdl-include-contribution/pom.xml4
3 files changed, 4 insertions, 4 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-contribution/pom.xml b/sca-java-2.x/trunk/samples/getting-started/helloworld-contribution/pom.xml
index 4c9e17d553..cf9ca44ec8 100644
--- a/sca-java-2.x/trunk/samples/getting-started/helloworld-contribution/pom.xml
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-contribution/pom.xml
@@ -45,7 +45,7 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.tuscany.maven.plugins</groupId>
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml b/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml
index 058ba84bd8..f7c375a8c3 100644
--- a/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-webapp/pom.xml
@@ -66,7 +66,7 @@
<artifactItem>
<groupId>org.apache.tuscany.sca</groupId>
<artifactId>sample-helloworld-contribution</artifactId>
- <version>${pom.version}</version>
+ <version>${project.version}</version>
<!-- should really go in the target folder but i can't get jetty:run to work using that -->
<outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory>
</artifactItem>
diff --git a/sca-java-2.x/trunk/samples/getting-started/scdl-include-contribution/pom.xml b/sca-java-2.x/trunk/samples/getting-started/scdl-include-contribution/pom.xml
index a4afa47cb3..9d61acbd45 100644
--- a/sca-java-2.x/trunk/samples/getting-started/scdl-include-contribution/pom.xml
+++ b/sca-java-2.x/trunk/samples/getting-started/scdl-include-contribution/pom.xml
@@ -46,7 +46,7 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<plugins>
@@ -66,7 +66,7 @@
<configuration>
<contributions>
<!-- add the dependee contribution that this contribution uses -->
- <param>..\helloworld-contribution\target\helloworld-contribution.jar</param>
+ <param>..\helloworld-contribution\target\sample-helloworld-contribution.jar</param>
</contributions>
</configuration>
</plugin>