Author: thorsten
Date: Wed Mar 25 15:02:48 2009
New Revision: 758292

URL: http://svn.apache.org/viewvc?rev=758292&view=rev
Log:
Adding maven plugin to generate a shell startup script. It is not yet 100% 
working since the classpath is not set correctly.

Modified:
    incubator/droids/trunk/pom.xml

Modified: incubator/droids/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/droids/trunk/pom.xml?rev=758292&r1=758291&r2=758292&view=diff
==============================================================================
--- incubator/droids/trunk/pom.xml (original)
+++ incubator/droids/trunk/pom.xml Wed Mar 25 15:02:48 2009
@@ -202,6 +202,21 @@
         </configuration>
       </plugin>
       
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>appassembler-maven-plugin</artifactId>
+        <version>1.0</version>
+        <configuration>
+          <repositoryLayout>flat</repositoryLayout>
+          <programs>
+            <program>
+              <mainClass>org.apache.droids.dynamic.Cli</mainClass>
+              <name>cli</name>
+            </program>
+          </programs>
+        </configuration>
+      </plugin>
+
     </plugins>  
   </build>
 


Reply via email to