diff options
author | Liam Fallon <liam.fallon@ericsson.com> | 2018-06-08 20:51:42 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-06-08 20:51:42 +0000 |
commit | 67de0163434349c52291e49cc7bbeadcba03747c (patch) | |
tree | 123acfa2fcfa6fcfc2e326896de92fcc4ad675c7 /POLICY-SDK-APP | |
parent | c02881e7e7a0a01b5450caa04ef850438e6a299b (diff) | |
parent | c162c37253fd865b4cdf9cbe290d141643789858 (diff) |
Merge "Enforce logback version"
Diffstat (limited to 'POLICY-SDK-APP')
-rw-r--r-- | POLICY-SDK-APP/pom.xml | 6 |
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> |