|
Downloading
Distribution DownloadA full distribution download is available from the downloads list. Please read the provided documentation for usage instructions. Using MavenLIQUidFORM 1.0.0 is now available on the Maven Central repository. Hence, to use it you just need to add a dependency to it in your pom, something similar to this : ...
<dependencies>
...
<dependency>
<groupId>com.google.code.liquidform</groupId>
<artifactId>liquidform.jpa</artifactId>
<version>1.0.0</version>
</dependency>
...--- Sidenote : staging repositoriesYou may be interested in the following repositories, which may contain newer versions of LIQUidFORM not yet released on Maven Central. http://liquidform.google.com/svn/maven-repo/releases To use this repository, add the following to your project POM : ...
<repositories>
<repository>
<id>liquidform-repo-releases</id>
<name>Maven Repository for LIQUidFORM (releases)</name>
<url>http://liquidform.googlecode.com/svn/maven-repo/releases</url>
</repository>
</repositories>Snapshots may also be available from http://liquidform.googlecode.com/svn/maven-repo/snapshots ...
<repositories>
<repository>
<id>liquidform-repo-snapshots</id>
<name>Maven Repository for LIQUidFORM (snapshots)</name>
<url>http://liquidform.googlecode.com/svn/maven-repo/snapshots</url>
</repository>
</repositories>
|