2014-05-02 02:37:25 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:15:58 +08:00
|
|
|
<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">
|
2014-05-02 02:37:25 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<!-- Your own application should inherit from spring-boot-starter-parent -->
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-samples</artifactId>
|
2017-06-01 05:15:58 +08:00
|
|
|
<version>${revision}</version>
|
2014-05-02 02:37:25 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-sample-flyway</artifactId>
|
|
|
|
<name>Spring Boot Flyway Sample</name>
|
|
|
|
<description>Spring Boot Flyway Sample</description>
|
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2016-12-31 03:46:24 +08:00
|
|
|
<!-- Compile -->
|
2015-09-10 04:45:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2015-09-11 22:22:03 +08:00
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2015-09-10 04:45:03 +08:00
|
|
|
</dependency>
|
2014-05-02 02:37:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2015-09-11 22:22:03 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2014-05-02 02:37:25 +08:00
|
|
|
</dependency>
|
2015-09-10 04:45:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2017-09-19 23:03:19 +08:00
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2015-09-10 04:45:03 +08:00
|
|
|
</dependency>
|
2014-05-02 02:37:25 +08:00
|
|
|
<dependency>
|
2014-05-02 22:32:57 +08:00
|
|
|
<groupId>org.flywaydb</groupId>
|
2014-05-02 20:09:29 +08:00
|
|
|
<artifactId>flyway-core</artifactId>
|
2014-05-02 02:37:25 +08:00
|
|
|
</dependency>
|
2016-12-31 03:46:24 +08:00
|
|
|
<!-- Runtime -->
|
2014-05-02 02:37:25 +08:00
|
|
|
<dependency>
|
2015-09-11 22:22:03 +08:00
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2014-05-02 02:37:25 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2016-12-31 03:46:24 +08:00
|
|
|
<!-- Test -->
|
2014-05-02 02:37:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-03-02 19:58:25 +08:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>java9</id>
|
|
|
|
<activation>
|
2018-03-02 23:28:03 +08:00
|
|
|
<jdk>[9,)</jdk>
|
2018-03-02 19:58:25 +08:00
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2014-05-02 02:37:25 +08:00
|
|
|
</project>
|