X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=45a757ea135387271d3b43bb64d1a3e047f09a7d;hb=fd9619a4034e5e2e4d2f1ed2ecb75e677c578308;hp=b659d8d2212526df69e8df41d175b8f86b3cf07c;hpb=5ca5b92a5ea0cebe4f04d590ca7bbbc723c4dbc1;p=jalview.git diff --git a/build.gradle b/build.gradle index b659d8d..45a757e 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' } } @@ -25,14 +25,48 @@ repositories { } mainClassName = launcherClass -def cloverInstrDir = file("$buildDir/sources-instr") +def cloverInstrDir = file("$buildDir/$cloverSourcesInstrDir") +def classes = "$jalviewDir/$classesDir" +if (clover.equals("true")) { + clover = true + classes = "$buildDir/$cloverClassesDir" +} else { + clover = false + 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 { java { srcDirs "$jalviewDir/$sourceDir" - outputDir = file("$jalviewDir/$classesDir") + outputDir = file("$classes") } resources { @@ -44,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") - 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 } @@ -61,7 +91,7 @@ sourceSets { clover { java { srcDirs = [ cloverInstrDir ] - outputDir = file("${buildDir}/clover-classes") + outputDir = file("${buildDir}/${cloverClassesDir}") } resources { @@ -70,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") - compileClasspath += fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) - } runtimeClasspath = compileClasspath } @@ -88,17 +114,15 @@ sourceSets { srcDirs = sourceSets.main.resources.srcDirs } - - compileClasspath = configurations.cloverRuntime - compileClasspath += files( sourceSets.test.java.outputDir ) - compileClasspath += files( sourceSets.clover.java.outputDir ) + compileClasspath = files( sourceSets.test.java.outputDir ) + if (clover) { + compileClasspath += sourceSets.clover.compileClasspath + } else { + compileClasspath += sourceSets.main.compileClasspath + } 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") - compileClasspath += fileTree(dir: "$jalviewDir/$j11libDir", include: ["*.jar"]) - } runtimeClasspath = compileClasspath } @@ -106,8 +130,10 @@ sourceSets { // clover bits dependencies { - cloverCompile 'org.openclover:clover:4.3.1' - testCompile 'org.openclover:clover:4.3.1' + if (clover) { + cloverCompile 'org.openclover:clover:4.3.1' + testCompile 'org.openclover:clover:4.3.1' + } } configurations { @@ -123,7 +149,7 @@ task cloverInstr() { doFirst { delete cloverInstrDir def argsList = ["--initstring", "${buildDir}/clover/clover.db", - "-d", "${buildDir}/sources-instr"] + "-d", "${buildDir}/${cloverSourcesInstrDir}"] argsList.addAll(inputs.files.files.collect({ file -> file.absolutePath })) @@ -133,8 +159,6 @@ task cloverInstr() { } } -test.dependsOn cloverInstr - task cloverReport { inputs.dir "${buildDir}/clover" @@ -147,6 +171,11 @@ task cloverReport { "-o", "${reportsDir}/clover"] String[] args = argsList.toArray() com.atlassian.clover.reporters.html.HtmlReporter.runReport(args) + + // and generate ${reportsDir}/clover/clover.xml + args = ["--initstring", "${buildDir}/clover/clover.db", + "-o", "${reportsDir}/clover/clover.xml"].toArray() + com.atlassian.clover.reporters.xml.XMLReporter.runReport(args) } } @@ -156,59 +185,34 @@ 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") } } compileTestJava { - dependsOn compileCloverJava + if (clover) { + dependsOn compileCloverJava + classpath += configurations.cloverRuntime + } 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 } 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 @@ -252,7 +256,7 @@ def getGitBranch() { task createBuildProperties(type: WriteProperties) { inputs.dir("$jalviewDir/$sourceDir") inputs.dir("$jalviewDir/$resourceDir") - outputFile "$jalviewDir/$classesDir/$buildPropertiesFile" + outputFile "$classes/$buildPropertiesFile" /* taking time/date specific comment out to allow better incremental builds */ //comment "--Jalview Build Details--\n"+getDate("yyyy-MM-dd HH:mm:ss") comment "--Jalview Build Details--\n"+getDate("yyyy-MM-dd") @@ -260,29 +264,29 @@ task createBuildProperties(type: WriteProperties) { property "VERSION", JALVIEW_VERSION property "INSTALLATION", INSTALLATION+" git-commit:"+getGitHash()+" ["+getGitBranch()+"]" outputs.file(outputFile) - outputs.dir("$jalviewDir/$classesDir") + outputs.dir("$classes") } task syncDocs(type: Sync) { - def syncDir = "$jalviewDir/$classesDir/$docDir" + def syncDir = "$classes/$docDir" from fileTree("$jalviewDir/$docDir") into syncDir } -def helpFile = "$jalviewDir/$classesDir/$helpDir/help.jhm" +def helpFile = "$classes/$helpDir/help.jhm" task syncHelp(type: Sync) { inputs.files("$jalviewDir/$helpDir") outputs.files(helpFile) - def syncDir = "$jalviewDir/$classesDir/$helpDir" + def syncDir = "$classes/$helpDir" from fileTree("$jalviewDir/$helpDir") into syncDir } task copyHelp(type: Copy) { def inputDir = "$jalviewDir/$helpDir" - def outputDir = "$jalviewDir/$classesDir/$helpDir" + def outputDir = "$classes/$helpDir" from inputDir into outputDir filter(ReplaceTokens, beginToken: '$$', endToken: '$$', tokens: ['Version-Rel': "USING_FILTER"]) @@ -292,7 +296,7 @@ task copyHelp(type: Copy) { } task syncLib(type: Sync) { - def syncDir = "$jalviewDir/$classesDir/$libDir" + def syncDir = "$classes/$libDir" from fileTree("$jalviewDir/$libDir") into syncDir } @@ -301,7 +305,7 @@ task syncResources(type: Sync) { from "$jalviewDir/$resourceDir" include "**/*.*" exclude "install4j" - into "$jalviewDir/$classesDir" + into "$classes" preserve { include "**" } @@ -317,7 +321,10 @@ task prepare { //testReportDirName = "test-reports" // note that test workingDir will be $jalviewDir test { dependsOn prepare - + if (clover) { + dependsOn cloverInstr + } + print("Running tests " + (clover?"WITH":"WITHOUT") + " clover [clover="+clover+"]\n") useTestNG() { includeGroups testngGroups @@ -327,20 +334,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") } @@ -348,13 +344,13 @@ task buildIndices(type: JavaExec) { dependsOn copyHelp classpath = sourceSets.main.compileClasspath main = "com.sun.java.help.search.Indexer" - workingDir = "$jalviewDir/$classesDir/$helpDir" + workingDir = "$classes/$helpDir" def argDir = "html" args = [ argDir ] inputs.dir("$workingDir/$argDir") - outputs.dir("$jalviewDir/$classesDir/doc") - outputs.dir("$jalviewDir/$classesDir/help") + outputs.dir("$classes/doc") + outputs.dir("$classes/help") outputs.file("$workingDir/JavaHelpSearch/DOCS") outputs.file("$workingDir/JavaHelpSearch/DOCS.TAB") outputs.file("$workingDir/JavaHelpSearch/OFFSETS") @@ -377,8 +373,10 @@ task linkCheck(type: JavaExec) { dependsOn prepare, compileLinkCheck classpath = files("$jalviewDir/$utilsDir") main = "HelpLinksChecker" - workingDir = "$jalviewDir" - args = [ "$classesDir/$helpDir", "-nointernet" ] + workingDir = jalviewDir + def help = "$classes/$helpDir" + args = [ "$classes/$helpDir", "-nointernet" ] + //args = [ "$classesDir/$helpDir", "-nointernet" ] doFirst { standardOutput new FileOutputStream("$jalviewDir/$utilsDir/HelpLinksChecker.out") @@ -412,12 +410,12 @@ jar { exclude "**/*.jar" exclude "**/*.jar.*" - inputs.dir("$jalviewDir/$classesDir") + inputs.dir("$classes") outputs.file("$jalviewDir/$packageDir/$archiveName") } task copyJars(type: Copy) { - from fileTree("$jalviewDir/$classesDir").include("**/*.jar").include("*.jar").files + from fileTree("$classes").include("**/*.jar").include("*.jar").files into "$jalviewDir/$packageDir" } @@ -466,6 +464,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() { @@ -478,11 +482,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_")) { @@ -576,6 +577,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') @@ -593,6 +604,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") @@ -621,15 +633,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 +}