DailyDev.org

Contact us

Resources‎ > ‎

Maven Repository


Introduction

DailyDev.org Maven Repository is mapped to SVN Repository of one project hosted on Google Code.
It's URL is http://maven.dailydev.org/repository/public

Repository Configuration

To make DailyDev Maven Repository accessible from your Maven build you have to add it's configuration into your project's POM file or into your settings.xml . Depending on the reason why you want to configure the repository you can add it as a component repository or as a plugin repository.
As component repository
If you want to depend on components deployed in the repository add following snippet of XML as of child repositories element of your POM or settings.xml file.
<repository>
  <id>dailydev-maven-repository</id>
  <name>DailyDev.org Maven Repository</name>
  <url>http://maven.dailydev.org/repository/public</url>
  <releases>
    <enabled>true</enabled>
    <updatePolicy>daily</updatePolicy>
  </releases>
  <snapshots>
    <enabled>true</enabled>
    <updatePolicy>daily</updatePolicy>
  </snapshots>
</repository>
As plugin repository
If you want to use plugins deployed in the repository add following snippets of XML as child of pluginRepositories element of your POM or settings.xml file.
<pluginRepository>
  <id>dailydev-maven-repository</id>
  <name>DailyDev.org Maven Repository</name>
  <url>http://maven.dailydev.org/repository/public</url>
  <releases>
    <enabled>true</enabled>
    <updatePolicy>daily</updatePolicy>
  </releases>
  <snapshots>
    <enabled>true</enabled>
    <updatePolicy>daily</updatePolicy>
  </snapshots>
</pluginRepository>

Problems?

If you have any problem with the Maven repository please report it through our DailyDev.org Google Group .