blob: d557cfabac2a07df466fe19b3f0e8e395ce9ca02 [file] [log] [blame]
Skip Wonnell5166a762017-08-15 19:57:50 -05001<?xml version="1.0" encoding="UTF-8"?>
2<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 -05003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <parent>
5 <groupId>org.onap.appc</groupId>
6 <artifactId>appc-config</artifactId>
7 <version>1.3.0-SNAPSHOT</version>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <packaging>pom</packaging>
11 <artifactId>appc-config-audit</artifactId>
Skip Wonnell5166a762017-08-15 19:57:50 -050012
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050013 <name>Config Audit Node</name>
14 <description>Common Utilities for DG</description>
Skip Wonnell5166a762017-08-15 19:57:50 -050015
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050016 <properties>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 <xmlunit-core.version>2.3.0</xmlunit-core.version>
19 </properties>
Skip Wonnell5166a762017-08-15 19:57:50 -050020
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050021 <dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050022
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050023 <dependencies>
24 <dependency>
25 <groupId>org.onap.appc</groupId>
26 <artifactId>appc-config-audit-features</artifactId>
27 <classifier>features</classifier>
28 <type>xml</type>
29 <version>${project.version}</version>
30 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050031
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050032 <dependency>
33 <groupId>org.onap.appc</groupId>
34 <artifactId>appc-config-audit-provider</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 </dependencies>
Skip Wonnell5166a762017-08-15 19:57:50 -050038
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050039 </dependencyManagement>
Skip Wonnell5166a762017-08-15 19:57:50 -050040
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050041 <profiles>
42 <profile>
43 <id>default</id>
44 <activation>
45 <activeByDefault>true</activeByDefault>
46 </activation>
47 <modules>
48 <module>features</module>
49 <module>provider</module>
50 <module>installer</module>
51 </modules>
52 </profile>
53 <profile>
54 <id>all</id>
55 <modules>
56 <module>features</module>
57 <module>provider</module>
58 <module>installer</module>
59 </modules>
60 </profile>
61 </profiles>
Skip Wonnell5166a762017-08-15 19:57:50 -050062</project>