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

add method to return all versions

parent bf24a163
No related branches found
No related tags found
2 merge requests!613Production Release | nshmp-haz,!612Resolves - Add Version Info
......@@ -3,9 +3,19 @@ package gov.usgs.earthquake.nshmp.www;
import com.google.common.io.Resources;
import gov.usgs.earthquake.nshmp.internal.AppVersion;
import gov.usgs.earthquake.nshmp.internal.LibVersion;
public class HazVersion implements AppVersion {
public static VersionInfo[] appVersions() {
VersionInfo[] versions = {
new HazVersion().getVersionInfo(),
new LibVersion().getVersionInfo(),
new WsUtilsVersion().getVersionInfo(),
};
return versions;
}
public VersionInfo getVersionInfo() {
var resource = Resources.getResource("version/nshmp-haz-version.json");
return AppVersion.versionInfo(resource);
......
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