progress
This commit is contained in:
parent
2043524e93
commit
c21623c356
|
@ -3,6 +3,8 @@ plugins {
|
||||||
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply from: '../../android/dependencies.gradle'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
@ -12,10 +14,11 @@ defaultTasks 'shadowJar'
|
||||||
dependencies {
|
dependencies {
|
||||||
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
|
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
|
||||||
implementation 'com.google.code.findbugs:jsr305:2.0.1'
|
implementation 'com.google.code.findbugs:jsr305:2.0.1'
|
||||||
implementation 'junit:junit:4.8.2'
|
|
||||||
implementation project(':logging')
|
implementation project(':logging')
|
||||||
implementation project(':logging-api')
|
implementation project(':logging-api')
|
||||||
implementation fileTree(dir: '../../java_console/lib', include: 'annotations.jar')
|
implementation fileTree(dir: '../../java_console/lib', include: 'annotations.jar')
|
||||||
|
|
||||||
|
implementation libs.junit
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -3,14 +3,18 @@ plugins {
|
||||||
id 'application'
|
id 'application'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply from: '../../android/dependencies.gradle'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
defaultTasks 'jar'
|
defaultTasks 'jar'
|
||||||
|
|
||||||
|
apply from: '../../android/dependencies.gradle'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'junit:junit:4.8.2'
|
implementation libs.junit
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
|
|
@ -8,8 +8,10 @@ repositories {
|
||||||
|
|
||||||
defaultTasks 'jar'
|
defaultTasks 'jar'
|
||||||
|
|
||||||
|
apply from: '../../android/dependencies.gradle'
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'junit:junit:4.8.2'
|
testImplementation libs.junit
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
|
Loading…
Reference in New Issue