Skip Wonnell | 574417b | 2017-08-28 22:02:54 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP : APPC |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Copyright (C) 2017 Amdocs |
| 8 | ============================================================================= |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | |
| 21 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 25 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 27 | <modelVersion>4.0.0</modelVersion> |
Skip Wonnell | 574417b | 2017-08-28 22:02:54 -0500 | [diff] [blame] | 28 | |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 29 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 30 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 31 | <artifactId>appc</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 33 | </parent> |
| 34 | |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 35 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 36 | <artifactId>appc-directed-graph</artifactId> |
| 37 | <packaging>pom</packaging> |
| 38 | <name>Application Controller Directed Graph</name> |
| 39 | <description>Application Controller Directed Graph</description> |
| 40 | |
| 41 | <properties> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 42 | <jackson.version>2.3.2</jackson.version> |
| 43 | <snakeyaml.version>1.12</snakeyaml.version> |
| 44 | <velocity.version>1.7</velocity.version> |
| 45 | <jettison.version>1.3.7</jettison.version> |
Taka Cho | ff286ea | 2018-02-23 21:30:06 -0500 | [diff] [blame^] | 46 | <commons.collections.version>3.2.2</commons.collections.version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 47 | <common.io.version>2.5</common.io.version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 48 | <tosca.datatype.version>1.1.0</tosca.datatype.version> |
Skip Wonnell | 574417b | 2017-08-28 22:02:54 -0500 | [diff] [blame] | 49 | <licenseDir>${project.parent.basedir}</licenseDir> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 50 | </properties> |
| 51 | |
| 52 | <dependencyManagement> |
| 53 | <dependencies> |
| 54 | |
| 55 | <dependency> |
Takamune Cho | 8491cc3 | 2017-12-19 10:48:02 -0600 | [diff] [blame] | 56 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 57 | <artifactId>sql-resource-provider</artifactId> |
Patrick Brady | c5dd5d8 | 2017-11-21 11:15:32 -0800 | [diff] [blame] | 58 | <version>${ccsdk.sli.adaptors.version}</version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 59 | </dependency> |
| 60 | |
| 61 | <dependency> |
| 62 | <groupId>com.fasterxml.jackson.core</groupId> |
| 63 | <artifactId>jackson-databind</artifactId> |
| 64 | <version>${jackson.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>com.fasterxml.jackson.core</groupId> |
| 68 | <artifactId>jackson-annotations</artifactId> |
| 69 | <version>${jackson.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>com.fasterxml.jackson.core</groupId> |
| 73 | <artifactId>jackson-core</artifactId> |
| 74 | <version>${jackson.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 78 | <artifactId>jackson-dataformat-properties</artifactId> |
| 79 | <version>${jackson.version}</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 83 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 84 | <version>${jackson.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.yaml</groupId> |
| 88 | <artifactId>snakeyaml</artifactId> |
| 89 | <version>${snakeyaml.version}</version> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.apache.velocity</groupId> |
| 93 | <artifactId>velocity</artifactId> |
| 94 | <version>${velocity.version}</version> |
Taka Cho | ff286ea | 2018-02-23 21:30:06 -0500 | [diff] [blame^] | 95 | <exclusions> |
| 96 | <exclusion> |
| 97 | <artifactId>commons-collections</artifactId> |
| 98 | <groupId>commons-collections</groupId> |
| 99 | </exclusion> |
| 100 | </exclusions> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>commons-collections</groupId> |
| 104 | <artifactId>commons-collections</artifactId> |
| 105 | <version>{commons.collections.version}</version> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>commons-io</groupId> |
| 109 | <artifactId>commons-io</artifactId> |
| 110 | <version>${common.io.version}</version> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.codehaus.jettison</groupId> |
| 114 | <artifactId>jettison</artifactId> |
| 115 | <version>${jettison.version}</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | </dependencies> |
Skip Wonnell | cf4b15a | 2017-08-15 21:18:04 -0500 | [diff] [blame] | 119 | </dependencyManagement> |
| 120 | |
| 121 | <modules> |
| 122 | <module>dg-loader</module> |
| 123 | <module>appc-dgraph</module> |
| 124 | </modules> |
| 125 | |
| 126 | </project> |