-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
82 lines (63 loc) · 2.29 KB
/
build.gradle
File metadata and controls
82 lines (63 loc) · 2.29 KB
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '2.2.21'
id 'org.jetbrains.kotlin.plugin.spring' version '2.2.21'
id 'org.springframework.boot' version '4.0.2'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.jetbrains.kotlin.plugin.jpa' version '2.2.21'
}
group = 'goodspace'
version = '0.0.1-SNAPSHOT'
description = 'Bllsoneshot'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-validation")
// DB (JPA)
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
runtimeOnly("com.mysql:mysql-connector-j")
// Redis
implementation("org.springframework.boot:spring-boot-starter-data-redis")
// Kotlin/Jackson
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("org.jetbrains.kotlin:kotlin-reflect")
// Security
implementation("org.springframework.boot:spring-boot-starter-security")
testImplementation("org.springframework.boot:spring-boot-starter-test")
// Environment variables loader
implementation 'me.paulschwarz:spring-dotenv:4.0.0'
// JWT
implementation("io.jsonwebtoken:jjwt-api:0.11.5")
implementation("io.jsonwebtoken:jjwt-impl:0.11.5")
implementation("io.jsonwebtoken:jjwt-jackson:0.11.5")
// Firebase
implementation 'com.google.firebase:firebase-admin:9.2.0'
// Swagger (SpringDoc OpenAPI)
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.0")
implementation 'io.swagger.core.v3:swagger-annotations:2.2.20'
// aws s3
implementation platform("software.amazon.awssdk:bom:2.25.6")
implementation "software.amazon.awssdk:s3"
implementation "software.amazon.awssdk:auth"
// logging
implementation("io.github.microutils:kotlin-logging-jvm:3.0.5")
}
kotlin {
compilerOptions {
freeCompilerArgs.addAll '-Xjsr305=strict', '-Xannotation-default-target=param-property'
}
}
allOpen {
annotation 'jakarta.persistence.Entity'
annotation 'jakarta.persistence.MappedSuperclass'
annotation 'jakarta.persistence.Embeddable'
}
tasks.named('test') {
useJUnitPlatform()
}