Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 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> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.httpcomponents</groupId> |
| 41 | <artifactId>httpclient</artifactId> |
Arthur Martella | 48cad37 | 2018-03-19 12:52:13 -0400 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.hamcrest</groupId> |
| 45 | <artifactId>hamcrest-core</artifactId> |
| 46 | <version>1.3</version> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.hamcrest</groupId> |
| 51 | <artifactId>hamcrest-library</artifactId> |
| 52 | <version>1.3</version> |
| 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.mockito</groupId> |
| 57 | <artifactId>mockito-all</artifactId> |
| 58 | <version>1.9.5</version> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>junit</groupId> |
| 63 | <artifactId>junit</artifactId> |
| 64 | <version>4.11</version> |
| 65 | <scope>test</scope> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>commons-lang</groupId> |
| 69 | <artifactId>commons-lang</artifactId> |
| 70 | <version>2.6</version> |
| 71 | </dependency> |
| 72 | </dependencies> |
| 73 | |
| 74 | |
| 75 | </project> |