-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
43 lines (36 loc) · 1.05 KB
/
build.gradle.kts
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
36
37
38
39
40
41
42
43
//region Build script
buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.1.RELEASE")
classpath("org.ajoberstar:grgit:2.2.1")
classpath(kotlin("gradle-plugin", version = "1.3.21"))
classpath(kotlin("allopen", version = "1.3.21"))
classpath(kotlin("noarg", version = "1.3.21"))
}
}
//endregion
allprojects {
group = "com.sfl.tms"
version = "0.0.15-SNAPSHOT"
}
subprojects {
apply(plugin = "org.jetbrains.kotlin.jvm")
apply(plugin = "org.jetbrains.kotlin.plugin.jpa")
apply(plugin = "org.jetbrains.kotlin.plugin.allopen")
apply(plugin = "org.jetbrains.kotlin.plugin.spring")
apply(plugin = "io.spring.dependency-management")
configure<JavaPluginConvention> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
}