summaryrefslogtreecommitdiff
path: root/java/client-java14/src/main/assembly/jar-with-dependencies.xml
blob: dd279ffb3a8f64f9615ba80c656e5dd8d27dd1e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!-- 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>