summaryrefslogtreecommitdiffstats
path: root/logging-sdk/pom.xml
diff options
context:
space:
mode:
authorHuabingZhao <zhao.huabing@zte.com.cn>2017-02-16 10:39:30 +0800
committerHuabingZhao <zhao.huabing@zte.com.cn>2017-02-16 10:40:09 +0800
commit0025ff09a7574fe2bf935e66a1c81be81e207f92 (patch)
tree2659f427190193fee1acf03219c5563971df8fea /logging-sdk/pom.xml
parentd4fc540886aeb23f4d483bcc78c5584821b47f0a (diff)
Add logback to logstash test code
Issue-Id: OCS-163 Change-Id: I5d66978bb32192f44f047b0e381a01661ac9cb91 Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'logging-sdk/pom.xml')
-rw-r--r--logging-sdk/pom.xml38
1 files changed, 30 insertions, 8 deletions
diff --git a/logging-sdk/pom.xml b/logging-sdk/pom.xml
index d617ebf..c616c74 100644
--- a/logging-sdk/pom.xml
+++ b/logging-sdk/pom.xml
@@ -22,19 +22,41 @@
<dependencies>
<dependency>
- <groupId>org.codehaus.jackson</groupId>
- <artifactId>jackson-mapper-asl</artifactId>
- <version>1.9.9</version>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>2.7.3</version>
</dependency>
+
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.10</version>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>2.7.3</version>
</dependency>
+
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.5.1</version>
+ <artifactId>jackson-annotations</artifactId>
+ <version>2.7.3</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>1.1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>1.1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-access</artifactId>
+ <version>1.1.3</version>
+ </dependency>
+ <dependency>
+ <groupId>net.logstash.logback</groupId>
+ <artifactId>logstash-logback-encoder</artifactId>
+ <version>4.8</version>
</dependency>
</dependencies>
<build>