Prune dependencies and rename samples
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
buildscript {
|
||||
ext {
|
||||
springBootVersion = '1.5.2.RELEASE'
|
||||
wrapperVersion = '1.0.7.RELEASE'
|
||||
}
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
maven { url "https://repo.spring.io/snapshot" }
|
||||
maven { url "https://repo.spring.io/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 = 'io.spring.sample'
|
||||
version = '1.0.0.BUILD-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 = "1.0.0.BUILD-SNAPSHOT"
|
||||
}
|
||||
ext['reactor.version'] = "3.0.7.RELEASE"
|
||||
|
||||
// TODO: remove this when pom.xml generator is fixed
|
||||
jar.dependsOn = [thinProperties]
|
||||
|
||||
dependencyManagement {
|
||||
imports {
|
||||
mavenBom "org.springframework.cloud:spring-cloud-function-dependencies:${springCloudFunctionVersion}"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile('org.springframework.cloud:spring-cloud-function-web')
|
||||
compile('org.springframework.cloud:spring-cloud-function-compiler')
|
||||
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||||
}
|
||||
Reference in New Issue
Block a user