This commit is contained in:
rusefillc 2023-01-06 13:55:04 -05:00
parent 4b8427bda3
commit c33a04f7a0
2 changed files with 1 additions and 6 deletions

View File

@ -9,10 +9,8 @@ apply from: '../../java_tools/dependencies.gradle'
defaultTasks 'shadowJar' defaultTasks 'shadowJar'
dependencies { dependencies {
implementation project(':logging')
api project(':config_definition_base') api project(':config_definition_base')
implementation project(':models') implementation project(':models')
implementation project(':enum_to_string')
antlr global_libs.antlr antlr global_libs.antlr
} }

View File

@ -1,14 +1,11 @@
plugins { plugins {
id 'java-library' id 'java-library'
id 'antlr'
} }
apply from: '../../java_tools/dependencies.gradle' apply from: '../../java_tools/dependencies.gradle'
dependencies { dependencies {
implementation project(':logging')
api project(':inifile') api project(':inifile')
api global_libs.snakeyaml api global_libs.snakeyaml
implementation project(':enum_to_string') api project(':enum_to_string')
antlr global_libs.antlr
} }