Hi,

is there any possibility with maven (or a different tool) to create a folder 
with the JAR of the project and all necessary JAR dependency files to run the 
application?
Right now i have to copy the other JAR files manually ;-(

Regards,
Thorsten

example:

pom.xml
<?xml version="1.0"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>group</groupId>
  <artifactId>emu</artifactId>
  <name>Emu</name>
  <version>1.0</version>

 <dependencies>
    <dependency>
      <groupId>java_help</groupId>
      <artifactId>java_help</artifactId>
      <version>2.0_02</version>
    </dependency>
    <dependency>
      <groupId>jgoodies</groupId>
      <artifactId>forms</artifactId>
      <version>1.0.7</version>
    </dependency>
    <dependency>
      <groupId>SwingLayout</groupId>
      <artifactId>SwingLayout</artifactId>
      <version>0.1</version>
    </dependency>
 </dependencies>


result:

   emu-1.0.jar
    lib
     java_help-2.0_02.jar
     jgoodies-1.0.7.jar 
     SwingLayout-0.1.jar

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to