spring-test-dbunit-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ppodgorsek</groupId> <artifactId>spring-test-dbunit-core</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-core</artifactId> <packaging>jar</packaging> <name>Spring Test DBUnit Core</name> <description>Core 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> <developer> <name>Phillip Webb</name> <url>https://github.com/philwebb</url> </developer> <developer> <name>Mario Zagar</name> <url>https://github.com/mzagar</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> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerVersion>${java.version}</compilerVersion> <source>${java.version}</source> <testSource>${java.version}</testSource> <testTarget>${java.version}</testTarget> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <additionalConfig> <file> <name>.settings/org.eclipse.jdt.ui.prefs</name> <location>../eclipse/org.eclipse.jdt.ui.prefs</location> </file> <file> <name>.settings/org.eclipse.jdt.core.prefs</name> <location>../eclipse/org.eclipse.jdt.core.prefs</location> </file> </additionalConfig> </configuration> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <executions> <execution> <id>default</id> <goals> <goal>perform</goal> </goals> <configuration> <pomFileName>spring-test-dbunit/pom.xml</pomFileName> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <configuration> <message>Creating site for ${project.version}</message> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.github.ppodgorsek</groupId> <artifactId>spring-test-dbunit-test</artifactId> </dependency> <!-- Expected Dependencies --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> <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>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>