diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 09:52:44 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 09:52:44 +0000 |
commit | a6e7cb430349855a8925186de0a84b44eb603c53 (patch) | |
tree | c3c0db8d751e21fd49d9a33526ac212700afeb57 /otest/newlayout/tuscany-ws-test-runner/pom.xml | |
parent | c1a7293ac03e3ceea982668c49cabd6e4f818ae8 (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@998042 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'otest/newlayout/tuscany-ws-test-runner/pom.xml')
-rw-r--r-- | otest/newlayout/tuscany-ws-test-runner/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/otest/newlayout/tuscany-ws-test-runner/pom.xml b/otest/newlayout/tuscany-ws-test-runner/pom.xml index 7b1ae9c8c6..67538c8f82 100644 --- a/otest/newlayout/tuscany-ws-test-runner/pom.xml +++ b/otest/newlayout/tuscany-ws-test-runner/pom.xml @@ -193,8 +193,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>
|