dbmigrate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.viaboxx</groupId> <artifactId>dbmigrate</artifactId> <version>2.5.25</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"> <parent> <groupId>de.viaboxx</groupId> <artifactId>agimatec-tools</artifactId> <version>2.5.25</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>de.viaboxx</groupId> <artifactId>dbmigrate</artifactId> <packaging>jar</packaging> <version>2.5.25 </version> <name>Database migration and setup tools</name> <url>http://code.google.com/p/agimatec-tools/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <site> <id>${agimatec-site-id}</id> <url>${agimatec-site-url}/agimatec-tools/site/dbmigrate</url> </site> </distributionManagement> <dependencies> <!-- for spring integration with DataSource configuration using DBCP --> <dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <optional>true</optional> </dependency> <!-- for spring integration --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <optional>true</optional> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <!-- <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency>--> <!-- <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.18</version> <scope>test</scope> </dependency>--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.dbunit</groupId> <artifactId>dbunit</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <executions> <execution> <id>copy-min</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeArtifactIds>commons-lang,commons-io</includeArtifactIds> <stripVersion>false</stripVersion> <outputDirectory>target/dep-libs/minimal</outputDirectory> <includeScope>compile</includeScope> <useRepositoryLayout>false</useRepositoryLayout> </configuration> </execution> <execution> <id>copy-all</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <stripVersion>false</stripVersion> <outputDirectory>target/dep-libs/all</outputDirectory> <includeScope>compile</includeScope> <useRepositoryLayout>false</useRepositoryLayout> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>create dist.zip with source, binary and templates</id> <phase>package</phase> <configuration> <tasks> <zip destfile="${dist-dir}.zip"> <fileset dir="."> <include name="pom.xml" /> <include name="templates/**" /> <include name="src/**" /> <exclude name="src/test/**" /> </fileset> <fileset dir="target"> <include name="dbmigrate-${agimatec-version}.jar" /> </fileset> </zip> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <!-- target directory for distribution --> <dist-dir>target/dbmigrate-dist-${agimatec-version}</dist-dir> </properties> </project>