Do not specify indirect module dependencies

One is supposed to only specify direct dependencies in build.gradle.
This commit removes two superfluous deps statements for the desktop
module. Other modules already follow the convention.

This does *not* remove any dependencies - it only cleans up how they
are specified.
This commit is contained in:
battleofwizards 2019-08-30 11:25:44 +02:00
parent 19a4e6f891
commit 37ee034b96
No known key found for this signature in database
GPG Key ID: 58B1485148D203E1

View File

@ -294,9 +294,7 @@ configure(project(':desktop')) {
sourceSets.main.resources.srcDirs += ['src/main/java'] // to copy fxml and css files
dependencies {
compile project(':p2p')
compile project(':core')
compile project(':common')
compile "org.controlsfx:controlsfx:$controlsfxVersion"
compile "org.reactfx:reactfx:$reactfxVersion"
compile "net.glxn:qrgen:$qrgenVersion"