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> |
| 10 | <version>1.1.0-SNAPSHOT</version> |
| 11 | </parent> |
| 12 | |
| 13 | <artifactId>healthcheck-rest-services</artifactId> |
| 14 | <version>1.1.0-SNAPSHOT</version> |
| 15 | <!--packaging>pom</packaging--> |
| 16 | |
| 17 | <dependencies> |
| 18 | |
| 19 | |
| 20 | <dependency> |
| 21 | <groupId>javax.ws.rs</groupId> |
| 22 | <artifactId>javax.ws.rs-api</artifactId> |
| 23 | <version>${ws.rs.version}</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.springframework</groupId> |
| 27 | <artifactId>spring-context</artifactId> |
| 28 | <version>${spring.framework.version}</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>javax.inject</groupId> |
| 32 | <artifactId>javax.inject</artifactId> |
| 33 | <version>1</version> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.openecomp.sdc</groupId> |
| 37 | <artifactId>openecomp-sdc-healthcheck-manager</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.openecomp.sdc</groupId> |
| 42 | <artifactId>healthcheck-rest-types</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.openecomp.sdc</groupId> |
| 47 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <!-- CXF --> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.cxf</groupId> |
| 53 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 54 | <version>${cxf.version}</version> |
| 55 | </dependency> |
| 56 | |
| 57 | </dependencies> |
| 58 | |
| 59 | |
| 60 | </project> |