Merge "Fix Invalid BPMN"
[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.3.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                 </dependency>
39                 <dependency>
40                         <groupId>org.apache.httpcomponents</groupId>
41                         <artifactId>httpclient</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>commons-lang</groupId>
45                         <artifactId>commons-lang</artifactId>
46                         <version>2.6</version>
47                 </dependency>
48         </dependencies>
49 </project>