vempo | 2da911f | 2018-11-01 20:27:39 +0200 | [diff] [blame] | 1 | <!-- |
| 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 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 17 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xmlns="http://maven.apache.org/POM/4.0.0" |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 19 | 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 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 22 | <name>openecomp-sdc-validation-impl</name> |
| 23 | <artifactId>openecomp-sdc-validation-impl</artifactId> |
| 24 | |
| 25 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.openecomp.sdc</groupId> |
| 28 | <artifactId>openecomp-sdc-lib</artifactId> |
Sonsino, Ofir (os0695) | 55c536e | 2019-05-07 18:30:15 +0300 | [diff] [blame^] | 29 | <version>1.5.0-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 30 | <relativePath>../..</relativePath> |
| 31 | </parent> |
| 32 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 35 | <groupId>ch.qos.logback</groupId> |
| 36 | <artifactId>logback-classic</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 37 | <version>${logback.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 38 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 39 | <dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 40 | <groupId>org.openecomp.sdc</groupId> |
| 41 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 42 | <version>${project.version}</version> |
vempo | acd7ec0 | 2018-01-28 14:39:56 +0200 | [diff] [blame] | 43 | <scope>runtime</scope> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
Michael Lando | efa037d | 2017-02-19 12:57:33 +0200 | [diff] [blame] | 46 | <groupId>org.openecomp.sdc</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 47 | <artifactId>openecomp-sdc-logging-api</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>junit</groupId> |
| 52 | <artifactId>junit</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 56 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 57 | <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 Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 66 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 67 | <artifactId>openecomp-common-lib</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.mockito</groupId> |
vempo | 2da911f | 2018-11-01 20:27:39 +0200 | [diff] [blame] | 72 | <artifactId>mockito-core</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 73 | <scope>test</scope> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 74 | </dependency> |
| 75 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 76 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 77 | <artifactId>openecomp-heat-lib</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 91 | </dependencies> |
| 92 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 93 | </project> |