2010-09-19 20:02:18 +00:00
|
|
|
<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>
|
2011-12-30 23:52:04 +00:00
|
|
|
<artifactId>vasc-backend</artifactId>
|
2014-03-02 18:45:22 +00:00
|
|
|
<groupId>net.forwardfire.vasc.backend</groupId>
|
2013-09-20 17:18:39 +00:00
|
|
|
<version>0.4.2-SNAPSHOT</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>vasc-backend-jpa</artifactId>
|
2011-03-06 21:27:43 +00:00
|
|
|
<name>vasc-backend-jpa</name>
|
|
|
|
<description>vasc-backend-jpa</description>
|
2010-09-19 20:02:18 +00:00
|
|
|
<dependencies>
|
2012-12-02 13:40:18 +00:00
|
|
|
<dependency>
|
2014-03-02 18:45:22 +00:00
|
|
|
<groupId>net.forwardfire.vasc.backend</groupId>
|
|
|
|
<artifactId>vasc-backend-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.forwardfire.vasc.lib</groupId>
|
|
|
|
<artifactId>vasc-lib-xpql</artifactId>
|
2012-12-02 13:40:18 +00:00
|
|
|
<version>${project.version}</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
2012-06-04 20:49:12 +00:00
|
|
|
<version>${persistence-api.version}</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-12-02 13:40:18 +00:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-annotations</artifactId>
|
|
|
|
<version>${hibernate-annotations.version}</version>
|
|
|
|
<scope>provided</scope>
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2012-12-02 13:40:18 +00:00
|
|
|
</project>
|