blob: e40bd7a1554195b0cf634738191bd1adc5eabd71 [file] [log] [blame]
andre.schmid4188b202020-08-21 11:40:56 +01001<?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"
sebdet591810d2020-09-17 15:07:23 +020022 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>
ChrisCe407cea2020-10-30 16:44:46 +010027 <version>1.8.0-SNAPSHOT</version>
sebdet591810d2020-09-17 15:07:23 +020028 </parent>
29 <modelVersion>4.0.0</modelVersion>
andre.schmid4188b202020-08-21 11:40:56 +010030
sebdet591810d2020-09-17 15:07:23 +020031 <artifactId>etsi-nfv-nsd-csar-plugin</artifactId>
andre.schmid4188b202020-08-21 11:40:56 +010032
sebdet591810d2020-09-17 15:07:23 +020033 <properties>
34 <hamcrest.version>2.2</hamcrest.version>
35 </properties>
andre.schmid4188b202020-08-21 11:40:56 +010036
sebdet591810d2020-09-17 15:07:23 +020037 <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>
44 </dependency>
andre.schmid4188b202020-08-21 11:40:56 +010045
sebdet591810d2020-09-17 15:07:23 +020046 <!--test dependencies-->
47 <dependency>
48 <groupId>org.hamcrest</groupId>
49 <artifactId>hamcrest</artifactId>
50 <version>${hamcrest.version}</version>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.hamcrest</groupId>
55 <artifactId>hamcrest-library</artifactId>
56 <version>${hamcrest.version}</version>
57 <scope>test</scope>
58 </dependency>
59 </dependencies>
andre.schmid4188b202020-08-21 11:40:56 +010060
sebdet591810d2020-09-17 15:07:23 +020061 <build>
62 <finalName>etsi-nfv-nsd-csar-plugin</finalName>
63 </build>
andre.schmid4188b202020-08-21 11:40:56 +010064</project>