summaryrefslogtreecommitdiffstats
path: root/otest
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-05 09:18:40 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-10-05 09:18:40 +0000
commit7b8dae616f92d6fb18b36168aab1cde3eeea926b (patch)
tree2ddb55cb29aeb78cede3c435edc42deff163a1ef /otest
parent8a305820f68043da4f8c4637752dabfc7e0b5497 (diff)
Disable dependency on org.oasis-open.sca as these artifacts are not published in maven so cause the main compliance test build to fail
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1004583 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'otest')
-rw-r--r--otest/newlayout/tuscany-policy-test-runner/pom.xml43
-rw-r--r--otest/newlayout/tuscany-test-runner/pom.xml4
2 files changed, 47 insertions, 0 deletions
diff --git a/otest/newlayout/tuscany-policy-test-runner/pom.xml b/otest/newlayout/tuscany-policy-test-runner/pom.xml
index c62f7d58e0..3a8f7eec46 100644
--- a/otest/newlayout/tuscany-policy-test-runner/pom.xml
+++ b/otest/newlayout/tuscany-policy-test-runner/pom.xml
@@ -82,11 +82,15 @@
<version>2.0-SNAPSHOT</version>
</dependency>
+<!-- This dependency causes a problem on systems that haven't compiled the
+ OASIS contributions independently and hence haven't dded them to their
+ Local repo.
<dependency>
<groupId>org.oasis-open.sca.assembly</groupId>
<artifactId>General_Java</artifactId>
<version>1.0</version>
</dependency>
+-->
<dependency>
<groupId>javax.servlet</groupId>
@@ -251,6 +255,45 @@
</excludes>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.oasis-open.sca.assembly</groupId>
+ <artifactId>General_Java</artifactId>
+ <version>1.0</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/oasis-contributions</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.oasis-open.sca.policy</groupId>
+ <artifactId>Policy_General</artifactId>
+ <version>1.0</version>
+ <type>zip</type>
+ <outputDirectory>${project.build.directory}/oasis-contributions</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.oasis-open.sca.policy</groupId>
+ <artifactId>Policy_General_Java</artifactId>
+ <version>1.0</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/oasis-contributions</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ <stripVersion>true</stripVersion>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>
diff --git a/otest/newlayout/tuscany-test-runner/pom.xml b/otest/newlayout/tuscany-test-runner/pom.xml
index 5bbae04bc2..6ea139235c 100644
--- a/otest/newlayout/tuscany-test-runner/pom.xml
+++ b/otest/newlayout/tuscany-test-runner/pom.xml
@@ -76,11 +76,15 @@
<version>2.0-SNAPSHOT</version>
</dependency>
+<!-- This dependency causes a problem on systems that haven't compiled the
+ OASIS contributions independently and hence haven't dded them to their
+ Local repo.
<dependency>
<groupId>org.oasis-open.sca.assembly</groupId>
<artifactId>General_Java</artifactId>
<version>1.0</version>
</dependency>
+-->
<dependency>
<groupId>javax.servlet</groupId>