blob: e2100aeff1205cc7ac8efbda24d1d59c832a7cb4 [file] [log] [blame]
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06001<!--
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 -->
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Skip Wonnell9296b762017-08-15 17:26:38 -050023 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080026 <groupId>org.onap.appc</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050027 <artifactId>appc</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080028 <version>1.3.0-SNAPSHOT</version>
Skip Wonnell9296b762017-08-15 17:26:38 -050029 </parent>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040030
Patrick Brady07567592017-12-13 11:09:30 -080031 <groupId>org.onap.appc</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050032 <artifactId>appc-config</artifactId>
33 <packaging>pom</packaging>
34 <name>Application Controller Config</name>
35 <description>Application Controller Config</description>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040036
Skip Wonnell9296b762017-08-15 17:26:38 -050037 <properties>
Skip Wonnell9296b762017-08-15 17:26:38 -050038 <jackson.version>2.3.2</jackson.version>
39 <snakeyaml.version>1.12</snakeyaml.version>
40 <velocity.version>1.7</velocity.version>
41 <jettison.version>1.3.7</jettison.version>
42 <common.collections.version>3.2.1</common.collections.version>
43 <common.io.version>2.5</common.io.version>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040044
Skip Wonnell9296b762017-08-15 17:26:38 -050045 <tosca.datatype.version>1.1.0</tosca.datatype.version>
46 </properties>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040047
Skip Wonnell9296b762017-08-15 17:26:38 -050048 <dependencyManagement>
49 <dependencies>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040050
Skip Wonnell9296b762017-08-15 17:26:38 -050051 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070052 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050053 <artifactId>sql-resource-provider</artifactId>
Patrick Bradyc5dd5d82017-11-21 11:15:32 -080054 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnell9296b762017-08-15 17:26:38 -050055 </dependency>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040056
Skip Wonnell9296b762017-08-15 17:26:38 -050057 <dependency>
58 <groupId>com.fasterxml.jackson.core</groupId>
59 <artifactId>jackson-databind</artifactId>
60 <version>${jackson.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>com.fasterxml.jackson.core</groupId>
64 <artifactId>jackson-annotations</artifactId>
65 <version>${jackson.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-core</artifactId>
70 <version>${jackson.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>com.fasterxml.jackson.dataformat</groupId>
74 <artifactId>jackson-dataformat-properties</artifactId>
75 <version>${jackson.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.dataformat</groupId>
79 <artifactId>jackson-dataformat-yaml</artifactId>
80 <version>${jackson.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.yaml</groupId>
84 <artifactId>snakeyaml</artifactId>
85 <version>${snakeyaml.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.velocity</groupId>
89 <artifactId>velocity</artifactId>
90 <version>${velocity.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>commons-io</groupId>
94 <artifactId>commons-io</artifactId>
95 <version>${common.io.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.codehaus.jettison</groupId>
99 <artifactId>jettison</artifactId>
100 <version>${jettison.version}</version>
101 <scope>provided</scope>
102 </dependency>
103 </dependencies>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400104
Skip Wonnell9296b762017-08-15 17:26:38 -0500105 </dependencyManagement>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400106
Skip Wonnell5166a762017-08-15 19:57:50 -0500107 <modules>
108 <module>appc-config-params</module>
109 <module>appc-encryption-tool</module>
110 <module>appc-data-services</module>
111 <module>appc-flow-controller</module>
112 <module>appc-config-generator</module>
113 <module>appc-config-adaptor</module>
114 <module>appc-config-audit</module>
115 </modules>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400116
117</project>