56 lines
2.0 KiB
XML
56 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<name>Web API</name>
|
|
|
|
<artifactId>web_api</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
<packaging>bundle</packaging>
|
|
|
|
<parent>
|
|
<artifactId>arcadexsystem</artifactId>
|
|
<groupId>eu.arcadex.system</groupId>
|
|
<version>${global.version}</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>eu.arcadex.system</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>9.3.6.v20151106</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.3.1</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.web_api.Activator</Bundle-Activator>
|
|
<Import-Package>eu.arcadex.system.core.api, *</Import-Package>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |