Move final build file to the beginning and update guides to reflect this

This commit is contained in:
Greg Turnquist 2014-02-18 16:33:02 -06:00
parent 27fd3edb1b
commit 0b25ed6092
3 changed files with 15 additions and 3 deletions

View File

@ -41,7 +41,7 @@ include::https://raw.github.com/spring-guides/getting-started-macros/master/crea
include::initial/build.gradle[]
----
include::https://raw.github.com/spring-guides/getting-started-macros/master/bootstrap_starter_pom_disclaimer.adoc[]
include::https://raw.github.com/spring-guides/getting-started-macros/master/spring-boot-gradle-plugin.adoc[]
Typically your customer or a business analyst supplies a spreadsheet. In this case, you make it up.

View File

@ -3,11 +3,15 @@ buildscript {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC3")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-batch-processing'

View File

@ -24,11 +24,19 @@
</dependency>
</dependencies>
<properties>
<start-class>hello.Application</start-class>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>