-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
104 lines (81 loc) · 3.09 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.7.7"
id("io.spring.dependency-management") version "1.0.15.RELEASE"
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.3.71"
kotlin("plugin.noarg") version "1.3.71"
id("org.jlleitschuh.gradle.ktlint") version "10.0.0"
kotlin("kapt") version "1.7.10"
}
apply {
plugin("org.jlleitschuh.gradle.ktlint")
}
allOpen {
annotation("javax.persistence.Entity")
annotation("javax.persistence.MappedSuperclass")
}
noArg {
annotation("javax.persistence.Entity")
}
group = "com.wafflestudio"
version = "0.0.1-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
dependencies {
// Web & DB
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-validation")
runtimeOnly("com.h2database:h2")
runtimeOnly("mysql:mysql-connector-java")
// Auth
implementation("org.springframework.boot:spring-boot-starter-security")
implementation("io.jsonwebtoken:jjwt-api:0.11.5")
implementation("io.jsonwebtoken:jjwt-impl:0.11.5")
implementation("io.jsonwebtoken:jjwt-jackson:0.11.5")
// OAuth
implementation("org.springframework.boot:spring-boot-starter-oauth2-client")
// Swagger
implementation("org.springdoc:springdoc-openapi-ui:1.6.13")
implementation("org.springdoc:springdoc-openapi-kotlin:1.6.13")
// Kotlin Features
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
annotationProcessor("org.springframework.boot:spring-boot-configuration-processor")
// Mail
implementation("com.sun.mail:javax.mail:1.6.2")
implementation("org.springframework.boot:spring-boot-starter-mail")
// AWS S3
implementation("org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE")
// Apache IO
implementation("commons-io:commons-io:2.11.0")
// Websocket + STOMP
implementation("org.springframework.boot:spring-boot-starter-websocket")
implementation("org.webjars:stomp-websocket:2.3.3-1")
// Redis
implementation("org.springframework.boot:spring-boot-starter-data-redis")
// 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")
// hibernate-spatial
implementation("org.hibernate:hibernate-spatial")
implementation("org.hibernate:hibernate-core")
// Test
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
jvmTarget = "11"
}
}
tasks.withType<Test> {
useJUnitPlatform()
}