blob: c90e3659adab044cc32befe7681a024376bc68a1 [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 ================================================================================
Patrick Brady5b817642018-03-22 15:12:48 -07006 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"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
Patrick Bradyb49dd122018-08-10 15:30:58 -070025 <parent>
26 <groupId>org.onap.appc.parent</groupId>
27 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080028 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070029 <relativePath />
30 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080031 <groupId>org.onap.appc</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -050032 <artifactId>appc-config-audit-provider</artifactId>
33 <packaging>bundle</packaging>
34 <name>Config Audit - Provider</name>
35 <url>http://maven.apache.org</url>
36
37 <dependencies>
38 <dependency>
39 <groupId>equinoxSDK381</groupId>
40 <artifactId>org.eclipse.osgi</artifactId>
41 <version>${equinox.osgi.version}</version>
42 </dependency>
43 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070044 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell5166a762017-08-15 19:57:50 -050045 <artifactId>sli-provider</artifactId>
46 </dependency>
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050047 <dependency>
48 <groupId>xmlunit</groupId>
49 <artifactId>xmlunit</artifactId>
George, Lina (lg941u)48a99d52018-01-12 16:26:53 -050050 <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>
Patrick Brady28da5022018-09-17 12:52:55 -070077 <groupId>ch.qos.logback</groupId>
78 <artifactId>logback-classic</artifactId>
79 <version>${logback.version}</version>
80 </dependency>
81 <dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050082 <groupId>com.att.eelf</groupId>
83 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070084 <exclusions>
85 <exclusion>
86 <groupId>ch.qos.logback</groupId>
87 <artifactId>logback-classic</artifactId>
88 </exclusion>
89 </exclusions>
Skip Wonnell5166a762017-08-15 19:57:50 -050090 </dependency>
Patrick Brady5b817642018-03-22 15:12:48 -070091 <dependency>
92 <groupId>org.apache.commons</groupId>
93 <artifactId>commons-lang3</artifactId>
94 </dependency>
Skip Wonnell5166a762017-08-15 19:57:50 -050095
96 <dependency>
97 <groupId>junit</groupId>
98 <artifactId>junit</artifactId>
99 <scope>test</scope>
100 </dependency>
101
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-bundle-plugin</artifactId>
109 <version>${bundle.plugin.version}</version>
110 <extensions>true</extensions>
111 <configuration>
112 <instructions>
Takamune Cho8491cc32017-12-19 10:48:02 -0600113 <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
114 <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
115 <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
Patrick Brady5b817642018-03-22 15:12:48 -0700116 <!-- <Embed-Dependency>jackson-databind,jackson-annotations,jackson-core,eelf-core,xmlunit,xmlunit-core,logback-core,logback-classic</Embed-Dependency> -->
Ryan Young7b632b42018-08-23 13:35:03 -0400117 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|!appc-common-bundle|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency>
Patrick Brady5b817642018-03-22 15:12:48 -0700118 <Import-Package>*;resolution:=optional</Import-Package>
Skip Wonnell5166a762017-08-15 19:57:50 -0500119 <DynamicImport-Package>*</DynamicImport-Package>
120 </instructions>
121 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
122 </configuration>
123 </plugin>
124
125 </plugins>
Skip Wonnell5166a762017-08-15 19:57:50 -0500126 </build>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -0700127 <version>1.6.0-SNAPSHOT</version>
Skip Wonnell5166a762017-08-15 19:57:50 -0500128</project>