Return to Snippet

Revision: 58681
at July 28, 2012 22:54 by hkarakose


Initial Code
<plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

Initial URL


Initial Description
the configuration shall be placed within build section of the POM.

Initial Title
Maven Jar With Dependencies

Initial Tags


Initial Language
Java