diff --git a/desktop/build.gradle b/desktop/build.gradle index bdf6daaa26..b7f9ffbc57 100644 --- a/desktop/build.gradle +++ b/desktop/build.gradle @@ -40,9 +40,9 @@ repositories { } dependencies { + compile project(':common') compile 'network.bisq:bisq-p2p:-SNAPSHOT' compile 'network.bisq:bisq-core:-SNAPSHOT' - compile 'network.bisq:bisq-common:-SNAPSHOT' compile 'org.controlsfx:controlsfx:8.0.6_20' compile 'org.reactfx:reactfx:2.0-M3' compile 'net.glxn:qrgen:1.3' diff --git a/desktop/settings.gradle b/desktop/settings.gradle index 7290d5f9fa..077089e9c3 100644 --- a/desktop/settings.gradle +++ b/desktop/settings.gradle @@ -1 +1,2 @@ rootProject.name = 'bisq-desktop' +include 'common'