It is very easy to use drizzle-jdbc if you build your project with Maven, it is just a matter of adding the dependency to your pom.xml.
Add the following to your list of dependencies in your pom.xml:
<dependency> <groupId>org.drizzle.jdbc</groupId> <artifactId>drizzle-jdbc</artifactId> <version>0.2</version> </dependency>
And you are good to go, maven will automatically download the jar files for you!
If you want to use snapshots of drizzle-jdbc, you need to add our snapshot repository to your pom.xml:
<repository> <id>drizzle-jdbc-repo</id> <url>http://jdbc.drizzle.org/mavenrepo/snapshots</url> </repository>