-
Notifications
You must be signed in to change notification settings - Fork 126
/
build.gradle
57 lines (45 loc) · 1.6 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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version "3.2.5"
}
apply plugin: 'io.spring.dependency-management'
bootRun {
if (project.hasProperty('jvmArgs')) {
jvmArgs project.jvmArgs.split('\\s+')
}
}
repositories {
mavenCentral()
}
ext {
mapstructVersion = "1.5.5.Final"
}
sourceCompatibility = 1.17
targetCompatibility = 1.17
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// JPA Data (We are going to use Repositories, Entities, Hibernate, etc...)
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
// Use MySQL Connector-J
runtimeOnly 'com.mysql:mysql-connector-j'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
annotationProcessor 'org.projectlombok:lombok'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'io.minio:minio:8.5.7'
implementation 'commons-io:commons-io:2.11.0'
implementation 'org.jetbrains:annotations:23.0.0'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
implementation "org.mapstruct:mapstruct:${mapstructVersion}"
annotationProcessor "org.mapstruct:mapstruct-processor:${mapstructVersion}"
}