-
Notifications
You must be signed in to change notification settings - Fork 31
Maven setup notes
Mike Conway edited this page Jul 23, 2015
·
1 revision
Maven artifacts are currently deployed into GitHub itself, and can be found here
In order to deploy to Maven, one must check that repo out, and then add settings.xml configuration so that a mvn deploy command places the artifacts in that local Git repo. This can be done in your settings.xml like so
<profile>
<id>git-dice</id>
<properties>
<git.repo.root>/Users/mikeconway/Documents/DICE-Maven</git.repo.root>
</properties>
</profile>
Remember to activate that profile in your settings!