blob: 199a1784ab003353d44e76c92c29ce5a9f24903c [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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 ============LICENSE_END=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Skip Wonnell5166a762017-08-15 19:57:50 -050023<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 -050024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25 <parent>
26 <groupId>org.onap.appc</groupId>
27 <artifactId>appc-config</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070028 <version>1.4.0-SNAPSHOT</version>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050029 </parent>
30 <modelVersion>4.0.0</modelVersion>
31 <packaging>pom</packaging>
32 <artifactId>appc-config-audit</artifactId>
Skip Wonnell5166a762017-08-15 19:57:50 -050033
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050034 <name>Config Audit Node</name>
35 <description>Common Utilities for DG</description>
Skip Wonnell5166a762017-08-15 19:57:50 -050036
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050037 <properties>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050039 <xmlunit.version>1.6</xmlunit.version>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050040 <xmlunit-core.version>2.3.0</xmlunit-core.version>
41 </properties>
Skip Wonnell5166a762017-08-15 19:57:50 -050042
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050043 <dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050044
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050045 <dependencies>
46 <dependency>
47 <groupId>org.onap.appc</groupId>
48 <artifactId>appc-config-audit-features</artifactId>
49 <classifier>features</classifier>
50 <type>xml</type>
51 <version>${project.version}</version>
52 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050053
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050054 <dependency>
55 <groupId>org.onap.appc</groupId>
56 <artifactId>appc-config-audit-provider</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 </dependencies>
Skip Wonnell5166a762017-08-15 19:57:50 -050060
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050061 </dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050062
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050063 <profiles>
64 <profile>
65 <id>default</id>
66 <activation>
67 <activeByDefault>true</activeByDefault>
68 </activation>
69 <modules>
70 <module>features</module>
71 <module>provider</module>
72 <module>installer</module>
73 </modules>
74 </profile>
75 <profile>
76 <id>all</id>
77 <modules>
78 <module>features</module>
79 <module>provider</module>
80 <module>installer</module>
81 </modules>
82 </profile>
83 </profiles>
Skip Wonnell5166a762017-08-15 19:57:50 -050084</project>