2015-06-19 15:26:29 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>net.forwardfire.tpquery</groupId>
|
2015-12-27 15:01:53 +00:00
|
|
|
<artifactId>ff-tpquery</artifactId>
|
2016-11-19 21:23:01 +00:00
|
|
|
<version>1.5.1-SNAPSHOT</version>
|
2015-06-19 15:26:29 +00:00
|
|
|
</parent>
|
2015-12-27 15:01:53 +00:00
|
|
|
<artifactId>ff-tpquery-executor-jpa</artifactId>
|
|
|
|
<name>FF TPQuery Executor JPA</name>
|
2015-06-19 15:26:29 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.forwardfire.tpquery</groupId>
|
2016-11-19 20:14:14 +00:00
|
|
|
<artifactId>ff-tpquery-store</artifactId>
|
2015-06-19 15:26:29 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
<artifactId>tomcat-jasper-el</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- note has to be after api-impl -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax</groupId>
|
|
|
|
<artifactId>javaee-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-12-27 15:01:53 +00:00
|
|
|
</project>
|