summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-16 20:12:07 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-16 20:12:07 +0000
commit84f36e60955510d629b66267b374cb31704602a1 (patch)
tree0a8d7f0bab1fb94c0ad62ef3210729d566f09510 /sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml
parent7966aff900571e88c79fc8b2767d85bce19e8b20 (diff)
TUSCANY-3685: Add jar in binary distribution for test classes and resources
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1023372 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml')
-rw-r--r--sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml24
1 files changed, 23 insertions, 1 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml b/sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml
index 5e1798b4a6..0c31461c64 100644
--- a/sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml
+++ b/sca-java-1.x/branches/sca-java-1.6.1/samples/implementation-pojo-extension/pom.xml
@@ -71,7 +71,29 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <finalName>${artifactId}</finalName>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>test</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <configuration>
+ <descriptors>
+ <descriptor>src/test/assembly/test.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ <finalName>${artifactId}</finalName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
</build>
</project>