-
Notifications
You must be signed in to change notification settings - Fork 697
/
Copy pathbuild.gradle.kts
46 lines (35 loc) · 1.04 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val exposedVersion: String by project
plugins {
id("org.springframework.boot") version "3.3.2"
id("io.spring.dependency-management") version "1.1.6"
kotlin("jvm") version "2.0.0"
kotlin("plugin.spring") version "2.0.0"
}
group = "org.jetbrains.exposed"
version = "1.0.0"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(17)
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("com.h2database:h2")
implementation("org.jetbrains.exposed:exposed-spring-boot-starter:$exposedVersion")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
tasks.withType<KotlinCompile> {
compilerOptions {
freeCompilerArgs.set(listOf("-Xjsr305=strict"))
}
}
tasks.withType<Test> {
useJUnitPlatform()
}