-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (26 loc) · 920 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
32
33
plugins {
id 'java'
}
repositories {
flatDir {
dirs 'lib'
}
}
sourceCompatibility = '14'
targetCompatibility = '14'
dependencies {
implementation name: 'telestion-api-1.0-SNAPSHOT'
implementation 'com.google.guava:guava:30.0-jre'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
testImplementation "org.mockito:mockito-core:2.+"
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
implementation group: 'net.logstash.logback', name: 'logstash-logback-encoder', version: '6.4'
implementation "io.vertx:vertx-core:$gradle.vertxVersion"
}
test {
useJUnitPlatform()
}