2017-12-29 23:05:05 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-12-27 09:32:45 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-12-29 23:05:05 -05:00
|
|
|
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>
|
|
|
|
<artifactId>flyway</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>flyway</name>
|
|
|
|
<description>Flyway Callbacks Demo</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-06-08 14:04:03 -04:00
|
|
|
<artifactId>parent-boot-1</artifactId>
|
2017-12-29 23:05:05 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-06-08 14:04:03 -04:00
|
|
|
<relativePath>../parent-boot-1</relativePath>
|
2017-12-29 23:05:05 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.flywaydb</groupId>
|
|
|
|
<artifactId>flyway-core</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${flyway-core.version}</version>
|
2017-12-29 23:05:05 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2018-07-12 03:04:54 -04:00
|
|
|
<scope>runtime</scope>
|
2017-12-29 23:05:05 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.flywaydb</groupId>
|
|
|
|
<artifactId>flyway-maven-plugin</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${flyway-maven-plugin.version}</version>
|
2017-12-31 04:49:13 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>${h2.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-12-29 23:05:05 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<properties>
|
|
|
|
<flyway-core.version>5.0.2</flyway-core.version>
|
|
|
|
<flyway-maven-plugin.version>5.0.2</flyway-maven-plugin.version>
|
2018-09-29 13:52:40 -04:00
|
|
|
<h2.version>1.4.195</h2.version>
|
2018-04-26 02:50:35 -04:00
|
|
|
</properties>
|
2018-04-26 08:37:47 -04:00
|
|
|
|
2017-12-29 23:05:05 -05:00
|
|
|
</project>
|