-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
75 lines (59 loc) · 2.42 KB
/
build.gradle
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id 'org.springframework.boot' version '3.2.3'
id 'io.spring.dependency-management' version '1.1.4'
id 'org.jetbrains.kotlin.jvm' version '1.9.22'
id 'org.jetbrains.kotlin.plugin.spring' version '1.9.22'
id 'io.sentry.jvm.gradle' version "4.3.1"
}
group = 'me.daegyeo'
version = '0.0.1-SNAPSHOT'
java {
sourceCompatibility = '17'
}
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation 'me.paulschwarz:spring-dotenv:4.0.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.51.0'
implementation 'org.jetbrains.exposed:exposed-java-time:0.51.0'
implementation 'org.postgresql:postgresql:42.7.2'
implementation 'com.discord4j:discord4j-core:3.2.5'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-reactor'
implementation 'io.projectreactor.kotlin:reactor-kotlin-extensions'
implementation 'org.seleniumhq.selenium:selenium-java:4.1.1'
implementation 'org.jsoup:jsoup:1.17.1'
implementation 'io.jsonwebtoken:jjwt-api:0.12.5'
implementation 'io.ktor:ktor-client-cio-jvm:2.3.11'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5'
implementation platform("io.github.jan-tennert.supabase:bom:2.0.0")
implementation 'io.github.jan-tennert.supabase:gotrue-kt'
implementation 'io.github.jan-tennert.supabase:postgrest-kt'
implementation 'io.github.jan-tennert.supabase:serializer-jackson'
implementation 'com.sun.mail:javax.mail:1.6.2'
implementation 'io.ktor:ktor-client-apache:2.3.11'
implementation 'io.sentry:sentry-spring-boot-starter-jakarta:7.6.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
freeCompilerArgs += '-Xjsr305=strict'
jvmTarget = '17'
}
}
tasks.named('test') {
useJUnitPlatform()
}