sqlite4java.
Minimalistic high-performance Java wrapper for SQLite.
Here is the list of declaration for sqlite4java. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.almworks.sqlite4java</groupId> <artifactId>sqlite4java</artifactId> <version>0.282</version> </dependency>
If you think this Maven repository POM file listing for sqlite4java is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following plugins are used in the sqlite4java-0.282.jar
The following packages are defined in the sqlite4java-0.282.jar
com.almworks.sqlite4java javolution.util.stripped
Here is the content of the POM file.
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>4</version>
</parent>
<groupId>com.almworks.sqlite4java</groupId>
<artifactId>sqlite4java</artifactId>
<packaging>jar</packaging>
<name>sqlite4java</name>
<version>0.282</version>
<description>Minimalistic high-performance Java wrapper for SQLite</description>
<url>http://code.google.com/p/sqlite4java</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>ALM Works</name>
<url>http://almworks.com</url>
</organization>
<issueManagement>
<system>Google code</system>
<url>http://code.google.com/p/sqlite4java/issues/list</url>
</issueManagement>
<scm>
<connection>scm:svn:http://sqlite4java.googlecode.com/svn/trunk/</connection>
<developerConnection>scm:svn:https://sqlite4java.googlecode.com/svn/trunk/</developerConnection>
<url>http://sqlite4java.googlecode.com/svn/trunk/</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>[3.8,)</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>add-jar</id>
<phase>deploy</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>sqlite4java-282/sqlite4java-sources.jar</file>
<type>jar</type>
</artifact>
<artifact>
<file>sqlite4java-282/sqlite4java-javadoc.jar</file>
<type>jar</type>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>