Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.openecomp.sdc</groupId> |
| 9 | <artifactId>healthcheck-rest</artifactId> |
Michael Lando | b5fc68f | 2018-11-15 13:36:12 +0200 | [diff] [blame] | 10 | <version>1.4.0-SNAPSHOT</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <artifactId>healthcheck-rest-services</artifactId> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 14 | |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 15 | <dependencies> |
| 16 | |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 17 | <dependency> |
| 18 | <groupId>javax.ws.rs</groupId> |
| 19 | <artifactId>javax.ws.rs-api</artifactId> |
| 20 | <version>${ws.rs.version}</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>org.springframework</groupId> |
| 24 | <artifactId>spring-context</artifactId> |
| 25 | <version>${spring.framework.version}</version> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>javax.inject</groupId> |
| 29 | <artifactId>javax.inject</artifactId> |
| 30 | <version>1</version> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.openecomp.sdc</groupId> |
| 34 | <artifactId>openecomp-sdc-healthcheck-manager</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.openecomp.sdc</groupId> |
| 39 | <artifactId>healthcheck-rest-types</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.openecomp.sdc</groupId> |
| 44 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <!-- CXF --> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.cxf</groupId> |
| 50 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 51 | <version>${cxf.version}</version> |
| 52 | </dependency> |
| 53 | |
| 54 | </dependencies> |
| 55 | |
| 56 | |
| 57 | </project> |