-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
31 lines (27 loc) · 886 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
plugins {
id 'org.springframework.boot' version '2.2.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'com.acme'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-jooq'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.vavr:vavr:1.0.0-alpha-3'
implementation 'org.flywaydb:flyway-core:6.2.2'
implementation 'io.vavr:vavr-jackson:0.10.2'
implementation 'com.google.guava:guava:28.2-jre'
compile group: 'org.xerial', name: 'sqlite-jdbc', version: '3.30.1'
testCompile("org.assertj:assertj-core:3.11.1")
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}