X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=b4a507703909a11bb5a647bbe740dd13e22b8840;hb=fe1a2bf71a933785bc5e5218deecd0125c0103f5;hp=c34128e84bd183f50a02abcfa3e0f12829f18209;hpb=06b709e1b942293188d561999a3c0d1042633868;p=jalview.git diff --git a/build.gradle b/build.gradle index c34128e..b4a5077 100644 --- a/build.gradle +++ b/build.gradle @@ -1,10 +1,10 @@ import org.apache.tools.ant.filters.ReplaceTokens import org.gradle.internal.os.OperatingSystem - buildscript { dependencies { classpath 'org.openclover:clover:4.3.1' + classpath 'org.apache.commons:commons-compress:1.18' } } @@ -35,6 +35,32 @@ if (clover.equals("true")) { classes = "$jalviewDir/$classesDir" } +def libDir +def libDistDir +def compile_source_compatibility +def compile_target_compatibility +def additional_compiler_args = [] +def getdown_alt_java_min_version +if (JAVA_VERSION.equals("1.8")) { + libDir = j11libDir + libDistDir = j8libDir + compile_source_compatibility = 1.8 + compile_target_compatibility = 1.8 + getdown_alt_java_min_version = getdown_alt_java8_min_version +} else if (JAVA_VERSION.equals("11")) { + libDir = j11libDir + libDistDir = j11libDir + compile_source_compatibility = 11 + compile_target_compatibility = 11 + getdown_alt_java_min_version = getdown_alt_java11_min_version + additional_compiler_args += [ + '--module-path', sourceSets.modules.compileClasspath.asPath, + '--add-modules', j11modules + ] +} else { + throw new GradleException("JAVA_VERSION=$JAVA_VERSION not currently supported by Jalview") +} + sourceSets { main { @@ -52,16 +78,12 @@ sourceSets { compileClasspath = files(sourceSets.main.java.outputDir) compileClasspath += fileTree(dir: "$jalviewDir/$libDir", include: ["*.jar"]) - if (JAVA_VERSION.equals("1.8")) { - print("ADDING J11LIBS TO CLASSPATH\n") - compileClasspath += fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) - } runtimeClasspath = compileClasspath } modules { - compileClasspath = fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) + compileClasspath = fileTree(dir: "$jalviewDir/$j11modDir", include: ["*.jar"]) runtimeClasspath = compileClasspath } @@ -78,10 +100,6 @@ sourceSets { compileClasspath = configurations.cloverRuntime + files( sourceSets.clover.java.outputDir ) compileClasspath += fileTree(dir: "$jalviewDir/$utilsDir", include: ["**/*.jar"]) compileClasspath += fileTree(dir: "$jalviewDir/$libDir", include: ["*.jar"]) - if (JAVA_VERSION.equals("1.8")) { - print("ADDING J11LIBS TO CLASSPATH\n") - compileClasspath += fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) - } runtimeClasspath = compileClasspath } @@ -106,10 +124,6 @@ sourceSets { compileClasspath += files( sourceSets.main.resources.srcDirs) compileClasspath += fileTree(dir: "$jalviewDir/$utilsDir", include: ["**/*.jar"]) compileClasspath += fileTree(dir: "$jalviewDir/$libDir", include: ["*.jar"]) - if (JAVA_VERSION.equals("1.8")) { - print("ADDING J11LIBS TO CLASSPATH\n") - compileClasspath += fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) - } runtimeClasspath = compileClasspath } @@ -172,18 +186,9 @@ task cloverReport { compileJava { doFirst { - if (JAVA_VERSION.equals("1.8")) { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 - } else if (JAVA_VERSION.equals("11")) { - sourceCompatibility = 11 - targetCompatibility = 11 - - options.compilerArgs = [ - '--module-path', sourceSets.modules.compileClasspath.asPath, - '--add-modules', j11modules - ] - } + sourceCompatibility = compile_source_compatibility + targetCompatibility = compile_target_compatibility + options.compilerArgs = additional_compiler_args print ("Setting target compatibility to "+targetCompatibility+"\n") } @@ -198,18 +203,9 @@ compileTestJava { classpath += sourceSets.main.runtimeClasspath } doFirst { - if (JAVA_VERSION.equals("1.8")) { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 - } else if (JAVA_VERSION.equals("11")) { - sourceCompatibility = 11 - targetCompatibility = 11 - - options.compilerArgs = [ - '--module-path', sourceSets.modules.compileClasspath.asPath, - '--add-modules', j11modules - ] - } + sourceCompatibility = compile_source_compatibility + targetCompatibility = compile_target_compatibility + options.compilerArgs = additional_compiler_args print ("Setting target compatibility to "+targetCompatibility+"\n") } } @@ -218,18 +214,9 @@ compileTestJava { compileCloverJava { doFirst { - if (JAVA_VERSION.equals("1.8")) { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 - } else if (JAVA_VERSION.equals("11")) { - sourceCompatibility = 11 - targetCompatibility = 11 - - options.compilerArgs += [ - '--module-path', sourceSets.modules.compileClasspath.asPath, - '--add-modules', j11modules - ] - } + sourceCompatibility = compile_source_compatibility + targetCompatibility = compile_target_compatibility + options.compilerArgs += additional_compiler_args print ("Setting target compatibility to "+targetCompatibility+"\n") } classpath += configurations.cloverRuntime @@ -352,20 +339,9 @@ test { workingDir = jalviewDir //systemProperties 'clover.jar' System.properties.clover.jar - if (JAVA_VERSION.equals("1.8")) { - sourceCompatibility = 1.8 - targetCompatibility = 1.8 - } else if (JAVA_VERSION.equals("11")) { - sourceCompatibility = 11 - targetCompatibility = 11 - - jvmArgs += [ - '--module-path', - sourceSets.modules.compileClasspath.asPath, - '--add-modules', - j11modules - ] - } + sourceCompatibility = compile_source_compatibility + targetCompatibility = compile_target_compatibility + jvmArgs += additional_compiler_args print ("Setting target compatibility to "+targetCompatibility+"\n") } @@ -493,6 +469,12 @@ ext { getdownResourceDir = getdownWebsiteDir + '/' + getdown_resource_dir getdownLauncher = jalviewDir + '/' + getdown_launcher getdownFilesDir = jalviewDir + '/' + getdown_files_dir + getdownLib1 = jalviewDir + '/' + getdown_lib1 + def getdownChannel = getdown_channel_name + if (getdown_channel_name.equals("COMMIT")) { + getdownChannel = getGitHash() + } + getdown_app_base = getdown_channel_base+"/"+JAVA_VERSION+"/"+getdownChannel+"/" } task getdownWebsite() { @@ -505,11 +487,8 @@ task getdownWebsite() { doFirst { // go through properties looking for getdown_txt_... def props = project.properties.sort { it.key } - if (JAVA_VERSION.equals("11")) { - props.put("getdown_txt_java_min_version", getdown_alt_java11_min_version) - } else { - props.put("getdown_txt_java_min_version", getdown_alt_java8_min_version) - } + props.put("getdown_txt_java_min_version", getdown_alt_java_min_version) + props.put("getdown_txt_appbase", getdown_app_base) props.each{ prop, val -> if (prop.startsWith("getdown_txt_") && val != null) { if (prop.startsWith("getdown_txt_multi_")) { @@ -603,6 +582,16 @@ task getdownWebsite() { } copy { + from getdownLib1 + into project.ext.getdownFilesDir + } + + copy { + from getdownLib1 + into project.ext.getdownWebsiteDir + } + + copy { from jalviewDir + '/' + project.getProperty('getdown_txt_ui.background_image') from jalviewDir + '/' + project.getProperty('getdown_txt_ui.error_background') from jalviewDir + '/' + project.getProperty('getdown_txt_ui.progress_image') @@ -620,6 +609,7 @@ task getdownWebsite() { task getdownDigest(type: JavaExec) { dependsOn getdownWebsite classpath = files(jalviewDir + '/' + getdown_core) + classpath file(jalviewDir + '/' + getdown_lib1) main = "com.threerings.getdown.tools.Digester" args project.ext.getdownWebsiteDir outputs.file(project.ext.getdownWebsiteDir + '/' + "digest2.txt") @@ -648,15 +638,43 @@ install4j { install4jHomeDir = System.getProperty("user.home")+"/buildtools/install4j" } installDir = file(install4jHomeDir) + mediaTypes = Arrays.asList(install4jMediaTypes.split(",")) +} + +def install4jConf +def macosJavaVMDir +def windowsJavaVMDir +task copyInstall4jTemplate(type: Copy) { + def install4jDir = "$jalviewDir/$install4jResourceDir" + def install4jConfFile = "jalview-installers-java"+JAVA_VERSION+".install4j" + macosJavaVMDir = System.env.HOME+"/buildtools/jre/openjdk-java_vm/macos-jre"+JAVA_VERSION+"/java_vm" + windowsJavaVMDir = System.env.HOME+"/buildtools/jre/openjdk-java_vm/windows-jre"+JAVA_VERSION+"/java_vm" + from (install4jDir) { + include install4jTemplate + rename (install4jTemplate, install4jConfFile) + filter(ReplaceTokens, beginToken: '', endToken: '', tokens: ['9999999999': JAVA_VERSION]) + filter(ReplaceTokens, beginToken: '$$', endToken: '$$', tokens: ['VERSION': JALVIEW_VERSION, 'MACOS_JAVA_VM_DIR': macosJavaVMDir, 'WINDOWS_JAVA_VM_DIR': windowsJavaVMDir]) + } + into install4jDir + install4jConf = "$install4jDir/$install4jConfFile" + inputs.files("$install4jDir/$install4jTemplate") + outputs.files(install4jConf) } task installers(type: com.install4j.gradle.Install4jTask) { dependsOn getdown - projectFile = "$jalviewDir/$install4jResourceDir/$install4jConf" + dependsOn copyInstall4jTemplate + projectFile = install4jConf variables = [majorVersion: version.substring(2, 11), build: 001] destination = "$jalviewDir/$install4jBuildDir" buildSelected = true inputs.dir(project.ext.getdownWebsiteDir) + inputs.file(install4jConf) + inputs.dir(macosJavaVMDir) + inputs.dir(windowsJavaVMDir) outputs.dir("$jalviewDir/$install4jBuildDir") } +clean { + delete install4jConf +}