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