-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
29 lines (22 loc) · 834 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
plugins {
id 'java'
}
group 'com.lsoftware'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation group: 'io.vertx', name: 'vertx-core', version: '4.0.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.2'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.2'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.1'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.19.0'
testImplementation group: 'io.vertx', name: 'vertx-junit5', version: '4.0.3'
}
test {
useJUnitPlatform()
}