2023-01-06 09:23:24 -08:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
2023-12-06 07:20:53 -08:00
|
|
|
id 'java-test-fixtures'
|
2023-06-17 19:26:31 -07:00
|
|
|
id 'com.github.johnrengelman.shadow' version "${shadowVersion}"
|
2023-01-06 09:23:24 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: '../../java_tools/dependencies.gradle'
|
|
|
|
|
2023-06-17 19:26:31 -07:00
|
|
|
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')
|
2023-06-17 19:26:31 -07:00
|
|
|
api global_libs.snakeyaml
|
2024-02-14 07:31:00 -08:00
|
|
|
testFixturesApi global_libs.junit5
|
2023-01-06 09:23:24 -08:00
|
|
|
}
|