spring-test-dbunit-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ppodgorsek</groupId> <artifactId>spring-test-dbunit-test</artifactId> <version>6.0.0</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.ppodgorsek</groupId> <artifactId>spring-test-dbunit-parent</artifactId> <version>6.0.0</version> </parent> <groupId>com.github.ppodgorsek</groupId> <artifactId>spring-test-dbunit-test</artifactId> <packaging>jar</packaging> <name>Spring Test DBUnit Test</name> <description>Test module for the integration between the Spring testing framework and DBUnit</description> <url>https://github.com/ppodgorsek/spring-test-dbunit</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Paul Podgorsek</name> <email>ppodgorsek@users.noreply.github.com</email> <url>https://github.com/ppodgorsek</url> </developer> </developers> <scm> <url>https://github.com/ppodgorsek/spring-test-dbunit</url> <connection>scm:git:git://github.com/ppodgorsek/spring-test-dbunit.git</connection> <developerConnection>scm:git:git@github.com:ppodgorsek/spring-test-dbunit.git</developerConnection> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/ppodgorsek/spring-test-dbunit/issues</url> </issueManagement> <properties> <config.path.prefix>..</config.path.prefix> </properties> <dependencies> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> </dependencies> </project>