35 lines
749 B
Groovy
35 lines
749 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:$springBootVersion")
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
group = "net.chrisrichardson.eventstore"
|
|
}
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.0'
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
repositories {
|
|
if (project.hasProperty("localMavenRepoUrl")) {
|
|
project.localMavenRepoUrl.split(',').each { theUrl ->
|
|
maven { url theUrl }
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven { url "https://06c59145-4e83-4f22-93ef-6a7eee7aebaa.repos.chrisrichardson.net.s3.amazonaws.com" }
|
|
|
|
}
|
|
}
|