blob: f87ee3ccd93ceacca60c436009f60700350a14d9 [file] [log] [blame]
Rob Daugherty38f72072018-03-14 02:07:32 -04001<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.2.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 <configuration>
23 <classesDirectory>target/classes</classesDirectory>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28
29 <dependencies>
30 <dependency>
31 <groupId>org.onap.so</groupId>
32 <artifactId>common</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.httpcomponents</groupId>
37 <artifactId>httpcore</artifactId>
38 <version>4.3.1</version>
39 </dependency>
40 <dependency>
41 <groupId>org.apache.httpcomponents</groupId>
42 <artifactId>httpclient</artifactId>
43 <version>4.3.1</version>
44 </dependency>
45 <dependency>
46 <groupId>commons-lang</groupId>
47 <artifactId>commons-lang</artifactId>
48 <version>2.6</version>
49 </dependency>
50 </dependencies>
51
52
53</project>