5ed7c8f501
Added core, config and samples modules. Moved sample project into samples module. Closes gh-10
29 lines
602 B
Groovy
29 lines
602 B
Groovy
buildscript {
|
|
dependencies {
|
|
classpath 'io.spring.gradle:spring-build-conventions:0.0.31.RELEASE'
|
|
classpath "org.springframework.boot:spring-boot-gradle-plugin:latest.release"
|
|
|
|
}
|
|
repositories {
|
|
maven { url 'https://repo.spring.io/plugins-snapshot' }
|
|
maven { url 'https://plugins.gradle.org/m2/' }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'io.spring.convention.root'
|
|
|
|
group = 'org.springframework.experimental'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencyManagementExport.projects = subprojects
|
|
|
|
subprojects {
|
|
plugins.withType(JavaPlugin) {
|
|
project.sourceCompatibility = '1.8'
|
|
}
|
|
}
|