Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP : APPC |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | Copyright (C) 2017 Amdocs |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
| 20 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 21 | --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 25 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 26 | <artifactId>appc-dg-shared</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 27 | <version>1.3.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <artifactId>appc-dg-dependency-model</artifactId> |
| 31 | <packaging>jar</packaging> |
| 32 | |
| 33 | <name>appc-dg-dependency-model</name> |
| 34 | <url>http://maven.apache.org</url> |
| 35 | |
| 36 | <properties> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Masal, Sushil (sm588m) | 0500d5d | 2017-08-13 19:10:02 +0530 | [diff] [blame] | 38 | <jackson-yaml-version>2.8.1</jackson-yaml-version> |
| 39 | <snakeyaml.version>1.15</snakeyaml.version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 44 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 45 | <artifactId>appc-common</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 55 | <artifactId>jackson-dataformat-yaml</artifactId> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 56 | <version>${jackson-yaml-version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>com.fasterxml.jackson.core</groupId> |
| 60 | <artifactId>jackson-annotations</artifactId> |
| 61 | <version>${jackson-yaml-version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>com.fasterxml.jackson.core</groupId> |
| 65 | <artifactId>jackson-databind</artifactId> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 66 | <version>${jackson-yaml-version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 69 | <groupId>com.fasterxml.jackson.core</groupId> |
| 70 | <artifactId>jackson-core</artifactId> |
| 71 | <version>${jackson-yaml-version}</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.yaml</groupId> |
| 75 | <artifactId>snakeyaml</artifactId> |
| 76 | <version>${snakeyaml.version}</version> |
Masal, Sushil (sm588m) | 0500d5d | 2017-08-13 19:10:02 +0530 | [diff] [blame] | 77 | </dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 78 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 79 | <groupId>commons-io</groupId> |
| 80 | <artifactId>commons-io</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.mockito</groupId> |
| 85 | <artifactId>mockito-core</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 89 | <groupId>org.powermock</groupId> |
| 90 | <artifactId>powermock-api-mockito</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.powermock</groupId> |
| 95 | <artifactId>powermock-module-junit4</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 96 | <version>1.6.4</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 100 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 101 | <artifactId>appc-dg-domain-model-lib</artifactId> |
| 102 | <version>${project.version}</version> |
| 103 | </dependency> |
| 104 | </dependencies> |
| 105 | |
| 106 | </project> |