49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
|
<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>sqlite</groupId>
|
||
|
<artifactId>sqlite-jdbc.osgi</artifactId>
|
||
|
<version>3.8.7</version>
|
||
|
<packaging>bundle</packaging>
|
||
|
|
||
|
<name>sqlite-jdbc.osgi-wrapped</name>
|
||
|
<url>http://maven.apache.org</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xerial</groupId>
|
||
|
<artifactId>sqlite-jdbc</artifactId>
|
||
|
<version>3.8.7</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.felix</groupId>
|
||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||
|
<version>2.3.7</version>
|
||
|
<extensions>true</extensions>
|
||
|
<configuration>
|
||
|
<instructions>
|
||
|
<Import-Package>*;resolution:=optional</Import-Package>
|
||
|
<_exportcontents>*</_exportcontents>
|
||
|
<Embed-Dependency>sqlite-jdbc</Embed-Dependency>
|
||
|
</instructions>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|