let's separate Android from not Android

This commit is contained in:
rusefillc 2022-10-15 10:17:51 -04:00
parent 8fbe224f40
commit 3c5c23f6bf
3 changed files with 5 additions and 2 deletions

View File

@ -2,8 +2,8 @@ plugins {
id 'java' id 'java'
} }
apply from: '../../android/dependencies.gradle' apply from: '../../java_tools/dependencies.gradle'
dependencies { dependencies {
implementation libs.jsr305 implementation global_libs.jsr305
} }

View File

@ -2,6 +2,7 @@ ext {
global_libs = [ global_libs = [
junit : "junit:junit:4.13", junit : "junit:junit:4.13",
annotations : "org.jetbrains:annotations:16.0.1", annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
] ]
} }

View File

@ -0,0 +1,2 @@
include ':logging-api'
project(':logging-api').projectDir = new File('../java_console/logging-api')