11 lines
240 B
Groovy
11 lines
240 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':logging-api')
|
||
|
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.1'
|
||
|
|
||
|
testImplementation group: 'junit', name: 'junit', version: '4.13'
|
||
|
}
|