diff options
author | 2019-03-08 17:54:21 +0000 | |
---|---|---|
committer | 2019-03-08 23:38:19 +0000 | |
commit | a2798182d222dad96af88ff486f7c3536c12a6a1 (patch) | |
tree | 4856a59d17b881175b41ca436973dea6d2838fa2 /sidecar | |
parent | 8f1cca674c0430d0d6424778d2a720f2c9f156c7 (diff) |
Fix rproxy and fproxy logging issues
Fix to rproxy and fproxy to allow the log file to be generated at runtime.
Changes to the sidecar pom.xml by adding logback-classic in the
dependency management
- Makes sure the correct logback-classic plugin version is pulled in from its transitive dependency
- Override the scope dependency that was recently set to test
Change-Id: I55ffee62e3e052c97fdda6d934cf3213473298b3
Issue-ID: AAF-781
Signed-off-by: bwong21 <bwong@amdocs.com>
Diffstat (limited to 'sidecar')
-rw-r--r-- | sidecar/pom.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sidecar/pom.xml b/sidecar/pom.xml index 0c9e5e3..7fcffe3 100644 --- a/sidecar/pom.xml +++ b/sidecar/pom.xml @@ -132,6 +132,10 @@ <artifactId>spring-webmvc</artifactId> <version>${spring.web.version}</version> </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </dependency> </dependencies> </dependencyManagement> |