blob: c1abf6c36f743bf474e35b62b02b4bff05cf2394 [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
Joanna Jeremicze3de4c92021-04-21 13:59:12 +02003 ~ Copyright © 2020-2021 Nokia
vempo2da911f2018-11-01 20:27:39 +02004 ~
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
AviZi280f8012017-06-09 02:39:56 +030018<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
MichaelMorris222555c2023-06-02 11:38:36 +000019 xmlns="http://maven.apache.org/POM/4.0.0"
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>
Michael Landof5f13c42017-02-19 12:35:04 +020022
MichaelMorris222555c2023-06-02 11:38:36 +000023 <name>openecomp-sdc-validation-impl</name>
24 <artifactId>openecomp-sdc-validation-impl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030025
26
MichaelMorris222555c2023-06-02 11:38:36 +000027 <parent>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-validation-lib</artifactId>
MichaelMorris0560a3a2023-10-27 18:18:46 +010030 <version>1.13.6-SNAPSHOT</version>
MichaelMorris222555c2023-06-02 11:38:36 +000031 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020032
MichaelMorris222555c2023-06-02 11:38:36 +000033 <dependencies>
34 <dependency>
35 <groupId>ch.qos.logback</groupId>
36 <artifactId>logback-classic</artifactId>
37 <version>${logback.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-logging-core</artifactId>
42 <version>${project.version}</version>
43 <scope>runtime</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.openecomp.sdc</groupId>
47 <artifactId>openecomp-sdc-logging-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.openecomp.sdc.core</groupId>
52 <artifactId>openecomp-utilities-lib</artifactId>
53 <version>${project.version}</version>
54 <exclusions>
55 <exclusion>
56 <groupId>org.eclipse.jetty</groupId>
57 <artifactId>jetty-server</artifactId>
58 </exclusion>
59 <exclusion>
60 <groupId>org.eclipse.jetty</groupId>
61 <artifactId>jetty-servlet</artifactId>
62 </exclusion>
63 </exclusions>
64 </dependency>
65 <dependency>
66 <groupId>org.openecomp.sdc</groupId>
67 <artifactId>openecomp-sdc-validation-api</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.openecomp.sdc.core</groupId>
72 <artifactId>openecomp-common-lib</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.openecomp.sdc.core</groupId>
77 <artifactId>openecomp-heat-lib</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>commons-io</groupId>
82 <artifactId>commons-io</artifactId>
83 <version>${commons.io.version}</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.openecomp.sdc</groupId>
88 <artifactId>openecomp-sdc-validation-core</artifactId>
89 <version>${project.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>org.onap.vnfsdk.validation</groupId>
93 <artifactId>validation-pmdictionary</artifactId>
94 <version>${onap.vnfsdk.validation.pmdictionary.version}</version>
95 <exclusions>
96 <exclusion>
97 <groupId>org.apache.logging.log4j</groupId>
98 <artifactId>log4j-slf4j-impl</artifactId>
99 </exclusion>
100 </exclusions>
101 </dependency>
102 <dependency>
103 <groupId>io.vavr</groupId>
104 <artifactId>vavr</artifactId>
105 <version>${io.vavr.version}</version>
106 </dependency>
107 <dependency>
108 <groupId>org.apache.httpcomponents</groupId>
109 <artifactId>httpmime</artifactId>
vasrazdfe98bd2023-07-05 22:22:43 +0100110 <version>${httpmime.version}</version>
MichaelMorris222555c2023-06-02 11:38:36 +0000111 <exclusions>
112 <exclusion>
113 <groupId>org.apache.httpcomponents</groupId>
114 <artifactId>httpcore</artifactId>
115 </exclusion>
116 </exclusions>
117 </dependency>
118 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +0200119
AviZi280f8012017-06-09 02:39:56 +0300120</project>