diff --git a/installers/linux/universal/tar/build.gradle b/installers/linux/universal/tar/build.gradle index addea07ed11..1f76b114140 100644 --- a/installers/linux/universal/tar/build.gradle +++ b/installers/linux/universal/tar/build.gradle @@ -19,11 +19,11 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ configurations { - javafx + //javafx } dependencies { - javafx project(path: ':javafx', configuration: 'archives') + //javafx project(path: ':javafx', configuration: 'archives') compile project(path: ':openjdksrc', configuration: 'archives') } @@ -48,7 +48,7 @@ task copySource(type: Exec) { "${project.rootDir}/", buildRoot } -task createJavafxOverlay(type: Copy) { +/*task createJavafxOverlay(type: Copy) { dependsOn project.configurations.javafx from tarTree(project.configurations.javafx.singleFile) into "$buildDir/javafx" @@ -57,7 +57,7 @@ task createJavafxOverlay(type: Copy) { it.path = it.path.replace('rt/', 'jre/') } } -} +}*/ task configureBuild(type: Exec) { dependsOn project.configurations.compile @@ -94,9 +94,9 @@ task copyBuildResults() { description 'Copy the JDK image and puts the results in build/.' dependsOn executeBuild dependsOn importAmazonCacerts - if (project.correttoArch == 'x64') { + /*if (project.correttoArch == 'x64') { dependsOn createJavafxOverlay - } + }*/ doLast { def destination = "${buildDir}/${project.correttoJdkArchiveName}" @@ -115,12 +115,12 @@ task copyBuildResults() { commandLine 'cp', '-Rf', '--parents', 'bin', 'include', 'jre', 'lib', 'man/man1', 'src.zip', destination } - if (project.correttoArch == 'x64') { + /*if (project.correttoArch == 'x64') { exec { workingDir createJavafxOverlay.destinationDir commandLine 'cp', '-Rf', '--parents', 'bin', 'jre', 'lib', 'man/man1', 'javafx-src.zip', destination } - } + }*/ } }