Author: reto
Date: Thu Oct 13 19:18:10 2011
New Revision: 1183042
URL: http://svn.apache.org/viewvc?rev=1183042&view=rev
Log:
CLEREZZA-641: creating assembly
Added:
incubator/clerezza/trunk/parent/platform.launcher.tdb/README.txt
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/src.xml
Modified:
incubator/clerezza/trunk/parent/platform.launcher.tdb/pom.xml
Added: incubator/clerezza/trunk/parent/platform.launcher.tdb/README.txt
URL:
http://svn.apache.org/viewvc/incubator/clerezza/trunk/parent/platform.launcher.tdb/README.txt?rev=1183042&view=auto
==============================================================================
--- incubator/clerezza/trunk/parent/platform.launcher.tdb/README.txt (added)
+++ incubator/clerezza/trunk/parent/platform.launcher.tdb/README.txt Thu Oct 13
19:18:10 2011
@@ -0,0 +1,11 @@
+Apache Clerezza TDB Launcher
+
+The provided launcher jar is executable, however on most platform you must
+provide additional arguments to java so that Clerezza has enough memory to run.
+
+Start clerezza with:
+
+java -XX:MaxPermSize=400m -Xss512k -Xmx2g -jar platform.launcher.tdb-*.jar
+
+Add the --help at the end of the line above to see possible argument for
+Clerezza
\ No newline at end of file
Modified: incubator/clerezza/trunk/parent/platform.launcher.tdb/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/clerezza/trunk/parent/platform.launcher.tdb/pom.xml?rev=1183042&r1=1183041&r2=1183042&view=diff
==============================================================================
--- incubator/clerezza/trunk/parent/platform.launcher.tdb/pom.xml (original)
+++ incubator/clerezza/trunk/parent/platform.launcher.tdb/pom.xml Thu Oct 13
19:18:10 2011
@@ -107,6 +107,25 @@
</archive>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2.1</version>
+ <configuration>
+ <finalName>clerezza-tdb</finalName>
+ <descriptors>
+
<descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!--
this is used for inheritance merges -->
+ <phase>package</phase> <!--
bind to the packaging phase -->
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
<resources>
<resource>
Added:
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/src.xml
URL:
http://svn.apache.org/viewvc/incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/src.xml?rev=1183042&view=auto
==============================================================================
---
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/src.xml
(added)
+++
incubator/clerezza/trunk/parent/platform.launcher.tdb/src/main/assembly/src.xml
Thu Oct 13 19:18:10 2011
@@ -0,0 +1,26 @@
+<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>distribution</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <files>
+ <file>
+ <source>README.txt</source>
+ <outputDirectory>/</outputDirectory>
+ </file>
+ <file>
+
<source>target/platform.launcher.tdb-0.5-incubating-SNAPSHOT.jar</source>
+ <outputDirectory>/</outputDirectory>
+ </file>
+ <file>
+ <source>LICENSE</source>
+ <outputDirectory>/</outputDirectory>
+ </file>
+ <file>
+ <source>NOTICE.txt</source>
+ <outputDirectory>/</outputDirectory>
+ </file>
+ </files>
+</assembly>
\ No newline at end of file