-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (25 loc) · 992 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
plugins {
id 'org.springframework.boot' version '2.4.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation group: 'commons-dbcp', name: 'commons-dbcp', version: '1.2.2'
implementation group: 'org.thymeleaf', name: 'thymeleaf', version: '2.0.5'
implementation group: 'org.springframework.security', name: 'spring-security-core', version: '5.4.5'
implementation group: 'com.mashape.unirest', name: 'unirest-java', version: '1.3.1'
implementation('org.postgresql:postgresql')
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.4.3'
implementation 'com.google.code.gson:gson:2.8.1'
}
test {
useJUnitPlatform()
}