Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright © 2019 iconectiv |
| 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 | |
| 18 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [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> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 22 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 23 | <artifactId>externaltesting-rest-services</artifactId> |
| 24 | <parent> |
| 25 | <groupId>org.openecomp.sdc.onboarding</groupId> |
| 26 | <artifactId>externaltesting-rest</artifactId> |
MichaelMorris | 0560a3a | 2023-10-27 18:18:46 +0100 | [diff] [blame] | 27 | <version>1.13.6-SNAPSHOT</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 28 | </parent> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 29 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>org.springframework</groupId> |
| 33 | <artifactId>spring-core</artifactId> |
| 34 | <version>${spring.framework.version}</version> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.springframework</groupId> |
| 38 | <artifactId>spring-context</artifactId> |
| 39 | <version>${spring.framework.version}</version> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame] | 40 | <exclusions> |
| 41 | <exclusion> |
| 42 | <groupId>org.springframework</groupId> |
| 43 | <artifactId>spring-expression</artifactId> |
| 44 | </exclusion> |
| 45 | <exclusion> |
| 46 | <groupId>org.springframework</groupId> |
| 47 | <artifactId>spring-core</artifactId> |
| 48 | </exclusion> |
| 49 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.springframework</groupId> |
| 53 | <artifactId>spring-context-support</artifactId> |
| 54 | <version>${spring.framework.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.springframework</groupId> |
| 58 | <artifactId>spring-web</artifactId> |
| 59 | <version>${spring.framework.version}</version> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame] | 60 | <exclusions> |
| 61 | <exclusion> |
| 62 | <groupId>org.springframework</groupId> |
| 63 | <artifactId>spring-core</artifactId> |
| 64 | </exclusion> |
| 65 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.springframework</groupId> |
| 69 | <artifactId>spring-beans</artifactId> |
| 70 | <version>${spring.framework.version}</version> |
| 71 | </dependency> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 72 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 73 | <!-- CXF --> |
| 74 | <dependency> |
| 75 | <groupId>org.apache.cxf</groupId> |
| 76 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 77 | <version>${cxf.version}</version> |
sebdet | fe50eeb | 2020-09-16 11:42:49 +0200 | [diff] [blame] | 78 | <exclusions> |
| 79 | <exclusion> |
| 80 | <groupId>org.jboss.spec.javax.rmi</groupId> |
| 81 | <artifactId>jboss-rmi-api_1.0_spec</artifactId> |
| 82 | </exclusion> |
| 83 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
vasraz | dfe98bd | 2023-07-05 22:22:43 +0100 | [diff] [blame] | 86 | <groupId>org.apache.httpcomponents.client5</groupId> |
| 87 | <artifactId>httpclient5</artifactId> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 88 | <version>${http.client.version}</version> |
vasraz | 987fc74 | 2021-11-29 17:42:02 +0000 | [diff] [blame] | 89 | <exclusions> |
| 90 | <exclusion> |
| 91 | <groupId>org.apache.httpcomponents</groupId> |
| 92 | <artifactId>httpcore</artifactId> |
| 93 | </exclusion> |
| 94 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>javax.inject</groupId> |
| 98 | <artifactId>javax.inject</artifactId> |
| 99 | <version>${javax.inject.version}</version> |
| 100 | <scope>provided</scope> |
| 101 | </dependency> |
| 102 | <dependency> |
vasraz | dfe98bd | 2023-07-05 22:22:43 +0100 | [diff] [blame] | 103 | <groupId>jakarta.ws.rs</groupId> |
| 104 | <artifactId>jakarta.ws.rs-api</artifactId> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 105 | <version>${ws.rs.version}</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>com.sun.jersey</groupId> |
| 109 | <artifactId>jersey-core</artifactId> |
| 110 | <version>${jersey.core.version}</version> |
| 111 | <exclusions> |
| 112 | <exclusion> |
| 113 | <groupId>javax.ws.rs</groupId> |
| 114 | <artifactId>jsr311-api</artifactId> |
| 115 | </exclusion> |
| 116 | </exclusions> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>io.swagger.core.v3</groupId> |
| 120 | <artifactId>swagger-annotations</artifactId> |
| 121 | <version>${swagger.version}</version> |
| 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>com.fasterxml.jackson.core</groupId> |
| 125 | <artifactId>jackson-annotations</artifactId> |
| 126 | <version>${jackson.annotations.version}</version> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 130 | <artifactId>jackson-dataformat-xml</artifactId> |
| 131 | <version>${jackson.dataformat.version}</version> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.codehaus.woodstox</groupId> |
| 135 | <artifactId>woodstox-core-asl</artifactId> |
| 136 | <version>${woodstox.version}</version> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.openecomp.sdc</groupId> |
| 140 | <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> |
| 141 | <version>${project.version}</version> |
vasraz | 8dbc732 | 2021-06-26 14:23:12 +0100 | [diff] [blame] | 142 | <exclusions> |
| 143 | <exclusion> |
| 144 | <groupId>org.springframework</groupId> |
| 145 | <artifactId>spring-core</artifactId> |
| 146 | </exclusion> |
| 147 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>com.sun.jersey.contribs</groupId> |
| 151 | <artifactId>jersey-multipart</artifactId> |
| 152 | <version>${jersey.multipart.version}</version> |
| 153 | <scope>provided</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.openecomp.sdc</groupId> |
| 157 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 158 | <version>${project.version}</version> |
| 159 | </dependency> |
| 160 | <dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 161 | <groupId>org.openecomp.sdc</groupId> |
| 162 | <artifactId>openecomp-sdc-externaltesting-impl</artifactId> |
| 163 | <version>${project.version}</version> |
| 164 | </dependency> |
| 165 | <dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 166 | <groupId>com.sun.activation</groupId> |
| 167 | <artifactId>javax.activation</artifactId> |
| 168 | <version>1.2.0</version> |
| 169 | </dependency> |
Arindam Mondal | 0346c88 | 2020-04-13 16:35:14 +0900 | [diff] [blame] | 170 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 171 | </dependencies> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 172 | |
| 173 | </project> |