| 1 | <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"> |
|---|
| 2 | <modelVersion>4.0.0</modelVersion> |
|---|
| 3 | <groupId>org.bridgedb</groupId> |
|---|
| 4 | <artifactId>bridgedb-bundle</artifactId> |
|---|
| 5 | <packaging>pom</packaging> |
|---|
| 6 | <name>BridgeDb bundle</name> |
|---|
| 7 | <version>1.1.1-SNAPSHOT</version> |
|---|
| 8 | <modules> |
|---|
| 9 | <module>org.bridgedb</module> |
|---|
| 10 | <module>org.bridgedb.bio</module> |
|---|
| 11 | |
|---|
| 12 | <module>org.bridgedb.rdb</module> |
|---|
| 13 | <module>org.bridgedb.webservice.bridgerest</module> |
|---|
| 14 | <module>org.bridgedb.webservice.biomart</module> |
|---|
| 15 | <module>org.bridgedb.webservice.cronos</module> |
|---|
| 16 | <module>org.bridgedb.webservice.picr</module> |
|---|
| 17 | <module>org.bridgedb.webservice.synergizer</module> |
|---|
| 18 | <module>examples</module> |
|---|
| 19 | <module>org.bridgedb.server</module> |
|---|
| 20 | </modules> |
|---|
| 21 | |
|---|
| 22 | <build> |
|---|
| 23 | <pluginManagement> |
|---|
| 24 | <plugins> |
|---|
| 25 | <plugin> |
|---|
| 26 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 27 | <configuration> |
|---|
| 28 | <source>1.6</source> |
|---|
| 29 | <target>1.6</target> |
|---|
| 30 | </configuration> |
|---|
| 31 | </plugin> |
|---|
| 32 | </plugins> |
|---|
| 33 | </pluginManagement> |
|---|
| 34 | </build> |
|---|
| 35 | |
|---|
| 36 | <dependencies> |
|---|
| 37 | <dependency> |
|---|
| 38 | <groupId>junit</groupId> |
|---|
| 39 | <artifactId>junit</artifactId> |
|---|
| 40 | <version>4.4</version> |
|---|
| 41 | <scope>test</scope> |
|---|
| 42 | </dependency> |
|---|
| 43 | </dependencies> |
|---|
| 44 | |
|---|
| 45 | <profiles> |
|---|
| 46 | <profile> |
|---|
| 47 | <id>local</id> |
|---|
| 48 | <!-- use as: mvn deploy -Plocal --> |
|---|
| 49 | <distributionManagement> |
|---|
| 50 | <snapshotRepository> |
|---|
| 51 | <id>biopax.snapshots</id> |
|---|
| 52 | <name>Local BioPAX Snapshots Repository</name> |
|---|
| 53 | <url>${local.biopax.m2repo}/snapshots</url> |
|---|
| 54 | </snapshotRepository> |
|---|
| 55 | <repository> |
|---|
| 56 | <id>biopax.releases</id> |
|---|
| 57 | <name>Local BioPAX Repository</name> |
|---|
| 58 | <url>${local.biopax.m2repo}/releases</url> |
|---|
| 59 | </repository> |
|---|
| 60 | </distributionManagement> |
|---|
| 61 | </profile> |
|---|
| 62 | </profiles> |
|---|
| 63 | |
|---|
| 64 | </project> |
|---|