diff options
Diffstat (limited to '')
-rw-r--r-- | java/sca/otest/current/ASM_13008/pom.xml | 46 |
1 files changed, 37 insertions, 9 deletions
diff --git a/java/sca/otest/current/ASM_13008/pom.xml b/java/sca/otest/current/ASM_13008/pom.xml index 0956172d00..b95f62b435 100644 --- a/java/sca/otest/current/ASM_13008/pom.xml +++ b/java/sca/otest/current/ASM_13008/pom.xml @@ -24,16 +24,44 @@ <version>2.0-SNAPSHOT</version> <relativePath>../pom.xml</relativePath> </parent> - <artifactId>tuscany-otests-asm-ASM_13008</artifactId> - <name>Apache Tuscany SCA Specification Tests ASM ASM_13008</name> + <artifactId>ASM_13008</artifactId> + <name>Apache Tuscany SCA Specification Tests ASM_13008</name> <build> - <sourceDirectory>../src/main/resources/ASM_13008</sourceDirectory> - <resources> - <resource> - <directory>../src/main/resources/ASM_13008</directory> - </resource> - </resources> - <outputDirectory>../tests/target/ASM_13008</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> |