transitive dependencies
This commit is contained in:
parent
bf4131d88e
commit
613ce3bd7e
|
@ -20,6 +20,7 @@ allprojects {
|
|||
plugins.withType(JavaPlugin) {
|
||||
dependencies {
|
||||
implementation libs.annotations
|
||||
testImplementation libs.junit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
apply from: '../../android/dependencies.gradle'
|
||||
|
@ -10,11 +10,10 @@ configurations {
|
|||
|
||||
dependencies {
|
||||
implementation libs.javaxJson
|
||||
implementation project(':inifile')
|
||||
api project(':inifile')
|
||||
implementation project(':logging-api')
|
||||
implementation project(':shared_io')
|
||||
|
||||
implementation libs.annotations
|
||||
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.6.2'
|
||||
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
||||
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
||||
|
|
|
@ -1,13 +1,10 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
apply from: '../../android/dependencies.gradle'
|
||||
|
||||
dependencies {
|
||||
implementation project(':logging-api')
|
||||
implementation project(':shared_io')
|
||||
implementation libs.annotations
|
||||
|
||||
testImplementation libs.junit
|
||||
api project(':logging-api')
|
||||
api project(':shared_io')
|
||||
}
|
||||
|
|
|
@ -21,7 +21,6 @@ dependencies {
|
|||
implementation project(':shared_io')
|
||||
implementation project(':logging')
|
||||
|
||||
implementation libs.annotations
|
||||
implementation group: 'com.fazecast', name: 'jSerialComm', version: '2.9.0'
|
||||
implementation group: 'net.jcip', name: 'jcip-annotations', version: '1.0'
|
||||
implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
|
||||
|
|
|
@ -1,17 +1,10 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
apply from: '../../android/dependencies.gradle'
|
||||
|
||||
dependencies {
|
||||
implementation project(':inifile')
|
||||
implementation project(':logging-api')
|
||||
implementation project(':autoupdate')
|
||||
implementation project(':shared_io')
|
||||
implementation project(':inifile')
|
||||
implementation libs.annotations
|
||||
api project(':autoupdate')
|
||||
implementation libs.snakeyaml
|
||||
|
||||
testImplementation libs.junit
|
||||
}
|
|
@ -6,11 +6,6 @@ defaultTasks 'jar'
|
|||
|
||||
apply from: '../../android/dependencies.gradle'
|
||||
|
||||
dependencies {
|
||||
testImplementation libs.junit
|
||||
implementation libs.annotations
|
||||
}
|
||||
|
||||
jar {
|
||||
destinationDirectory = file( '$rootDir/../..' )
|
||||
manifest {
|
||||
|
|
Loading…
Reference in New Issue