12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- buildscript {
- ext {
- springBootVersion = '2.0.0.M7'
- }
- repositories {
- mavenCentral()
- maven { url "https://repo.spring.io/snapshot" }
- maven { url "https://repo.spring.io/milestone" }
- }
- dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
- }
- }
-
- apply plugin: 'java'
- apply plugin: 'eclipse'
- apply plugin: 'org.springframework.boot'
- apply plugin: 'io.spring.dependency-management'
-
- group = 'io.pivotal.workshop'
- version = '0.0.1-SNAPSHOT'
- sourceCompatibility = 1.8
-
- repositories {
- mavenCentral()
- maven { url "https://repo.spring.io/snapshot" }
- maven { url "https://repo.spring.io/milestone" }
- }
-
-
- dependencies {
- compile('org.springframework.boot:spring-boot-starter-actuator')
- compile('org.springframework.boot:spring-boot-starter-webflux')
- compileOnly('org.springframework.boot:spring-boot-configuration-processor')
-
- runtime('org.springframework.boot:spring-boot-devtools')
-
- //runtime('de.flapdoodle.embed:de.flapdoodle.embed.mongo')
-
- testCompile('org.springframework.boot:spring-boot-starter-test')
- testCompile('io.projectreactor:reactor-test')
- }
|