-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (30 loc) · 1.03 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
buildscript {
apply from: 'gradles/ext.gradle'
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "org.jetbrains.kotlin:kotlin-allopen:$versions.kotlin"
classpath "com.github.jengelman.gradle.plugins:shadow:$versions.shadow"
classpath "org.springframework.boot:spring-boot-gradle-plugin:$versions.springBoot"
}
}
allprojects {
group = 'org.carbon.crawler'
repositories {
mavenCentral()
jcenter()
maven { url 'http://kotlin.bintray.com/ktor' }
maven { url 'https://dl.bintray.com/kotlin/exposed' }
maven { url 'https://repo.spring.io/libs-milestone' }
maven { url 'https://repo.spring.io/libs-release' }
maven { url 'https://shotaod.github.io/maven/release' }
}
}
subprojects {
apply from: "$rootDir/gradles/base.gradle"
apply from: "$rootDir/gradles/spring.gradle"
apply from: "$rootDir/gradles/jacoco.gradle"
}