Commit 632af6b1 authored by Phillip Webb's avatar Phillip Webb

Polish gradle examples

Spaces -> Tabs, version number, whitespace.
parent 338b32eb
......@@ -2,13 +2,13 @@ buildscript {
ext {
springBootVersion = '1.0.0.BUILD-SNAPSHOT'
}
repositories {
mavenLocal()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
repositories {
mavenLocal()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
......@@ -17,14 +17,14 @@ apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'spring-boot-sample-actuator'
version = '1.0.0'
baseName = 'spring-boot-sample-actuator'
version = '0.0.0'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
......@@ -32,13 +32,13 @@ dependencies {
insecure.exclude module: 'spring-boot-starter-security'
}
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("org.springframework.boot:spring-boot-starter-test")
insecure configurations.runtime
insecure configurations.runtime
}
// Slightly odd requirement (package a jar file as an insecure app, exlcuding Spring Security)
......@@ -48,5 +48,5 @@ springBoot {
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
gradleVersion = '1.6'
}
......@@ -2,37 +2,36 @@ buildscript {
ext {
springBootVersion = '1.0.0.BUILD-SNAPSHOT'
}
repositories {
mavenLocal()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
repositories {
mavenLocal()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'spring-boot-sample-simple'
version = '1.0.0'
baseName = 'spring-boot-sample-simple'
version = '0.0.0'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile("org.springframework.boot:spring-boot-starter")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
gradleVersion = '1.6'
}
......@@ -22,7 +22,7 @@ mainClassName = "sample.ui.SampleWebStaticApplication"
war {
baseName = 'spring-boot-sample-web-static'
version = '0.5.0'
version = '0.0.0'
}
repositories {
......
......@@ -23,7 +23,7 @@ mainClassName = "sample.ui.SampleWebUiApplication"
jar {
baseName = 'spring-boot-sample-web-ui'
version = '0.5.0'
version = '0.0.0'
}
repositories {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment