ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 5 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 6 | <parent> |
| 7 | <groupId>org.openecomp.mso</groupId> |
| 8 | <artifactId>bpmn</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 9 | <version>1.1.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 10 | </parent> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 11 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <groupId>org.openecomp.mso</groupId> |
| 13 | <artifactId>MSORESTClient</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 14 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 15 | <packaging>jar</packaging> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 16 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 17 | <name>MSO REST Client API</name> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 18 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 19 | <dependencies> |
| 20 | <dependency> |
| 21 | <groupId>org.apache.httpcomponents</groupId> |
| 22 | <artifactId>httpmime</artifactId> |
| 23 | <version>4.5</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>com.metaparadigm</groupId> |
| 27 | <artifactId>json-rpc</artifactId> |
| 28 | <version>1.0</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>junit</groupId> |
| 32 | <artifactId>junit</artifactId> |
| 33 | <scope>test</scope> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.mockito</groupId> |
| 37 | <artifactId>mockito-all</artifactId> |
| 38 | <version>1.10.19</version> |
| 39 | <scope>test</scope> |
| 40 | </dependency> |
| 41 | </dependencies> |
| 42 | <build> |
| 43 | <finalName>MSORESTClient</finalName> |
| 44 | <plugins> |
| 45 | <!-- <plugin> |
| 46 | </plugin> --> |
| 47 | <plugin> |
| 48 | <groupId>org.apache.maven.plugins</groupId> |
| 49 | <artifactId>maven-compiler-plugin</artifactId> |
| 50 | <version>3.1</version> |
| 51 | <configuration> |
| 52 | <source>1.7</source> |
| 53 | <target>1.7</target> |
| 54 | </configuration> |
| 55 | </plugin> |
| 56 | </plugins> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 57 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 58 | </build> |
| 59 | </project> |