-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle.kts
58 lines (50 loc) · 1.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val mainClassName = "LauncherKt"
dependencies {
implementation(project(":server"))
implementation(project(":json"))
implementation(project(":i18n"))
implementation(project(":jdbc"))
implementation(project(":slf4j"))
implementation(project(":oauth"))
implementation(project(":openapi"))
implementation(libs.postgresql)
testImplementation(project(":jdbc-test"))
}
sourceSets {
main {
resources.srcDirs("db", "i18n")
}
}
tasks.register<Copy>("deps") {
into("$buildDir/libs/deps")
from(configurations.runtimeClasspath)
}
tasks.jar {
dependsOn("deps")
doFirst {
manifest {
attributes(
"Main-Class" to mainClassName,
"Class-Path" to File("$buildDir/libs/deps").listFiles()?.joinToString(" ") { "deps/${it.name}"}
)
}
}
}
tasks.register<JavaExec>("run") {
mainClass.set(mainClassName)
classpath = sourceSets.main.get().runtimeClasspath
}
tasks.register<JavaExec>("types.ts") {
dependsOn("testClasses")
mainClass.set("klite.json.TSGenerator")
classpath = sourceSets.test.get().runtimeClasspath
args("${project.buildDir}/classes/kotlin/main",
"-o", project.file("build/types.ts"),
"-p", "// Generated automatically by ./gradlew types.ts\n",
"-t", "users.TestData"
)
}
tasks.withType<KotlinCompile> {
finalizedBy("types.ts")
}