buildscript { ext { springBootVersion = '2.1.0.BUILD-SNAPSHOT' wrapperVersion = '1.0.13.RELEASE' } repositories { mavenLocal() mavenCentral() maven { url "https://repo.spring.io/plugins-snapshot" } maven { url "https://repo.spring.io/plugins-milestone" } } dependencies { classpath("org.springframework.boot.experimental:spring-boot-thin-gradle-plugin:${wrapperVersion}") classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'maven' apply plugin: 'eclipse' apply plugin: 'spring-boot' apply plugin: 'org.springframework.boot.experimental.thin-launcher' group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = 1.8 targetCompatibility = 1.8 repositories { mavenLocal() mavenCentral() maven { url "https://repo.spring.io/snapshot" } maven { url "https://repo.spring.io/milestone" } } ext { springCloudFunctionVersion = "2.0.0.BUILD-SNAPSHOT" } dependencyManagement { imports { mavenBom "org.springframework.cloud:spring-cloud-function-dependencies:${springCloudFunctionVersion}" } } dependencies { compile('org.springframework.cloud:spring-cloud-starter-function-web') testCompile('org.springframework.boot:spring-boot-starter-test') }