blob: c8f0622b1384008ef9ead776f4ae8ae7e5fe66ed [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
Adam Wudzinskiad99b802020-11-27 12:50:27 +01003 ~ Copyright © 2020 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"
vasraza36531c2020-04-29 18:39:35 +010019 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
vasraza36531c2020-04-29 18:39:35 +010023 <name>openecomp-sdc-validation-impl</name>
24 <artifactId>openecomp-sdc-validation-impl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030025
26
vasraza36531c2020-04-29 18:39:35 +010027 <parent>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-lib</artifactId>
ChrisCe407cea2020-10-30 16:44:46 +010030 <version>1.8.0-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010031 <relativePath>../..</relativePath>
32 </parent>
Michael Landof5f13c42017-02-19 12:35:04 +020033
vasraza36531c2020-04-29 18:39:35 +010034 <dependencies>
35 <dependency>
36 <groupId>ch.qos.logback</groupId>
37 <artifactId>logback-classic</artifactId>
38 <version>${logback.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.openecomp.sdc</groupId>
42 <artifactId>openecomp-sdc-logging-core</artifactId>
43 <version>${project.version}</version>
44 <scope>runtime</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.openecomp.sdc</groupId>
48 <artifactId>openecomp-sdc-logging-api</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.openecomp.sdc.core</groupId>
53 <artifactId>openecomp-utilities-lib</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.openecomp.sdc</groupId>
58 <artifactId>openecomp-sdc-validation-api</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.openecomp.sdc.core</groupId>
63 <artifactId>openecomp-common-lib</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
vasraza36531c2020-04-29 18:39:35 +010067 <groupId>org.openecomp.sdc.core</groupId>
68 <artifactId>openecomp-heat-lib</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>commons-io</groupId>
73 <artifactId>commons-io</artifactId>
74 <version>${commons.io.version}</version>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.openecomp.sdc</groupId>
79 <artifactId>openecomp-sdc-validation-core</artifactId>
80 <version>${project.version}</version>
81 </dependency>
Adam Wudzinskiad99b802020-11-27 12:50:27 +010082 <dependency>
83 <groupId>org.onap.vnfsdk.validation</groupId>
84 <artifactId>validation-pmdictionary</artifactId>
85 <version>${onap.vnfsdk.validation.pmdictionary.version}</version>
Adam Wudzinski57002752020-12-02 18:07:22 +010086 <exclusions>
87 <exclusion>
88 <groupId>org.apache.logging.log4j</groupId>
89 <artifactId>log4j-slf4j-impl</artifactId>
90 </exclusion>
91 </exclusions>
Adam Wudzinskiad99b802020-11-27 12:50:27 +010092 </dependency>
93 <dependency>
94 <groupId>io.vavr</groupId>
95 <artifactId>vavr</artifactId>
96 <version>${io.vavr.version}</version>
97 </dependency>
vasraza36531c2020-04-29 18:39:35 +010098 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020099
AviZi280f8012017-06-09 02:39:56 +0300100</project>