Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jacobheric/867739 to your computer and use it in GitHub Desktop.

Select an option

Save jacobheric/867739 to your computer and use it in GitHub Desktop.
Multiple module maven pom dependency example
<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