diff options
Diffstat (limited to 'java/sca/otest/current/ASM_8003')
-rw-r--r-- | java/sca/otest/current/ASM_8003/pom.xml | 44 |
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> |