My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
  • General purpose components, tools and frameworks in Java that we are developed and using in our projects. We think these components can be useful for other developers, too.
  • Maven repository for open-source artifacts which cannot be found in public Maven repositories:

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>
Powered by Google Project Hosting