You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
124 lines
3.5 KiB
124 lines
3.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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.springframework.boot</groupId> |
|
<artifactId>spring-boot-tools</artifactId> |
|
<version>1.3.0.BUILD-SNAPSHOT</version> |
|
</parent> |
|
<artifactId>spring-boot-gradle-plugin</artifactId> |
|
<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> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-loader-tools</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.spring.gradle</groupId> |
|
<artifactId>dependency-management-plugin</artifactId> |
|
</dependency> |
|
<!-- Provided --> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-core</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-base-services</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.gradle</groupId> |
|
<artifactId>gradle-plugins</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<sourceDirectory>src/main/groovy</sourceDirectory> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<configuration> |
|
<compilerId>groovy-eclipse-compiler</compilerId> |
|
</configuration> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-eclipse-compiler</artifactId> |
|
<version>2.8.0-01</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-eclipse-batch</artifactId> |
|
<version>2.1.8-01</version> |
|
</dependency> |
|
</dependencies> |
|
</plugin> |
|
</plugins> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.eclipse.m2e</groupId> |
|
<artifactId>lifecycle-mapping</artifactId> |
|
<version>1.0.0</version> |
|
<configuration> |
|
<lifecycleMappingMetadata> |
|
<pluginExecutions> |
|
<pluginExecution> |
|
<pluginExecutionFilter> |
|
<groupId> |
|
org.apache.maven.plugins |
|
</groupId> |
|
<artifactId> |
|
maven-compiler-plugin |
|
</artifactId> |
|
<versionRange> |
|
[2.10,) |
|
</versionRange> |
|
<goals> |
|
<goal>compile</goal> |
|
<goal>testCompile</goal> |
|
</goals> |
|
</pluginExecutionFilter> |
|
<action> |
|
<ignore></ignore> |
|
</action> |
|
</pluginExecution> |
|
</pluginExecutions> |
|
</lifecycleMappingMetadata> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
</build> |
|
<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> |
|
</project>
|
|
|