Skip to content

Instantly share code, notes, and snippets.

@brunoborges
Created June 21, 2012 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunoborges/2963581 to your computer and use it in GitHub Desktop.
Save brunoborges/2963581 to your computer and use it in GitHub Desktop.
JBoss custom module for Shared Library using Maven
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestEntries>
<Dependencies>com.mycompany.mymodule</Dependencies>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment