From d6178f6eea230b642330ed1e1648ac0e31b88b2e Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Sun, 4 Nov 2018 09:44:04 +0100 Subject: [PATCH] Remove osdetector plugin from desktop build This is used only in common/build.gradle and is obsolete here. --- desktop/build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/desktop/build.gradle b/desktop/build.gradle index 975635fd2c..6cd7bc1643 100644 --- a/desktop/build.gradle +++ b/desktop/build.gradle @@ -4,7 +4,6 @@ buildscript { } dependencies { classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4' - classpath 'com.google.gradle:osdetector-gradle-plugin:1.6.0' classpath files('gradle-witness.jar') } } @@ -13,13 +12,9 @@ apply plugin: 'java' apply plugin: 'application' apply plugin: 'maven' apply plugin: 'com.github.johnrengelman.shadow' -apply plugin: 'com.google.osdetector' apply plugin: 'witness' apply from: 'gradle-witness.gradle' -ext.platform = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os - - group = 'network.bisq' version = '0.8.0-SNAPSHOT'