|
Project Information
Members
Featured
Wiki pages
|
All artifacts under com.mycila are automatically synced into Maven Central Repositorymc-repoThis location is a repository for Maven2 where I upload my project snapshots and releases. You can use this repository in your project POM or in your settings.xml to get the projects or maven plugins deployed into. See the wiki pages for more information on how to use it. repository urls
sample POM configuration<repository>
<id>mc-release</id>
<name>mc-release</name>
<url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>mc-snapshot</id>
<name>mc-snapshot</name>
<url>http://mc-repo.googlecode.com/svn/maven2/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
|