22 lines
442 B
Groovy
22 lines
442 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'java-test-fixtures'
|
|
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
|
|
}
|
|
|
|
apply from: '../../java_tools/dependencies.gradle'
|
|
|
|
defaultTasks 'shadowJar'
|
|
|
|
dependencies {
|
|
api project(':inifile')
|
|
api project(':enum_to_string')
|
|
api global_libs.snakeyaml
|
|
testFixturesApi global_libs.junit
|
|
}
|
|
|
|
shadowJar {
|
|
dependsOn(':enum_to_string:shadowJar')
|
|
archiveClassifier = ''
|
|
}
|