|
Project Information
|
Download all the components with sources from the project repository. To reference the artifacts in your Maven project you can do: <repositories>
...
<repository>
<id>codebistro-open</id>
<name>codebistro-open repo</name>
<layout>default</layout>
<url>http://codebistro.googlecode.com/svn/repo/</url>
</repository>
...
</repositories>
...
<dependencies>
...
<dependency>
<groupId>org.codebistro.util</groupId>
<artifactId>base</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
...
<dependency>
<groupId>org.codebistro.util</groupId>
<artifactId>misc</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
...
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
...
<dependency>
<groupId>net.htmlparser.jericho</groupId>
<artifactId>jericho-html</artifactId>
<version>3.2</version>
</dependency>
...
</dependencies>
|