migrations-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis.maven</groupId> <artifactId>migrations-maven-plugin</artifactId> <version>1.1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010 The myBatis Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>20</version> </parent> <groupId>org.mybatis.maven</groupId> <artifactId>migrations-maven-plugin</artifactId> <version>1.1.1</version> <packaging>maven-plugin</packaging> <name>MyBatis Migrations Maven plugin</name> <description>Migration-plugin is a Apache Maven 2 plugin that aims to integrate into the maven life cycle, the myBatis 3 Migration tool. MyBatis 3 Migration Schema is a tool that helps you to manage database schema changes.</description> <url>http://www.mybatis.org/migrations-maven-plugin</url> <properties> <findbugs.onlyAnalyze>org.mybatis.maven.mvnmigrate.*</findbugs.onlyAnalyze> </properties> <scm> <url>http://github.com/mybatis/migrations-maven-plugin</url> <connection>scm:git:ssh://github.com/mybatis/migrations-maven-plugin.git</connection> <developerConnection>scm:git:git+ssh://git@github.com/mybatis/migrations-maven-plugin.git</developerConnection> <tag>migrations-maven-plugin-1.1.1</tag> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/migrations-maven-plugin/issues</url> </issueManagement> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/mybatis/migrations-maven-plugin</url> </ciManagement> <distributionManagement> <site> <id>github</id> <url>gitsite:git@github.com/mybatis/migrations-maven-plugin.git</url> </site> </distributionManagement> <build> <resources> <resource> <directory>${basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> </includes> </resource> <resource> <directory>${basedir}/src/main/resources</directory> <filtering>true</filtering> <targetPath>.</targetPath> </resource> </resources> <plugins> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>1.8</version> <configuration> <debug>false</debug> <projectsDirectory>src/it</projectsDirectory> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <pomIncludes> <pomInclude>**/pom.xml</pomInclude> </pomIncludes> <pomExcludes> <pomExclude>**/mod1/pom.xml</pomExclude> <pomExclude>**/mod2/pom.xml</pomExclude> <pomExclude>**/mod3/pom.xml</pomExclude> </pomExcludes> <postBuildHookScript>verify.bsh</postBuildHookScript> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <arguments>-Prelease</arguments> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>2.5.1</version> <configuration> <goalPrefix>migration</goalPrefix> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>2.5.1</version> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-migrations</artifactId> <version>3.2.0</version> </dependency> <!-- Dependencies for Analyze-report mojo --> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>2.0.6</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>2.0.4</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <version>1.0-beta-1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>1.8.0.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.6</version> <scope>test</scope> </dependency> </dependencies> </project>