rusefi/java_tools/configuration_definition_base/build.gradle

22 lines
442 B
Groovy
Raw Normal View History

2023-01-06 09:23:24 -08:00
plugins {
id 'java-library'
2023-12-06 07:20:53 -08:00
id 'java-test-fixtures'
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
2023-01-06 09:23:24 -08:00
}
apply from: '../../java_tools/dependencies.gradle'
defaultTasks 'shadowJar'
2023-01-06 09:23:24 -08:00
dependencies {
api project(':inifile')
2023-01-06 10:55:04 -08:00
api project(':enum_to_string')
api global_libs.snakeyaml
2023-12-06 09:32:50 -08:00
testFixturesApi global_libs.junit
2023-01-06 09:23:24 -08:00
}
shadowJar {
dependsOn(':enum_to_string:shadowJar')
archiveClassifier = ''
2023-12-15 06:51:08 -08:00
}