This commit is contained in:
rusefillc 2021-08-16 10:20:56 -04:00
parent 2043524e93
commit c21623c356
3 changed files with 12 additions and 3 deletions

View File

@ -3,6 +3,8 @@ plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
apply from: '../../android/dependencies.gradle'
repositories {
mavenCentral()
}
@ -12,10 +14,11 @@ defaultTasks 'shadowJar'
dependencies {
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
implementation 'com.google.code.findbugs:jsr305:2.0.1'
implementation 'junit:junit:4.8.2'
implementation project(':logging')
implementation project(':logging-api')
implementation fileTree(dir: '../../java_console/lib', include: 'annotations.jar')
implementation libs.junit
}
/*

View File

@ -3,14 +3,18 @@ plugins {
id 'application'
}
apply from: '../../android/dependencies.gradle'
repositories {
mavenCentral()
}
defaultTasks 'jar'
apply from: '../../android/dependencies.gradle'
dependencies {
implementation 'junit:junit:4.8.2'
implementation libs.junit
}
jar {

View File

@ -8,8 +8,10 @@ repositories {
defaultTasks 'jar'
apply from: '../../android/dependencies.gradle'
dependencies {
implementation 'junit:junit:4.8.2'
testImplementation libs.junit
}
jar {