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.
71 lines
2.1 KiB
71 lines
2.1 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>0.5.0.M2</version> |
|
</parent> |
|
<artifactId>spring-boot-gradle-plugin</artifactId> |
|
<properties> |
|
<main.basedir>${basedir}/../..</main.basedir> |
|
</properties> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-boot-loader-tools</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
<!-- Provided --> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</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-base-services-groovy</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> |
|
<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.5-03</version> |
|
</dependency> |
|
</dependencies> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|