2021-04-29 18:57:08 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'idea'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
|
|
|
maxParallelForks = 8
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-core:2.12.3"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-annotations:2.12.3"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:2.12.3"
|
|
|
|
|
2021-05-28 11:42:37 +00:00
|
|
|
testImplementation "net.jqwik:jqwik:1.5.1"
|
2021-04-29 18:57:08 +00:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.0-M1"
|
|
|
|
testImplementation "org.mockito:mockito-all:2.0.2-beta"
|
|
|
|
testImplementation "org.assertj:assertj-core:3.19.0"
|
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.0-M1"
|
2021-05-01 21:06:22 +00:00
|
|
|
}
|
2021-05-11 03:06:28 +00:00
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.encoding = "UTF-8"
|
|
|
|
}
|