From 804c17375736e2d95b5d135155ad1b0c6d8599d6 Mon Sep 17 00:00:00 2001 From: Kirill Vainer Date: Sat, 30 Apr 2016 17:16:09 -0400 Subject: [PATCH] build: minor cleanup --- common.gradle | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/common.gradle b/common.gradle index bcda5aeb9..ebc4b2feb 100644 --- a/common.gradle +++ b/common.gradle @@ -84,7 +84,6 @@ ext.pomConfig = { distribution POM_LICENSE_DISTRIBUTION } } - // from http://hub.jmonkeyengine.org/introduction/team/ developers { developer { name 'jMonkeyEngine Team' @@ -111,7 +110,7 @@ uploadArchives.dependsOn(writeFullPom) artifacts { archives jar archives sourcesJar - if(buildJavaDoc == "true"){ + if (buildJavaDoc == "true") { archives javadocJar } archives writeFullPom.outputs.files[0] @@ -131,12 +130,3 @@ uploadArchives { pom.project pomConfig } } - -task createFolders(description: 'Creates the source folders if they do not exist.') doLast { -// sourceSets*.allSource*.srcDirs*.each { File srcDir -> -// if (!srcDir.isDirectory()) { -// println "Creating source folder: ${srcDir}" -// srcDir.mkdirs() -// } -// } -}