| <!-- | |
| Licensed to the Apache Software Foundation (ASF) under one | |
| or more contributor license agreements. See the NOTICE file | |
| distributed with this work for additional information | |
| regarding copyright ownership. The ASF licenses this file | |
| to you under the Apache License, Version 2.0 (the | |
| "License"); you may not use this file except in compliance | |
| with the License. You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, | |
| software distributed under the License is distributed on an | |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
| KIND, either express or implied. See the License for the | |
| specific language governing permissions and limitations | |
| under the License. | |
| --> | |
| <!-- This is an assembly descriptor that produces a jar file that contains all the | |
| test dependencies, fully expanded into a single jar, required to run the tests | |
| of a maven project. | |
| --> | |
| <!-- | |
| <assembly> | |
| <id>all-test-deps</id> | |
| <includeBaseDirectory>false</includeBaseDirectory> | |
| <formats> | |
| <format>jar</format> | |
| </formats> | |
| <dependencySets> | |
| <!## Include all test dependencies. ##> | |
| <dependencySet> | |
| <outputDirectory></outputDirectory> | |
| <outputFileNameMapping></outputFileNameMapping> | |
| <unpack>true</unpack> | |
| <!##<scope>runtime</scope>##> | |
| <!## | |
| <includes> | |
| <include>org.apache.qpid:qpid-client:jar:java14</include> | |
| <include>org.apache.qpid:qpid-common:jar:java14</include> | |
| </includes> | |
| ##> | |
| <excludes> | |
| <!## Exclude the Java 5 built client and common. The java 1.4 retrotranslated versions are used instead. ##> | |
| <exclude>org.apache.qpid:qpid-client:jar</exclude> | |
| <exclude>org.apache.qpid:qpid-common:jar</exclude> | |
| <!## Mina SSL support only available in Java 5. No SSL on 1.4. ##> | |
| <exclude>org.apache.mina:mina-java5</exclude> | |
| <exclude>org.apache.mina:mina-filter-ssl</exclude> | |
| </excludes> | |
| </dependencySet> | |
| </dependencySets> | |
| <fileSets> | |
| <!## Include all project classes. ##> | |
| <fileSet> | |
| <directory>target/classes</directory> | |
| <outputDirectory></outputDirectory> | |
| </fileSet> | |
| <!## Include all project test classes. ##> | |
| <fileSet> | |
| <directory>target/test-classes</directory> | |
| <outputDirectory></outputDirectory> | |
| </fileSet> | |
| </fileSets> | |
| </assembly> | |
| --> | |
| <assembly> | |
| <id>all-test-deps</id> | |
| <includeBaseDirectory>false</includeBaseDirectory> | |
| <formats> | |
| <format>jar</format> | |
| </formats> | |
| <fileSets> | |
| </fileSets> | |
| <dependencySets> | |
| <dependencySet> | |
| <outputDirectory></outputDirectory> | |
| <unpack>true</unpack> | |
| <excludes> | |
| <!-- Exclude the Java 5 built client and common. The java 1.4 retrotranslated versions are used instead. --> | |
| <exclude>org.apache.qpid:qpid-client:jar</exclude> | |
| <exclude>org.apache.qpid:qpid-common:jar</exclude> | |
| <!-- Mina SSL support only available in Java 5. No SSL on 1.4. --> | |
| <exclude>org.apache.mina:mina-java5</exclude> | |
| <exclude>org.apache.mina:mina-filter-ssl</exclude> | |
| </excludes> | |
| </dependencySet> | |
| </dependencySets> | |
| </assembly> |