diff options
author | wasala <przemyslaw.wasala@nokia.com> | 2018-03-28 14:20:58 +0200 |
---|---|---|
committer | wasala <przemyslaw.wasala@nokia.com> | 2018-03-28 14:20:58 +0200 |
commit | d8e4e88b6080dfd701ea7aa64d033c38899e77c6 (patch) | |
tree | 87e23a50375086b4c3737084f9e9d6f6d17229a2 /pom.xml | |
parent | 961af3e21239edd4714e7e586ed5db902bd85d53 (diff) |
Added logs
Improve Dockerfile and build fat jar
Change-Id: I8b4dd1a56350af310c70236d6843ae1c357ad95e
Issue-ID: DCAEGEN2-407
Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 20 |
1 files changed, 9 insertions, 11 deletions
@@ -399,22 +399,20 @@ <!-- LOGGING dependencies> --> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - <version>${slf4j.version}</version> - <scope>provided</scope> - </dependency> - <dependency> <groupId>ch.qos.logback</groupId> - <artifactId>logback-core</artifactId> + <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>provided</scope> </dependency> <dependency> - <groupId>ch.qos.logback</groupId> - <artifactId>logback-classic</artifactId> - <version>${logback.version}</version> - <scope>provided</scope> + <groupId>org.slf4j</groupId> + <artifactId>jul-to-slf4j</artifactId> + <version>1.7.25</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>log4j-over-slf4j</artifactId> + <version>1.7.25</version> </dependency> <!-- TESTING TOOLS DEPENDENCIES --> |