tpquery/ff-tpquery-executor-jpa/pom.xml

41 lines
1.3 KiB
XML
Raw Normal View History

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>
<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>
<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>