summaryrefslogtreecommitdiff
path: root/java/client
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2007-07-31 09:07:57 +0000
committerMartin Ritchie <ritchiem@apache.org>2007-07-31 09:07:57 +0000
commit59f5427b7f2b9f6959aebf257b1e6f11d237b03d (patch)
treece0cbc08ae76ca699b1da6295a7a4a9e43260c0d /java/client
parentdcad8eab01ad32735fe2dc5aee8f3c825c074e8b (diff)
downloadqpid-python-59f5427b7f2b9f6959aebf257b1e6f11d237b03d.tar.gz
Changes to POMs.
Client pom now builds a single jar with all dependancies included in the single bundle. systests/pom.xml adjusted to include only *Test.class items. This will fix the current Error on OptOutTestCase management/eclipse-plugin/pom.xml - editied to include there required MANIFEST.MF to identify plugin to eclipse distribution/src/main/assembly/management-eclipse-plugin.xml editied to include there required MANIFEST.MF to identify the plugin distribution/pom.xml - white space Also updated log4j.xml default to create an alert.log file from the AMQQueue alerting. Added a debug.log4j.xml that gives example of debugging the broker via log4j. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2@561278 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
-rw-r--r--java/client/pom.xml28
1 files changed, 27 insertions, 1 deletions
diff --git a/java/client/pom.xml b/java/client/pom.xml
index 02958ded6f..b51e540c2d 100644
--- a/java/client/pom.xml
+++ b/java/client/pom.xml
@@ -134,14 +134,40 @@
<goal>ueberjar</goal>
</goals>
<configuration>
- <stripUnusedClasses>true</stripUnusedClasses>
+ <stripUnusedClasses>false</stripUnusedClasses>
<name>[artifactId]-[version]-single.jar</name>
+ <classifier>single</classifier>
+ <attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>target/${artifactId}-${version}-single.jar</file>
+ <type>jar</type>
+ <classifier>single</classifier>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>