Created
February 14, 2012 00:40
-
-
Save xeraa/1821940 to your computer and use it in GitHub Desktop.
Example of how to include your own Maven repository into your pom.xml (includes only relevant parts)
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
<repositories> | |
<repository> | |
<id>[ID]</id> | |
<name>[Name]</name> | |
<url>[Protocol, server URL, and path to the repository]</url> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>Ubercharts</groupId> | |
<artifactId>ubercharts</artifactId> | |
<version>[version]</version> | |
</dependency> | |
</dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment