@@ -63,21 +63,21 @@ build.doLast {
6363 // will get generated only if Task :core:jar is not being skipped
6464 // Task :core:jar will be skipped if source files are unchanged or jar task is UP-TO-DATE
6565
66- if (file(" ${ buildDir} /libs/core.jar" ). exists()){
66+ if (file(" ${ buildDir} /libs/core.jar" ). exists()) {
6767 // Copying core jar as zip inside the mode folder
6868 Files . copy(file(" ${ buildDir} /libs/core.jar" ). toPath(),
6969 file(" ${ coreZipPath} " ). toPath(), REPLACE_EXISTING )
7070 }
7171 // Renaming artifacts for maven publishing
72- if (file(" ${ buildDir} /libs/core.jar" ). exists()){
72+ if (file(" ${ buildDir} /libs/core.jar" ). exists()) {
7373 Files . move(file(" ${ buildDir} /libs/core.jar" ). toPath(),
7474 file(" $buildDir /libs/processing-core-${ modeVersion} .jar" ). toPath(), REPLACE_EXISTING );
7575 }
76- if (file(" ${ buildDir} /libs/core-sources.jar" ). exists()){
76+ if (file(" ${ buildDir} /libs/core-sources.jar" ). exists()) {
7777 Files . move(file(" ${ buildDir} /libs/core-sources.jar" ). toPath(),
7878 file(" $buildDir /libs/processing-core-${ modeVersion} -sources.jar" ). toPath(), REPLACE_EXISTING );
7979 }
80- if (file(" ${ buildDir} /libs/core.jar.MD5" ). exists()){
80+ if (file(" ${ buildDir} /libs/core.jar.MD5" ). exists()) {
8181 Files . move(file(" ${ buildDir} /libs/core.jar.MD5" ). toPath(),
8282 file(" $buildDir /libs/processing-core-${ modeVersion} .jar.md5" ). toPath(), REPLACE_EXISTING );
8383 }
0 commit comments