aboutsummaryrefslogtreecommitdiffstats
path: root/POLICY-SDK-APP/pom.xml
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2018-06-08 15:48:52 -0400
committerJim Hahn <jrh3@att.com>2018-06-08 15:48:52 -0400
commitc162c37253fd865b4cdf9cbe290d141643789858 (patch)
tree25199a3b24056924692a69c1e3d7a0ea8a3ae5e8 /POLICY-SDK-APP/pom.xml
parente1bec1e7a8e3be989a81507eee81909314550693 (diff)
Enforce logback version
Some of the projects are being built with logback version, 1.1.3, which does not support the SizeAndTimeBasedRollingPolicy appender. Updated the offending pom.xml to force it to use logback 1.2.3 instead. Change-Id: I3277b28133498f4ad9fbc3ed8b3e9e7e9519bbeb Issue-ID: POLICY-785 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'POLICY-SDK-APP/pom.xml')
-rw-r--r--POLICY-SDK-APP/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/POLICY-SDK-APP/pom.xml b/POLICY-SDK-APP/pom.xml
index 9f7d8e661..9af91f0f6 100644
--- a/POLICY-SDK-APP/pom.xml
+++ b/POLICY-SDK-APP/pom.xml
@@ -71,12 +71,18 @@
<epsdk.version>2.1.0</epsdk.version>
<springframework.version>4.2.0.RELEASE</springframework.version>
<hibernate.version>4.3.11.Final</hibernate.version>
+ <logback.version>1.2.3</logback.version>
<skipassembly>true</skipassembly>
<skiptests>false</skiptests>
<sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs/**/*</sonar.exclusions>
</properties>
<dependencies>
<dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
+ <dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>