progress
This commit is contained in:
parent
2043524e93
commit
c21623c356
|
@ -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
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -8,8 +8,10 @@ repositories {
|
|||
|
||||
defaultTasks 'jar'
|
||||
|
||||
apply from: '../../android/dependencies.gradle'
|
||||
|
||||
dependencies {
|
||||
implementation 'junit:junit:4.8.2'
|
||||
testImplementation libs.junit
|
||||
}
|
||||
|
||||
jar {
|
||||
|
|
Loading…
Reference in New Issue