diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-22 13:38:26 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-22 13:38:26 +0000 |
commit | 05167962d34f1e0dc83afcfd7deaafbee7dbe02c (patch) | |
tree | 4e63d87b60c2b6ab45a1c4abcad3eb9d7d364cd9 /java/sca/otest/current/ASM_6006/pom.xml | |
parent | 47fdb2146a3217d541dbe708fbadb42ecbe468c6 (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 '')
-rw-r--r-- | java/sca/otest/current/ASM_6006/pom.xml | 46 |
1 files changed, 37 insertions, 9 deletions
diff --git a/java/sca/otest/current/ASM_6006/pom.xml b/java/sca/otest/current/ASM_6006/pom.xml index d4a2412b18..ac9026536d 100644 --- a/java/sca/otest/current/ASM_6006/pom.xml +++ b/java/sca/otest/current/ASM_6006/pom.xml @@ -24,16 +24,44 @@ <version>2.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> - <artifactId>tuscany-otests-asm-ASM_6006</artifactId> - <name>Apache Tuscany SCA Specification Tests ASM ASM_6006</name> + <artifactId>ASM_6006</artifactId> + <name>Apache Tuscany SCA Specification Tests ASM_6006</name> <build> - <sourceDirectory>../src/main/resources/ASM_6006</sourceDirectory> - <resources> - <resource> - <directory>../src/main/resources/ASM_6006</directory> - </resource> - </resources> - <outputDirectory>../tests/target/ASM_6006</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> |