summaryrefslogtreecommitdiff
path: root/Final/java/distribution/src
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2007-11-26 17:05:05 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2007-11-26 17:05:05 +0000
commite7bfaa4a7fe3dae4079e84010a1be5e80a63fc6a (patch)
tree629dbbf2de566d941fc67283b74133789e5c1c79 /Final/java/distribution/src
parent44ff34c5a5d2a4ee8976dcead0e7876c347e54c3 (diff)
downloadqpid-python-e7bfaa4a7fe3dae4079e84010a1be5e80a63fc6a.tar.gz
tag for M2 final release
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/tags/M2@598344 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Final/java/distribution/src')
-rw-r--r--Final/java/distribution/src/main/assembly/bin-test.xml120
-rw-r--r--Final/java/distribution/src/main/assembly/bin.xml127
-rw-r--r--Final/java/distribution/src/main/assembly/management-eclipse-plugin-unix.xml131
-rw-r--r--Final/java/distribution/src/main/assembly/management-eclipse-plugin.xml162
-rw-r--r--Final/java/distribution/src/main/assembly/src.xml106
5 files changed, 646 insertions, 0 deletions
diff --git a/Final/java/distribution/src/main/assembly/bin-test.xml b/Final/java/distribution/src/main/assembly/bin-test.xml
new file mode 100644
index 0000000000..04d83916e4
--- /dev/null
+++ b/Final/java/distribution/src/main/assembly/bin-test.xml
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>java-bin-with-tests</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+ <!-- Include the currently hardwired Apache Legal bits -->
+ <fileSet>
+ <directory>../resources</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ <fileMode>0444</fileMode>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>../release-docs</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ </fileSet>
+
+ <!-- Include the classpath jar qpid-incubating.jar -->
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <includes>
+ <include>qpid-incubating.jar</include>
+ </includes>
+ </fileSet>
+
+ <!-- Include etc -->
+ <fileSet>
+ <directory>../common/etc</directory>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <fileMode>0640</fileMode>
+ </fileSet>
+ <fileSet>
+ <directory>../broker/etc</directory>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <fileMode>0640</fileMode>
+ </fileSet>
+
+ <!-- Include bin scripts-->
+ <fileSet>
+ <directory>../broker/bin</directory>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <fileMode>0750</fileMode>
+ </fileSet>
+ <fileSet>
+ <directory>../common/bin</directory>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <fileMode>0750</fileMode>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <unpack>false</unpack>
+ <excludes>
+ <!-- Exclude the jar output of this build process -->
+ <exclude>org.apache.qpid:qpid-distribution</exclude>
+ <!-- Exclude the Console dependancies -->
+ <exclude>org.apache.qpid.management:org.apache.qpid.management.ui</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.commands</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.contenttype</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.expressions</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.jobs</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime.compatibility.auth</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime.compatibility.registry</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.common</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.preferences</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.registry</exclude>
+ <exclude>org.eclipse.help:org.eclipse.help</exclude>
+ <exclude>org.eclipse.jface:org.eclipse.jface</exclude>
+ <exclude>org.eclipse.osgi:org.eclipse.osgi</exclude>
+ <exclude>org.eclipse.swt:org.eclipse.swt</exclude>
+ <exclude>org.eclipse.swt:org.eclipse.swt.win32.win32.x86</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui.forms</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui.workbench</exclude>
+ </excludes>
+ <scope>runtime</scope>
+ </dependencySet>
+ </dependencySets>
+</assembly>
diff --git a/Final/java/distribution/src/main/assembly/bin.xml b/Final/java/distribution/src/main/assembly/bin.xml
new file mode 100644
index 0000000000..3620659e48
--- /dev/null
+++ b/Final/java/distribution/src/main/assembly/bin.xml
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>java-bin</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+ <!-- Include the currently hardwired Apache Legal bits -->
+ <fileSet>
+ <directory>../resources</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ <fileMode>0444</fileMode>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>..//release-docs</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>../release-docs</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ </fileSet>
+
+ <!-- Include the classpath jar qpid-incubating.jar -->
+ <fileSet>
+ <directory>target</directory>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <includes>
+ <include>qpid-incubating.jar</include>
+ </includes>
+ </fileSet>
+
+ <!-- Include etc -->
+ <fileSet>
+ <directory>../common/etc</directory>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <fileMode>0640</fileMode>
+ </fileSet>
+ <fileSet>
+ <directory>../broker/etc</directory>
+ <outputDirectory>qpid-${qpid.version}/etc</outputDirectory>
+ <fileMode>0640</fileMode>
+ </fileSet>
+
+ <!-- Include bin scripts-->
+ <fileSet>
+ <directory>../broker/bin</directory>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <fileMode>0750</fileMode>
+ </fileSet>
+ <fileSet>
+ <directory>../common/bin</directory>
+ <outputDirectory>qpid-${qpid.version}/bin</outputDirectory>
+ <fileMode>0750</fileMode>
+ </fileSet>
+
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>qpid-${qpid.version}/lib</outputDirectory>
+ <unpack>false</unpack>
+ <excludes>
+ <!-- Exclude the jar output of this build process -->
+ <exclude>org.apache.qpid:qpid-distribution</exclude>
+ <!-- Exclude the Console dependancies -->
+ <exclude>org.apache.qpid.management:org.apache.qpid.management.ui</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.commands</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.contenttype</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.expressions</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.jobs</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime.compatibility.auth</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime.compatibility.registry</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.common</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.preferences</exclude>
+ <exclude>org.eclipse.equinox:org.eclipse.equinox.registry</exclude>
+ <exclude>org.eclipse.help:org.eclipse.help</exclude>
+ <exclude>org.eclipse.jface:org.eclipse.jface</exclude>
+ <exclude>org.eclipse.osgi:org.eclipse.osgi</exclude>
+ <exclude>org.eclipse.swt:org.eclipse.swt</exclude>
+ <exclude>org.eclipse.swt:org.eclipse.swt.win32.win32.x86</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui.forms</exclude>
+ <exclude>org.eclipse.ui:org.eclipse.ui.workbench</exclude>
+ </excludes>
+ <scope>runtime</scope>
+ </dependencySet>
+ </dependencySets>
+</assembly>
diff --git a/Final/java/distribution/src/main/assembly/management-eclipse-plugin-unix.xml b/Final/java/distribution/src/main/assembly/management-eclipse-plugin-unix.xml
new file mode 100644
index 0000000000..02ede019e5
--- /dev/null
+++ b/Final/java/distribution/src/main/assembly/management-eclipse-plugin-unix.xml
@@ -0,0 +1,131 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>management-console-unix</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ </formats>
+<!--
+ <moduleSets>
+ <moduleSet>
+ <includes>
+ <include>org.apache.qpid.management:org.apache.qpid.management.ui</include>
+ </includes>
+ <binaries>
+ <includeDependencies>true</includeDependencies>
+ <unpack>false</unpack>
+ </binaries>
+ </moduleSet>
+ </moduleSets>
+ -->
+ <fileSets>
+
+
+ <!-- Include the currently hardwired Apache Legal bits -->
+ <fileSet>
+ <directory>../resources</directory>
+ <outputDirectory>qpid-${qpid.version}</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ <fileMode>0444</fileMode>
+ </fileSet>
+
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>*.txt</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>../release-docs</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/src/main/resources/unix/configuration</directory>
+ <outputDirectory>qpidmc/configuration</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/src/main/resources</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>license.eclipse.txt</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>README.txt</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/bin</directory>
+ <outputDirectory>qpidmc/bin</outputDirectory>
+ <includes>
+ <include>qpidmc*.sh</include>
+ </includes>
+ <fileMode>0777</fileMode>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>qpidmc/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.0</outputDirectory>
+ <outputFileNameMapping>${artifactId}_${version}/</outputFileNameMapping>
+ <unpack>true</unpack>
+ <includes>
+ <include>org.eclipse.core:org.eclipse.core.runtime.compatibility.registry</include>
+ </includes>
+ <scope>runtime</scope>
+ </dependencySet>
+
+ <dependencySet>
+ <outputDirectory>qpidmc/eclipse/plugins</outputDirectory>
+ <outputFileNameMapping>${artifactId}_${version}.${extension}</outputFileNameMapping>
+ <unpack>false</unpack>
+ <excludes>
+ <exclude>org.apache.qpid:qpid-distribution</exclude>
+ </excludes>
+ <includes>
+ <include>org.eclipse.ui:org.eclipse.ui.forms</include>
+ <include>org.apache.qpid.management:org.apache.qpid.management.ui</include>
+ </includes>
+ <scope>runtime</scope>
+ </dependencySet>
+</dependencySets>
+</assembly>
diff --git a/Final/java/distribution/src/main/assembly/management-eclipse-plugin.xml b/Final/java/distribution/src/main/assembly/management-eclipse-plugin.xml
new file mode 100644
index 0000000000..05df2c030b
--- /dev/null
+++ b/Final/java/distribution/src/main/assembly/management-eclipse-plugin.xml
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>management-console-win32</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+
+ <!-- Include the currently hardwired Apache Legal bits -->
+ <fileSet>
+ <directory>../resources</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ <fileMode>0444</fileMode>
+ </fileSet>
+
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>../release-docs</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ </fileSet>
+
+
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>*.txt</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/src/main/resources/win32/configuration</directory>
+ <outputDirectory>qpidmc/configuration</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/src/main/resources</directory>
+ <outputDirectory>qpidmc/eclipse</outputDirectory>
+ <includes>
+ <include>*.*</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin</directory>
+ <outputDirectory>qpidmc</outputDirectory>
+ <includes>
+ <include>README.txt</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../management/eclipse-plugin/bin</directory>
+ <outputDirectory>qpidmc/bin</outputDirectory>
+ <excludes>
+ <!-- Exclude the Unix scripts -->
+ <exclude>qpidmc*.sh</exclude>
+ </excludes>
+ <fileMode>0777</fileMode>
+ </fileSet>
+
+ <!-- Required to make eclipse load the JMXRemote SASL pluging -->
+ <!-- This should be removed as JMXRemote SASL module is not ASF license friendly -->
+ <!-- However management console doesn't seem to work without it -->
+ <fileSet>
+ <directory>../management/eclipse-plugin/src/main/resources/sasl</directory>
+ <outputDirectory>qpidmc/eclipse/plugins/jmxremote.sasl_1.0.1/META-INF</outputDirectory>
+ <includes>
+ <include>MANIFEST.MF</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>qpidmc/eclipse/plugins</outputDirectory>
+ <outputFileNameMapping>${artifactId}_${version}.${extension}</outputFileNameMapping>
+ <unpack>false</unpack>
+ <excludes>
+ <exclude>org.apache.qpid:qpid-distribution</exclude>
+ <exclude>org.apache.qpid:qpid-common</exclude>
+ <exclude>org.apache.qpid:qpid-broker</exclude>
+ <exclude>org.apache.qpid:qpid-client</exclude>
+ <exclude>commons-cli:commons-cli</exclude>
+ <exclude>commons-configuration:commons-configuration</exclude>
+ <exclude>commons-lang:commons-lang</exclude>
+ <exclude>org.apache.mina:mina-filter-ssl</exclude>
+ <exclude>org.apache.mina:mina-java5</exclude>
+ <exclude>backport-util-concurrent:backport-util-concurrent</exclude>
+ <exclude>org.slf4j:slf4j-simple</exclude>
+ <exclude>junit:junit</exclude>
+ <exclude>org.easymock:easymockclassextension</exclude>
+ <exclude>commons-codec:commons-codec</exclude>
+ <exclude>org.apache.geronimo.specs:geronimo-jms_1.1_spec</exclude>
+ <exclude>commons-collections:commons-collections</exclude>
+ <exclude>commons-lang:commons-lang</exclude>
+ <exclude>org.apache.mina:mina-core</exclude>
+ <exclude>commons-beanutils:commons-beanutils</exclude>
+ <exclude>commons-beanutils:commons-beanutils-core</exclude>
+ <exclude>commons-digester:commons-digester</exclude>
+ <exclude>commons-logging:commons-logging</exclude>
+ <exclude>commons-logging:commons-logging-api</exclude>
+ <exclude>dom4j:dom4j</exclude>
+ <exclude>isorelax:isorelax</exclude>
+ <exclude>jaxen:jaxen</exclude>
+ <exclude>log4j:log4j</exclude>
+ <exclude>msv:msv</exclude>
+ <exclude>xalan:xalan</exclude>
+ <exclude>xml-apis:xml-apis</exclude>
+ <exclude>saxpath:saxpath</exclude>
+ <exclude>servletapi:servletapi</exclude>
+ <exclude>relaxngDatatype:relaxngDatatype</exclude>
+ <exclude>xerces:xercesImpl</exclude>
+ <exclude>javax.servlet:servlet-api</exclude>
+ <exclude>org.eclipse.core:org.eclipse.core.runtime.compatibility.registry</exclude>
+ </excludes>
+ <scope>runtime</scope>
+ </dependencySet>
+ <dependencySet>
+ <outputDirectory>qpidmc/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.2.0</outputDirectory>
+ <outputFileNameMapping>${artifactId}_${version}/</outputFileNameMapping>
+ <unpack>true</unpack>
+ <includes>
+ <include>org.eclipse.core:org.eclipse.core.runtime.compatibility.registry</include>
+ </includes>
+ <scope>runtime</scope>
+ </dependencySet>
+ </dependencySets>
+
+</assembly>
diff --git a/Final/java/distribution/src/main/assembly/src.xml b/Final/java/distribution/src/main/assembly/src.xml
new file mode 100644
index 0000000000..efdc4d98f4
--- /dev/null
+++ b/Final/java/distribution/src/main/assembly/src.xml
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+ <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+ <id>java-src</id>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <fileSets>
+ <fileSet>
+ <directory>../resources</directory>
+ <outputDirectory>qpid-${qpid.version}-src</outputDirectory>
+ <includes>
+ <include>DISCLAIMER</include>
+ <include>LICENSE</include>
+ <include>NOTICE</include>
+ <include>README</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>src/main/release</directory>
+ <outputDirectory>qpid-${qpid.version}-src</outputDirectory>
+ </fileSet>
+
+ <!-- Include any release information -->
+ <fileSet>
+ <directory>../release-docs</directory>
+ <outputDirectory>qpid-${qpid.version}-src</outputDirectory>
+ </fileSet>
+
+ <fileSet>
+ <directory>..</directory>
+ <outputDirectory>qpid-${qpid.version}-src/java</outputDirectory>
+ <excludes>
+ <exclude>build.xml</exclude>
+ <exclude>distribution/build.xml</exclude>
+ <exclude>benchmark</exclude>
+ <exclude>benchmark/**/*</exclude>
+ <exclude>**/target</exclude>
+ <exclude>**/target/**/*</exclude>
+ <exclude>**/build</exclude>
+ <exclude>**/build/**/*</exclude>
+ <exclude>**/.settings</exclude>
+ <exclude>**/.classpath</exclude>
+ <exclude>**/.project</exclude>
+ <exclude>**/.wtpmodules</exclude>
+ <exclude>**/surefire*</exclude>
+ <exclude>**/cobertura.ser</exclude>
+ <exclude>bin</exclude>
+ <exclude>bin/*</exclude>
+ <exclude>lib</exclude>
+ <exclude>lib/**/*</exclude>
+ <exclude>**/var/journal</exclude>
+ <exclude>**/build.out*</exclude>
+ <exclude>**/eclipse-plugin/bin/**</exclude>
+ <exclude>**/eclipse-plugin/plugins/**</exclude>
+ <exclude>**/eclipse-plugin/src/main/resources/**</exclude>
+ </excludes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../../gentools</directory>
+ <outputDirectory>qpid-${qpid.version}-src/gentools</outputDirectory>
+ <excludes>
+ <exclude>**/build</exclude>
+ <exclude>**/build/**/*</exclude>
+ <exclude>**/*.class</exclude>
+ </excludes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../../specs</directory>
+ <outputDirectory>qpid-${qpid.version}-src/specs</outputDirectory>
+ <includes>
+ <include>amqp.0-8.xml</include>
+ <include>cluster.0-8.xml</include>
+ </includes>
+ </fileSet>
+
+ <fileSet>
+ <directory>../../python</directory>
+ <outputDirectory>qpid-${qpid.version}-src/python</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>