blob: caac1a3a5647c75c9e8610be3ef336d5b69ac572 [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"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080027 <groupId>org.onap.appc</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -050028 <artifactId>appc-config-audit</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080029 <version>1.3.0-SNAPSHOT</version>
Skip Wonnell5166a762017-08-15 19:57:50 -050030 </parent>
31 <artifactId>appc-config-audit-provider</artifactId>
32 <packaging>bundle</packaging>
33 <name>Config Audit - Provider</name>
34 <url>http://maven.apache.org</url>
35
36 <dependencies>
37 <dependency>
38 <groupId>equinoxSDK381</groupId>
39 <artifactId>org.eclipse.osgi</artifactId>
40 <version>${equinox.osgi.version}</version>
41 </dependency>
42 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070043 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -050044 <artifactId>sli-provider</artifactId>
45 </dependency>
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050046 <dependency>
47 <groupId>xmlunit</groupId>
48 <artifactId>xmlunit</artifactId>
49 <version>${xmlunit.version}</version>
50 <scope>compile</scope>
51 </dependency>
George, Lina (lg941u)db1cca12018-01-09 13:46:51 -050052 <!-- https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core -->
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050053 <dependency>
54 <groupId>org.xmlunit</groupId>
55 <artifactId>xmlunit-core</artifactId>
56 <version>${xmlunit-core.version}</version>
57 <scope>compile</scope>
58 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050059 <dependency>
60 <groupId>com.fasterxml.jackson.core</groupId>
61 <artifactId>jackson-databind</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-annotations</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>com.fasterxml.jackson.core</groupId>
69 <artifactId>jackson-core</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>commons-io</groupId>
74 <artifactId>commons-io</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>com.att.eelf</groupId>
78 <artifactId>eelf-core</artifactId>
79 </dependency>
80
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <scope>test</scope>
85 </dependency>
86
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-bundle-plugin</artifactId>
94 <version>${bundle.plugin.version}</version>
95 <extensions>true</extensions>
96 <configuration>
97 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -060098 <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
99 <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
100 <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
Skip Wonnell5166a762017-08-15 19:57:50 -0500101 <Import-Package>*</Import-Package>
102 <DynamicImport-Package>*</DynamicImport-Package>
103 </instructions>
104 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
105 </configuration>
106 </plugin>
107
108 </plugins>
Skip Wonnell5166a762017-08-15 19:57:50 -0500109 </build>
110</project>