summaryrefslogtreecommitdiff
path: root/java/perftests/jar-with-dependencies.xml
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-01-18 13:11:39 +0000
committerRobert Greig <rgreig@apache.org>2007-01-18 13:11:39 +0000
commit553a5374ebca0fa86fe927e18a5288644508a50a (patch)
tree69a44828170c09b20929ff216d79aa6fd41c4043 /java/perftests/jar-with-dependencies.xml
parentd5039472ca66b7407c60d5cd097d1a612a8cb157 (diff)
downloadqpid-python-553a5374ebca0fa86fe927e18a5288644508a50a.tar.gz
(Patch submitted by Rupert Smith)
Restructured the ping tests, they now share common base classes to avoid cut and paste coding. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@497425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/perftests/jar-with-dependencies.xml')
-rw-r--r--java/perftests/jar-with-dependencies.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/perftests/jar-with-dependencies.xml b/java/perftests/jar-with-dependencies.xml
new file mode 100644
index 0000000000..62978ee864
--- /dev/null
+++ b/java/perftests/jar-with-dependencies.xml
@@ -0,0 +1,29 @@
+<!-- This is an assembly descriptor that produces a jar file that contains all the
+ dependencies, fully expanded into a single jar, required to run the tests of
+ a maven project.
+ -->
+<assembly>
+ <id>all-test-deps</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory></outputDirectory>
+ <outputFileNameMapping></outputFileNameMapping>
+ <unpack>true</unpack>
+ <scope>test</scope>
+ </dependencySet>
+ </dependencySets>
+ <fileSets>
+ <fileSet>
+ <directory>target/classes</directory>
+ <outputDirectory></outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/test-classes</directory>
+ <outputDirectory></outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>