
Untitled
By: a guest on
Apr 26th, 2012 | syntax:
None | size: 0.49 KB | hits: 20 | expires: Never
How do I create/use a class library with Netbeans on top of Maven?
- pom.xml (parent project)
- library folder
- pom.xml
- webapp folder
- pom.xml
<modules>
<module>library</module>
<module>webapp</module>
</module>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>myGroupId</groupId>
<artifactId>parentArtifactId</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>libraryArtifactId</artifactId>