blob: a70a35536d156833b8a074a216a456679b1cfdb4 [file] [log] [blame]
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
John McClunga8027392018-06-13 15:49:08 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06006 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 Wonnell8c4b89b2018-01-12 09:24:03 -060020 -->
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040021<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 -050022 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080025 <groupId>org.onap.appc</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050026 <artifactId>appc</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Skip Wonnell9296b762017-08-15 17:26:38 -050028 </parent>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040029
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050031 <artifactId>appc-config</artifactId>
32 <packaging>pom</packaging>
33 <name>Application Controller Config</name>
34 <description>Application Controller Config</description>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040035
Skip Wonnell9296b762017-08-15 17:26:38 -050036 <properties>
Skip Wonnell9296b762017-08-15 17:26:38 -050037 <jackson.version>2.3.2</jackson.version>
38 <snakeyaml.version>1.12</snakeyaml.version>
39 <velocity.version>1.7</velocity.version>
40 <jettison.version>1.3.7</jettison.version>
41 <common.collections.version>3.2.1</common.collections.version>
42 <common.io.version>2.5</common.io.version>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040043
Skip Wonnell9296b762017-08-15 17:26:38 -050044 <tosca.datatype.version>1.1.0</tosca.datatype.version>
45 </properties>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040046
Skip Wonnell9296b762017-08-15 17:26:38 -050047 <dependencyManagement>
48 <dependencies>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040049
Skip Wonnell9296b762017-08-15 17:26:38 -050050 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070051 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050052 <artifactId>sql-resource-provider</artifactId>
Patrick Bradyc5dd5d82017-11-21 11:15:32 -080053 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnell9296b762017-08-15 17:26:38 -050054 </dependency>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -040055
Skip Wonnell9296b762017-08-15 17:26:38 -050056 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-databind</artifactId>
59 <version>${jackson.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>com.fasterxml.jackson.core</groupId>
63 <artifactId>jackson-annotations</artifactId>
64 <version>${jackson.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>com.fasterxml.jackson.core</groupId>
68 <artifactId>jackson-core</artifactId>
69 <version>${jackson.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>com.fasterxml.jackson.dataformat</groupId>
73 <artifactId>jackson-dataformat-properties</artifactId>
74 <version>${jackson.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>com.fasterxml.jackson.dataformat</groupId>
78 <artifactId>jackson-dataformat-yaml</artifactId>
79 <version>${jackson.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.yaml</groupId>
83 <artifactId>snakeyaml</artifactId>
84 <version>${snakeyaml.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.velocity</groupId>
88 <artifactId>velocity</artifactId>
89 <version>${velocity.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>commons-io</groupId>
93 <artifactId>commons-io</artifactId>
94 <version>${common.io.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>org.codehaus.jettison</groupId>
98 <artifactId>jettison</artifactId>
99 <version>${jettison.version}</version>
100 <scope>provided</scope>
101 </dependency>
102 </dependencies>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400103
Skip Wonnell9296b762017-08-15 17:26:38 -0500104 </dependencyManagement>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400105
Skip Wonnell5166a762017-08-15 19:57:50 -0500106 <modules>
107 <module>appc-config-params</module>
108 <module>appc-encryption-tool</module>
109 <module>appc-data-services</module>
110 <module>appc-flow-controller</module>
111 <module>appc-config-generator</module>
112 <module>appc-config-adaptor</module>
113 <module>appc-config-audit</module>
114 </modules>
Anand Chaturvedi0df7ab42017-08-12 01:31:10 -0400115
116</project>