summaryrefslogtreecommitdiff
path: root/java/perftests/jar-with-dependencies.xml
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2007-08-23 12:11:11 +0000
committerArnaud Simon <arnaudsimon@apache.org>2007-08-23 12:11:11 +0000
commitdeb4f0598c2264c9b34839058714e7befa31a35f (patch)
tree40b20356390daa78ecf0db26f8f5db72191b72ee /java/perftests/jar-with-dependencies.xml
parent17754a0a51b6d103f3db84af629faae9a398d963 (diff)
downloadqpid-python-deb4f0598c2264c9b34839058714e7befa31a35f.tar.gz
updated from M2 branch
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@568954 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/perftests/jar-with-dependencies.xml')
-rw-r--r--java/perftests/jar-with-dependencies.xml77
1 files changed, 56 insertions, 21 deletions
diff --git a/java/perftests/jar-with-dependencies.xml b/java/perftests/jar-with-dependencies.xml
index 3e95e7ab22..5813b6334b 100644
--- a/java/perftests/jar-with-dependencies.xml
+++ b/java/perftests/jar-with-dependencies.xml
@@ -16,32 +16,67 @@
specific language governing permissions and limitations
under the License.
-->
-<!-- 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.
- -->
+<!-- This is an assembly descriptor that produces a distribution that contains all the
+ dependencies, with a manifest only jar that references them, 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>
+ <id>all-test-deps</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>/</outputDirectory>
+ <unpack>false</unpack>
+ <scope>test</scope>
+ </dependencySet>
+ </dependencySets>
+ <fileSets>
+ <fileSet>
+ <directory>target/classes</directory>
+ <outputDirectory></outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/test-classes</directory>
+ <outputDirectory></outputDirectory>
+ </fileSet>
+
+ <!-- Include all the test scripts, both generated and hand-written. -->
<fileSet>
- <directory>target/classes</directory>
+ <directory>target</directory>
<outputDirectory></outputDirectory>
+ <includes>
+ <include>*.sh</include>
+ </includes>
</fileSet>
<fileSet>
- <directory>target/test-classes</directory>
+ <directory>etc/scripts</directory>
<outputDirectory></outputDirectory>
+ <includes>
+ <include>*.sh</include>
+ </includes>
</fileSet>
- </fileSets>
+
+ <!-- Include the build artifact. -->
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>qpid-perftests-1.0-incubating-M2-SNAPSHOT.jar</include>
+ </includes>
+ </fileSet>
+
+ <!-- Include the manifest with classpath jar. -->
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>qpid-perftests-${qpid.version}.jar</include>
+ </includes>
+ </fileSet>
+
+ </fileSets>
</assembly>