@@ -15,7 +15,7 @@ apply from: file('version.gradle')
15
15
subprojects {
16
16
if (! project. name. equals(' jme3-android-examples' )) {
17
17
apply from : rootProject. file(' common.gradle' )
18
- if (! [ ' jme3-testdata' , ' sdk ' ] . contains(project . name )) {
18
+ if (! project . name . equals( ' jme3-testdata' )) {
19
19
apply from : rootProject. file(' bintray.gradle' )
20
20
}
21
21
} else {
@@ -66,9 +66,9 @@ task createZipDistribution(type:Zip,dependsOn:["dist","libDist"], description:"P
66
66
archiveName " jME" + jmeFullVersion + " .zip"
67
67
into(" /" ) {
68
68
from {" ./dist" }
69
- }
69
+ }
70
70
into(" /sources" ) {
71
- from {" $buildDir /libDist/sources" }
71
+ from {" $buildDir /libDist/sources" }
72
72
}
73
73
}
74
74
@@ -88,14 +88,14 @@ task dist(dependsOn: [':jme3-examples:dist', 'mergedJavadoc']){
88
88
task mergedJavadoc (type : Javadoc , description : ' Creates Javadoc from all the projects.' ) {
89
89
title = ' jMonkeyEngine3'
90
90
destinationDir = mkdir(" dist/javadoc" )
91
-
91
+
92
92
options. encoding = ' UTF-8'
93
93
94
94
// Allows Javadoc to be generated on Java 8 despite doclint errors.
95
95
if (JavaVersion . current(). isJava8Compatible()) {
96
96
options. addStringOption(' Xdoclint:none' , ' -quiet' )
97
97
}
98
-
98
+
99
99
options. overview = file(" javadoc-overview.html" )
100
100
// Note: The closures below are executed lazily.
101
101
source subprojects. collect {project ->
@@ -137,7 +137,7 @@ task configureAndroidNDK {
137
137
if (System . env. ANDROID_NDK != null ) {
138
138
ndkBuildPath = System . env. ANDROID_NDK + File . separator + ndkBuildFile
139
139
}
140
-
140
+
141
141
if (new File (ndkBuildPath). exists()) {
142
142
ndkExists = true
143
143
ndkCommandPath = ndkBuildPath
0 commit comments