blob: 5779ee4869564f1886dc32fe7ddc00e43a9ac445 [file] [log] [blame]
Skip Wonnell574417b2017-08-28 22:02:54 -05001<!--
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 Wonnellcf4b15a2017-08-15 21:18:04 -050025<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 Wonnell574417b2017-08-28 22:02:54 -050028
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050029 <parent>
30 <groupId>org.openecomp.appc</groupId>
31 <artifactId>appc</artifactId>
32 <version>1.1.0-SNAPSHOT</version>
33 </parent>
34
35 <groupId>org.openecomp.appc</groupId>
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>
42 <odl.mdsal.version>2.1.1-Boron-SR1</odl.mdsal.version>
43 <jackson.version>2.3.2</jackson.version>
44 <snakeyaml.version>1.12</snakeyaml.version>
45 <velocity.version>1.7</velocity.version>
46 <jettison.version>1.3.7</jettison.version>
47 <common.collections.version>3.2.1</common.collections.version>
48 <common.io.version>2.5</common.io.version>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050049 <sdnc.sql.resource.version>1.1.0</sdnc.sql.resource.version>
50 <openecomp.sdnc.sql-resource.version>1.1.0</openecomp.sdnc.sql-resource.version>
51 <sdnc.sli.version>1.1.0</sdnc.sli.version>
52 <tosca.datatype.version>1.1.0</tosca.datatype.version>
Skip Wonnell574417b2017-08-28 22:02:54 -050053 <licenseDir>${project.parent.basedir}</licenseDir>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -050054 </properties>
55
56 <dependencyManagement>
57 <dependencies>
58
59 <dependency>
60 <groupId>org.openecomp.sdnc.adaptors</groupId>
61 <artifactId>sql-resource-provider</artifactId>
62 <version>${openecomp.sdnc.sql-resource.version}</version>
63 </dependency>
64
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
68 <version>${jackson.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-annotations</artifactId>
73 <version>${jackson.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>com.fasterxml.jackson.core</groupId>
77 <artifactId>jackson-core</artifactId>
78 <version>${jackson.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>com.fasterxml.jackson.dataformat</groupId>
82 <artifactId>jackson-dataformat-properties</artifactId>
83 <version>${jackson.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>com.fasterxml.jackson.dataformat</groupId>
87 <artifactId>jackson-dataformat-yaml</artifactId>
88 <version>${jackson.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.yaml</groupId>
92 <artifactId>snakeyaml</artifactId>
93 <version>${snakeyaml.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.apache.velocity</groupId>
97 <artifactId>velocity</artifactId>
98 <version>${velocity.version}</version>
99 </dependency>
100 <dependency>
101 <groupId>commons-io</groupId>
102 <artifactId>commons-io</artifactId>
103 <version>${common.io.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.codehaus.jettison</groupId>
107 <artifactId>jettison</artifactId>
108 <version>${jettison.version}</version>
109 <scope>provided</scope>
110 </dependency>
111 </dependencies>
Skip Wonnellcf4b15a2017-08-15 21:18:04 -0500112 </dependencyManagement>
113
114 <modules>
115 <module>dg-loader</module>
116 <module>appc-dgraph</module>
117 </modules>
118
119</project>