Created
March 13, 2011 00:24
-
-
Save jacobheric/867739 to your computer and use it in GitHub Desktop.
Multiple module maven pom dependency example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <artifactId>youbrew-webapp</artifactId> | |
| <packaging>war</packaging> | |
| <name>Youbrew Web Application</name> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.jacobheric.youbrew-extjs</groupId> | |
| <artifactId>youbrew-service</artifactId> | |
| <version>0.1-SNAPSHOT</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.jacobheric.youbrew-extjs</groupId> | |
| <artifactId>youbrew-persist</artifactId> | |
| <version>0.1-SNAPSHOT</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.jacobheric.youbrew-extjs</groupId> | |
| <artifactId>youbrew-domain</artifactId> | |
| <version>0.1-SNAPSHOT</version> | |
| </dependency> | |
| <!--lots snipped for clarity--> | |
| </dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment