@@ -15,7 +15,7 @@ apply from: file('version.gradle')
1515subprojects {
1616 if (! project. name. equals(' jme3-android-examples' )) {
1717 apply from : rootProject. file(' common.gradle' )
18- if (! [ ' jme3-testdata' , ' sdk ' ] . contains(project . name )) {
18+ if (! project . name . equals( ' jme3-testdata' )) {
1919 apply from : rootProject. file(' bintray.gradle' )
2020 }
2121 } else {
@@ -66,9 +66,9 @@ task createZipDistribution(type:Zip,dependsOn:["dist","libDist"], description:"P
6666 archiveName " jME" + jmeFullVersion + " .zip"
6767 into(" /" ) {
6868 from {" ./dist" }
69- }
69+ }
7070 into(" /sources" ) {
71- from {" $buildDir /libDist/sources" }
71+ from {" $buildDir /libDist/sources" }
7272 }
7373}
7474
@@ -88,14 +88,14 @@ task dist(dependsOn: [':jme3-examples:dist', 'mergedJavadoc']){
8888task mergedJavadoc (type : Javadoc , description : ' Creates Javadoc from all the projects.' ) {
8989 title = ' jMonkeyEngine3'
9090 destinationDir = mkdir(" dist/javadoc" )
91-
91+
9292 options. encoding = ' UTF-8'
9393
9494 // Allows Javadoc to be generated on Java 8 despite doclint errors.
9595 if (JavaVersion . current(). isJava8Compatible()) {
9696 options. addStringOption(' Xdoclint:none' , ' -quiet' )
9797 }
98-
98+
9999 options. overview = file(" javadoc-overview.html" )
100100 // Note: The closures below are executed lazily.
101101 source subprojects. collect {project ->
@@ -137,7 +137,7 @@ task configureAndroidNDK {
137137 if (System . env. ANDROID_NDK != null ) {
138138 ndkBuildPath = System . env. ANDROID_NDK + File . separator + ndkBuildFile
139139 }
140-
140+
141141 if (new File (ndkBuildPath). exists()) {
142142 ndkExists = true
143143 ndkCommandPath = ndkBuildPath
0 commit comments