-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started with Maven
JJaraM edited this page Mar 31, 2016
·
1 revision
The first step is add the repository in your pom.xml file.
<repositories>
<repository>
<id>SoftStew</id>
<url>http://jtracking-sonatype.rhcloud.com/content/repositories/snapshots</url>
</repository>
</repositories>
After add the repository is necessary to add the jar dependecy.
<dependency>
<groupId>com.jjm</groupId>
<artifactId>chameleon</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>