Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP : APPC |
| 4 | ================================================================================ |
John McClung | a802739 | 2018-06-13 15:49:08 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 20 | --> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 21 | <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"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 24 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 25 | <artifactId>appc-dg-shared</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 26 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>appc-dg-dependency-model</artifactId> |
| 30 | <packaging>jar</packaging> |
| 31 | |
| 32 | <name>appc-dg-dependency-model</name> |
| 33 | <url>http://maven.apache.org</url> |
| 34 | |
| 35 | <properties> |
| 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Masal, Sushil (sm588m) | 0500d5d | 2017-08-13 19:10:02 +0530 | [diff] [blame] | 37 | <jackson-yaml-version>2.8.1</jackson-yaml-version> |
| 38 | <snakeyaml.version>1.15</snakeyaml.version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 43 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 44 | <artifactId>appc-common</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 54 | <artifactId>jackson-dataformat-yaml</artifactId> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 55 | <version>${jackson-yaml-version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>com.fasterxml.jackson.core</groupId> |
| 59 | <artifactId>jackson-annotations</artifactId> |
| 60 | <version>${jackson-yaml-version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>com.fasterxml.jackson.core</groupId> |
| 64 | <artifactId>jackson-databind</artifactId> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 65 | <version>${jackson-yaml-version}</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 68 | <groupId>com.fasterxml.jackson.core</groupId> |
| 69 | <artifactId>jackson-core</artifactId> |
| 70 | <version>${jackson-yaml-version}</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.yaml</groupId> |
| 74 | <artifactId>snakeyaml</artifactId> |
| 75 | <version>${snakeyaml.version}</version> |
Masal, Sushil (sm588m) | 0500d5d | 2017-08-13 19:10:02 +0530 | [diff] [blame] | 76 | </dependency> |
Patrick Brady | 3871320 | 2017-07-28 11:29:23 -0700 | [diff] [blame] | 77 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 78 | <groupId>commons-io</groupId> |
| 79 | <artifactId>commons-io</artifactId> |
| 80 | <scope>test</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.mockito</groupId> |
| 84 | <artifactId>mockito-core</artifactId> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 88 | <groupId>org.powermock</groupId> |
| 89 | <artifactId>powermock-api-mockito</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.powermock</groupId> |
| 94 | <artifactId>powermock-module-junit4</artifactId> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 95 | <version>1.6.4</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 99 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 100 | <artifactId>appc-dg-domain-model-lib</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | </dependencies> |
| 104 | |
| 105 | </project> |