Merge "Fix String concatenation optimzation"
[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.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.5.5</version> -->
44                 </dependency>
45                 <dependency>
46                         <groupId>org.hamcrest</groupId>
47                         <artifactId>hamcrest-core</artifactId>
48                         <version>1.3</version>
49                         <scope>test</scope>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.hamcrest</groupId>
53                         <artifactId>hamcrest-library</artifactId>
54                         <version>1.3</version>
55                         <scope>test</scope>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.mockito</groupId>
59                         <artifactId>mockito-all</artifactId>
60                         <version>1.9.5</version>
61                         <scope>test</scope>
62                 </dependency>
63                 <dependency>
64                         <groupId>junit</groupId>
65                         <artifactId>junit</artifactId>
66                         <version>4.11</version>
67                         <scope>test</scope>
68                 </dependency>
69         <dependency>
70             <groupId>commons-lang</groupId>
71             <artifactId>commons-lang</artifactId>
72             <version>2.6</version>
73         </dependency>
74         </dependencies>
75
76
77 </project>