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

copy file to resources

parent 42bddb7e
No related branches found
No related tags found
2 merge requests!681Production Release | nshmp-haz,!680NSHM Unit Tests
......@@ -56,6 +56,7 @@ tasks.withType(Test) {
}
tasks.withType(JavaCompile) {
dependsOn copyNshmFile
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
......
......@@ -53,6 +53,13 @@ task nshms() {
}
}
task copyNshmFile() {
copy {
from "nshms.yml"
into "${buildDir}/resources/main"
}
}
// Test Alaska 2023 NSHM
task testAlaska2023(type: Test) {
description = "Test Alaska 2023 NSHM"
......
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