-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
28 lines (21 loc) · 1023 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.3.4.RELEASE'
}
group 'com.findinpath'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
def springBootVersion = '2.3.4.RELEASE'
def springSecurityVersion = '5.3.4.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: springBootVersion
compile group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity5', version: '3.0.4.RELEASE'
compile group: 'org.springframework.security', name: 'spring-security-web', version: springSecurityVersion
compile group: 'org.springframework.security', name: 'spring-security-config', version: springSecurityVersion
compile group: 'no.finn.unleash', name:'unleash-client-java', version:'3.3.1'
compile group: 'nl.basjes.parse.useragent', name: 'yauaa', version: '5.19'
}