diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-04-04 15:58:26 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-04-04 16:29:55 -0400 |
commit | 17e4844d07eb9ad3f5a3f27db75b957d5d0a52a6 (patch) | |
tree | 9ef3af222d606525402fc9e306b961f01eda7e09 | |
parent | aa4a295680e3fef78ae695ff41bcf5015efffa16 (diff) |
URGENT : Install logback
Install logback packages needed by EELF as part of
sli common package. This is urgently needed, since CCSDK
is not coming up clean without this fix.
Change-Id: I4f47e6146e45e36752454100186851af3eba7491
Issue-ID: CCSDK-235
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
-rwxr-xr-x | sli/common/pom.xml | 1 | ||||
-rwxr-xr-x | sli/installer/pom.xml | 24 |
2 files changed, 21 insertions, 4 deletions
diff --git a/sli/common/pom.xml b/sli/common/pom.xml index c22c1ae69..94098c145 100755 --- a/sli/common/pom.xml +++ b/sli/common/pom.xml @@ -107,6 +107,7 @@ <dependency> <groupId>com.att.eelf</groupId> <artifactId>eelf-core</artifactId> + <version>1.0.0</version> </dependency> <!-- Testing Dependencies --> diff --git a/sli/installer/pom.xml b/sli/installer/pom.xml index 5586f7d53..cb34f14bc 100755 --- a/sli/installer/pom.xml +++ b/sli/installer/pom.xml @@ -1,12 +1,13 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>odlparent-lite</artifactId> <version>1.0.1-SNAPSHOT</version> - <relativePath/> + <relativePath /> </parent> <groupId>org.onap.ccsdk.sli.core</groupId> @@ -19,7 +20,7 @@ <properties> <application.name>ccsdk-sli</application.name> <features.boot>${application.name}</features.boot> - <features.repositories>mvn:org.onap.ccsdk.sli.core/${features.boot}/${project.version}/xml/features</features.repositories> + <features.repositories>mvn:org.onap.ccsdk.sli.core/${features.boot}/${project.version}/xml/features</features.repositories> <include.transitive.dependencies>false</include.transitive.dependencies> </properties> @@ -56,6 +57,21 @@ <artifactId>sli-recording</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>com.att.eelf</groupId> + <artifactId>eelf-core</artifactId> + <version>1.0.0</version> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + <version>${logback.version}</version> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + <version>${logback.version}</version> + </dependency> </dependencies> @@ -115,7 +131,7 @@ <useRepositoryLayout>true</useRepositoryLayout> <addParentPoms>false</addParentPoms> <copyPom>false</copyPom> - <includeGroupIds>org.onap.ccsdk.sli.core</includeGroupIds> + <includeGroupIds>org.onap.ccsdk.sli.core,com.att.eelf,ch.qos.logback</includeGroupIds> <excludeArtifactIds>utils-provider,dblib-provider</excludeArtifactIds> <scope>provided</scope> </configuration> |