Hi,

is it possible to let maven copy all dependencies to my classpath?

my jar-configuration looks like:
           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-jar-plugin</artifactId>
               <configuration>
                   <archive>
                       <manifest>
                         <addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix> <mainClass>uboot.App</mainClass>
                       </manifest>
                   </archive>
               </configuration>
            </plugin>

so it would be nice if maven would create a lib-directory and copy all jars in to it since there are plenty of them and doing this by hand is troublesome

cheers,
Norbert

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

Reply via email to