summaryrefslogtreecommitdiffstats
path: root/otest
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 09:16:08 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-09-17 09:16:08 +0000
commit6e78d7c797c72b04d3eb61fcf960a64d34ba1604 (patch)
treebd7a57330a1816ba19e3a0cc37caf14035399dc6 /otest
parente49afab5f477cf1fbc3a0c94903d776b9ad142a4 (diff)
Fix up existing pom to generate jar to be used by trunk compliance. Removes to need for separate project
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@998026 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'otest')
-rw-r--r--otest/newlayout/tuscany-java-ci-test-runner/pom.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/otest/newlayout/tuscany-java-ci-test-runner/pom.xml b/otest/newlayout/tuscany-java-ci-test-runner/pom.xml
index 89756a4193..0b7d5f9b44 100644
--- a/otest/newlayout/tuscany-java-ci-test-runner/pom.xml
+++ b/otest/newlayout/tuscany-java-ci-test-runner/pom.xml
@@ -177,8 +177,35 @@
</sources>
</configuration>
</execution>
+ <execution>
+ <id>add-test-resource</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-test-resource</goal>
+ </goals>
+ <configuration>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
</executions>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.2</version>
+ <configuration>
+ <classesDirectory>${project.build.directory}/test-classes</classesDirectory>
+ <includes>
+ <include>**/*</include>
+ </includes>
+ </configuration>
+ </plugin>
+
</plugins>
</build>
</project>