Skip Wonnell | 5166a76 | 2017-08-15 19:57:50 -0500 | [diff] [blame] | 1 | <?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" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 5 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 5166a76 | 2017-08-15 19:57:50 -0500 | [diff] [blame] | 6 | <artifactId>appc-config</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 7 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | 5166a76 | 2017-08-15 19:57:50 -0500 | [diff] [blame] | 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <packaging>pom</packaging> |
| 11 | <artifactId>appc-config-audit</artifactId> |
| 12 | |
| 13 | <name>Config Audit Node</name> |
| 14 | <description>Common Utilities for DG</description> |
| 15 | |
| 16 | <properties> |
| 17 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | <xmlunit.version>1.6</xmlunit.version> |
| 19 | </properties> |
| 20 | |
| 21 | <dependencyManagement> |
| 22 | |
| 23 | <dependencies> |
| 24 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 25 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 5166a76 | 2017-08-15 19:57:50 -0500 | [diff] [blame] | 26 | <artifactId>appc-config-audit-features</artifactId> |
| 27 | <classifier>features</classifier> |
| 28 | <type>xml</type> |
| 29 | <version>${project.version}</version> |
| 30 | </dependency> |
| 31 | |
| 32 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 33 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | 5166a76 | 2017-08-15 19:57:50 -0500 | [diff] [blame] | 34 | <artifactId>appc-config-audit-provider</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | </dependencies> |
| 38 | |
| 39 | </dependencyManagement> |
| 40 | |
| 41 | <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> |
| 62 | </project> |