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

add check for local dev

parent 3344d83a
No related branches found
No related tags found
2 merge requests!655Production Release | nshmp-haz,!653nshmp-lib Local Development
...@@ -2,8 +2,11 @@ ...@@ -2,8 +2,11 @@
dependencies { dependencies {
// NSHMP // NSHMP
// implementation files('../nshmp-lib/build/libs/nshmp-lib.jar') if (System.getenv('NSHMP_LIB_LOCAL') == 'true') {
implementation "ghsc:nshmp-lib:${nshmpLibVersion}" implementation files('../nshmp-lib/build/libs/nshmp-lib.jar')
} else {
implementation "ghsc:nshmp-lib:${nshmpLibVersion}"
}
implementation "ghsc:nshmp-ws-utils:${nshmpWsUtilsVersion}" implementation "ghsc:nshmp-ws-utils:${nshmpWsUtilsVersion}"
// AWS // AWS
......
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