Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
vempo | cc628e4 | 2018-11-17 22:18:53 +0200 | [diff] [blame] | 2 | <!-- |
| 3 | ~ Copyright © 2016-2018 European Support Limited |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
| 17 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 19 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 23 | <name>openecomp-sdc-common-rest</name> |
| 24 | <parent> |
| 25 | <groupId>org.openecomp.sdc</groupId> |
| 26 | <artifactId>openecomp-sdc-rest-webapp</artifactId> |
Fiete Ostkamp | 0a08974 | 2024-04-09 10:02:53 +0200 | [diff] [blame^] | 27 | <version>1.13.7-SNAPSHOT</version> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 28 | </parent> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 29 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 30 | <properties> |
| 31 | </properties> |
Tomasz Golabek | cc78e0c | 2019-08-21 09:18:38 +0200 | [diff] [blame] | 32 | |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.openecomp.sdc</groupId> |
| 36 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | <scope>runtime</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.openecomp.sdc.core</groupId> |
| 42 | <artifactId>openecomp-utilities-lib</artifactId> |
| 43 | <version>${project.version}</version> |
vasraz | fc768c6 | 2022-10-14 10:51:11 +0100 | [diff] [blame] | 44 | <exclusions> |
| 45 | <exclusion> |
| 46 | <groupId>org.eclipse.jetty</groupId> |
| 47 | <artifactId>jetty-server</artifactId> |
| 48 | </exclusion> |
| 49 | <exclusion> |
| 50 | <groupId>org.eclipse.jetty</groupId> |
| 51 | <artifactId>jetty-servlet</artifactId> |
| 52 | </exclusion> |
| 53 | </exclusions> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.openecomp.sdc.core</groupId> |
| 57 | <artifactId>openecomp-common-lib</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
vasraz | dfe98bd | 2023-07-05 22:22:43 +0100 | [diff] [blame] | 61 | <groupId>jakarta.ws.rs</groupId> |
| 62 | <artifactId>jakarta.ws.rs-api</artifactId> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 63 | <version>${ws.rs.version}</version> |
| 64 | </dependency> |
| 65 | <!-- Swagger --> |
| 66 | <dependency> |
| 67 | <groupId>io.swagger.core.v3</groupId> |
| 68 | <artifactId>swagger-core</artifactId> |
| 69 | <version>${swagger.version}</version> |
| 70 | <scope>compile</scope> |
vasraz | af63ad9 | 2023-06-01 18:37:12 +0100 | [diff] [blame] | 71 | <exclusions> |
| 72 | <exclusion> |
| 73 | <groupId>com.fasterxml.jackson.datatype</groupId> |
| 74 | <artifactId>jackson-datatype-jsr310</artifactId> |
| 75 | </exclusion> |
| 76 | </exclusions> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.openecomp.sdc.core</groupId> |
| 80 | <artifactId>openecomp-session-lib</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 84 | <groupId>org.glassfish.jersey.core</groupId> |
| 85 | <artifactId>jersey-common</artifactId> |
| 86 | <version>${jersey-bom.version}</version> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
ys9693 | 16a9fce | 2020-01-19 13:50:02 +0200 | [diff] [blame] | 89 | </dependencies> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 90 | |
Wojciech Sliwka | 38b3b95 | 2019-07-03 08:38:28 +0200 | [diff] [blame] | 91 | </project> |