47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<name>Database</name>
|
|
|
|
<artifactId>database</artifactId>
|
|
<version>${global.version}</version>
|
|
<packaging>bundle</packaging>
|
|
|
|
<parent>
|
|
<artifactId>arcadexsystem</artifactId>
|
|
<groupId>eu.arcadex.system</groupId>
|
|
<version>${global.version}</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.mapdb</groupId>
|
|
<artifactId>mapdb</artifactId>
|
|
<version>0.9.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${groupId}.${artifactId}-${version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<version>2.3.5</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Bundle-Name>Arcadex System: ${name} ${version}</Bundle-Name>
|
|
<Bundle-SymbolicName>${groupId}.${artifactId}</Bundle-SymbolicName>
|
|
<Bundle-Activator>eu.arcadex.system.database.Activator</Bundle-Activator>
|
|
<Export-Package>eu.arcadex.system.database.api</Export-Package>
|
|
<Import-Package>*</Import-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |