Merge branch 'jims/JAL-3130_Java11_Gradle_publishing' into bug/JAL-3224_getdown_chang...
[jalview.git] / build.gradle
index 5f33b20..b4a5077 100644 (file)
@@ -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")) {
+  use_clover = true
+  classes = "$buildDir/$cloverClassesDir"
+} else {
+  use_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,16 @@ 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 (use_clover) {
+      compileClasspath += sourceSets.clover.compileClasspath
+    } else {
+      compileClasspath += sourceSets.main.compileClasspath
+      compileClasspath += files(sourceSets.main.java.outputDir)
+    }
     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 +131,10 @@ sourceSets {
 
 // clover bits
 dependencies {
-  cloverCompile 'org.openclover:clover:4.3.1'
-  testCompile 'org.openclover:clover:4.3.1'
+  if (use_clover) {
+    cloverCompile 'org.openclover:clover:4.3.1'
+    testCompile 'org.openclover:clover:4.3.1'
+  }
 }
 
 configurations {
@@ -123,7 +150,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 +160,6 @@ task cloverInstr() {
     }
 }
 
-test.dependsOn cloverInstr
-
  
 task cloverReport {
     inputs.dir "${buildDir}/clover"
@@ -161,59 +186,37 @@ 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 (use_clover) {
+    dependsOn compileCloverJava
+    classpath += configurations.cloverRuntime
+  } else {
+    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")
   }
-  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
@@ -257,7 +260,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")
@@ -265,29 +268,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"])
@@ -297,7 +300,7 @@ task copyHelp(type: Copy) {
 }
 
 task syncLib(type: Sync) {
-  def syncDir = "$jalviewDir/$classesDir/$libDir"
+  def syncDir = "$classes/$libDir"
   from fileTree("$jalviewDir/$libDir")
   into syncDir
 }
@@ -306,7 +309,7 @@ task syncResources(type: Sync) {
   from "$jalviewDir/$resourceDir"
   include "**/*.*"
   exclude "install4j"
-  into "$jalviewDir/$classesDir"
+  into "$classes"
   preserve {
     include "**"
   }
@@ -322,7 +325,11 @@ task prepare {
 //testReportDirName = "test-reports" // note that test workingDir will be $jalviewDir
 test {
   dependsOn prepare
-  
+  dependsOn compileJava
+  if (use_clover) {
+    dependsOn cloverInstr
+  }
+  print("Running tests " + (use_clover?"WITH":"WITHOUT") + " clover [clover="+use_clover+"]\n") 
   
   useTestNG() {
     includeGroups testngGroups
@@ -332,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")
 }
 
@@ -353,13 +349,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")
@@ -382,8 +378,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")
@@ -417,12 +415,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"
 }
 
@@ -471,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() {
@@ -483,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_")) {
@@ -581,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')
@@ -598,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")
@@ -626,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
+}