summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/applications
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/applications
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 'sca-java-2.x/trunk/samples/applications')
-rw-r--r--sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-process/pom.xml4
-rw-r--r--sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-webapp/pom.xml8
-rw-r--r--sca-java-2.x/trunk/samples/applications/eightball-demo/eightball/pom.xml4
-rw-r--r--sca-java-2.x/trunk/samples/applications/eightball-demo/translator/pom.xml4
-rw-r--r--sca-java-2.x/trunk/samples/applications/logging-scribe/helloworld-scribe/pom.xml2
-rw-r--r--sca-java-2.x/trunk/samples/applications/store-webapp/pom.xml4
-rw-r--r--sca-java-2.x/trunk/samples/applications/store/pom.xml2
7 files changed, 14 insertions, 14 deletions
diff --git a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-process/pom.xml b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-process/pom.xml
index 38b52e183d..4f37c91d55 100644
--- a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-process/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-process/pom.xml
@@ -49,7 +49,7 @@
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<resources>
<resource>
<filtering>false</filtering>
@@ -106,4 +106,4 @@
<properties>
<tuscany.version>2.0-SNAPSHOT</tuscany.version>
</properties>
- </project> \ No newline at end of file
+ </project>
diff --git a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-webapp/pom.xml b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-webapp/pom.xml
index eeabfc5fa4..054d13c52f 100644
--- a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-webapp/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball-webapp/pom.xml
@@ -133,19 +133,19 @@
<artifactItem>
<groupId>demo</groupId>
<artifactId>eightball</artifactId>
- <version>${pom.version}</version>
+ <version>${project.version}</version>
<outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>demo</groupId>
<artifactId>eightball-process</artifactId>
- <version>${pom.version}</version>
+ <version>${project.version}</version>
<outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>demo</groupId>
<artifactId>translator</artifactId>
- <version>${pom.version}</version>
+ <version>${project.version}</version>
<outputDirectory>src/main/webapp/WEB-INF/sca-contributions</outputDirectory>
</artifactItem>
</artifactItems>
@@ -159,4 +159,4 @@
<tuscany.version>2.0-SNAPSHOT</tuscany.version>
<jetty.version>6.1.18</jetty.version>
</properties>
-</project> \ No newline at end of file
+</project>
diff --git a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball/pom.xml b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball/pom.xml
index 5bd58d3dae..86a0407b24 100644
--- a/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/eightball-demo/eightball/pom.xml
@@ -49,7 +49,7 @@
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<resources>
<resource>
<filtering>false</filtering>
@@ -106,4 +106,4 @@
<properties>
<tuscany.version>2.0-SNAPSHOT</tuscany.version>
</properties>
- </project> \ No newline at end of file
+ </project>
diff --git a/sca-java-2.x/trunk/samples/applications/eightball-demo/translator/pom.xml b/sca-java-2.x/trunk/samples/applications/eightball-demo/translator/pom.xml
index 858fa1b4eb..0f04558eff 100644
--- a/sca-java-2.x/trunk/samples/applications/eightball-demo/translator/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/eightball-demo/translator/pom.xml
@@ -49,7 +49,7 @@
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<resources>
<resource>
<filtering>false</filtering>
@@ -106,4 +106,4 @@
<properties>
<tuscany.version>2.0-SNAPSHOT</tuscany.version>
</properties>
- </project> \ No newline at end of file
+ </project>
diff --git a/sca-java-2.x/trunk/samples/applications/logging-scribe/helloworld-scribe/pom.xml b/sca-java-2.x/trunk/samples/applications/logging-scribe/helloworld-scribe/pom.xml
index 6a99a1e13e..94234147e7 100644
--- a/sca-java-2.x/trunk/samples/applications/logging-scribe/helloworld-scribe/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/logging-scribe/helloworld-scribe/pom.xml
@@ -84,7 +84,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/applications/store-webapp/pom.xml b/sca-java-2.x/trunk/samples/applications/store-webapp/pom.xml
index 1eb5160538..190ed73d98 100644
--- a/sca-java-2.x/trunk/samples/applications/store-webapp/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/store-webapp/pom.xml
@@ -95,7 +95,7 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -106,7 +106,7 @@
<server>tomcat</server>
<!-- context for the webapp, as finalName is not being honored -->
- <path>/${artifactId}</path>
+ <path>/${project.artifactId}</path>
</configuration>
</plugin>
<plugin>
diff --git a/sca-java-2.x/trunk/samples/applications/store/pom.xml b/sca-java-2.x/trunk/samples/applications/store/pom.xml
index e3eadf8dc3..c9c6c2a639 100644
--- a/sca-java-2.x/trunk/samples/applications/store/pom.xml
+++ b/sca-java-2.x/trunk/samples/applications/store/pom.xml
@@ -107,7 +107,7 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>