Merge "Upgrade the version of jackson-databind to 2.8.9"
[msb/java-sdk.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.oparent</groupId>
6     <artifactId>oparent</artifactId>
7     <version>0.1.1</version>
8   </parent>
9   <groupId>org.onap.msb.java-sdk</groupId>
10   <artifactId>msb-java-sdk</artifactId>
11   <name>msb-java-sdk</name>
12   <version>1.1.0-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>com.squareup.retrofit2</groupId>
17       <artifactId>retrofit</artifactId>
18       <version>2.0.2</version>
19     </dependency>
20     <dependency>
21       <groupId>org.slf4j</groupId>
22       <artifactId>slf4j-api</artifactId>
23       <version>1.7.12</version>
24     </dependency>
25     <!--<dependency>
26       <groupId>ch.qos.logback</groupId>
27       <artifactId>logback-classic</artifactId>
28       <version>1.1.3</version>
29     </dependency>
30     <dependency>
31       <groupId>ch.qos.logback</groupId>
32       <artifactId>logback-core</artifactId>
33       <version>1.1.3</version>
34     </dependency>-->
35     <dependency>
36       <groupId>org.apache.commons</groupId>
37       <artifactId>commons-lang3</artifactId>
38       <version>3.0</version>
39     </dependency>
40     <dependency>
41       <groupId>com.eclipsesource.jaxrs</groupId>
42       <artifactId>consumer</artifactId>
43       <version>5.0</version>
44     </dependency>
45         <dependency>
46                 <groupId>com.fasterxml.jackson.core</groupId>
47                 <artifactId>jackson-databind</artifactId>
48                 <version>2.8.9</version>
49         </dependency>
50     <dependency>
51       <groupId>org.apache.httpcomponents</groupId>
52       <artifactId>httpclient</artifactId>
53       <version>4.5.3</version>
54     </dependency>
55     <dependency>
56       <groupId>junit</groupId>
57       <artifactId>junit</artifactId>
58       <version>4.11</version>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.powermock</groupId>
63       <artifactId>powermock-module-junit4</artifactId>
64       <version>1.6.6</version>
65       <scope>test</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.powermock</groupId>
69       <artifactId>powermock-api-mockito</artifactId>
70       <version>1.6.6</version>
71       <scope>test</scope>
72     </dependency>
73   </dependencies>
74   <build>
75     <plugins>
76       <plugin>
77         <artifactId>maven-compiler-plugin</artifactId>
78         <configuration>
79           <source>1.8</source>
80           <target>1.8</target>
81         </configuration>
82       </plugin>
83       <plugin>
84         <artifactId>maven-enforcer-plugin</artifactId>
85       </plugin>
86     </plugins>
87   </build>
88 </project>