11 lines
280 B
Groovy
11 lines
280 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
|
|
testImplementation "junit:junit:${junitVersion}"
|
|
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
|
|
testRuntimeOnly "org.slf4j:slf4j-nop:${slf4jVersion}"
|
|
}
|