summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-08 10:14:20 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-06-08 10:14:20 +0000
commitfd57cb165e71a45a460f0ede0d83f450e5a041e6 (patch)
tree7ea5fbb40a3c32f448eb5468a24f9d3eee8df69f
parent5f016f64375effcbed2bb80ce31538cd202ad4d8 (diff)
Make module name consistent and fix java home echo so that it prints something out
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@782585 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/sca/itest/distribution/binding-ws-calculator/build.xml2
-rw-r--r--java/sca/itest/distribution/binding-ws-calculator/pom.xml3
2 files changed, 3 insertions, 2 deletions
diff --git a/java/sca/itest/distribution/binding-ws-calculator/build.xml b/java/sca/itest/distribution/binding-ws-calculator/build.xml
index bfcdfe1063..f222a3ac0c 100644
--- a/java/sca/itest/distribution/binding-ws-calculator/build.xml
+++ b/java/sca/itest/distribution/binding-ws-calculator/build.xml
@@ -18,7 +18,7 @@
-->
<project name="itest-samples" default="run">
- <echo>${JAVA_HOME}</echo>
+ <echo>${java.home}</echo>
<!--
compile and run each sample as though the user were running
samples from the binary distribution. Here we use ant targets
diff --git a/java/sca/itest/distribution/binding-ws-calculator/pom.xml b/java/sca/itest/distribution/binding-ws-calculator/pom.xml
index 185e4370b5..f3946564e5 100644
--- a/java/sca/itest/distribution/binding-ws-calculator/pom.xml
+++ b/java/sca/itest/distribution/binding-ws-calculator/pom.xml
@@ -26,7 +26,7 @@
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>itest-distribution-binding-ws-calculator</artifactId>
- <name>Apache Tuscany SCA Distribution iTest binding-ws-calculator</name>
+ <name>Apache Tuscany SCA iTest Distribution binding-ws-calculator</name>
<dependencies>
<dependency>
@@ -69,6 +69,7 @@
</goals>
<configuration>
<tasks>
+ <property name="java.home" value="${java.home}"/>
<property name="tuscany.version" value="${version}" />
<ant antfile="./build.xml" target="run"/>
</tasks>