-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (32 loc) · 1000 Bytes
/
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
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
}
with {
group 'org.teacon'
version '0.2.1'
}
java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
bootRun {
workingDir mkdir(project.file('run'))
}
dependencies {
annotationProcessor 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.9'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.2'
implementation 'com.rometools:rome:1.19.0'
implementation 'org.sejda.imageio:webp-imageio:0.1.6'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.7.9'
implementation 'org.springframework.boot:spring-boot-starter-jersey:2.7.9'
implementation 'org.postgresql:postgresql:42.5.4'
implementation 'com.vladmihalcea:hibernate-types-52:2.21.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.9'
}
test {
useJUnitPlatform()
}