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" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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.4.0-SNAPSHOT</version> |
| 8 | </parent> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 15 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 28 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 49 | </project> |