From f733b69f9f46a845645e5e9b3627d8ebd2b46c22 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Mon, 4 May 2015 11:14:02 -0400 Subject: [PATCH] Gradle: minor cleanup to build.gradle --- build.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index adb31217b..62d4ac841 100644 --- a/build.gradle +++ b/build.gradle @@ -1,14 +1,10 @@ import org.gradle.api.artifacts.* -apply plugin: 'base' // To add "clean" task to the root project. -//apply plugin: 'java-library-distribution' +apply plugin: 'base' // This is applied to all sub projects subprojects { - // Don't add to native builds - // if(!project.name.endsWith('native')){ apply from: rootProject.file('common.gradle') - // } } task run(dependsOn: ':jme3-examples:run') {