-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (44 loc) · 1.12 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
plugins {
id 'java'
id 'idea'
id 'application'
id 'org.springframework.boot' version '3.3.1'
id 'io.spring.dependency-management' version '1.1.5'
}
group = 'cholog'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
ext {
set('javaVersion', JavaVersion.VERSION_21)
}
java {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
dependencyManagement {
imports {
mavenBom("org.springframework.cloud:spring-cloud-dependencies:2023.0.2")
}
}
dependencies {
runtimeOnly 'com.h2database:h2'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
implementation 'net.dv8tion:JDA:5.0.0-beta.24'
implementation 'org.slf4j:slf4j-api'
implementation 'org.slf4j:jcl-over-slf4j'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
springBoot {
mainClass = 'cholog.Application'
}
test {
useJUnitPlatform()
}