summaryrefslogtreecommitdiffstats
path: root/java/sca/otest/current/ASM_8003/pom.xml
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-28 11:40:31 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-28 11:40:31 +0000
commita893f730747d3a2ff7cae02410581f9723156d2a (patch)
tree8fa70748b223c7ad7661c1fdff9eee2d094a2e5e /java/sca/otest/current/ASM_8003/pom.xml
parentb390d9c0981da669437fb259adf3d576406dab17 (diff)
Update 8000 series poms to bring in Java artifacts
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@798491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/otest/current/ASM_8003/pom.xml44
1 files changed, 36 insertions, 8 deletions
diff --git a/java/sca/otest/current/ASM_8003/pom.xml b/java/sca/otest/current/ASM_8003/pom.xml
index 7bab1470d6..abb6f33d5f 100644
--- a/java/sca/otest/current/ASM_8003/pom.xml
+++ b/java/sca/otest/current/ASM_8003/pom.xml
@@ -25,15 +25,43 @@
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>tuscany-otests-asm-ASM_8003</artifactId>
- <name>Apache Tuscany SCA Specification Tests ASM ASM_8003</name>
+ <name>Apache Tuscany SCA Specification Tests ASM_8003</name>
<build>
- <sourceDirectory>../src/main/resources/ASM_8003</sourceDirectory>
- <resources>
- <resource>
- <directory>../src/main/resources/ASM_8003</directory>
- </resource>
- </resources>
- <outputDirectory>../tests/target/ASM_8003</outputDirectory>
+ <finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.3</version>
+
+ <dependencies>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant-trax</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ </dependencies>
+
+ <executions>
+ <execution>
+ <id>copy-files-from-svn</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <property name="from.dir" value="../src/main/resources/ASM_8003"/>
+ <property name="to.dir" value="src/main/resources"/>
+ <ant antfile="../build.xml">
+ <target name="copyDir"/>
+ </ant>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
</build>
</project>