My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
useFromMaven  

Deprecated
Updated Apr 3, 2012 by bartolom...@gmail.com

Getting the Library

Getting the Library is simple. You just need to add a new Repository to your POM. An example, using the repository from the swixml2 project (a good one to start with ):

<repositories>
        <repository>
          <id>google-swixml2</id>
          <url>http://swixml2.googlecode.com/svn/mavenrepo</url>
        </repository>
</repositories>

import dependency

To use swixml2 you have to include in dependencies section of your POM the following declaration:

    <dependency>
      <groupId>org.swixml</groupId>
      <artifactId>swixml</artifactId>
      <version>2.5.20090630</version>
    </dependency>

If you want stay tuned on each update, use the SNAPSHOT version as shown below

    <dependency>
      <groupId>org.swixml</groupId>
      <artifactId>swixml</artifactId>
      <version>2.5-SNAPSHOT</version>
    </dependency>
Powered by Google Project Hosting