summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tools/eclipse/pom.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-11-02 14:46:14 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-11-02 14:46:14 +0000
commitdff9ca4730357a685afdf69076f66fe3ce136541 (patch)
tree91475f2b3f336fac680822b6c0d293362eddfe7d /sca-java-1.x/trunk/tools/eclipse/pom.xml
parent14de34abd0f2deb2f67693e96c43157a61460fe2 (diff)
Merge r1030063 TUSCANY-3762: Fix Eclipse feature/plugin installation issues
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1030068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-1.x/trunk/tools/eclipse/pom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/tools/eclipse/pom.xml b/sca-java-1.x/trunk/tools/eclipse/pom.xml
index 684e4e0e05..3c07fa3086 100644
--- a/sca-java-1.x/trunk/tools/eclipse/pom.xml
+++ b/sca-java-1.x/trunk/tools/eclipse/pom.xml
@@ -44,4 +44,28 @@
</profile>
</profiles>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <tstamp/>
+ <mkdir dir="target"/>
+ <echo file="target/filter.properties" message="tuscany.eclipse.version=${pom.version}.v${DSTAMP}-${TSTAMP}"/>
+ <replace file="target/filter.properties" token="-SNAPSHOT"/>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
</project>