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 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 21 | <groupId>org.openecomp.sdc.core</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 22 | <name>openecomp-heat-lib</name> |
| 23 | <artifactId>openecomp-heat-lib</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 24 | |
| 25 | <parent> |
| 26 | <artifactId>openecomp-sdc-lib</artifactId> |
| 27 | <groupId>org.openecomp.sdc</groupId> |
Michael Lando | 1276ee1 | 2018-11-01 16:25:31 +0200 | [diff] [blame] | 28 | <version>1.3.2-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 29 | </parent> |
| 30 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 31 | <dependencies> |
| 32 | <dependency> |
siddharth0905 | 2b7766d | 2018-09-20 10:00:37 +0300 | [diff] [blame] | 33 | <groupId>org.projectlombok</groupId> |
| 34 | <artifactId>lombok</artifactId> |
vempo | 2da911f | 2018-11-01 20:27:39 +0200 | [diff] [blame^] | 35 | <scope>provided</scope> |
siddharth0905 | 2b7766d | 2018-09-20 10:00:37 +0300 | [diff] [blame] | 36 | </dependency> |
| 37 | <dependency> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 38 | <groupId>org.onap.sdc.common</groupId> |
| 39 | <artifactId>onap-configuration-management-core</artifactId> |
vempo | 494e442 | 2018-07-18 17:10:01 +0300 | [diff] [blame] | 40 | <version>${project.version}</version> |
shrek2000 | c8a540b | 2017-09-11 15:45:37 +0300 | [diff] [blame] | 41 | <scope>runtime</scope> |
shrek2000 | c8a540b | 2017-09-11 15:45:37 +0300 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 44 | <groupId>org.onap.sdc.common</groupId> |
| 45 | <artifactId>onap-tosca-datatype</artifactId> |
vempo | 494e442 | 2018-07-18 17:10:01 +0300 | [diff] [blame] | 46 | <version>${project.version}</version> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 49 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 50 | <artifactId>openecomp-utilities-lib</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.openecomp.sdc</groupId> |
| 55 | <artifactId>openecomp-sdc-datatypes-lib</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 59 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 60 | <artifactId>openecomp-common-lib</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>ch.qos.logback</groupId> |
| 65 | <artifactId>logback-classic</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 66 | <version>${logback.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>junit</groupId> |
| 70 | <artifactId>junit</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 71 | <scope>test</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.openecomp.sdc</groupId> |
| 75 | <artifactId>openecomp-sdc-validation-api</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | </dependency> |
vempo | 9125b48 | 2018-10-24 17:18:03 +0300 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.mockito</groupId> |
| 80 | <artifactId>mockito-core</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 83 | </dependencies> |
| 84 | |
shrikantawachar | 9a69925 | 2018-04-06 11:07:00 +0530 | [diff] [blame] | 85 | |
shrek2000 | c8a540b | 2017-09-11 15:45:37 +0300 | [diff] [blame] | 86 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 87 | </project> |