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-store</artifactId>
|
|
|
|
<name>FF TPQuery Store</name>
|
2016-11-19 20:14:14 +00:00
|
|
|
<properties>
|
|
|
|
<pitest.classes>net.forwardfire.tpquery*</pitest.classes>
|
|
|
|
</properties>
|
2015-06-19 15:26:29 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2015-12-27 15:01:53 +00:00
|
|
|
</project>
|
|
|
|
|