Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>data-driven-testing</artifactId>
<groupId>com.github.karamelsoft.testing</groupId>
<version>0.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>data-driven-testing-database</artifactId>
<name>${project.name} :: Database</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<excluse>${project.groupId}:data-driven-testing-api</excluse>
<excluse>${project.groupId}:data-driven-testing-core</excluse>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.karamelsoft.testing</groupId>
<artifactId>data-driven-testing-api</artifactId>
<version>0.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.karamelsoft.testing</groupId>
<artifactId>data-driven-testing-core</artifactId>
<version>0.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.0.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>commons-pool2</artifactId>
<groupId>org.apache.commons</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.185</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<h2.version>1.4.185</h2.version>
<spring-jdbc.version>4.0.7.RELEASE</spring-jdbc.version>
<dbunit.version>2.5.0</dbunit.version>
<commons-dbcp2.version>2.0.1</commons-dbcp2.version>
</properties>
</project>
|