36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<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>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>flyway</artifactId>
|
|
<version>1.0</version>
|
|
<name>flyway</name>
|
|
<description>A sample project to demonstrate Flyway migrations</description>
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-modules</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>${mysql.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-maven-plugin</artifactId>
|
|
<version>${flyway-maven-plugin.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
<mysql.version>6.0.5</mysql.version>
|
|
<flyway-maven-plugin.version>4.0.3</flyway-maven-plugin.version>
|
|
</properties>
|
|
</project> |