remove not required docs and .readthedocs.yaml
[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>1.2.0</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.2.5-SNAPSHOT</version>
13   <packaging>jar</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>com.squareup.retrofit2</groupId>
17       <artifactId>retrofit</artifactId>
18       <version>2.3.0</version>
19     </dependency>
20     <dependency>
21       <groupId>org.slf4j</groupId>
22       <artifactId>slf4j-api</artifactId>
23       <version>1.7.25</version>
24     </dependency>
25     <dependency>
26       <groupId>org.apache.commons</groupId>
27       <artifactId>commons-lang3</artifactId>
28       <version>3.7</version>
29     </dependency>
30     <dependency>
31       <groupId>org.apache.httpcomponents</groupId>
32       <artifactId>httpclient</artifactId>
33       <version>4.5.3</version>
34     </dependency>
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <version>4.12</version>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.powermock</groupId>
43       <artifactId>powermock-module-junit4</artifactId>
44       <version>1.6.6</version>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.powermock</groupId>
49       <artifactId>powermock-api-mockito</artifactId>
50       <version>1.6.6</version>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54         <groupId>com.fasterxml.jackson.core</groupId>
55         <artifactId>jackson-databind</artifactId>
56         <version>2.9.4</version>
57     </dependency>
58     <dependency>
59         <groupId>com.fasterxml.jackson.core</groupId>
60         <artifactId>jackson-core</artifactId>
61         <version>2.9.4</version>
62     </dependency>
63     <dependency>
64         <groupId>com.google.guava</groupId>
65         <artifactId>guava</artifactId>
66
67     </dependency>
68   </dependencies>
69   <build>
70     <plugins>
71       <plugin>
72         <artifactId>maven-compiler-plugin</artifactId>
73         <configuration>
74           <source>1.8</source>
75           <target>1.8</target>
76         </configuration>
77       </plugin>
78       <plugin>
79         <artifactId>maven-enforcer-plugin</artifactId>
80       </plugin>
81     </plugins>
82   </build>
83 </project>