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