-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
116 lines (94 loc) · 3.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType
plugins {
id("org.springframework.boot") version "3.3.1"
id("io.spring.dependency-management") version "1.1.5"
id("org.jlleitschuh.gradle.ktlint").version("12.1.1")
kotlin("plugin.jpa") version "1.9.24"
kotlin("jvm") version "1.9.24"
kotlin("plugin.spring") version "1.9.24"
}
group = "com"
version = "0.0.1"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
// DatabaseSource
runtimeOnly("com.h2database:h2")
runtimeOnly("com.mysql:mysql-connector-j")
// Swagger
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0")
// JWT
implementation("io.jsonwebtoken:jjwt-api:0.12.5")
runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.5")
runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.5")
// Kotlin JDSL
implementation("com.linecorp.kotlin-jdsl:jpql-dsl:3.5.1")
implementation("com.linecorp.kotlin-jdsl:jpql-render:3.5.1")
implementation("com.linecorp.kotlin-jdsl:spring-data-jpa-support:3.5.1")
// flyway
implementation("org.flywaydb:flyway-core")
implementation("org.flywaydb:flyway-mysql")
// Test
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
// Ko-test
testImplementation("io.kotest:kotest-runner-junit5:5.4.2")
testImplementation("io.kotest:kotest-assertions-core:5.4.2")
testImplementation("io.kotest.extensions:kotest-extensions-spring:1.1.2")
// Mockk
testImplementation("io.mockk:mockk:1.13.11")
testImplementation("com.ninja-squad:springmockk:4.0.2")
// Fixture Monkey
testImplementation("com.navercorp.fixturemonkey:fixture-monkey-starter-kotlin:1.0.20")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll(
"-Xjsr305=strict",
// Enable JVM default annotations
"-Xjvm-default=all",
)
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
// Add a task to copy secret files
tasks.named<JavaCompile>("compileJava") {
inputs.files(tasks.named("processResources"))
}
tasks.named<Copy>("processResources") {
dependsOn("copySecret")
dependsOn("copyFlyway")
}
tasks.register("copySecret", Copy::class) {
from("./server-profile-submodule")
include("application*.yml")
into("./src/main/resources/")
}
tasks.register("copyFlyway", Copy::class) {
from("./server-profile-submodule/flyway")
include("V*.sql")
into("./src/main/resources/flyway")
}
// Disable jar task
tasks.named("jar") {
enabled = false
}
ktlint {
reporters {
reporter(ReporterType.JSON)
}
}