Move final build file to the beginning and update guides to reflect this
This commit is contained in:
parent
27fd3edb1b
commit
0b25ed6092
@ -41,7 +41,7 @@ include::https://raw.github.com/spring-guides/getting-started-macros/master/crea
|
|||||||
include::initial/build.gradle[]
|
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.
|
Typically your customer or a business analyst supplies a spreadsheet. In this case, you make it up.
|
||||||
|
@ -3,11 +3,15 @@ buildscript {
|
|||||||
maven { url "http://repo.spring.io/libs-snapshot" }
|
maven { url "http://repo.spring.io/libs-snapshot" }
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
}
|
}
|
||||||
|
dependencies {
|
||||||
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC3")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
|
apply plugin: 'spring-boot'
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
baseName = 'gs-batch-processing'
|
baseName = 'gs-batch-processing'
|
||||||
|
@ -24,12 +24,20 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<start-class>hello.Application</start-class>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>2.3.2</version>
|
<version>2.3.2</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user