-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (25 loc) · 1.13 KB
/
build.gradle
File metadata and controls
33 lines (25 loc) · 1.13 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
plugins {
id 'java'
}
group 'java'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '28.1-jre'
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation 'org.springframework:spring-web:5.2.23.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-web:2.7.9'
// implementation 'org.neo4j:neo4j:4.4.18'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation('org.thymeleaf.extras:thymeleaf-extras-springsecurity5')
implementation group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-java8time', version: '3.0.4.RELEASE'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-mustache', version: '3.0.5'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.httpcomponents:httpmime:4.5.13'
}