blob: 9409ed03fd6b1c605d048be6e7cd8aa5e39f5263 [file] [log] [blame]
Skip Wonnell574417b2017-08-28 22:02:54 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
Taka Choea9b8552018-03-23 15:57:59 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell574417b2017-08-28 22:02:54 -05006 ================================================================================
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.
Skip Wonnell574417b2017-08-28 22:02:54 -050020 ============LICENSE_END=========================================================
21 -->
22
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
Skip Wonnell574417b2017-08-28 22:02:54 -050026
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050027 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080028 <groupId>org.onap.appc</groupId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050029 <artifactId>appc</artifactId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080030 <version>1.5.0-SNAPSHOT</version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050031 </parent>
32
Patrick Brady07567592017-12-13 11:09:30 -080033 <groupId>org.onap.appc</groupId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050034 <artifactId>appc-directed-graph</artifactId>
35 <packaging>pom</packaging>
36 <name>Application Controller Directed Graph</name>
37 <description>Application Controller Directed Graph</description>
38
39 <properties>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050040 <jackson.version>2.3.2</jackson.version>
41 <snakeyaml.version>1.12</snakeyaml.version>
42 <velocity.version>1.7</velocity.version>
43 <jettison.version>1.3.7</jettison.version>
Taka Choff286ea2018-02-23 21:30:06 -050044 <commons.collections.version>3.2.2</commons.collections.version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050045 <common.io.version>2.5</common.io.version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050046 <tosca.datatype.version>1.1.0</tosca.datatype.version>
Skip Wonnell574417b2017-08-28 22:02:54 -050047 <licenseDir>${project.parent.basedir}</licenseDir>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050048 </properties>
49
50 <dependencyManagement>
51 <dependencies>
52
53 <dependency>
Takamune Cho8491cc32017-12-19 10:48:02 -060054 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050055 <artifactId>sql-resource-provider</artifactId>
Patrick Bradyc5dd5d82017-11-21 11:15:32 -080056 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050057 </dependency>
58
59 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 <version>${jackson.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>com.fasterxml.jackson.core</groupId>
66 <artifactId>jackson-annotations</artifactId>
67 <version>${jackson.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>com.fasterxml.jackson.core</groupId>
71 <artifactId>jackson-core</artifactId>
72 <version>${jackson.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>com.fasterxml.jackson.dataformat</groupId>
76 <artifactId>jackson-dataformat-properties</artifactId>
77 <version>${jackson.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>com.fasterxml.jackson.dataformat</groupId>
81 <artifactId>jackson-dataformat-yaml</artifactId>
82 <version>${jackson.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.yaml</groupId>
86 <artifactId>snakeyaml</artifactId>
87 <version>${snakeyaml.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.velocity</groupId>
91 <artifactId>velocity</artifactId>
92 <version>${velocity.version}</version>
Taka Choff286ea2018-02-23 21:30:06 -050093 <exclusions>
94 <exclusion>
95 <artifactId>commons-collections</artifactId>
96 <groupId>commons-collections</groupId>
97 </exclusion>
98 </exclusions>
99 </dependency>
100 <dependency>
101 <groupId>commons-collections</groupId>
102 <artifactId>commons-collections</artifactId>
Taka Cho2f318a12018-03-21 14:09:41 -0400103 <version>${commons.collections.version}</version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -0500104 </dependency>
105 <dependency>
106 <groupId>commons-io</groupId>
107 <artifactId>commons-io</artifactId>
108 <version>${common.io.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>org.codehaus.jettison</groupId>
112 <artifactId>jettison</artifactId>
113 <version>${jettison.version}</version>
114 <scope>provided</scope>
115 </dependency>
116 </dependencies>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -0500117 </dependencyManagement>
118
119 <modules>
120 <module>dg-loader</module>
121 <module>appc-dgraph</module>
122 </modules>
123
124</project>