123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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" }
- }
-
-
- ext {
- springCloudVersion = 'Finchley.M4'
- }
-
- dependencies {
- compile('org.springframework.boot:spring-boot-starter-actuator')
- compile('org.springframework.cloud:spring-cloud-starter-stream-rabbit')
- compile('org.springframework.boot:spring-boot-starter-integration')
- runtime('org.springframework.boot:spring-boot-devtools')
- testCompile('org.springframework.boot:spring-boot-starter-test')
- }
-
- dependencyManagement {
- imports {
- mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
- }
- }
|