blob: 752ac90b65e2b83c3183334c51c1f600b212a368 [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"
andre.schmid87eec9a2021-01-20 12:20:40 +000022 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>
MichaelMorris0560a3a2023-10-27 18:18:46 +010027 <version>1.13.6-SNAPSHOT</version>
andre.schmid87eec9a2021-01-20 12:20:40 +000028 </parent>
29 <modelVersion>4.0.0</modelVersion>
andre.schmid4188b202020-08-21 11:40:56 +010030
andre.schmid87eec9a2021-01-20 12:20:40 +000031 <artifactId>etsi-nfv-nsd-csar-plugin</artifactId>
andre.schmid4188b202020-08-21 11:40:56 +010032
andre.schmid87eec9a2021-01-20 12:20:40 +000033 <properties>
34 <hamcrest.version>2.2</hamcrest.version>
35 </properties>
andre.schmid4188b202020-08-21 11:40:56 +010036
andre.schmid87eec9a2021-01-20 12:20:40 +000037 <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>
vasraz086406a2021-02-22 09:50:07 +000044 <exclusions>
45 <exclusion>
46 <groupId>org.eclipse.jetty</groupId>
47 <artifactId>jetty-http</artifactId>
48 </exclusion>
vasrazc81c95b2021-05-31 23:08:39 +010049 <exclusion>
50 <groupId>org.eclipse.jetty</groupId>
51 <artifactId>jetty-servlets</artifactId>
52 </exclusion>
vasraz8dbc7322021-06-26 14:23:12 +010053 <exclusion>
vasrazfc768c62022-10-14 10:51:11 +010054 <groupId>org.eclipse.jetty</groupId>
55 <artifactId>jetty-servlet</artifactId>
56 </exclusion>
57 <exclusion>
58 <groupId>org.eclipse.jetty</groupId>
59 <artifactId>jetty-server</artifactId>
60 </exclusion>
61 <exclusion>
vasraz8dbc7322021-06-26 14:23:12 +010062 <groupId>org.springframework</groupId>
63 <artifactId>spring-core</artifactId>
64 </exclusion>
65 <exclusion>
66 <groupId>org.springframework</groupId>
67 <artifactId>spring-expression</artifactId>
68 </exclusion>
69 <exclusion>
70 <groupId>org.springframework</groupId>
71 <artifactId>spring-web</artifactId>
72 </exclusion>
73 <exclusion>
74 <groupId>org.springframework</groupId>
75 <artifactId>spring-webmvc</artifactId>
76 </exclusion>
vasraz7edf3d32021-08-18 13:54:08 +010077 <exclusion>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-core</artifactId>
80 </exclusion>
81 <exclusion>
82 <groupId>com.fasterxml.jackson.core</groupId>
83 <artifactId>jackson-databind</artifactId>
84 </exclusion>
vasraz987fc742021-11-29 17:42:02 +000085 <exclusion>
86 <groupId>ch.qos.logback</groupId>
87 <artifactId>logback-classic</artifactId>
88 </exclusion>
vasraze4055452022-07-13 23:11:18 +010089 <exclusion>
90 <groupId>org.functionaljava</groupId>
91 <artifactId>functionaljava</artifactId>
92 </exclusion>
vasraz086406a2021-02-22 09:50:07 +000093 </exclusions>
andre.schmid87eec9a2021-01-20 12:20:40 +000094 </dependency>
vasraz8dbc7322021-06-26 14:23:12 +010095 <dependency>
96 <groupId>org.springframework</groupId>
97 <artifactId>spring-core</artifactId>
98 <version>${spring.version}</version>
99 </dependency>
vasraze4055452022-07-13 23:11:18 +0100100 <dependency>
101 <groupId>org.functionaljava</groupId>
102 <artifactId>functionaljava</artifactId>
103 <version>${functionaljava.version}</version>
104 </dependency>
andre.schmid4188b202020-08-21 11:40:56 +0100105
andre.schmid87eec9a2021-01-20 12:20:40 +0000106 <!--test dependencies-->
107 <dependency>
108 <groupId>org.hamcrest</groupId>
109 <artifactId>hamcrest</artifactId>
110 <version>${hamcrest.version}</version>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.hamcrest</groupId>
115 <artifactId>hamcrest-library</artifactId>
116 <version>${hamcrest.version}</version>
117 <scope>test</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.junit.jupiter</groupId>
121 <artifactId>junit-jupiter-params</artifactId>
122 <version>${junitJupiter.version}</version>
123 <scope>test</scope>
124 </dependency>
125 </dependencies>
andre.schmid4188b202020-08-21 11:40:56 +0100126
andre.schmid87eec9a2021-01-20 12:20:40 +0000127 <build>
128 <finalName>etsi-nfv-nsd-csar-plugin</finalName>
129 </build>
vasrazfc768c62022-10-14 10:51:11 +0100130</project>