6089d6508ee151f9b565f7ae66532d642cbad555
[so.git] / cloudify-client / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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.so</groupId>
6     <artifactId>so</artifactId>
7     <version>1.6.0-SNAPSHOT</version>
8   </parent>
9
10   <groupId>org.onap.so</groupId>
11   <artifactId>cloudify-client</artifactId>
12   <packaging>jar</packaging>
13   <name>Cloudify Rest Client</name>
14   <description>Java client for Cloudify REST interface</description>
15
16   <build>
17     <finalName>${project.artifactId}-${project.version}</finalName>
18     <plugins>
19       <plugin>
20         <artifactId>maven-jar-plugin</artifactId>
21         <!--<version>2.6</version>-->
22         <version>3.0.2</version>
23         <configuration>
24           <classesDirectory>target/classes</classesDirectory>
25         </configuration>
26       </plugin>
27     </plugins>
28   </build>
29
30   <dependencies>
31     <dependency>
32       <groupId>org.onap.so</groupId>
33       <artifactId>common</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.apache.httpcomponents</groupId>
38       <artifactId>httpcore</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.apache.httpcomponents</groupId>
42       <artifactId>httpclient</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>commons-lang</groupId>
46       <artifactId>commons-lang</artifactId>
47       <version>2.6</version>
48     </dependency>
49   </dependencies>
50 </project>