tpquery/tpquery-store/pom.xml

44 lines
1.2 KiB
XML
Raw Permalink Normal View History

2020-10-17 09:38:21 +00:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2015-06-19 15:26:29 +00:00
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>
<artifactId>tpquery</artifactId>
<version>1.5.1-SNAPSHOT</version>
2015-06-19 15:26:29 +00:00
</parent>
<artifactId>tpquery-store</artifactId>
<name>TPQuery Store</name>
<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>
2020-10-17 09:38:21 +00:00
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<scope>compile</scope>
</dependency>
2015-06-19 15:26:29 +00:00
</dependencies>
2015-12-27 15:01:53 +00:00
</project>