You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2015/05/01 16:29:39 UTC

[2/3] activemq-artemis git commit: move distribution to root directory

move distribution to root directory


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/7a092661
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/7a092661
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/7a092661

Branch: refs/heads/master
Commit: 7a092661138a70692b7dec95fd8acc4cd8055f2f
Parents: 903c8a2
Author: Andy Taylor <an...@gmail.com>
Authored: Fri May 1 09:34:12 2015 +0100
Committer: Andy Taylor <an...@gmail.com>
Committed: Fri May 1 09:34:33 2015 +0100

----------------------------------------------------------------------
 artemis-distribution/pom.xml                    | 225 +++++++++++++++
 artemis-distribution/src/main/assembly/dep.xml  | 189 +++++++++++++
 .../src/main/assembly/source-assembly.xml       | 114 ++++++++
 .../src/main/resources/README.html              |  67 +++++
 .../src/main/resources/bin/artemis              | 108 ++++++++
 .../src/main/resources/bin/artemis.cmd          |  66 +++++
 .../src/main/resources/licenses/bin/LICENSE     | 272 +++++++++++++++++++
 .../src/main/resources/licenses/bin/NOTICE      |   5 +
 distribution/artemis/pom.xml                    | 225 ---------------
 distribution/artemis/src/main/assembly/dep.xml  | 189 -------------
 .../src/main/assembly/source-assembly.xml       | 114 --------
 .../artemis/src/main/resources/README.html      |  67 -----
 .../artemis/src/main/resources/bin/artemis      | 108 --------
 .../artemis/src/main/resources/bin/artemis.cmd  |  66 -----
 .../src/main/resources/licenses/bin/LICENSE     | 272 -------------------
 .../src/main/resources/licenses/bin/NOTICE      |   5 -
 distribution/pom.xml                            |  63 -----
 pom.xml                                         |   4 +-
 18 files changed, 1048 insertions(+), 1111 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/pom.xml
----------------------------------------------------------------------
diff --git a/artemis-distribution/pom.xml b/artemis-distribution/pom.xml
new file mode 100644
index 0000000..281e3c6
--- /dev/null
+++ b/artemis-distribution/pom.xml
@@ -0,0 +1,225 @@
+<!--
+  ~ 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.
+  -->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+
+
+   <parent>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>artemis-distribution</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>apache-artemis</artifactId>
+   <packaging>pom</packaging>
+   <name>Apache ActiveMQ Artemis Distribution</name>
+
+   <properties>
+      <schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>
+      <configLocation>src/main/resources/config</configLocation>
+      <activemq.basedir>${project.basedir}/../..</activemq.basedir>
+   </properties>
+
+   <dependencies>
+     <!-- ActiveMQ artifacts -->
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-boot</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-server</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-dto</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-bootstrap</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-jms-server</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-jms-client</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-tools</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-ra</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-spring-integration</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-vertx-integration</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq.rest</groupId>
+        <artifactId>artemis-rest</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>artemis-aerogear-integration</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-web</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-core-client</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+       <dependency>
+           <groupId>org.apache.activemq</groupId>
+           <artifactId>artemis-amqp-protocol</artifactId>
+           <version>${project.version}</version>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.activemq</groupId>
+           <artifactId>artemis-stomp-protocol</artifactId>
+           <version>${project.version}</version>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.activemq</groupId>
+           <artifactId>artemis-openwire-protocol</artifactId>
+           <version>${project.version}</version>
+       </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-native</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-website</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+
+      <!-- dependencies -->
+      <dependency>
+         <groupId>org.jboss.logmanager</groupId>
+         <artifactId>jboss-logmanager</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.qpid</groupId>
+         <artifactId>proton-jms</artifactId>
+      </dependency>
+       <dependency>
+           <groupId>io.airlift</groupId>
+           <artifactId>airline</artifactId>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.activemq</groupId>
+           <artifactId>activemq-client</artifactId>
+       </dependency>
+       <dependency>
+          <groupId>org.eclipse.jetty.aggregate</groupId>
+          <artifactId>jetty-all</artifactId>
+       </dependency>
+       <dependency>
+          <groupId>org.apache.geronimo.specs</groupId>
+          <artifactId>geronimo-servlet_3.0_spec</artifactId>
+       </dependency>
+       <dependency>
+          <groupId>org.jolokia</groupId>
+          <artifactId>jolokia-war</artifactId>
+          <type>war</type>
+       </dependency>
+      <dependency>
+         <groupId>commons-beanutils</groupId>
+         <artifactId>commons-beanutils</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>commons-logging</groupId>
+         <artifactId>commons-logging</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.apache.activemq</groupId>
+         <artifactId>artemis-website</artifactId>
+         <version>${project.version}</version>
+         <classifier>javadoc</classifier>
+      </dependency>
+   </dependencies>
+
+   <build>
+      <resources>
+         <resource>
+            <directory>../artemis/src/main/resources</directory>
+            <filtering>true</filtering>
+         </resource>
+      </resources>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-deploy-plugin</artifactId>
+         </plugin>
+         <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>2.2</version>
+            <executions>
+               <execution>
+                  <id>source</id>
+                  <configuration>
+                     <descriptor>src/main/assembly/source-assembly.xml</descriptor>
+                     <tarLongFileMode>gnu</tarLongFileMode>
+                  </configuration>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>single</goal>
+                  </goals>
+               </execution>
+               <execution>
+                 <id>bin</id>
+                  <configuration>
+                     <descriptor>src/main/assembly/dep.xml</descriptor>
+                     <tarLongFileMode>gnu</tarLongFileMode>
+                  </configuration>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>single</goal>
+                  </goals>
+               </execution>
+            </executions>
+         </plugin>
+      </plugins>
+   </build>
+
+</project>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/assembly/dep.xml
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/assembly/dep.xml b/artemis-distribution/src/main/assembly/dep.xml
new file mode 100644
index 0000000..1ca9844
--- /dev/null
+++ b/artemis-distribution/src/main/assembly/dep.xml
@@ -0,0 +1,189 @@
+<!--
+  ~ 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 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+
+   <id>bin</id>
+   <formats>
+      <format>dir</format>
+      <format>zip</format>
+      <format>tar.gz</format>
+   </formats>
+   <includeBaseDirectory>true</includeBaseDirectory>
+
+
+   <dependencySets>
+      <dependencySet>
+        <directoryMode>755</directoryMode>
+        <fileMode>644</fileMode>
+        <outputDirectory>lib</outputDirectory>
+        <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping>
+        <unpack>false</unpack>
+        <useTransitiveDependencies>false</useTransitiveDependencies>
+        <includes>
+           <include>org.apache.activemq:artemis-boot</include>
+        </includes>
+      </dependencySet>
+
+      <dependencySet>
+         <directoryMode>755</directoryMode>
+         <fileMode>644</fileMode>
+         <includes>
+
+            <!-- modules -->
+            <include>org.apache.activemq:artemis-bootstrap</include>
+            <include>org.apache.activemq:artemis-commons</include>
+            <include>org.apache.activemq:artemis-core-client</include>
+            <include>org.apache.activemq:artemis-dto</include>
+            <include>org.apache.activemq:artemis-jms-client</include>
+            <include>org.apache.activemq:artemis-jms-server</include>
+            <include>org.apache.activemq:artemis-journal</include>
+            <include>org.apache.activemq:artemis-native</include>
+            <include>org.apache.activemq:artemis-amqp-protocol</include>
+            <include>org.apache.activemq:artemis-openwire-protocol</include>
+            <include>org.apache.activemq:artemis-proton-plug</include>
+            <include>org.apache.activemq:artemis-stomp-protocol</include>
+            <include>org.apache.activemq:artemis-ra</include>
+            <include>org.apache.activemq:artemis-selector</include>
+            <include>org.apache.activemq:artemis-server</include>
+            <include>org.apache.activemq:artemis-service-extensions</include>
+            <include>org.apache.activemq:artemis-tools</include>
+            <include>org.apache.activemq:artemis-web</include>
+            <include>org.apache.activemq.rest:artemis-rest</include>
+            <!-- dependencies -->
+            <include>org.apache.geronimo.specs:geronimo-jms_2.0_spec</include>
+            <include>org.jboss.logmanager:jboss-logmanager</include>
+            <include>org.jboss.logging:jboss-logging</include>
+            <include>io.netty:netty-all</include>
+            <include>org.apache.qpid:proton-j</include>
+            <include>org.apache.qpid:proton-jms</include>
+            <include>org.apache.activemq:activemq-client</include>
+            <include>org.slf4j:slf4j-api</include>
+            <include>io.airlift:airline</include>
+            <include>com.google.guava:guava</include>
+            <include>javax.inject:javax.inject</include>
+            <include>org.eclipse.jetty.aggregate:jetty-all</include>
+            <include>org.apache.geronimo.specs:</include>
+            <include>org.apache.geronimo.specs:geronimo-servlet_3.0_spec</include>
+            <include>commons-beanutils:commons-beanutils</include>
+            <include>commons-logging:commons-logging</include>
+            <include>org.fusesource.hawtbuf:hawtbuf</include>
+         </includes>
+         <!--excludes>
+            <exclude>org.apache.activemq:artemis-website</exclude>
+         </excludes-->
+         <outputDirectory>lib</outputDirectory>
+         <unpack>false</unpack>
+      </dependencySet>
+      <!-- native -->
+      <dependencySet>
+         <includes>
+            <include>org.apache.activemq:artemis-native</include>
+         </includes>
+         <outputDirectory>bin</outputDirectory>
+         <unpack>true</unpack>
+         <unpackOptions>
+            <includes>
+               <include>**/*.so</include>
+            </includes>
+         </unpackOptions>
+      </dependencySet>
+      <dependencySet>
+         <includes>
+            <include>org.apache.activemq:artemis-website</include>
+         </includes>
+         <excludes>
+            <exclude>org.apache.activemq:artemis-website:jar:javadoc</exclude>
+         </excludes>
+         <outputDirectory>web</outputDirectory>
+         <unpack>true</unpack>
+      </dependencySet>
+      <dependencySet>
+         <includes>
+            <include>org.apache.activemq:artemis-website:jar:javadoc</include>
+         </includes>
+         <outputDirectory>web/api</outputDirectory>
+         <unpack>true</unpack>
+      </dependencySet>
+      <dependencySet>
+         <includes>
+            <include>org.jolokia:jolokia-war:war</include>
+         </includes>
+         <outputDirectory>web</outputDirectory>
+         <unpack>false</unpack>
+      </dependencySet>
+   </dependencySets>
+   <fileSets>
+      <!-- schema -->
+      <fileSet>
+         <directory>${activemq.basedir}/artemis-server/src/main/resources/schema/</directory>
+         <outputDirectory>schema</outputDirectory>
+         <lineEnding>keep</lineEnding>
+      </fileSet>
+      <fileSet>
+         <directory>${activemq.basedir}/artemis-jms-server/src/main/resources/schema/</directory>
+         <outputDirectory>schema</outputDirectory>
+         <lineEnding>keep</lineEnding>
+      </fileSet>
+      <!-- resources -->
+      <fileSet>
+         <directory>src/main/resources</directory>
+         <outputDirectory>/</outputDirectory>
+         <lineEnding>keep</lineEnding>
+         <excludes>
+            <exclude>bin/activemq</exclude>
+            <exclude>bin/run.sh</exclude>
+            <exclude>bin/stop.sh</exclude>
+            <exclude>**/target/**</exclude>
+            <exclude>**/**/*.iml</exclude>
+            <exclude>**/**/*.dat</exclude>
+            <exclude>**/licenses/**</exclude>
+         </excludes>
+      </fileSet>
+      <!-- chmod to 755 on linux executables -->
+      <fileSet>
+         <directory>src/main/resources</directory>
+         <outputDirectory>/</outputDirectory>
+         <lineEnding>keep</lineEnding>
+         <includes>
+            <include>bin/activemq</include>
+            <include>bin/run.sh</include>
+            <include>bin/stop.sh</include>
+         </includes>
+         <directoryMode>0755</directoryMode>
+         <fileMode>0755</fileMode>
+      </fileSet>
+      <fileSet>
+         <directory>${activemq.basedir}/examples</directory>
+         <outputDirectory>examples</outputDirectory>
+         <lineEnding>keep</lineEnding>
+         <excludes>
+            <exclude>**/target/**</exclude>
+            <exclude>**/**/*.iml</exclude>
+            <exclude>**/**/*.dat</exclude>
+         </excludes>
+      </fileSet>
+      <!-- Include license and notice files -->
+      <fileSet>
+         <directory>${activemq.basedir}/distribution/activemq/src/main/resources/licenses/bin</directory>
+         <outputDirectory>/</outputDirectory>
+         <useDefaultExcludes>true</useDefaultExcludes>
+      </fileSet>
+   </fileSets>
+</assembly>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/assembly/source-assembly.xml
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/assembly/source-assembly.xml b/artemis-distribution/src/main/assembly/source-assembly.xml
new file mode 100644
index 0000000..3509b53
--- /dev/null
+++ b/artemis-distribution/src/main/assembly/source-assembly.xml
@@ -0,0 +1,114 @@
+<!--
+  ~ 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 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
+
+   <id>source-release</id>
+
+   <formats>
+      <format>zip</format>
+      <format>tar.gz</format>
+   </formats>
+
+   <includeBaseDirectory>true</includeBaseDirectory>
+
+   <fileSets>
+      <!--  main project directory structure  -->
+      <fileSet>
+         <directory>${activemq.basedir}</directory>
+         <outputDirectory>/</outputDirectory>
+         <useDefaultExcludes>true</useDefaultExcludes>
+         <!-- TODO These excludes were lifted from maven-resources-apache-source-release-assembly-descriptor-1.0.4. We
+         should use this descriptor directly in future -->
+         <excludes>
+            <exclude>tests/extra-tests/</exclude>
+            
+            <!-- in case some of the build generates data, this needs to be ignored -->
+            <exclude>data/</exclude>
+
+            <!--  build output  -->
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]
+            </exclude>
+            <!--
+             NOTE: Most of the following excludes should not be required
+                         if the standard release process is followed. This is because the
+                         release plugin checks out project sources into a location like
+                         target/checkout, then runs the build from there. The result is
+                         a source-release archive that comes from a pretty clean directory
+                         structure.
+
+                         HOWEVER, if the release plugin is configured to run extra goals
+                         or generate a project website, it's definitely possible that some
+                         of these files will be present. So, it's safer to exclude them.
+
+            -->
+            <!--  IDEs  -->
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?maven-eclipse\.xml]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.project]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.classpath]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iws]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.idea(/.*)?]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?out(/.*)?]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.ipr]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iml]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.settings(/.*)?]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.externalToolBuilders(/.*)?]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.deployables(/.*)?]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.wtpmodules(/.*)?]
+            </exclude>
+            <!--  misc  -->
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?cobertura\.ser]
+            </exclude>
+            <!--  release-plugin temp files  -->
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?pom\.xml\.releaseBackup]
+            </exclude>
+            <exclude>
+               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?release\.properties]
+            </exclude>
+
+         </excludes>
+      </fileSet>
+   </fileSets>
+</assembly>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/resources/README.html
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/README.html b/artemis-distribution/src/main/resources/README.html
new file mode 100644
index 0000000..1b7b1a9
--- /dev/null
+++ b/artemis-distribution/src/main/resources/README.html
@@ -0,0 +1,67 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!--
+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.
+-->
+
+<html>
+<head>
+   <meta content="text/html; charset=ISO-8859-1"
+         http-equiv="content-type">
+   <title>Apache ActiveMQ Artemis README</title>
+</head>
+<body>
+
+<h1>Getting Started</h1>
+
+<h2>Starting the Broker</h2>
+
+<b>Note (Windows users):</b> The broker currently does not support spaces in path names.  For this reason the broker should be placed in a directory with no spaces in it's absolute path.</br></br>
+
+<b>Note (Windows users):</b> Examples below use the shell script `activemq` for use with linux, Windows users should use the `activemq.cmd` script with the same parameters.</br></br>
+
+To run the ActiveMQ broker with the default configuration, run the command shown below from the "bin" directory.</br></br>
+
+$ ./activemq run</br></br>
+
+To specify a broker configuration file:</br></br>
+
+$ ./activemq run --config scheme:location</br></br>
+
+e.g.</br></br>
+
+$ ./activemq run --config xml:/home/activemq/bootstrap.xml</br></br>
+
+The distribution ships with a number of example configurations that can be used to get started.  You can find these under the "config" directory.</br></br>
+
+It is possible to configure run time paramters in the activemq.conf (activemq.conf.bat for windows) file under the "bin" directory.
+<h2>Stopping the Broker</h2>
+
+To stop the broker please use the activemq script:</br></br>
+
+$ ./activemq stop</br></br>
+
+<h2>Documentation</h2>
+
+The broker comes shipped with an in depth user manual and a bunch of examples to help you get started.  The manual is accessible from the broker website.  Start the broker then navigate to the <a href="http://localhost:8161">Apache ActiveMQ Artemis</a>.</br></br>
+
+The examples are shipped inside the distribution folder under "examples"</br></br>
+
+<h2>Release Notes - ActiveMQ Artemis 1.0.0</h2>
+
+The ActiveMQ Artemis 1.0.0 release notes can be found in the <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315920&version=12328953">Apache ActiveMQ Artemis project JIRA</a>.
+

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/resources/bin/artemis
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/bin/artemis b/artemis-distribution/src/main/resources/bin/artemis
new file mode 100755
index 0000000..f31e351
--- /dev/null
+++ b/artemis-distribution/src/main/resources/bin/artemis
@@ -0,0 +1,108 @@
+#!/bin/sh
+# 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.
+
+if [ -z "$ARTEMIS_HOME" ] ; then
+
+  ## resolve links - $0 may be a link to ActiveMQ's home
+  PRG="$0"
+  progname=`basename "$0"`
+  saveddir=`pwd`
+
+  # need this for relative symlinks
+  dirname_prg=`dirname "$PRG"`
+  cd "$dirname_prg"
+
+  while [ -h "$PRG" ] ; do
+    ls=`ls -ld "$PRG"`
+    link=`expr "$ls" : '.*-> \(.*\)$'`
+    if expr "$link" : '.*/.*' > /dev/null; then
+    PRG="$link"
+    else
+    PRG=`dirname "$PRG"`"/$link"
+    fi
+  done
+
+  ARTEMIS_HOME=`dirname "$PRG"`
+  cd "$saveddir"
+
+  # make it fully qualified
+  ARTEMIS_HOME=`cd "$ARTEMIS_HOME/.." && pwd`
+fi
+
+# Set Defaults Properties
+JAVA_ARGS="-XX:+UseParallelGC -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xms512M -Xmx1024M"
+CLASSPATH="$ARTEMIS_HOME/lib/artemis-boot.jar"
+
+# OS specific support.
+cygwin=false;
+darwin=false;
+case "`uname`" in
+  CYGWIN*) cygwin=true
+    OSTYPE=cygwin
+    export OSTYPE
+    ;;
+  Darwin*) darwin=true
+    if [ -z "$JAVA_HOME" ] ; then
+     JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
+    fi
+    ;;
+esac
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+  [ -n "$ARTEMIS_HOME" ] &&
+    ARTEMIS_HOME=`cygpath --unix "$ARTEMIS_HOME"`
+  [ -n "$JAVA_HOME" ] &&
+    JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+fi
+
+if [ -z "$JAVACMD" ] ; then
+  if [ -n "$JAVA_HOME"  ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+    fi
+  else
+    JAVACMD=`which java 2> /dev/null `
+    if [ -z "$JAVACMD" ] ; then
+        JAVACMD=java
+    fi
+  fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+  echo "Error: JAVA_HOME is not defined correctly."
+  echo "  We cannot execute $JAVACMD"
+  exit 1
+fi
+
+
+if $cygwin ; then
+  JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
+  ARTEMIS_HOME=`cygpath --windows "$ARTEMIS_HOME"`
+  CLASSPATH=`cygpath --windows "$CLASSPATH"`
+fi
+
+exec "$JAVACMD" $JAVA_ARGS $ARTEMIS_CLUSTER_PROPS \
+    -classpath "$CLASSPATH" \
+    -Dartemis.home="$ARTEMIS_HOME" \
+    -Djava.library.path="$ARTEMIS_HOME/bin/lib/linux-i686:$ARTEMIS_INSTANCE/bin/lib/linux-x86_64" \
+    $DEBUG_ARGS \
+    org.apache.activemq.artemis.boot.Artemis $@

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/resources/bin/artemis.cmd
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/bin/artemis.cmd b/artemis-distribution/src/main/resources/bin/artemis.cmd
new file mode 100755
index 0000000..4132fb6
--- /dev/null
+++ b/artemis-distribution/src/main/resources/bin/artemis.cmd
@@ -0,0 +1,66 @@
+@echo off
+rem Licensed to the Apache Software Foundation (ASF) under one
+rem or more contributor license agreements.  See the NOTICE file
+rem distributed with this work for additional information
+rem regarding copyright ownership.  The ASF licenses this file
+rem to you under the Apache License, Version 2.0 (the
+rem "License"); you may not use this file except in compliance
+rem with the License.  You may obtain a copy of the License at
+rem
+rem   http://www.apache.org/licenses/LICENSE-2.0
+rem
+rem Unless required by applicable law or agreed to in writing,
+rem software distributed under the License is distributed on an
+rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+rem KIND, either express or implied.  See the License for the
+rem specific language governing permissions and limitations
+rem under the License.
+
+setlocal
+
+if NOT "%ARTEMIS_HOME%"=="" goto CHECK_ARTEMIS_HOME
+PUSHD .
+CD %~dp0..
+set ARTEMIS_HOME=%CD%
+POPD
+
+:CHECK_ARTEMIS_HOME
+if exist "%ARTEMIS_HOME%\bin\artemis.cmd" goto CHECK_JAVA
+
+:NO_HOME
+echo ARTEMIS_HOME environment variable is set incorrectly. Please set ARTEMIS_HOME.
+goto END
+
+:CHECK_JAVA
+set _JAVACMD=%JAVACMD%
+
+if "%JAVA_HOME%" == "" goto NO_JAVA_HOME
+if not exist "%JAVA_HOME%\bin\java.exe" goto NO_JAVA_HOME
+if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
+goto RUN_JAVA
+
+:NO_JAVA_HOME
+if "%_JAVACMD%" == "" set _JAVACMD=java.exe
+echo.
+echo Warning: JAVA_HOME environment variable is not set.
+echo.
+
+:RUN_JAVA
+
+rem "Set Defaults."
+set JAVA_ARGS=-XX:+UseParallelGC -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xms512M -Xmx1024M
+
+rem "Create full JVM Args"
+set JVM_ARGS=%JAVA_ARGS%
+if not "%ARTEMIS_CLUSTER_PROPS%"=="" set JVM_ARGS=%JVM_ARGS% %ARTEMIS_CLUSTER_PROPS%
+set JVM_ARGS=%JVM_ARGS% -classpath "%ARTEMIS_HOME%\lib\artemis-boot.jar"
+set JVM_ARGS=%JVM_ARGS% -Dartemis.home="%ARTEMIS_HOME%"
+if not "%DEBUG_ARGS%"=="" set JVM_ARGS=%JVM_ARGS% %DEBUG_ARGS%
+
+"%_JAVACMD%" %JVM_ARGS% org.apache.activemq.artemis.boot.Artemis %*
+
+:END
+endlocal
+GOTO :EOF
+
+:EOF

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/resources/licenses/bin/LICENSE
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/licenses/bin/LICENSE b/artemis-distribution/src/main/resources/licenses/bin/LICENSE
new file mode 100644
index 0000000..389ea2b
--- /dev/null
+++ b/artemis-distribution/src/main/resources/licenses/bin/LICENSE
@@ -0,0 +1,272 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed 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.
+
+======================================================================
+== For the "slf4j-api" library                                      ==
+======================================================================
+
+ Copyright (c) 2004-2013 QOS.ch
+ All rights reserved.
+
+ Permission is hereby granted, free  of charge, to any person obtaining
+ a  copy  of this  software  and  associated  documentation files  (the
+ "Software"), to  deal in  the Software without  restriction, including
+ without limitation  the rights to  use, copy, modify,  merge, publish,
+ distribute,  sublicense, and/or sell  copies of  the Software,  and to
+ permit persons to whom the Software  is furnished to do so, subject to
+ the following conditions:
+
+ The  above  copyright  notice  and  this permission  notice  shall  be
+ included in all copies or substantial portions of the Software.
+
+ THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
+ EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
+ MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+===============================================================
+= For json processor files.                                   =
+= See: src/main/java/org/apache/activemq/utils/json           =
+===============================================================
+
+Copyright (c) 2002 JSON.org
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+The Software shall be used for Good, not Evil.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+===============================================================
+= For Base64.java file                                        =
+===============================================================
+
+This file is in the public Domain.
+
+Notice from author (Robert Harder, rob@iharder.net):
+
+"I have released this software into the Public Domain. That means you can do whatever you want with it. Really. You
+ don't have to match it up with any other open source license &em; just use it. You can rename the files, move the
+ Java packages, whatever you want. If your lawyers say you have to have a license, contact me, and I'll make a special
+ release to you under whatever reasonable license you desire: MIT, BSD, GPL, whatever."
+
+See: http://iharder.sourceforge.net/current/java/base64/
+

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/artemis-distribution/src/main/resources/licenses/bin/NOTICE
----------------------------------------------------------------------
diff --git a/artemis-distribution/src/main/resources/licenses/bin/NOTICE b/artemis-distribution/src/main/resources/licenses/bin/NOTICE
new file mode 100644
index 0000000..28c29dc
--- /dev/null
+++ b/artemis-distribution/src/main/resources/licenses/bin/NOTICE
@@ -0,0 +1,5 @@
+Apache ActiveMQ Artemis
+Copyright [2014-2015] The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/artemis/pom.xml b/distribution/artemis/pom.xml
deleted file mode 100644
index ab6e2a9..0000000
--- a/distribution/artemis/pom.xml
+++ /dev/null
@@ -1,225 +0,0 @@
-<!--
-  ~ 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.
-  -->
-
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-   <modelVersion>4.0.0</modelVersion>
-
-
-   <parent>
-      <groupId>org.apache.activemq</groupId>
-      <artifactId>artemis-distribution</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-
-   <artifactId>apache-activemq-artemis</artifactId>
-   <packaging>pom</packaging>
-   <name>Apache ActiveMQ Artemis Distribution</name>
-
-   <properties>
-      <schemaLocation>${project.build.directory}/${project.artifactId}-${project.version}-bin/${project.artifactId}-${project.version}/schema</schemaLocation>
-      <configLocation>src/main/resources/config</configLocation>
-      <activemq.basedir>${project.basedir}/../..</activemq.basedir>
-   </properties>
-
-   <dependencies>
-     <!-- ActiveMQ artifacts -->
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-boot</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-server</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-dto</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-bootstrap</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-jms-server</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-jms-client</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-tools</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-ra</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-spring-integration</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-vertx-integration</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq.rest</groupId>
-        <artifactId>artemis-rest</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-     <dependency>
-        <groupId>org.apache.activemq</groupId>
-        <artifactId>artemis-aerogear-integration</artifactId>
-        <version>${project.version}</version>
-     </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-web</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-core-client</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-       <dependency>
-           <groupId>org.apache.activemq</groupId>
-           <artifactId>artemis-amqp-protocol</artifactId>
-           <version>${project.version}</version>
-       </dependency>
-       <dependency>
-           <groupId>org.apache.activemq</groupId>
-           <artifactId>artemis-stomp-protocol</artifactId>
-           <version>${project.version}</version>
-       </dependency>
-       <dependency>
-           <groupId>org.apache.activemq</groupId>
-           <artifactId>artemis-openwire-protocol</artifactId>
-           <version>${project.version}</version>
-       </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-native</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-website</artifactId>
-         <version>${project.version}</version>
-      </dependency>
-
-      <!-- dependencies -->
-      <dependency>
-         <groupId>org.jboss.logmanager</groupId>
-         <artifactId>jboss-logmanager</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.qpid</groupId>
-         <artifactId>proton-jms</artifactId>
-      </dependency>
-       <dependency>
-           <groupId>io.airlift</groupId>
-           <artifactId>airline</artifactId>
-       </dependency>
-       <dependency>
-           <groupId>org.apache.activemq</groupId>
-           <artifactId>activemq-client</artifactId>
-       </dependency>
-       <dependency>
-          <groupId>org.eclipse.jetty.aggregate</groupId>
-          <artifactId>jetty-all</artifactId>
-       </dependency>
-       <dependency>
-          <groupId>org.apache.geronimo.specs</groupId>
-          <artifactId>geronimo-servlet_3.0_spec</artifactId>
-       </dependency>
-       <dependency>
-          <groupId>org.jolokia</groupId>
-          <artifactId>jolokia-war</artifactId>
-          <type>war</type>
-       </dependency>
-      <dependency>
-         <groupId>commons-beanutils</groupId>
-         <artifactId>commons-beanutils</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>commons-logging</groupId>
-         <artifactId>commons-logging</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>org.apache.activemq</groupId>
-         <artifactId>artemis-website</artifactId>
-         <version>${project.version}</version>
-         <classifier>javadoc</classifier>
-      </dependency>
-   </dependencies>
-
-   <build>
-      <resources>
-         <resource>
-            <directory>../artemis/src/main/resources</directory>
-            <filtering>true</filtering>
-         </resource>
-      </resources>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-         </plugin>
-         <plugin>
-            <artifactId>maven-assembly-plugin</artifactId>
-            <version>2.2</version>
-            <executions>
-               <execution>
-                  <id>source</id>
-                  <configuration>
-                     <descriptor>src/main/assembly/source-assembly.xml</descriptor>
-                     <tarLongFileMode>gnu</tarLongFileMode>
-                  </configuration>
-                  <phase>package</phase>
-                  <goals>
-                     <goal>single</goal>
-                  </goals>
-               </execution>
-               <execution>
-                 <id>bin</id>
-                  <configuration>
-                     <descriptor>src/main/assembly/dep.xml</descriptor>
-                     <tarLongFileMode>gnu</tarLongFileMode>
-                  </configuration>
-                  <phase>package</phase>
-                  <goals>
-                     <goal>single</goal>
-                  </goals>
-               </execution>
-            </executions>
-         </plugin>
-      </plugins>
-   </build>
-
-</project>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/src/main/assembly/dep.xml
----------------------------------------------------------------------
diff --git a/distribution/artemis/src/main/assembly/dep.xml b/distribution/artemis/src/main/assembly/dep.xml
deleted file mode 100644
index 1ca9844..0000000
--- a/distribution/artemis/src/main/assembly/dep.xml
+++ /dev/null
@@ -1,189 +0,0 @@
-<!--
-  ~ 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 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
-          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
-
-   <id>bin</id>
-   <formats>
-      <format>dir</format>
-      <format>zip</format>
-      <format>tar.gz</format>
-   </formats>
-   <includeBaseDirectory>true</includeBaseDirectory>
-
-
-   <dependencySets>
-      <dependencySet>
-        <directoryMode>755</directoryMode>
-        <fileMode>644</fileMode>
-        <outputDirectory>lib</outputDirectory>
-        <outputFileNameMapping>${artifact.artifactId}.${artifact.extension}</outputFileNameMapping>
-        <unpack>false</unpack>
-        <useTransitiveDependencies>false</useTransitiveDependencies>
-        <includes>
-           <include>org.apache.activemq:artemis-boot</include>
-        </includes>
-      </dependencySet>
-
-      <dependencySet>
-         <directoryMode>755</directoryMode>
-         <fileMode>644</fileMode>
-         <includes>
-
-            <!-- modules -->
-            <include>org.apache.activemq:artemis-bootstrap</include>
-            <include>org.apache.activemq:artemis-commons</include>
-            <include>org.apache.activemq:artemis-core-client</include>
-            <include>org.apache.activemq:artemis-dto</include>
-            <include>org.apache.activemq:artemis-jms-client</include>
-            <include>org.apache.activemq:artemis-jms-server</include>
-            <include>org.apache.activemq:artemis-journal</include>
-            <include>org.apache.activemq:artemis-native</include>
-            <include>org.apache.activemq:artemis-amqp-protocol</include>
-            <include>org.apache.activemq:artemis-openwire-protocol</include>
-            <include>org.apache.activemq:artemis-proton-plug</include>
-            <include>org.apache.activemq:artemis-stomp-protocol</include>
-            <include>org.apache.activemq:artemis-ra</include>
-            <include>org.apache.activemq:artemis-selector</include>
-            <include>org.apache.activemq:artemis-server</include>
-            <include>org.apache.activemq:artemis-service-extensions</include>
-            <include>org.apache.activemq:artemis-tools</include>
-            <include>org.apache.activemq:artemis-web</include>
-            <include>org.apache.activemq.rest:artemis-rest</include>
-            <!-- dependencies -->
-            <include>org.apache.geronimo.specs:geronimo-jms_2.0_spec</include>
-            <include>org.jboss.logmanager:jboss-logmanager</include>
-            <include>org.jboss.logging:jboss-logging</include>
-            <include>io.netty:netty-all</include>
-            <include>org.apache.qpid:proton-j</include>
-            <include>org.apache.qpid:proton-jms</include>
-            <include>org.apache.activemq:activemq-client</include>
-            <include>org.slf4j:slf4j-api</include>
-            <include>io.airlift:airline</include>
-            <include>com.google.guava:guava</include>
-            <include>javax.inject:javax.inject</include>
-            <include>org.eclipse.jetty.aggregate:jetty-all</include>
-            <include>org.apache.geronimo.specs:</include>
-            <include>org.apache.geronimo.specs:geronimo-servlet_3.0_spec</include>
-            <include>commons-beanutils:commons-beanutils</include>
-            <include>commons-logging:commons-logging</include>
-            <include>org.fusesource.hawtbuf:hawtbuf</include>
-         </includes>
-         <!--excludes>
-            <exclude>org.apache.activemq:artemis-website</exclude>
-         </excludes-->
-         <outputDirectory>lib</outputDirectory>
-         <unpack>false</unpack>
-      </dependencySet>
-      <!-- native -->
-      <dependencySet>
-         <includes>
-            <include>org.apache.activemq:artemis-native</include>
-         </includes>
-         <outputDirectory>bin</outputDirectory>
-         <unpack>true</unpack>
-         <unpackOptions>
-            <includes>
-               <include>**/*.so</include>
-            </includes>
-         </unpackOptions>
-      </dependencySet>
-      <dependencySet>
-         <includes>
-            <include>org.apache.activemq:artemis-website</include>
-         </includes>
-         <excludes>
-            <exclude>org.apache.activemq:artemis-website:jar:javadoc</exclude>
-         </excludes>
-         <outputDirectory>web</outputDirectory>
-         <unpack>true</unpack>
-      </dependencySet>
-      <dependencySet>
-         <includes>
-            <include>org.apache.activemq:artemis-website:jar:javadoc</include>
-         </includes>
-         <outputDirectory>web/api</outputDirectory>
-         <unpack>true</unpack>
-      </dependencySet>
-      <dependencySet>
-         <includes>
-            <include>org.jolokia:jolokia-war:war</include>
-         </includes>
-         <outputDirectory>web</outputDirectory>
-         <unpack>false</unpack>
-      </dependencySet>
-   </dependencySets>
-   <fileSets>
-      <!-- schema -->
-      <fileSet>
-         <directory>${activemq.basedir}/artemis-server/src/main/resources/schema/</directory>
-         <outputDirectory>schema</outputDirectory>
-         <lineEnding>keep</lineEnding>
-      </fileSet>
-      <fileSet>
-         <directory>${activemq.basedir}/artemis-jms-server/src/main/resources/schema/</directory>
-         <outputDirectory>schema</outputDirectory>
-         <lineEnding>keep</lineEnding>
-      </fileSet>
-      <!-- resources -->
-      <fileSet>
-         <directory>src/main/resources</directory>
-         <outputDirectory>/</outputDirectory>
-         <lineEnding>keep</lineEnding>
-         <excludes>
-            <exclude>bin/activemq</exclude>
-            <exclude>bin/run.sh</exclude>
-            <exclude>bin/stop.sh</exclude>
-            <exclude>**/target/**</exclude>
-            <exclude>**/**/*.iml</exclude>
-            <exclude>**/**/*.dat</exclude>
-            <exclude>**/licenses/**</exclude>
-         </excludes>
-      </fileSet>
-      <!-- chmod to 755 on linux executables -->
-      <fileSet>
-         <directory>src/main/resources</directory>
-         <outputDirectory>/</outputDirectory>
-         <lineEnding>keep</lineEnding>
-         <includes>
-            <include>bin/activemq</include>
-            <include>bin/run.sh</include>
-            <include>bin/stop.sh</include>
-         </includes>
-         <directoryMode>0755</directoryMode>
-         <fileMode>0755</fileMode>
-      </fileSet>
-      <fileSet>
-         <directory>${activemq.basedir}/examples</directory>
-         <outputDirectory>examples</outputDirectory>
-         <lineEnding>keep</lineEnding>
-         <excludes>
-            <exclude>**/target/**</exclude>
-            <exclude>**/**/*.iml</exclude>
-            <exclude>**/**/*.dat</exclude>
-         </excludes>
-      </fileSet>
-      <!-- Include license and notice files -->
-      <fileSet>
-         <directory>${activemq.basedir}/distribution/activemq/src/main/resources/licenses/bin</directory>
-         <outputDirectory>/</outputDirectory>
-         <useDefaultExcludes>true</useDefaultExcludes>
-      </fileSet>
-   </fileSets>
-</assembly>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/src/main/assembly/source-assembly.xml
----------------------------------------------------------------------
diff --git a/distribution/artemis/src/main/assembly/source-assembly.xml b/distribution/artemis/src/main/assembly/source-assembly.xml
deleted file mode 100644
index 3509b53..0000000
--- a/distribution/artemis/src/main/assembly/source-assembly.xml
+++ /dev/null
@@ -1,114 +0,0 @@
-<!--
-  ~ 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 xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
-
-   <id>source-release</id>
-
-   <formats>
-      <format>zip</format>
-      <format>tar.gz</format>
-   </formats>
-
-   <includeBaseDirectory>true</includeBaseDirectory>
-
-   <fileSets>
-      <!--  main project directory structure  -->
-      <fileSet>
-         <directory>${activemq.basedir}</directory>
-         <outputDirectory>/</outputDirectory>
-         <useDefaultExcludes>true</useDefaultExcludes>
-         <!-- TODO These excludes were lifted from maven-resources-apache-source-release-assembly-descriptor-1.0.4. We
-         should use this descriptor directly in future -->
-         <excludes>
-            <exclude>tests/extra-tests/</exclude>
-            
-            <!-- in case some of the build generates data, this needs to be ignored -->
-            <exclude>data/</exclude>
-
-            <!--  build output  -->
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]
-            </exclude>
-            <!--
-             NOTE: Most of the following excludes should not be required
-                         if the standard release process is followed. This is because the
-                         release plugin checks out project sources into a location like
-                         target/checkout, then runs the build from there. The result is
-                         a source-release archive that comes from a pretty clean directory
-                         structure.
-
-                         HOWEVER, if the release plugin is configured to run extra goals
-                         or generate a project website, it's definitely possible that some
-                         of these files will be present. So, it's safer to exclude them.
-
-            -->
-            <!--  IDEs  -->
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?maven-eclipse\.xml]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.project]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.classpath]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iws]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.idea(/.*)?]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?out(/.*)?]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.ipr]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iml]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.settings(/.*)?]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.externalToolBuilders(/.*)?]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.deployables(/.*)?]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.wtpmodules(/.*)?]
-            </exclude>
-            <!--  misc  -->
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?cobertura\.ser]
-            </exclude>
-            <!--  release-plugin temp files  -->
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?pom\.xml\.releaseBackup]
-            </exclude>
-            <exclude>
-               %regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?release\.properties]
-            </exclude>
-
-         </excludes>
-      </fileSet>
-   </fileSets>
-</assembly>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/src/main/resources/README.html
----------------------------------------------------------------------
diff --git a/distribution/artemis/src/main/resources/README.html b/distribution/artemis/src/main/resources/README.html
deleted file mode 100644
index 1b7b1a9..0000000
--- a/distribution/artemis/src/main/resources/README.html
+++ /dev/null
@@ -1,67 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<!--
-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.
--->
-
-<html>
-<head>
-   <meta content="text/html; charset=ISO-8859-1"
-         http-equiv="content-type">
-   <title>Apache ActiveMQ Artemis README</title>
-</head>
-<body>
-
-<h1>Getting Started</h1>
-
-<h2>Starting the Broker</h2>
-
-<b>Note (Windows users):</b> The broker currently does not support spaces in path names.  For this reason the broker should be placed in a directory with no spaces in it's absolute path.</br></br>
-
-<b>Note (Windows users):</b> Examples below use the shell script `activemq` for use with linux, Windows users should use the `activemq.cmd` script with the same parameters.</br></br>
-
-To run the ActiveMQ broker with the default configuration, run the command shown below from the "bin" directory.</br></br>
-
-$ ./activemq run</br></br>
-
-To specify a broker configuration file:</br></br>
-
-$ ./activemq run --config scheme:location</br></br>
-
-e.g.</br></br>
-
-$ ./activemq run --config xml:/home/activemq/bootstrap.xml</br></br>
-
-The distribution ships with a number of example configurations that can be used to get started.  You can find these under the "config" directory.</br></br>
-
-It is possible to configure run time paramters in the activemq.conf (activemq.conf.bat for windows) file under the "bin" directory.
-<h2>Stopping the Broker</h2>
-
-To stop the broker please use the activemq script:</br></br>
-
-$ ./activemq stop</br></br>
-
-<h2>Documentation</h2>
-
-The broker comes shipped with an in depth user manual and a bunch of examples to help you get started.  The manual is accessible from the broker website.  Start the broker then navigate to the <a href="http://localhost:8161">Apache ActiveMQ Artemis</a>.</br></br>
-
-The examples are shipped inside the distribution folder under "examples"</br></br>
-
-<h2>Release Notes - ActiveMQ Artemis 1.0.0</h2>
-
-The ActiveMQ Artemis 1.0.0 release notes can be found in the <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315920&version=12328953">Apache ActiveMQ Artemis project JIRA</a>.
-

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/src/main/resources/bin/artemis
----------------------------------------------------------------------
diff --git a/distribution/artemis/src/main/resources/bin/artemis b/distribution/artemis/src/main/resources/bin/artemis
deleted file mode 100755
index f31e351..0000000
--- a/distribution/artemis/src/main/resources/bin/artemis
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/bin/sh
-# 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.
-
-if [ -z "$ARTEMIS_HOME" ] ; then
-
-  ## resolve links - $0 may be a link to ActiveMQ's home
-  PRG="$0"
-  progname=`basename "$0"`
-  saveddir=`pwd`
-
-  # need this for relative symlinks
-  dirname_prg=`dirname "$PRG"`
-  cd "$dirname_prg"
-
-  while [ -h "$PRG" ] ; do
-    ls=`ls -ld "$PRG"`
-    link=`expr "$ls" : '.*-> \(.*\)$'`
-    if expr "$link" : '.*/.*' > /dev/null; then
-    PRG="$link"
-    else
-    PRG=`dirname "$PRG"`"/$link"
-    fi
-  done
-
-  ARTEMIS_HOME=`dirname "$PRG"`
-  cd "$saveddir"
-
-  # make it fully qualified
-  ARTEMIS_HOME=`cd "$ARTEMIS_HOME/.." && pwd`
-fi
-
-# Set Defaults Properties
-JAVA_ARGS="-XX:+UseParallelGC -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xms512M -Xmx1024M"
-CLASSPATH="$ARTEMIS_HOME/lib/artemis-boot.jar"
-
-# OS specific support.
-cygwin=false;
-darwin=false;
-case "`uname`" in
-  CYGWIN*) cygwin=true
-    OSTYPE=cygwin
-    export OSTYPE
-    ;;
-  Darwin*) darwin=true
-    if [ -z "$JAVA_HOME" ] ; then
-     JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
-    fi
-    ;;
-esac
-
-# For Cygwin, ensure paths are in UNIX format before anything is touched
-if $cygwin ; then
-  [ -n "$ARTEMIS_HOME" ] &&
-    ARTEMIS_HOME=`cygpath --unix "$ARTEMIS_HOME"`
-  [ -n "$JAVA_HOME" ] &&
-    JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
-fi
-
-if [ -z "$JAVACMD" ] ; then
-  if [ -n "$JAVA_HOME"  ] ; then
-    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
-      # IBM's JDK on AIX uses strange locations for the executables
-      JAVACMD="$JAVA_HOME/jre/sh/java"
-    else
-      JAVACMD="$JAVA_HOME/bin/java"
-    fi
-  else
-    JAVACMD=`which java 2> /dev/null `
-    if [ -z "$JAVACMD" ] ; then
-        JAVACMD=java
-    fi
-  fi
-fi
-
-if [ ! -x "$JAVACMD" ] ; then
-  echo "Error: JAVA_HOME is not defined correctly."
-  echo "  We cannot execute $JAVACMD"
-  exit 1
-fi
-
-
-if $cygwin ; then
-  JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
-  ARTEMIS_HOME=`cygpath --windows "$ARTEMIS_HOME"`
-  CLASSPATH=`cygpath --windows "$CLASSPATH"`
-fi
-
-exec "$JAVACMD" $JAVA_ARGS $ARTEMIS_CLUSTER_PROPS \
-    -classpath "$CLASSPATH" \
-    -Dartemis.home="$ARTEMIS_HOME" \
-    -Djava.library.path="$ARTEMIS_HOME/bin/lib/linux-i686:$ARTEMIS_INSTANCE/bin/lib/linux-x86_64" \
-    $DEBUG_ARGS \
-    org.apache.activemq.artemis.boot.Artemis $@

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/7a092661/distribution/artemis/src/main/resources/bin/artemis.cmd
----------------------------------------------------------------------
diff --git a/distribution/artemis/src/main/resources/bin/artemis.cmd b/distribution/artemis/src/main/resources/bin/artemis.cmd
deleted file mode 100755
index 4132fb6..0000000
--- a/distribution/artemis/src/main/resources/bin/artemis.cmd
+++ /dev/null
@@ -1,66 +0,0 @@
-@echo off
-rem Licensed to the Apache Software Foundation (ASF) under one
-rem or more contributor license agreements.  See the NOTICE file
-rem distributed with this work for additional information
-rem regarding copyright ownership.  The ASF licenses this file
-rem to you under the Apache License, Version 2.0 (the
-rem "License"); you may not use this file except in compliance
-rem with the License.  You may obtain a copy of the License at
-rem
-rem   http://www.apache.org/licenses/LICENSE-2.0
-rem
-rem Unless required by applicable law or agreed to in writing,
-rem software distributed under the License is distributed on an
-rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-rem KIND, either express or implied.  See the License for the
-rem specific language governing permissions and limitations
-rem under the License.
-
-setlocal
-
-if NOT "%ARTEMIS_HOME%"=="" goto CHECK_ARTEMIS_HOME
-PUSHD .
-CD %~dp0..
-set ARTEMIS_HOME=%CD%
-POPD
-
-:CHECK_ARTEMIS_HOME
-if exist "%ARTEMIS_HOME%\bin\artemis.cmd" goto CHECK_JAVA
-
-:NO_HOME
-echo ARTEMIS_HOME environment variable is set incorrectly. Please set ARTEMIS_HOME.
-goto END
-
-:CHECK_JAVA
-set _JAVACMD=%JAVACMD%
-
-if "%JAVA_HOME%" == "" goto NO_JAVA_HOME
-if not exist "%JAVA_HOME%\bin\java.exe" goto NO_JAVA_HOME
-if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
-goto RUN_JAVA
-
-:NO_JAVA_HOME
-if "%_JAVACMD%" == "" set _JAVACMD=java.exe
-echo.
-echo Warning: JAVA_HOME environment variable is not set.
-echo.
-
-:RUN_JAVA
-
-rem "Set Defaults."
-set JAVA_ARGS=-XX:+UseParallelGC -XX:+AggressiveOpts -XX:+UseFastAccessorMethods -Xms512M -Xmx1024M
-
-rem "Create full JVM Args"
-set JVM_ARGS=%JAVA_ARGS%
-if not "%ARTEMIS_CLUSTER_PROPS%"=="" set JVM_ARGS=%JVM_ARGS% %ARTEMIS_CLUSTER_PROPS%
-set JVM_ARGS=%JVM_ARGS% -classpath "%ARTEMIS_HOME%\lib\artemis-boot.jar"
-set JVM_ARGS=%JVM_ARGS% -Dartemis.home="%ARTEMIS_HOME%"
-if not "%DEBUG_ARGS%"=="" set JVM_ARGS=%JVM_ARGS% %DEBUG_ARGS%
-
-"%_JAVACMD%" %JVM_ARGS% org.apache.activemq.artemis.boot.Artemis %*
-
-:END
-endlocal
-GOTO :EOF
-
-:EOF