summaryrefslogtreecommitdiffstats
path: root/java/sca/otest/current/ASM_6002/pom.xml
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-22 13:38:26 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2009-07-22 13:38:26 +0000
commit05167962d34f1e0dc83afcfd7deaafbee7dbe02c (patch)
tree4e63d87b60c2b6ab45a1c4abcad3eb9d7d364cd9 /java/sca/otest/current/ASM_6002/pom.xml
parent47fdb2146a3217d541dbe708fbadb42ecbe468c6 (diff)
Add new test structure based on copying files from one large checkout from OASIS svn to the correct places in out test structure
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@796718 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/otest/current/ASM_6002/pom.xml')
-rw-r--r--java/sca/otest/current/ASM_6002/pom.xml46
1 files changed, 37 insertions, 9 deletions
diff --git a/java/sca/otest/current/ASM_6002/pom.xml b/java/sca/otest/current/ASM_6002/pom.xml
index e23ca9f4e9..e44162abbc 100644
--- a/java/sca/otest/current/ASM_6002/pom.xml
+++ b/java/sca/otest/current/ASM_6002/pom.xml
@@ -24,16 +24,44 @@
<version>2.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
- <artifactId>tuscany-otests-asm-ASM_6002</artifactId>
- <name>Apache Tuscany SCA Specification Tests ASM ASM_6002</name>
+ <artifactId>ASM_6002</artifactId>
+ <name>Apache Tuscany SCA Specification Tests ASM_6002</name>
<build>
- <sourceDirectory>../src/main/resources/ASM_6002</sourceDirectory>
- <resources>
- <resource>
- <directory>../src/main/resources/ASM_6002</directory>
- </resource>
- </resources>
- <outputDirectory>../tests/target/ASM_6002</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>verify</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <property name="from.dir" value="../src/main/resources/${artifactId}"/>
+ <property name="to.dir" value="src/main/resources"/>
+ <ant antfile="../build.xml">
+ <target name="copyDir"/>
+ </ant>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
</build>
</project>