plugins { id "application" id "com.diffplug.spotless" version "${spotlessVersion}" id "com.github.johnrengelman.shadow" version "${shadowVersion}" id "com.github.node-gradle.node" version "${nodePluginVersion}" id "com.github.spotbugs" version "${spotbugsVersion}" id "com.palantir.git-version" version "${gitVersionVersion}" id "com.star-zero.gradle.githook" version "${githooksVersion}" id "de.undercouch.download" version "${downloadVersion}" id "eclipse-wtp" id "jacoco" id "java-library" id "maven-publish" } compileJava.options.encoding = "UTF-8" compileTestJava.options.encoding = "UTF-8" mainClassName = "gov.usgs.earthquake.nshmp.www.Application" sourceCompatibility = JavaVersion.VERSION_11 java { withSourcesJar() } apply from: "${projectDir}/gradle/app-version.gradle" apply from: "${projectDir}/gradle/dependencies.gradle" apply from: "${projectDir}/gradle/git-hooks.gradle" apply from: "${projectDir}/gradle/node.gradle" apply from: "${projectDir}/gradle/repositories.gradle" apply from: "${projectDir}/gradle/spotbugs.gradle" apply from: "${projectDir}/gradle/spotless.gradle" test { useJUnitPlatform() reports { junitXml.enabled = true html.enabled = true } } jacocoTestReport { reports { xml.enabled true html.enabled true } } check.dependsOn jacocoTestReport shadowJar { mergeServiceFiles() } tasks.withType(JavaCompile) { options.encoding = "UTF-8" options.compilerArgs.add("-parameters") } tasks.withType(JavaExec) { jvmArgs('-noverify', '-XX:TieredStopAtLevel=1', '-Dcom.sun.management.jmxremote') } /* Add HTML reports to SpotBugs */ tasks.withType(com.github.spotbugs.snom.SpotBugsTask) { reports { html { enabled true stylesheet = 'fancy-hist.xsl' } } }