63 lines
1.7 KiB
XML
63 lines
1.7 KiB
XML
<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">
|
|
|
|
|
|
<parent>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>masterbuild</artifactId>
|
|
<version>2.3.0</version>
|
|
<!-- relative path must be specified to pick up parent pom changes, otherwise
|
|
the parent POM must first be installed in the local repo -->
|
|
<relativePath>../masterbuild</relativePath>
|
|
</parent>
|
|
|
|
<name>Database</name>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>data</artifactId>
|
|
<packaging>jar</packaging>
|
|
<build>
|
|
|
|
<plugins>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>csf</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>web</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20090211</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>configuration</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtdb</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtcs</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtservlet</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|