mybatis-migrations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-migrations</artifactId> <version>3.3.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010-2018 the original author or authors. 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mybatis</groupId> <artifactId>mybatis-parent</artifactId> <version>30</version> <relativePath /> </parent> <artifactId>mybatis-migrations</artifactId> <version>3.3.5</version> <name>MyBatis Migrations</name> <url>http://www.mybatis.org/migrations/</url> <contributors> <contributor> <name>Riccardo Cossu</name> <email>riccardo.cossu@gmail.com</email> </contributor> </contributors> <scm> <url>http://github.com/mybatis/migrations</url> <connection>scm:git:ssh://github.com/mybatis/migrations.git</connection> <developerConnection>scm:git:ssh://git@github.com/mybatis/migrations.git</developerConnection> <tag>mybatis-migrations-3.3.5</tag> </scm> <issueManagement> <system>GitHub Issue Management</system> <url>https://github.com/mybatis/migrations/issues</url> </issueManagement> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/mybatis/migrations</url> </ciManagement> <distributionManagement> <site> <id>gh-pages</id> <name>Mybatis GitHub Pages</name> <url>git:ssh://git@github.com/mybatis/migrations.git?gh-pages#</url> </site> </distributionManagement> <properties> <findbugs.onlyAnalyze>org.apache.ibatis.migration</findbugs.onlyAnalyze> <clirr.comparisonVersion>3.2.0</clirr.comparisonVersion> </properties> <dependencies> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.4.6</version> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>4.12.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stefanbirkner</groupId> <artifactId>system-rules</artifactId> <version>1.17.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.5</version> <!-- Version 2.4.0 requires jdk8 --> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.basedir}</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE</include> <include>NOTICE</include> </includes> </resource> <resource> <directory>${project.build.sourceDirectory}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>${project.build.testSourceDirectory}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>3.0</version> <configuration> <mapping> <policy>DOUBLESLASH_STYLE</policy> </mapping> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <version>2.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>assemble</goal> </goals> </execution> </executions> <configuration> <repositoryLayout>flat</repositoryLayout> <repositoryName>lib</repositoryName> <endorsedDir>lib</endorsedDir> <extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments> <binFileExtensions> <windows>.cmd</windows> </binFileExtensions> <programs> <program> <mainClass>org.apache.ibatis.migration.Migrator</mainClass> <id>migrate</id> </program> </programs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <descriptors> <descriptor>${project.basedir}/src/main/assembly/bundle.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>