From d2629729ae7232f223dc60396dd48bc3757aada7 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Thu, 10 May 2018 12:27:41 +0200 Subject: [PATCH 1/3] Use version 0.7.0 instead of -SNAPSHOT --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 6738f23..77de48d 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { } group = 'network.bisq' -version = '0.7.0-SNAPSHOT' +version = '0.7.0' sourceCompatibility = 1.8 @@ -17,7 +17,7 @@ repositories { } dependencies { - compile 'network.bisq:bisq-core:-SNAPSHOT' + compile 'network.bisq:bisq-core:0.7.0' compileOnly 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.16.16' } From e592abbe343a7352eef1f1634b85df4f6085f4de Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Thu, 10 May 2018 23:13:39 +0200 Subject: [PATCH 2/3] Add mavenLocal to repositories in gradle file --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 77de48d..4a3a697 100644 --- a/build.gradle +++ b/build.gradle @@ -11,6 +11,7 @@ sourceCompatibility = 1.8 mainClassName = 'bisq.statistics.StatisticsMain' repositories { + mavenLocal() jcenter() maven { url "https://jitpack.io" } maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' } From fef254f57541798900c42c72e665f1db19ba938c Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Fri, 11 May 2018 10:16:03 +0200 Subject: [PATCH 3/3] Revert version to -SNAPSHOT --- build.gradle | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 4a3a697..6738f23 100644 --- a/build.gradle +++ b/build.gradle @@ -4,21 +4,20 @@ plugins { } group = 'network.bisq' -version = '0.7.0' +version = '0.7.0-SNAPSHOT' sourceCompatibility = 1.8 mainClassName = 'bisq.statistics.StatisticsMain' repositories { - mavenLocal() jcenter() maven { url "https://jitpack.io" } maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' } } dependencies { - compile 'network.bisq:bisq-core:0.7.0' + compile 'network.bisq:bisq-core:-SNAPSHOT' compileOnly 'org.projectlombok:lombok:1.16.16' annotationProcessor 'org.projectlombok:lombok:1.16.16' }