Step version to 1.11.2-SNAPSHOT
[sdc.git] / catalog-be-plugins / etsi-nfv-nsd-csar-plugin / pom.xml
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"
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>
27     <version>1.11.2-SNAPSHOT</version>
28   </parent>
29   <modelVersion>4.0.0</modelVersion>
30
31   <artifactId>etsi-nfv-nsd-csar-plugin</artifactId>
32
33   <properties>
34     <hamcrest.version>2.2</hamcrest.version>
35   </properties>
36
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>
44       <exclusions>
45         <exclusion>
46           <groupId>org.eclipse.jetty</groupId>
47           <artifactId>jetty-http</artifactId>
48         </exclusion>
49         <exclusion>
50           <groupId>org.eclipse.jetty</groupId>
51           <artifactId>jetty-servlets</artifactId>
52         </exclusion>
53         <exclusion>
54           <groupId>org.springframework</groupId>
55           <artifactId>spring-core</artifactId>
56         </exclusion>
57         <exclusion>
58           <groupId>org.springframework</groupId>
59           <artifactId>spring-expression</artifactId>
60         </exclusion>
61         <exclusion>
62           <groupId>org.springframework</groupId>
63           <artifactId>spring-web</artifactId>
64         </exclusion>
65         <exclusion>
66           <groupId>org.springframework</groupId>
67           <artifactId>spring-webmvc</artifactId>
68         </exclusion>
69         <exclusion>
70           <groupId>com.fasterxml.jackson.core</groupId>
71           <artifactId>jackson-core</artifactId>
72         </exclusion>
73         <exclusion>
74           <groupId>com.fasterxml.jackson.core</groupId>
75           <artifactId>jackson-databind</artifactId>
76         </exclusion>
77         <exclusion>
78           <groupId>ch.qos.logback</groupId>
79           <artifactId>logback-classic</artifactId>
80         </exclusion>
81       </exclusions>
82     </dependency>
83     <dependency>
84       <groupId>org.springframework</groupId>
85       <artifactId>spring-core</artifactId>
86       <version>${spring.version}</version>
87     </dependency>
88
89     <!--test dependencies-->
90     <dependency>
91       <groupId>org.hamcrest</groupId>
92       <artifactId>hamcrest</artifactId>
93       <version>${hamcrest.version}</version>
94       <scope>test</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.hamcrest</groupId>
98       <artifactId>hamcrest-library</artifactId>
99       <version>${hamcrest.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.junit.jupiter</groupId>
104       <artifactId>junit-jupiter-params</artifactId>
105       <version>${junitJupiter.version}</version>
106       <scope>test</scope>
107     </dependency>
108   </dependencies>
109
110   <build>
111     <finalName>etsi-nfv-nsd-csar-plugin</finalName>
112   </build>
113 </project>