-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (29 loc) · 1.42 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
plugins {
id 'java'
id "org.springframework.boot" version "2.2.4.RELEASE"
id "io.freefair.lombok" version "4.1.6"
}
group = 'tech.gac14.web'
version = '1.0'
repositories{
mavenLocal()
maven{
url = "https://lightningcreations.github.io/Maven"
name = "LightningCreations Maven"
}
jcenter()
mavenCentral()
}
dependencies{
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf', version: "2.2.4.RELEASE"
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "2.2.4.RELEASE"
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security', version: "2.2.4.RELEASE"
compile group: 'org.thymeleaf.extras', name: 'thymeleaf-extras-springsecurity5', version: "3.0.4.RELEASE"
compileOnly group: 'org.projectlombok', name: 'lombok', version: "1.18.10"
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: "1.18.10"
compile group: 'org.springframework', name: 'spring-jdbc', version: "5.2.3.RELEASE"
compile group: 'org.springframework.security', name: 'spring-security-core', version: "5.2.1.RELEASE"
runtimeOnly group: 'mysql', name: 'mysql-connector-java', version: "8.0.19"
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "2.2.4.RELEASE"
compile group: 'github.chorman0773.sentry', name: 'sentry-authlib', version: "[0.1,2.0)"
}