Author: andygumbrecht
Date: Fri May 16 14:29:39 2014
New Revision: 1595216

URL: http://svn.apache.org/r1595216
Log:
Start on https://issues.apache.org/jira/browse/TOMEE-1210

Added:
    
tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/component.xml
    tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/dos.xml
    tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/unix.xml
Removed:
    tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/bin.xml
Modified:
    tomee/tomee/trunk/assembly/openejb-standalone/   (props changed)
    tomee/tomee/trunk/assembly/openejb-standalone/pom.xml

Propchange: tomee/tomee/trunk/assembly/openejb-standalone/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri May 16 14:29:39 2014
@@ -7,3 +7,4 @@
 .project
 .settings
 target
+.idea

Modified: tomee/tomee/trunk/assembly/openejb-standalone/pom.xml
URL: 
http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-standalone/pom.xml?rev=1595216&r1=1595215&r2=1595216&view=diff
==============================================================================
--- tomee/tomee/trunk/assembly/openejb-standalone/pom.xml (original)
+++ tomee/tomee/trunk/assembly/openejb-standalone/pom.xml Fri May 16 14:29:39 
2014
@@ -98,7 +98,8 @@
         <configuration>
           <appendAssemblyId>false</appendAssemblyId>
           <descriptors>
-            <descriptor>src/main/assembly/bin.xml</descriptor>
+            <descriptor>src/main/assembly/dos.xml</descriptor>
+            <descriptor>src/main/assembly/unix.xml</descriptor>
           </descriptors>
           <archive>
             <manifest>

Added: 
tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/component.xml
URL: 
http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/component.xml?rev=1595216&view=auto
==============================================================================
--- 
tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/component.xml 
(added)
+++ 
tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/component.xml 
Fri May 16 14:29:39 2014
@@ -0,0 +1,3 @@
+<component>
+
+</component>
\ No newline at end of file

Added: tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/dos.xml
URL: 
http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/dos.xml?rev=1595216&view=auto
==============================================================================
--- tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/dos.xml 
(added)
+++ tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/dos.xml Fri 
May 16 14:29:39 2014
@@ -0,0 +1,125 @@
+<?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.
+-->
+
+<!-- $Rev: 1482826 $ $Date: 2013-05-15 15:31:58 +0200 (Wed, 15 May 2013) $ -->
+
+<assembly>
+  <id>bin-dos</id>
+  <formats>
+    <format>zip</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <lineEnding>dos</lineEnding>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>/</outputDirectory>
+      <includes>
+        <include>README.txt</include>
+        <include>NOTICE</include>
+        <include>LICENSE</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>*.bat</include>
+        <include>service.readme.txt</include>
+      </includes>
+      <lineEnding>dos</lineEnding>
+      <fileMode>0755</fileMode>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>openejb</include>
+      </includes>
+      <lineEnding>unix</lineEnding>
+      <fileMode>0755</fileMode>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/src/main/resources</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>*.exe</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <lineEnding>dos</lineEnding>
+      <directory>${basedir}/src/main/conf</directory>
+      <includes>
+        <include>README.txt</include>
+        <include>logging.properties</include>
+        <include>system.properties</include>
+      </includes>
+      <outputDirectory>conf/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <lineEnding>dos</lineEnding>
+      <outputDirectory>logs/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <lineEnding>dos</lineEnding>
+      <outputDirectory>apps/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <outputDirectory>data/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+  <files>
+    <file>
+      <lineEnding>dos</lineEnding>
+      <source>${basedir}/target/classes/DATA-README.txt</source>
+      <outputDirectory>data/</outputDirectory>
+      <destName>README.txt</destName>
+      <fileMode>0755</fileMode>
+    </file>
+  </files>
+  <dependencySets>
+    <dependencySet>
+      
<outputFileNameMapping>${artifact.artifactId}-${artifact.baseVersion}.${artifact.extension}
+      </outputFileNameMapping>
+      <outputDirectory>lib</outputDirectory>
+      <scope>runtime</scope>
+      <excludes>
+        <exclude>junit:junit</exclude>
+      </excludes>
+    </dependencySet>
+  </dependencySets>
+</assembly>
+

Added: tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/unix.xml
URL: 
http://svn.apache.org/viewvc/tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/unix.xml?rev=1595216&view=auto
==============================================================================
--- tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/unix.xml 
(added)
+++ tomee/tomee/trunk/assembly/openejb-standalone/src/main/assembly/unix.xml 
Fri May 16 14:29:39 2014
@@ -0,0 +1,124 @@
+<?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.
+-->
+
+<!-- $Rev: 1482826 $ $Date: 2013-05-15 15:31:58 +0200 (Wed, 15 May 2013) $ -->
+
+<assembly>
+  <id>bin-unix</id>
+  <formats>
+    <format>tar.gz</format>
+  </formats>
+  <fileSets>
+    <fileSet>
+      <lineEnding>unix</lineEnding>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>/</outputDirectory>
+      <includes>
+        <include>README.txt</include>
+        <include>NOTICE</include>
+        <include>LICENSE</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>*.bat</include>
+        <include>service.readme.txt</include>
+      </includes>
+      <lineEnding>dos</lineEnding>
+      <fileMode>0755</fileMode>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/target/classes</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>openejb</include>
+      </includes>
+      <lineEnding>unix</lineEnding>
+      <fileMode>0755</fileMode>
+    </fileSet>
+    <fileSet>
+      <directory>${basedir}/src/main/resources</directory>
+      <outputDirectory>bin/</outputDirectory>
+      <includes>
+        <include>*.exe</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <lineEnding>unix</lineEnding>
+      <directory>${basedir}/src/main/conf</directory>
+      <includes>
+        <include>README.txt</include>
+        <include>logging.properties</include>
+        <include>system.properties</include>
+      </includes>
+      <outputDirectory>conf/</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <lineEnding>unix</lineEnding>
+      <outputDirectory>logs/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <lineEnding>unix</lineEnding>
+      <outputDirectory>apps/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+    <fileSet>
+      <outputDirectory>data/</outputDirectory>
+      <directory>${project.basedir}/src/main/assembly</directory>
+      <excludes>
+        <exclude>component.xml</exclude>
+        <exclude>dos.xml</exclude>
+        <exclude>unix.xml</exclude>
+      </excludes>
+    </fileSet>
+  </fileSets>
+  <files>
+    <file>
+      <lineEnding>unix</lineEnding>
+      <source>${basedir}/target/classes/DATA-README.txt</source>
+      <outputDirectory>data/</outputDirectory>
+      <destName>README.txt</destName>
+      <fileMode>0755</fileMode>
+    </file>
+  </files>
+  <dependencySets>
+    <dependencySet>
+      
<outputFileNameMapping>${artifact.artifactId}-${artifact.baseVersion}.${artifact.extension}
+      </outputFileNameMapping>
+      <outputDirectory>lib</outputDirectory>
+      <scope>runtime</scope>
+      <excludes>
+        <exclude>junit:junit</exclude>
+      </excludes>
+    </dependencySet>
+  </dependencySets>
+</assembly>
\ No newline at end of file


Reply via email to