-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
83 lines (67 loc) · 2.63 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.7.13"
id("io.spring.dependency-management") version "1.0.15.RELEASE"
kotlin("kapt") version "1.7.10"
kotlin("jvm") version "1.6.21"
kotlin("plugin.spring") version "1.6.21"
kotlin("plugin.jpa") version "1.6.21"
kotlin("plugin.allopen") version "1.6.21"
}
group = "nexters"
version = "0.0.1-SNAPSHOT"
// plugins, dependencies와 같은 Level (즉 build.gradle 최상단)
allOpen {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
java {
sourceCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
runtimeOnly("com.mysql:mysql-connector-j")
testImplementation("org.springframework.boot:spring-boot-starter-test")
// config processor
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
// Swagger
implementation ("org.springdoc:springdoc-openapi-ui:1.6.14")
// JWT
implementation("io.jsonwebtoken:jjwt-api:0.11.2")
implementation("io.jsonwebtoken:jjwt-impl:0.11.2")
implementation("io.jsonwebtoken:jjwt-jackson:0.11.2")
// Feign
implementation(platform("org.springframework.cloud:spring-cloud-dependencies:2021.0.5"))
implementation("org.springframework.cloud:spring-cloud-starter-openfeign")
// WireMock
testImplementation("org.springframework.cloud:spring-cloud-starter-contract-stub-runner:3.1.5")
// DB
implementation("com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.0")
// Test Container
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
testImplementation("org.testcontainers:testcontainers:1.17.6")
testImplementation("org.testcontainers:junit-jupiter:1.17.6")
testImplementation("org.testcontainers:mysql:1.17.6")
testImplementation("io.rest-assured:rest-assured")
testImplementation("io.mockk:mockk:1.12.4")
// QueryDsl
implementation("com.querydsl:querydsl-jpa:5.0.0")
kapt("com.querydsl:querydsl-apt:5.0.0:jpa")
kapt("org.springframework.boot:spring-boot-configuration-processor")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs += "-Xjsr305=strict"
jvmTarget = "11"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}