-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
34 lines (28 loc) · 1.02 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'
}
group 'com.mfvanek'
version '0.0.6'
sourceCompatibility = 11
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.code.findbugs:jsr305:3.0.2'
compile 'org.apache.commons:commons-lang3:3.9'
compile 'org.apache.commons:commons-collections4:4.4'
compile 'org.apache.commons:commons-dbcp2:2.7.0'
compile 'org.slf4j:slf4j-api:1.7.29'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.5.2'
testImplementation 'com.opentable.components:otj-pg-embedded:0.13.3'
testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'org.mockito:mockito-core:3.2.0'
testImplementation 'io.zonky.test:embedded-postgres:1.2.6'
testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:11.5.0')
}
test {
useJUnitPlatform()
}