-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
152 lines (120 loc) · 3.4 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
plugins {
id("org.springframework.boot") version "2.7.3"
id("io.spring.dependency-management") version "1.0.13.RELEASE"
kotlin("jvm") version "1.6.21"
kotlin("plugin.spring") version "1.6.21"
kotlin("plugin.jpa") version "1.6.21"
kotlin("kapt") version "1.6.10"
}
dependencies {
//jpa
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
//jwt
implementation("io.jsonwebtoken:jjwt:0.9.1")
//redis
implementation("org.springframework.boot:spring-boot-starter-data-redis")
//security
implementation("org.springframework.boot:spring-boot-starter-security")
//validation
implementation("org.springframework.boot:spring-boot-starter-validation")
//web
implementation("org.springframework.boot:spring-boot-starter-web")
//kotlin
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
//lombok
implementation("org.projectlombok:lombok:1.18.24")
//mail
implementation ("org.springframework.boot:spring-boot-starter-mail")
//ses
implementation("com.amazonaws:aws-java-sdk-ses:1.12.315")
//mysql
runtimeOnly("mysql:mysql-connector-java")
//java servlet
implementation("javax.servlet:javax.servlet-api:4.0.1")
//aws
implementation ("org.springframework.cloud:spring-cloud-starter-aws")
//querydsl
implementation("com.querydsl:querydsl-jpa:5.0.0")
kapt("com.querydsl:querydsl-apt:5.0.0:jpa")
//openfeign
implementation ("org.springdoc:springdoc-openapi-ui:1.6.11")
implementation("org.springframework.cloud:spring-cloud-starter-openfeign:3.1.4")
//test
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.security:spring-security-test")
implementation("org.mockito.kotlin:mockito-kotlin:4.1.0")
}
allprojects {
group = "team.nk"
version = "0.0.1-SNAPSHOT"
apply(plugin = "jacoco")
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()
}
dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-aws-dependencies:2.2.6.RELEASE")
}
}
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.register<JacocoReport>("jacocoRootReport") {
subprojects {
[email protected]<JacocoPlugin>().configureEach {
it.extensions.findByType<JacocoTaskExtension>() != null
}
.configureEach {
sourceSets([email protected]<SourceSetContainer>().named("main").get())
executionData(this)
}
}
}
reports {
xml.outputLocation.set(File("${buildDir}/reports/jacoco/test/jacocoTestReport.xml"))
xml.required.set(true)
html.required.set(false)
}
}
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.getByName<Jar>("jar") {
enabled = false
}