Skip to content

Instantly share code, notes, and snippets.

@ramkicse
Last active February 15, 2016 05:39
Show Gist options
  • Save ramkicse/b75f19960eb4f68925e1 to your computer and use it in GitHub Desktop.
Save ramkicse/b75f19960eb4f68925e1 to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.packt.cookbook.App</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
/*Copy the Dependency*/
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</
outputDirectory>
<excludeArtifactIds>junit</excludeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment