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" |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 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> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 6 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 7 | <artifactId>application-config-rest-services</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 8 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>application-config-rest</artifactId> |
MichaelMorris | 58787cb | 2021-09-20 09:11:18 +0100 | [diff] [blame^] | 12 | <version>1.9.2-SNAPSHOT</version> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 13 | </parent> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 14 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 15 | <dependencies> |
aribeiro | 6909f0c | 2020-05-27 11:37:44 +0100 | [diff] [blame] | 16 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 17 | <dependency> |
| 18 | <groupId>io.swagger.core.v3</groupId> |
| 19 | <artifactId>swagger-annotations</artifactId> |
| 20 | <version>${swagger.version}</version> |
| 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> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame] | 31 | <exclusions> |
| 32 | <exclusion> |
| 33 | <groupId>org.springframework</groupId> |
| 34 | <artifactId>spring-expression</artifactId> |
| 35 | </exclusion> |
| 36 | <exclusion> |
| 37 | <groupId>org.springframework</groupId> |
| 38 | <artifactId>spring-core</artifactId> |
| 39 | </exclusion> |
| 40 | </exclusions> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>javax.inject</groupId> |
| 44 | <artifactId>javax.inject</artifactId> |
| 45 | <version>${javax.inject.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.openecomp.sdc</groupId> |
| 49 | <artifactId>openecomp-sdc-application-config-manager</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.openecomp.sdc</groupId> |
| 54 | <artifactId>application-config-rest-types</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.openecomp.sdc</groupId> |
| 59 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | <!-- CXF --> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.cxf</groupId> |
| 65 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 66 | <version>${cxf.version}</version> |
sebdet | fe50eeb | 2020-09-16 11:42:49 +0200 | [diff] [blame] | 67 | <exclusions> |
| 68 | <exclusion> |
| 69 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 70 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 71 | </exclusion> |
| 72 | </exclusions> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 75 | <groupId>org.springframework</groupId> |
| 76 | <artifactId>spring-web</artifactId> |
| 77 | <scope>test</scope> |
| 78 | <version>${spring.framework.version}</version> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame] | 79 | <exclusions> |
| 80 | <exclusion> |
| 81 | <groupId>org.springframework</groupId> |
| 82 | <artifactId>spring-core</artifactId> |
| 83 | </exclusion> |
| 84 | </exclusions> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.glassfish.jersey.core</groupId> |
| 88 | <artifactId>jersey-common</artifactId> |
vasraz | 086406a | 2021-02-22 09:50:07 +0000 | [diff] [blame] | 89 | <version>${jersey-bom.version}</version> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.glassfish.jersey.core</groupId> |
| 94 | <artifactId>jersey-server</artifactId> |
vasraz | 086406a | 2021-02-22 09:50:07 +0000 | [diff] [blame] | 95 | <version>${jersey-bom.version}</version> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | </dependencies> |
| 99 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 100 | </project> |