Skip to content
Snippets Groups Projects
Commit b7057482 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

update

parent 3dd9ceeb
No related branches found
No related tags found
1 merge request!35Location update
plugins { plugins {
id "application" id "application"
id "com.diffplug.gradle.spotless" version "3.27.1" id "com.diffplug.gradle.spotless" version "${spotlessVersion}"
id "com.github.johnrengelman.shadow" version "5.2.0" id "com.github.johnrengelman.shadow" version "${shadowVersion}"
id "com.github.spotbugs" version "3.0.0" id "com.github.spotbugs" version "${spotbugsVersion}"
id "com.star-zero.gradle.githook" version "1.2.0" id "com.star-zero.gradle.githook" version "${githooksVersion}"
id "eclipse-wtp" id "eclipse-wtp"
id "jacoco" id "jacoco"
id "java" id "java"
id "net.ltgt.apt-eclipse" version "0.21" id "net.ltgt.apt-eclipse" version "${aptEclipseVersion}"
} }
sourceCompatibility = JavaVersion.VERSION_11 sourceCompatibility = JavaVersion.VERSION_11
...@@ -26,7 +26,7 @@ repositories { ...@@ -26,7 +26,7 @@ repositories {
git { git {
implementation("https://code.usgs.gov/ghsc/nshmp/nshmp-lib.git", { implementation("https://code.usgs.gov/ghsc/nshmp/nshmp-lib.git", {
name "nshmp-netcdf-dep--nshmp-lib" name "nshmp-netcdf-dep--nshmp-lib"
tag "v0.0.5" tag "v0.1.0"
}) })
} }
...@@ -106,11 +106,12 @@ tasks.withType(JavaExec) { ...@@ -106,11 +106,12 @@ tasks.withType(JavaExec) {
} }
/* Add HTML reports to SpotBugs */ /* Add HTML reports to SpotBugs */
tasks.withType(com.github.spotbugs.SpotBugsTask) { tasks.withType(com.github.spotbugs.snom.SpotBugsTask) {
ignoreFailures = false // TODO remove when nshmp-lib is updated
reports { reports {
xml.enabled = false html {
html.enabled = true enabled true
stylesheet = 'fancy-hist.xsl'
}
} }
} }
......
aptEclipseVersion = 0.21
cdmVersion = 5.1.0 cdmVersion = 5.1.0
githooksVersion = 1.2.0
jacksonVersion = 2.9.0 jacksonVersion = 2.9.0
junitVersion = 5.5.2 junitVersion = 5.5.2
logbackVersion = 1.2.3 logbackVersion = 1.2.3
mnOpenAPIVersion = 1.4.0
mnVersion = 1.3.2 mnVersion = 1.3.2
netcdfVersion = 5.1.0 netcdfVersion = 5.1.0
shadowVersion = 5.2.0
slfVersion = 1.7.30 slfVersion = 1.7.30
spotbugsVersion = 4.2.4
spotlessVersion = 4.1.0
swaggerVersion = 2.1.1 swaggerVersion = 2.1.1
mnOpenAPIVersion = 1.4.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment