andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ Copyright (C) 2020 Nordix Foundation |
| 5 | ~ ================================================================================ |
| 6 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | ~ you may not use this file except in compliance with the License. |
| 8 | ~ You may obtain a copy of the License at |
| 9 | ~ |
| 10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 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 | ~ SPDX-License-Identifier: Apache-2.0 |
| 18 | ~ ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 22 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <parent> |
| 25 | <artifactId>catalog-be-plugins</artifactId> |
| 26 | <groupId>org.openecomp.sdc</groupId> |
ChrisC | 00acf3d | 2021-03-22 13:54:06 +0100 | [diff] [blame] | 27 | <version>1.9.0-SNAPSHOT</version> |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | <modelVersion>4.0.0</modelVersion> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 30 | |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 31 | <artifactId>etsi-nfv-nsd-csar-plugin</artifactId> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 32 | |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 33 | <properties> |
| 34 | <hamcrest.version>2.2</hamcrest.version> |
| 35 | </properties> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 36 | |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 37 | <dependencies> |
| 38 | <!--catalog-be dependencies--> |
| 39 | <dependency> |
| 40 | <groupId>org.openecomp.sdc</groupId> |
| 41 | <artifactId>catalog-be</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | <classifier>classes</classifier> |
vasraz | 086406a | 2021-02-22 09:50:07 +0000 | [diff] [blame] | 44 | <exclusions> |
| 45 | <exclusion> |
| 46 | <groupId>org.eclipse.jetty</groupId> |
| 47 | <artifactId>jetty-http</artifactId> |
| 48 | </exclusion> |
| 49 | </exclusions> |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 50 | </dependency> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 51 | |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 52 | <!--test dependencies--> |
| 53 | <dependency> |
| 54 | <groupId>org.hamcrest</groupId> |
| 55 | <artifactId>hamcrest</artifactId> |
| 56 | <version>${hamcrest.version}</version> |
| 57 | <scope>test</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.hamcrest</groupId> |
| 61 | <artifactId>hamcrest-library</artifactId> |
| 62 | <version>${hamcrest.version}</version> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.junit.jupiter</groupId> |
| 67 | <artifactId>junit-jupiter-params</artifactId> |
| 68 | <version>${junitJupiter.version}</version> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | </dependencies> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 72 | |
andre.schmid | 87eec9a | 2021-01-20 12:20:40 +0000 | [diff] [blame] | 73 | <build> |
| 74 | <finalName>etsi-nfv-nsd-csar-plugin</finalName> |
| 75 | </build> |
andre.schmid | 4188b20 | 2020-08-21 11:40:56 +0100 | [diff] [blame] | 76 | </project> |