| 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|---|
| 3 | <modelVersion>4.0.0</modelVersion> |
|---|
| 4 | <groupId>org.bridgedb</groupId> |
|---|
| 5 | <artifactId>org.bridgedb.server</artifactId> |
|---|
| 6 | <name>BridgeDb Server</name> |
|---|
| 7 | <description>Restful service</description> |
|---|
| 8 | <parent> |
|---|
| 9 | <artifactId>bridgedb-bundle</artifactId> |
|---|
| 10 | <groupId>org.bridgedb</groupId> |
|---|
| 11 | <version>1.1.1-SNAPSHOT</version> |
|---|
| 12 | </parent> |
|---|
| 13 | <build> |
|---|
| 14 | <directory>target</directory> |
|---|
| 15 | <outputDirectory>target/classes</outputDirectory> |
|---|
| 16 | <finalName>${artifactId}-${version}</finalName> |
|---|
| 17 | <testOutputDirectory>target/test-classes</testOutputDirectory> |
|---|
| 18 | <sourceDirectory>src</sourceDirectory> |
|---|
| 19 | <scriptSourceDirectory>scripts</scriptSourceDirectory> |
|---|
| 20 | <testSourceDirectory>test</testSourceDirectory> |
|---|
| 21 | <resources> |
|---|
| 22 | <resource> |
|---|
| 23 | <directory>resources</directory> |
|---|
| 24 | </resource> |
|---|
| 25 | </resources> |
|---|
| 26 | <testResources> |
|---|
| 27 | <testResource> |
|---|
| 28 | <directory>test-resources</directory> |
|---|
| 29 | </testResource> |
|---|
| 30 | </testResources> |
|---|
| 31 | <plugins> |
|---|
| 32 | <plugin> |
|---|
| 33 | <artifactId>maven-assembly-plugin</artifactId> |
|---|
| 34 | <version>2.2-beta-5</version> |
|---|
| 35 | <configuration> |
|---|
| 36 | <archive> |
|---|
| 37 | <manifest> |
|---|
| 38 | <mainClass>org.bridgedb.server.Server</mainClass> |
|---|
| 39 | </manifest> |
|---|
| 40 | </archive> |
|---|
| 41 | <descriptorRefs> |
|---|
| 42 | <descriptorRef>jar-with-dependencies</descriptorRef> |
|---|
| 43 | </descriptorRefs> |
|---|
| 44 | <finalName>bridgedbServer</finalName> |
|---|
| 45 | |
|---|
| 46 | </configuration> |
|---|
| 47 | </plugin> |
|---|
| 48 | </plugins> |
|---|
| 49 | </build> |
|---|
| 50 | <repositories> |
|---|
| 51 | <repository> |
|---|
| 52 | <id>maven-restlet</id> |
|---|
| 53 | <name>Public online Restlet repository</name> |
|---|
| 54 | <url>http://maven.restlet.org</url> |
|---|
| 55 | </repository> |
|---|
| 56 | </repositories> |
|---|
| 57 | <dependencies> |
|---|
| 58 | <dependency> |
|---|
| 59 | <groupId>org.bridgedb</groupId> |
|---|
| 60 | <artifactId>org.bridgedb</artifactId> |
|---|
| 61 | <version>${project.version}</version> |
|---|
| 62 | <scope>compile</scope> |
|---|
| 63 | </dependency> |
|---|
| 64 | <dependency> |
|---|
| 65 | <groupId>org.restlet.jee</groupId> |
|---|
| 66 | <artifactId>org.restlet.ext.servlet</artifactId> |
|---|
| 67 | <version>2.0-SNAPSHOT</version> |
|---|
| 68 | </dependency> |
|---|
| 69 | <dependency> |
|---|
| 70 | <groupId>org.bridgedb</groupId> |
|---|
| 71 | <artifactId>org.bridgedb.bio</artifactId> |
|---|
| 72 | <version>${project.version}</version> |
|---|
| 73 | <scope>compile</scope> |
|---|
| 74 | </dependency> |
|---|
| 75 | <dependency> |
|---|
| 76 | <groupId>org.bridgedb</groupId> |
|---|
| 77 | <artifactId>org.bridgedb.rdb</artifactId> |
|---|
| 78 | <version>${project.version}</version> |
|---|
| 79 | <scope>compile</scope> |
|---|
| 80 | </dependency> |
|---|
| 81 | <dependency> |
|---|
| 82 | <groupId>org.bridgedb.webservice</groupId> |
|---|
| 83 | <artifactId>org.bridgedb.webservice.bridgerest</artifactId> |
|---|
| 84 | <version>${project.version}</version> |
|---|
| 85 | <scope>compile</scope> |
|---|
| 86 | </dependency> |
|---|
| 87 | |
|---|
| 88 | </dependencies> |
|---|
| 89 | </project> |
|---|