Initial OpenECOMP MSO commit
[so.git] / bpmn / MSORESTClient / 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         
6         <parent>
7                 <groupId>org.openecomp.mso</groupId>
8                 <artifactId>bpmn</artifactId>
9                 <version>0.0.4-SNAPSHOT</version>
10         </parent>
11         
12         <groupId>org.openecomp.mso</groupId>
13         <artifactId>MSORESTClient</artifactId>
14         
15         <packaging>jar</packaging>
16         
17         <name>MSO REST Client API</name>
18         
19         <dependencies>
20                 <dependency>
21                         <groupId>org.apache.httpcomponents</groupId>
22                         <artifactId>httpmime</artifactId>
23                         <version>4.5</version>
24                 </dependency>
25                 <dependency>
26                         <groupId>com.metaparadigm</groupId>
27                         <artifactId>json-rpc</artifactId>
28                         <version>1.0</version>
29                 </dependency>
30                 <dependency>
31                         <groupId>junit</groupId>
32                         <artifactId>junit</artifactId>
33                         <scope>test</scope>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.mockito</groupId>
37                         <artifactId>mockito-all</artifactId>
38                         <version>1.10.19</version>
39                         <scope>test</scope>
40                 </dependency>
41         </dependencies>
42         <build>
43         <finalName>MSORESTClient</finalName>
44                         <plugins>
45                 <!--    <plugin>
46                         </plugin>    -->
47                         <plugin>
48                                 <groupId>org.apache.maven.plugins</groupId>
49                                 <artifactId>maven-compiler-plugin</artifactId>
50                                 <version>3.1</version>
51                                 <configuration>
52                                         <source>1.7</source>
53                                         <target>1.7</target>
54                                 </configuration>
55                         </plugin>
56                 </plugins>
57                 
58         </build>
59 </project>