transitive dependencies

This commit is contained in:
rusefillc 2022-03-15 14:24:54 -04:00
parent b1e0766404
commit 315606306f
6 changed files with 8 additions and 24 deletions

View File

@ -20,6 +20,7 @@ allprojects {
plugins.withType(JavaPlugin) {
dependencies {
implementation libs.annotations
testImplementation libs.junit
}
}
}

View File

@ -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'

View File

@ -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')
}

View File

@ -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'

View File

@ -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
}

View File

@ -6,11 +6,6 @@ defaultTasks 'jar'
apply from: '../../android/dependencies.gradle'
dependencies {
testImplementation libs.junit
implementation libs.annotations
}
jar {
destinationDirectory = file( '$rootDir/../..' )
manifest {