blob: 0360cce94b2d646cf211e71aecc93f5db4951b5c [file] [log] [blame]
vempo2da911f2018-11-01 20:27:39 +02001<!--
2 ~ Copyright © 2016-2018 European Support Limited
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
AviZi280f8012017-06-09 02:39:56 +030017<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18 xmlns="http://maven.apache.org/POM/4.0.0"
Michael Landof5f13c42017-02-19 12:35:04 +020019 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
AviZi280f8012017-06-09 02:39:56 +030022 <name>openecomp-sdc-validation-impl</name>
23 <artifactId>openecomp-sdc-validation-impl</artifactId>
24
25
Michael Landof5f13c42017-02-19 12:35:04 +020026 <parent>
27 <groupId>org.openecomp.sdc</groupId>
28 <artifactId>openecomp-sdc-lib</artifactId>
Sonsino, Ofir (os0695)55c536e2019-05-07 18:30:15 +030029 <version>1.5.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020030 <relativePath>../..</relativePath>
31 </parent>
32
Michael Landof5f13c42017-02-19 12:35:04 +020033 <dependencies>
34 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020035 <groupId>ch.qos.logback</groupId>
36 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030037 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020038 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020039 <dependency>
AviZi280f8012017-06-09 02:39:56 +030040 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-logging-core</artifactId>
42 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020043 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020044 </dependency>
45 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020046 <groupId>org.openecomp.sdc</groupId>
AviZi280f8012017-06-09 02:39:56 +030047 <artifactId>openecomp-sdc-logging-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030053 <scope>test</scope>
54 </dependency>
55 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030056 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020057 <artifactId>openecomp-utilities-lib</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.sdc</groupId>
62 <artifactId>openecomp-sdc-validation-api</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030066 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020067 <artifactId>openecomp-common-lib</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.mockito</groupId>
vempo2da911f2018-11-01 20:27:39 +020072 <artifactId>mockito-core</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020073 <scope>test</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020074 </dependency>
75 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030076 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020077 <artifactId>openecomp-heat-lib</artifactId>
78 <version>${project.version}</version>
79 </dependency>
AviZi280f8012017-06-09 02:39:56 +030080 <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>
Michael Landof5f13c42017-02-19 12:35:04 +020091 </dependencies>
92
AviZi280f8012017-06-09 02:39:56 +030093</project>