-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (30 loc) · 928 Bytes
/
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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${Versions.springBootVersion}")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlinVersion}")
classpath("org.jetbrains.kotlin:kotlin-allopen:${Versions.kotlinVersion}")
}
}
allprojects {
group = "io.leonhardt.coffee"
version = "0.0.1-SNAPSHOT"
repositories {
mavenCentral()
maven { setUrl("https://jitpack.io") }
maven { setUrl("https://dl.bintray.com/codebandits/beak") }
maven { setUrl("https://dl.bintray.com/kotlin/exposed") }
}
}
tasks {
register("downloadDependencies") {
dependsOn(":kaapi:yarn_install")
dependsOn(":latte:compileTestJava")
}
register("build") {
dependsOn(":kaapi:yarn_run_build")
dependsOn(":latte:assemble")
}
}