summaryrefslogtreecommitdiffstats
path: root/java/sca
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-08-05 22:32:18 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-08-05 22:32:18 +0000
commita708acc77d446fb00589b0555fe12aaf21c13446 (patch)
tree54332a34c1303be370f5dd3c2a208fa65e04922e /java/sca
parent240120d1fb9fd6f3c6910164edbe7be49e2a841c (diff)
Remove svn:externals and set up the pom to pull from ../src folder
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@801445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca')
-rw-r--r--java/sca/otest/current/tests/pom.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/java/sca/otest/current/tests/pom.xml b/java/sca/otest/current/tests/pom.xml
index 127698eb72..42cdd77ed4 100644
--- a/java/sca/otest/current/tests/pom.xml
+++ b/java/sca/otest/current/tests/pom.xml
@@ -91,6 +91,49 @@
<build>
<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>
+ <ant antfile="../build.xml">
+ <property name="from.dir" value="../src/test/java"/>
+ <property name="to.dir" value="src/test/resources"/>
+ <target name="copyResourceDir"/>
+ </ant>
+ <ant antfile="../build.xml">
+ <property name="from.dir" value="../src/test/resources"/>
+ <property name="to.dir" value="src/test/resources"/>
+ <target name="copyResourceDir"/>
+ </ant>
+ <ant antfile="../build.xml">
+ <property name="from.dir" value="../src/test/java"/>
+ <property name="to.dir" value="src/test/java"/>
+ <target name="copySourceDir"/>
+ </ant>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>