dbunit-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>dbunit-maven-plugin</artifactId> <version>1.0-beta-3</version> </dependency>
<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>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>21</version> </parent> <groupId>org.codehaus.mojo</groupId> <artifactId>dbunit-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0-beta-3</version> <name>DbUnit Plugin</name> <url>http://mojo.codehaus.org/dbunit-maven-plugin/</url> <inceptionYear>2006</inceptionYear> <scm> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/dbunit-maven-plugin-1.0-beta-3</developerConnection> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/dbunit-maven-plugin-1.0-beta-3</connection> <url>http://fisheye.codehaus.org/browse/mojo/tags/dbunit-maven-plugin-1.0-beta-3</url> </scm> <description> Use this plugin to invoke DbUnit utilities </description> <issueManagement> <system>JIRA</system> <url>http://jira.codehaus.org/browse/MDBUNIT</url> </issueManagement> <prerequisites> <maven>2.0</maven> </prerequisites> <developers> <developer> <id>topping</id> <name>Brian Topping</name> <email>topping@codehaus.org</email> <roles> <role>Java Developer</role> </roles> <timezone>+8</timezone> </developer> <developer> <id>dtran</id> <name>Dan Tran</name> <email>dantran@apache.org</email> <roles> <role>Java Developer</role> </roles> </developer> <developer> <id>david</id> <name>David J. M. Karlsen</name> <email>david@codehaus.org</email> <organization>codehaus.org</organization> <organizationUrl>http://www.codehaus.org</organizationUrl> <roles> <role>Java Developer</role> </roles> <timezone>1</timezone> <url>http://www.davidkarlsen.com</url> </developer> </developers> <licenses> <license> <name>The MIT License</name> <url>LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <version>2.4.5</version> </dependency> <!-- dbunit depends on slf4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.5.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>ant</groupId> <artifactId>ant</artifactId> <version>1.6.5</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>2.0</version> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-docck-plugin</artifactId> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> --> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>1.3</version> <configuration> <debug>true</debug> <projectsDirectory>src/example</projectsDirectory> <pomIncludes> <pomInclude>**/pom.xml</pomInclude> </pomIncludes> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <settingsFile>src/it/settings.xml</settingsFile> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.1</version> <configuration> <urlDownload>${project.url}</urlDownload> <columnNames>Key,Summary,Status,Resolution,Assignee,Type,Version,Fix Version</columnNames> <generateJiraAnnouncement>true</generateJiraAnnouncement> <toAddresses> <toAddress>dev@mojo.codehaus.org</toAddress> <toAddress>user@mojo.codehaus.org</toAddress> <toAddress>users@maven.apache.org</toAddress> </toAddresses> </configuration> </plugin> </plugins> </reporting> </project>