aboutsummaryrefslogtreecommitdiffstats
path: root/feature-state-management
diff options
context:
space:
mode:
authorJorge Hernandez <jorge.hernandez-herrero@att.com>2019-02-13 13:12:37 -0600
committerJorge Hernandez <jorge.hernandez-herrero@att.com>2019-02-14 08:31:11 -0600
commitc6f2da8cb993382057c6e141b68af9334b6391d1 (patch)
treeb0bf922f384c8891fcd372ef4f562aad21a14397 /feature-state-management
parent6683a08e12d119e1ba8fb1070a93660c0c3a3931 (diff)
Decouple nexus reconfiguration from installation
This allows for nexus to be reconfigured dynamically. Change-Id: I103707ab7525ddb29663d7785739a34dff538605 Issue-ID: POLICY-1518 Signed-off-by: Jorge Hernandez <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'feature-state-management')
-rw-r--r--feature-state-management/src/main/feature/config/feature-state-management.properties12
1 files changed, 6 insertions, 6 deletions
diff --git a/feature-state-management/src/main/feature/config/feature-state-management.properties b/feature-state-management/src/main/feature/config/feature-state-management.properties
index 9005519c..d43675e8 100644
--- a/feature-state-management/src/main/feature/config/feature-state-management.properties
+++ b/feature-state-management/src/main/feature/config/feature-state-management.properties
@@ -2,7 +2,7 @@
# ============LICENSE_START=======================================================
# feature-state-management
# ================================================================================
-# Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
+# Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -74,10 +74,10 @@ refresh_state_audit_interval_ms=600000
# Assume it's the releaseRepository that needs to be audited,
# because that's the one BRMGW will publish to.
-repository.audit.id=${{RELEASE_REPOSITORY_ID}}
-repository.audit.url=${{RELEASE_REPOSITORY_URL}}
-repository.audit.username=${{REPOSITORY_USERNAME}}
-repository.audit.password=${{REPOSITORY_PASSWORD}}
+repository.audit.id=${env:RELEASE_REPOSITORY_ID}
+repository.audit.url=${env:RELEASE_REPOSITORY_URL}
+repository.audit.username=${env:REPOSITORY_USERNAME}
+repository.audit.password=${env:REPOSITORY_PASSWORD}
# Flag to control the execution of the subsystemTest for the Nexus Maven repository
repository.audit.is.active=false
repository.audit.ignore.errors=true
@@ -85,4 +85,4 @@ repository.audit.ignore.errors=true
# DB Audit Properties
# Flag to control the execution of the subsystemTest for the Database
-db.audit.is.active=false \ No newline at end of file
+db.audit.is.active=false