|
Project Information
Featured
|
IntroductionThis project provides a public repository (currently Maven-centric, but others may be added in the future) for projects that haven't yet been added to a repository. Any code written to facilitate the creation of the artifacts and/or their uploading is licensed under the license in the project info. However, artifact contents may be licensed differently, depending on the source and may be copyrighted. But rest assured, all artifacts are either licensed in such a way to allow their being hosted or permission was obtained from the copyright holder(s). ProjectsProjects currently hosted:
UsageAdd the following code below to your pom.xml to use any of the artifacts on the repository. <repositories>
<repository>
<id>public-repo_maven2-repository</id>
<url>http://public-repo.googlecode.com/svn/repository/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>public-repo_maven2-snapshots</id>
<url>http://public-repo.googlecode.com/svn/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
|