blob: 57bfc928d2e0df83c2ffbc05fd578a8bf346bd45 [file] [log] [blame]
Skip Wonnell5166a762017-08-15 19:57:50 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungcd5f4f62018-06-13 14:03:54 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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 ============LICENSE_END=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Skip Wonnell5166a762017-08-15 19:57:50 -050022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050023 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <parent>
25 <groupId>org.onap.appc</groupId>
26 <artifactId>appc-config</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050028 </parent>
29 <modelVersion>4.0.0</modelVersion>
30 <packaging>pom</packaging>
31 <artifactId>appc-config-audit</artifactId>
Skip Wonnell5166a762017-08-15 19:57:50 -050032
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050033 <name>Config Audit Node</name>
34 <description>Common Utilities for DG</description>
Skip Wonnell5166a762017-08-15 19:57:50 -050035
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050036 <properties>
37 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050038 <xmlunit.version>1.6</xmlunit.version>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050039 <xmlunit-core.version>2.3.0</xmlunit-core.version>
40 </properties>
Skip Wonnell5166a762017-08-15 19:57:50 -050041
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050042 <dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050043
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050044 <dependencies>
45 <dependency>
46 <groupId>org.onap.appc</groupId>
47 <artifactId>appc-config-audit-features</artifactId>
48 <classifier>features</classifier>
49 <type>xml</type>
50 <version>${project.version}</version>
51 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050052
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050053 <dependency>
54 <groupId>org.onap.appc</groupId>
55 <artifactId>appc-config-audit-provider</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 </dependencies>
Skip Wonnell5166a762017-08-15 19:57:50 -050059
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050060 </dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050061
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050062 <profiles>
63 <profile>
64 <id>default</id>
65 <activation>
66 <activeByDefault>true</activeByDefault>
67 </activation>
68 <modules>
69 <module>features</module>
70 <module>provider</module>
71 <module>installer</module>
72 </modules>
73 </profile>
74 <profile>
75 <id>all</id>
76 <modules>
77 <module>features</module>
78 <module>provider</module>
79 <module>installer</module>
80 </modules>
81 </profile>
82 </profiles>
Skip Wonnell5166a762017-08-15 19:57:50 -050083</project>