-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (34 loc) · 1.32 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
35
36
37
38
39
40
41
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.2'
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
sourceCompatibility = 1.15
targetCompatibility = 1.15
repositories {
mavenCentral()
mavenLocal()
}
ext {
springBootVersion = '2.5.2'
baatCoreVersion = '1.0'
commonsLang3Version = '3.4'
webJarsVersion = '0.32-1'
bootstrapVersion = '3.3.7'
jqueryVersion = '3.1.0'
}
dependencies {
implementation "org.springframework.boot:spring-boot-dependencies:${project.springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-web:${project.springBootVersion}"
implementation "org.springframework.boot:spring-boot-devtools:${project.springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-security:${project.springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf:${project.springBootVersion}"
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation "org.baat:core:${project.baatCoreVersion}"
implementation "org.webjars:webjars-locator:${project.webJarsVersion}"
implementation "org.webjars:bootstrap:${project.bootstrapVersion}"
implementation "org.webjars:jquery:${project.jqueryVersion}"
}
test {
useJUnitPlatform()
}