-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
57 lines (48 loc) · 1.57 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
buildscript {
ext {
springBootVersion = '2.7.18'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
jar {
enabled = false
}
java {
sourceCompatibility = 21
targetCompatibility = 21
}
repositories {
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
implementation('org.springframework.boot:spring-boot-starter-actuator')
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
implementation('com.fasterxml.jackson.dataformat:jackson-dataformat-yaml')
implementation('org.apache.httpcomponents:httpclient')
implementation('org.springframework.data:spring-data-commons')
compileOnly('org.projectlombok:lombok')
runtimeOnly('org.webjars:webjars-locator-core')
runtimeOnly('org.webjars:bootstrap:5.3.3')
runtimeOnly('org.springframework.boot:spring-boot-devtools')
testImplementation('junit:junit')
testImplementation('org.assertj:assertj-core')
testImplementation('org.mockito:mockito-core')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testCompileOnly('org.projectlombok:lombok')
annotationProcessor('org.projectlombok:lombok')
testAnnotationProcessor('org.projectlombok:lombok')
}
bootRun {
systemProperties System.properties
}