generated from zfz7/tetris_aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
40 lines (34 loc) · 940 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
36
37
38
39
40
extra["smithyVersion"] = "1.42.0"
extra["yarnVersion"] = "1.22.19"
extra["nodeVersion"] = "20.10.0"
extra["smithyTypeScriptVersion"] = "0.19.0"
plugins {
val kotlinVersion = "1.9.0"
val nodePluginVersion = "5.0.0"
kotlin("jvm") version kotlinVersion apply false
kotlin("kapt") version kotlinVersion apply false
id("com.github.node-gradle.node") version nodePluginVersion apply false
}
group = "com.daniel-eichman"
version = "0.0.1-SNAPSHOT"
repositories {
mavenCentral()
}
tasks.register("build") {
dependsOn("model:build")
dependsOn("cdk:build")
dependsOn("tsclient:build")
dependsOn("backend:build")
dependsOn("frontend:build")
}
tasks.register("clean") {
dependsOn("model:clean")
dependsOn("cdk:clean")
dependsOn("tsclient:clean")
dependsOn("backend:clean")
dependsOn("frontend:clean")
}
tasks.register("deploy") {
dependsOn("build")
dependsOn("cdk:deploy")
}