| 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>org.bridgedb.rdb</artifactId> |
|---|
| 5 | <name>BridgeDb RDB</name> |
|---|
| 6 | |
|---|
| 7 | <parent> |
|---|
| 8 | <artifactId>bridgedb-bundle</artifactId> |
|---|
| 9 | <groupId>org.bridgedb</groupId> |
|---|
| 10 | <version>1.0-SNAPSHOT</version> |
|---|
| 11 | </parent> |
|---|
| 12 | |
|---|
| 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-data</directory> |
|---|
| 29 | </testResource> |
|---|
| 30 | </testResources> |
|---|
| 31 | </build> |
|---|
| 32 | <dependencies> |
|---|
| 33 | <dependency> |
|---|
| 34 | <groupId>org.bridgedb</groupId> |
|---|
| 35 | <artifactId>org.bridgedb</artifactId> |
|---|
| 36 | <version>${project.version}</version> |
|---|
| 37 | <scope>compile</scope> |
|---|
| 38 | </dependency> |
|---|
| 39 | <dependency> |
|---|
| 40 | <groupId>org.bridgedb</groupId> |
|---|
| 41 | <artifactId>org.bridgedb.bio</artifactId> |
|---|
| 42 | <version>${project.version}</version> |
|---|
| 43 | <scope>compile</scope> |
|---|
| 44 | </dependency> |
|---|
| 45 | <dependency> |
|---|
| 46 | <groupId>mysql</groupId> |
|---|
| 47 | <artifactId>mysql-connector-java</artifactId> |
|---|
| 48 | <version>5.1.12</version> |
|---|
| 49 | <type>jar</type> |
|---|
| 50 | <scope>runtime</scope> |
|---|
| 51 | </dependency> |
|---|
| 52 | <dependency> |
|---|
| 53 | <groupId>org.apache.derby</groupId> |
|---|
| 54 | <artifactId>derby</artifactId> |
|---|
| 55 | <version>10.5.3.0_1</version> |
|---|
| 56 | <type>jar</type> |
|---|
| 57 | <scope>runtime</scope> |
|---|
| 58 | </dependency> |
|---|
| 59 | <dependency> |
|---|
| 60 | <groupId>org.apache.derby</groupId> |
|---|
| 61 | <artifactId>derbyclient</artifactId> |
|---|
| 62 | <version>10.5.3.0_1</version> |
|---|
| 63 | </dependency> |
|---|
| 64 | <dependency> |
|---|
| 65 | <groupId>commons-dbcp</groupId> |
|---|
| 66 | <artifactId>commons-dbcp</artifactId> |
|---|
| 67 | <version>1.3</version> |
|---|
| 68 | </dependency> |
|---|
| 69 | </dependencies> |
|---|
| 70 | </project> |
|---|