diff options
author | Ravi Geda <gravik@amdocs.com> | 2018-05-04 12:37:59 +0100 |
---|---|---|
committer | Ravi Geda <gravik@amdocs.com> | 2018-05-04 12:37:59 +0100 |
commit | da5bc06551aa52234807adbf348d0da674d3ac27 (patch) | |
tree | cc97c43453c545bd7ec25ce1fbaab2f2e68e139f /pom.xml | |
parent | a9cc38bb8a20f8df32cb86fd577531c86c0b7c38 (diff) |
Add explicit dependency for logback-access
Add explicit depedency on version 1.2.3 as 1.1.11 is being brought in
otherwise
Change-Id: Ie0d8f70c54132a187c5d1760734828b2b96d6410
Issue-ID: AAI-1118
Signed-off-by: Ravi Geda <gravik@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -70,10 +70,10 @@ limitations under the License. <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <exclusions> - <exclusion> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - </exclusion> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -106,6 +106,11 @@ limitations under the License. </exclusions> </dependency> <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-access</artifactId> + <version>1.2.3</version> + </dependency> + <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>23.0</version> |