diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 09:36:32 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-09-17 09:36:32 +0000 |
commit | 5433fecf9ae3a1163789f96f01b6c4dde3f31398 (patch) | |
tree | 4f739e9e77518a9e7fd092be55bfc0b5734a7ed3 /otest | |
parent | ea75aee9c230add4ddeb637a262f982448168255 (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@998034 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'otest')
-rw-r--r-- | otest/newlayout/tuscany-policy-test-runner/pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/otest/newlayout/tuscany-policy-test-runner/pom.xml b/otest/newlayout/tuscany-policy-test-runner/pom.xml index 367fc80ac7..c62f7d58e0 100644 --- a/otest/newlayout/tuscany-policy-test-runner/pom.xml +++ b/otest/newlayout/tuscany-policy-test-runner/pom.xml @@ -213,8 +213,33 @@ </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> |