-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
126 lines (96 loc) · 3.34 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
117
118
119
120
121
122
123
124
125
126
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.7.7"
id("io.spring.dependency-management") version "1.1.0"
kotlin("jvm") version "1.7.22"
kotlin("plugin.spring") version "1.7.22"
kotlin("plugin.jpa") version "1.6.10"
kotlin("kapt") version "1.6.10"
}
dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:2021.0.1")
}
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation ("org.mockito:mockito-inline:2.13.0")
//jpa
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
//jwt
implementation("io.jsonwebtoken:jjwt:0.9.1")
//security
implementation("org.springframework.boot:spring-boot-starter-security")
//validation
implementation("org.springframework.boot:spring-boot-starter-validation")
//lombok
implementation("org.projectlombok:lombok:1.18.24")
//mysql
runtimeOnly("mysql:mysql-connector-java")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
kapt("org.springframework.boot:spring-boot-configuration-processor")
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:3.1.3")
implementation("io.github.openfeign:feign-httpclient:11.9.1")
implementation("org.springframework.security:spring-security-oauth2-client")
implementation ("org.springframework.boot:spring-boot-starter-websocket")
implementation ("org.webjars:sockjs-client:1.1.2")
implementation ("org.webjars:stomp-websocket:2.3.3-1")
implementation("org.mapstruct:mapstruct:1.4.2.Final")
kapt("org.mapstruct:mapstruct-processor:1.4.2.Final")
implementation ("com.google.firebase:firebase-admin:8.1.0")
implementation("com.querydsl:querydsl-jpa:5.0.0")
kapt("com.querydsl:querydsl-apt:5.0.0:jpa")
implementation("org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE")
}
allprojects {
group = "com.example"
version = "0.0.1-SNAPSHOT"
tasks {
compileKotlin {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "17"
}
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_17.majorVersion
}
test {
useJUnitPlatform()
}
}
repositories {
mavenCentral()
}
}
configurations {
compileOnly {
extendsFrom(configurations.annotationProcessor.get())
}
}
repositories {
mavenCentral()
}
kotlin.sourceSets.main {
kotlin.srcDir("$buildDir/generated/source/kapt/main")
}
noArg {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
allOpen {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
annotation("javax.persistence.Embeddable")
}
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.getByName<Jar>("jar") {
enabled = false
}