From db663db007a1d8f4892abbe5813f6a760f33a048 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 9 Oct 2014 07:33:28 +0200 Subject: [PATCH] Remove obsolete 'apply plugin' Gradle directives - The 'java' plugin is added implicitly by the gradle/javafx.gradle script, so there is no longer a need to explicitly apply it. - The 'application' plugin is no longer necessary now that we are building native installers with the javafx plugin. --- build.gradle | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.gradle b/build.gradle index 21a9af1e84..f51fc9438f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,3 @@ -apply plugin: 'java' -apply plugin: 'application' apply from: 'gradle/javafx.gradle' version = '0.1.0-SNAPSHOT'