-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
107 lines (96 loc) · 3.45 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.openapitools.generator.gradle.plugin.tasks.GenerateTask
detekt {
/**
* ./gradlew detektGenerateConfig でdetekt.ymlが生成される(バージョンが上がる度に再生成する)
*/
config = files(
"$projectDir/config/detekt/detekt.yml",
"$projectDir/config/detekt/detekt-override.yml",
)
}
plugins {
id("org.springframework.boot") version "2.7.17-SNAPSHOT"
id("io.spring.dependency-management") version "1.0.15.RELEASE"
kotlin("jvm") version "1.6.21"
kotlin("plugin.spring") version "1.6.21"
id("io.gitlab.arturbosch.detekt") version "1.21.0"
id("org.jetbrains.dokka") version "1.7.20"
id("org.openapi.generator") version "6.2.0"
}
group = "com.example"
version = "0.0.1-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
maven { url = uri("https://repo.spring.io/milestone") }
maven { url = uri("https://repo.spring.io/snapshot") }
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
testImplementation("org.springframework.boot:spring-boot-starter-test")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.21.0")
dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.7.20")
implementation("io.arrow-kt:arrow-core:1.1.3")
testImplementation("org.assertj:assertj-core:3.23.1")
testImplementation("net.jqwik:jqwik:1.7.1")
testImplementation("net.jqwik:jqwik-kotlin:1.7.1")
compileOnly("io.swagger.core.v3:swagger-annotations:2.2.6")
compileOnly("io.swagger.core.v3:swagger-models:2.2.6")
compileOnly("jakarta.annotation:jakarta.annotation-api:2.1.1")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-jdbc")
implementation("org.postgresql:postgresql")
implementation("com.github.database-rider:rider-core:1.35.0")
implementation("com.github.database-rider:rider-spring:1.35.0")
testImplementation("com.github.database-rider:rider-junit5:1.35.0")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "17"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
/**
* OpenAPI Generator を使ってコード生成
*/
task<GenerateTask>("generateApiServer") {
generatorName.set("kotlin-spring")
inputSpec.set("$projectDir/docs/openapi.yaml")
outputDir.set("$buildDir/openapi/server-code/") // .gitignoreされているので注意(わざとここにあります)
apiPackage.set("com.example.implementingserversidekotlindevelopment.openapi.generated.controller")
modelPackage.set("com.example.implementingserversidekotlindevelopment.openapi.generated.model")
configOptions.set(
mapOf(
"interfaceOnly" to "true",
)
)
/**
* true にすると tags 準拠で、API の interface を生成する
*/
additionalProperties.set(
mapOf(
"useTags" to "true"
)
)
}
/**
* Kotlinをコンパイルする前に、generateApiServerタスクを実行
* 必ずスキーマファイルから最新のコードが生成され、もし変更があったらコンパイル時に失敗して気付けるため
*/
tasks.compileKotlin {
dependsOn("generateApiServer")
}
/**
* OpenAPI Generator によって生成されたコードを import できるようにする
*/
kotlin.sourceSets.main {
kotlin.srcDir("$buildDir/openapi/server-code/src/main")
}