let's separate Android from not Android
This commit is contained in:
parent
7cb8e2bde1
commit
93a9e84ab0
|
@ -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
|
||||||
}
|
}
|
|
@ -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",
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
include ':logging-api'
|
||||||
|
project(':logging-api').projectDir = new File('../java_console/logging-api')
|
Loading…
Reference in New Issue