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" |
| 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 | |
| 23 | <artifactId>externaltesting-rest-services</artifactId> |
| 24 | <parent> |
| 25 | <groupId>org.openecomp.sdc.onboarding</groupId> |
| 26 | <artifactId>externaltesting-rest</artifactId> |
Ofir Sonsino | 09d8789 | 2020-03-12 20:52:42 +0200 | [diff] [blame] | 27 | <version>1.7.0-SNAPSHOT</version> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 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> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.springframework</groupId> |
| 43 | <artifactId>spring-context-support</artifactId> |
| 44 | <version>${spring.framework.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.springframework</groupId> |
| 48 | <artifactId>spring-web</artifactId> |
| 49 | <version>${spring.framework.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.springframework</groupId> |
| 53 | <artifactId>spring-beans</artifactId> |
| 54 | <version>${spring.framework.version}</version> |
| 55 | </dependency> |
| 56 | |
| 57 | <!-- CXF --> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.cxf</groupId> |
| 60 | <artifactId>cxf-rt-frontend-jaxrs</artifactId> |
| 61 | <version>${cxf.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.httpcomponents</groupId> |
| 65 | <artifactId>httpclient</artifactId> |
| 66 | <version>${http.client.version}</version> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>javax.inject</groupId> |
| 70 | <artifactId>javax.inject</artifactId> |
| 71 | <version>${javax.inject.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>javax.ws.rs</groupId> |
| 76 | <artifactId>javax.ws.rs-api</artifactId> |
| 77 | <version>${ws.rs.version}</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>com.sun.jersey</groupId> |
| 81 | <artifactId>jersey-core</artifactId> |
| 82 | <version>${jersey.core.version}</version> |
| 83 | <exclusions> |
| 84 | <exclusion> |
| 85 | <groupId>javax.ws.rs</groupId> |
| 86 | <artifactId>jsr311-api</artifactId> |
| 87 | </exclusion> |
| 88 | </exclusions> |
| 89 | </dependency> |
| 90 | <dependency> |
Wojciech Sliwka | 38b3b95 | 2019-07-03 08:38:28 +0200 | [diff] [blame] | 91 | <groupId>io.swagger.core.v3</groupId> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 92 | <artifactId>swagger-annotations</artifactId> |
| 93 | <version>${swagger.version}</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>com.fasterxml.jackson.core</groupId> |
| 97 | <artifactId>jackson-annotations</artifactId> |
| 98 | <version>${jackson.annotations.version}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 102 | <artifactId>jackson-dataformat-xml</artifactId> |
| 103 | <version>${jackson.dataformat.version}</version> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.codehaus.woodstox</groupId> |
| 107 | <artifactId>woodstox-core-asl</artifactId> |
| 108 | <version>${woodstox.version}</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.openecomp.sdc</groupId> |
| 112 | <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>com.sun.jersey.contribs</groupId> |
| 117 | <artifactId>jersey-multipart</artifactId> |
| 118 | <version>${jersey.multipart.version}</version> |
| 119 | <scope>provided</scope> |
| 120 | </dependency> |
| 121 | <dependency> |
atulpurohit | 39116c7 | 2019-11-01 15:01:03 +0530 | [diff] [blame] | 122 | <groupId>org.openecomp.sdc</groupId> |
| 123 | <artifactId>openecomp-sdc-common-rest</artifactId> |
| 124 | <version>${project.version}</version> |
| 125 | </dependency> |
| 126 | <dependency> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 127 | <groupId>junit</groupId> |
| 128 | <artifactId>junit</artifactId> |
| 129 | <scope>test</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
atulpurohit | 39116c7 | 2019-11-01 15:01:03 +0530 | [diff] [blame] | 132 | <groupId>org.mockito</groupId> |
| 133 | <artifactId>mockito-core</artifactId> |
| 134 | <scope>test</scope> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 135 | </dependency> |
| 136 | <dependency> |
atulpurohit | 39116c7 | 2019-11-01 15:01:03 +0530 | [diff] [blame] | 137 | <groupId>org.powermock</groupId> |
| 138 | <artifactId>powermock-module-junit4-common</artifactId> |
| 139 | <version>${powermock.version}</version> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.powermock</groupId> |
| 144 | <artifactId>powermock-api-mockito2</artifactId> |
| 145 | <version>${powermock.version}</version> |
| 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.powermock</groupId> |
| 150 | <artifactId>powermock-module-junit4</artifactId> |
| 151 | <version>${powermock.version}</version> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.openecomp.sdc</groupId> |
| 156 | <artifactId>openecomp-sdc-externaltesting-impl</artifactId> |
| 157 | <version>${project.version}</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>javax.servlet</groupId> |
| 161 | <artifactId>javax.servlet-api</artifactId> |
| 162 | <scope>provided</scope> |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 163 | </dependency> |
Arindam Mondal | 0346c88 | 2020-04-13 16:35:14 +0900 | [diff] [blame^] | 164 | <dependency> |
| 165 | <groupId>com.sun.activation</groupId> |
| 166 | <artifactId>javax.activation</artifactId> |
| 167 | <version>1.2.0</version> |
| 168 | </dependency> |
| 169 | |
Vodafone | 84a2098 | 2019-03-18 15:08:33 +0530 | [diff] [blame] | 170 | </dependencies> |
| 171 | |
| 172 | </project> |