-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (30 loc) · 1.04 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
plugins {
id "org.springframework.boot" version "2.2.6.RELEASE"
id "io.spring.dependency-management" version "1.0.9.RELEASE"
id "java"
}
def optaplannerVersion = "8.0.0.Final"
group = "com.example"
version = "0.1.0-SNAPSHOT"
sourceCompatibility = "8"
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-data-rest"
implementation "org.springframework.boot:spring-boot-starter-data-jpa"
runtimeOnly "com.h2database:h2"
implementation "org.optaplanner:optaplanner-spring-boot-starter:${optaplannerVersion}"
runtimeOnly "org.webjars:webjars-locator:0.37"
runtimeOnly "org.webjars:bootstrap:4.3.1"
runtimeOnly "org.webjars:font-awesome:5.11.2"
runtimeOnly "org.webjars:momentjs:2.24.0"
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude group: "org.junit.vintage", module: "junit-vintage-engine"
}
}
test {
useJUnitPlatform()
}