2013-07-30 15:02:56 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2015-11-16 19:18:54 +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">
|
2013-07-30 15:02:56 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-02 19:14:11 +08:00
|
|
|
<artifactId>spring-boot-tools</artifactId>
|
2017-01-31 04:10:13 +08:00
|
|
|
<version>1.5.2.BUILD-SNAPSHOT</version>
|
2013-07-30 15:02:56 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-gradle-plugin</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Gradle Plugin</name>
|
|
|
|
<description>Spring Boot Gradle Plugin</description>
|
|
|
|
<url>http://projects.spring.io/spring-boot/</url>
|
|
|
|
<organization>
|
|
|
|
<name>Pivotal Software, Inc.</name>
|
|
|
|
<url>http://www.spring.io</url>
|
|
|
|
</organization>
|
2013-07-30 15:02:56 +08:00
|
|
|
<properties>
|
2013-08-02 16:53:03 +08:00
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
2013-07-30 15:02:56 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Compile -->
|
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-30 15:02:56 +08:00
|
|
|
<artifactId>spring-boot-loader-tools</artifactId>
|
|
|
|
</dependency>
|
2015-03-19 01:08:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.gradle</groupId>
|
|
|
|
<artifactId>dependency-management-plugin</artifactId>
|
|
|
|
</dependency>
|
2013-07-30 15:02:56 +08:00
|
|
|
<!-- Provided -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
2014-01-25 14:48:27 +08:00
|
|
|
<artifactId>groovy</artifactId>
|
2013-07-30 15:02:56 +08:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-11-02 00:23:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
|
|
|
<artifactId>gradle-base-services</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2013-07-30 15:02:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
|
|
|
<artifactId>gradle-core</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
2016-11-02 00:23:43 +08:00
|
|
|
<artifactId>gradle-language-java</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
|
|
|
<artifactId>gradle-language-jvm</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
|
|
|
<artifactId>gradle-platform-jvm</artifactId>
|
2013-07-30 15:02:56 +08:00
|
|
|
<scope>provided</scope>
|
2015-07-10 22:55:35 +08:00
|
|
|
</dependency>
|
2013-07-30 15:02:56 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.gradle</groupId>
|
|
|
|
<artifactId>gradle-plugins</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-06-10 23:25:31 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>gradle</id>
|
|
|
|
<url>http://repo.gradle.org/gradle/libs-releases-local</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2013-07-30 15:02:56 +08:00
|
|
|
</project>
|