sqlite4java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>sqlite4java</artifactId>
<version>0.282-3</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>sqlite4java</artifactId>
<packaging>jar</packaging>
<version>0.282-3</version>
<name>sqlite4java</name>
<description>sqlite4java</description>
<url>https://github.com/axet/sqlite4java</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE 3.0</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/axet/sqlite4java</url>
<connection>scm:git:https://github.com/axet/sqlite4java</connection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<developers>
<developer>
<id>axet</id>
<name>Alexey Kuznetsov</name>
<email>axet@me.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>platform</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>com.almworks.sqlite4java</groupId>
<artifactId>sqlite4java</artifactId>
<version>0.282</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>win-32</id>
<activation>
<os>
<family>Windows</family>
<arch>x86</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>libsqlite</artifactId>
<version>0.282-1</version>
<classifier>natives-windows-x86</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>win-64</id>
<activation>
<os>
<family>Windows</family>
<arch>x86_64</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>libsqlite</artifactId>
<version>0.282-1</version>
<classifier>natives-windows-x86</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>linux-64</id>
<activation>
<os>
<family>Linux</family>
<arch>amd64</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>libsqlite</artifactId>
<version>0.282-1</version>
<classifier>natives-linux-x86_64</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>linux-32</id>
<activation>
<os>
<family>Linux</family>
<arch>i386</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>libsqlite</artifactId>
<version>0.282-1</version>
<classifier>natives-linux-x86</classifier>
</dependency>
</dependencies>
</profile>
<profile>
<id>mac-64</id>
<activation>
<os>
<name>mac os x</name>
<arch>x86_64</arch>
</os>
</activation>
<dependencies>
<dependency>
<groupId>com.github.axet.sqlite4java</groupId>
<artifactId>libsqlite</artifactId>
<version>0.282-1</version>
<classifier>natives-mac-x86_64</classifier>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<useAgent>true</useAgent>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
<executions>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.googlecode.mavennatives</groupId>
<artifactId>maven-nativedependencies-plugin</artifactId>
<version>0.0.7</version>
<executions>
<execution>
<id>unpacknatives</id>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>