| POM: |
Show
hide
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xowl.infra</groupId>
<artifactId>xowl-infra</artifactId>
<version>1.0-beta6</version>
</parent>
<groupId>org.xowl.infra</groupId>
<artifactId>xowl-server</artifactId>
<packaging>bundle</packaging>
<version>1.0-beta6</version>
<name>xOWL Infra - Server</name>
<description>Provides the facilities for serving datasets on a network</description>
<dependencies>
<dependency>
<groupId>org.xowl.infra</groupId>
<artifactId>xowl-store</artifactId>
<version>1.0-beta6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xowl.infra</groupId>
<artifactId>xowl-engine</artifactId>
<version>1.0-beta6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.xowl.infra</groupId>
<artifactId>xowl-server-api</artifactId>
<version>1.0-beta6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.svenkubiak</groupId>
<artifactId>jBCrypt</artifactId>
<version>0.4</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifest>
<mainClass>org.xowl.infra.server.impl.Program</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.0.1</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Import-Package>!sun.*,!com.sun.*,*</Import-Package>
<Embed-Dependency>jBCrypt;inline=true</Embed-Dependency>
<Embed-Transitive>false</Embed-Transitive>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
|