Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [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 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | <artifactId>application-config-rest-services</artifactId> |
| 8 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>application-config-rest</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 12 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 13 | </parent> |
| 14 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 15 | <dependencies> |
| 16 | |
| 17 | <dependency> |
| 18 | <groupId>io.swagger</groupId> |
| 19 | <artifactId>swagger-annotations</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 20 | <version>${swagger.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>javax.ws.rs</groupId> |
| 24 | <artifactId>javax.ws.rs-api</artifactId> |
| 25 | <version>${ws.rs.version}</version> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>org.springframework</groupId> |
| 29 | <artifactId>spring-context</artifactId> |
| 30 | <version>${spring.framework.version}</version> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>javax.inject</groupId> |
| 34 | <artifactId>javax.inject</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 35 | <version>${javax.inject.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.openecomp.sdc</groupId> |
| 39 | <artifactId>openecomp-sdc-application-config-manager</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.openecomp.sdc</groupId> |
| 44 | <artifactId>application-config-rest-types</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.openecomp.sdc</groupId> |
| 49 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <!-- CXF --> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.cxf</groupId> |
| 55 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 56 | <version>${cxf.version}</version> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | |
| 60 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 61 | </project> |