summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-02-05 13:42:26 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-02-05 13:42:26 +0000
commit161c5c34e4a3c6999578c833add2f60e2494dbb3 (patch)
treecb4aa65ce8c8ec56129f22cd8e4c3fc642072619 /sca-java-2.x/trunk/samples/getting-started
parent5b1513570240501b58a1a43a28c46cba5ab2dac9 (diff)
Fix lots of depricated maven variable warnings for Maven v3
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1067440 13f79535-47bb-0310-9956-ffa450edef68
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>