32 lines
1.1 KiB
XML
32 lines
1.1 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>vasc-base</artifactId>
|
|
<groupId>com.idcanet.vasc</groupId>
|
|
<version>0.3.5-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>com.idcanet.vasc</groupId>
|
|
<artifactId>vasc-backend-jpa</artifactId>
|
|
<version>0.3.5-SNAPSHOT</version>
|
|
<name>vasc-backend-jpa</name>
|
|
<description>vasc-backend-jpa</description>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.idcanet.vasc</groupId>
|
|
<artifactId>vasc-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.persistence</groupId>
|
|
<artifactId>persistence-api</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-annotations</artifactId>
|
|
<version>3.4.0.GA</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |