Release appc
[appc.git] / appc-config / appc-config-audit / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc.parent</groupId>
26                 <artifactId>binding-parent</artifactId>
27                 <version>2.7.2</version>
28                 <relativePath/>
29         </parent>
30         <groupId>org.onap.appc</groupId>
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>
43             <groupId>org.onap.ccsdk.sli.core</groupId>
44             <artifactId>sli-provider</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>xmlunit</groupId>
48             <artifactId>xmlunit</artifactId>
49             <scope>compile</scope>
50         </dependency>
51         <!-- https://mvnrepository.com/artifact/org.xmlunit/xmlunit-core -->
52         <dependency>
53              <groupId>org.xmlunit</groupId>
54              <artifactId>xmlunit-core</artifactId>
55              <version>${xmlunit-core.version}</version>
56              <scope>compile</scope>
57         </dependency>
58         <dependency>
59             <groupId>com.fasterxml.jackson.core</groupId>
60             <artifactId>jackson-databind</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.fasterxml.jackson.core</groupId>
64             <artifactId>jackson-annotations</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>com.fasterxml.jackson.core</groupId>
68             <artifactId>jackson-core</artifactId>
69         </dependency>
70
71         <dependency>
72             <groupId>commons-io</groupId>
73             <artifactId>commons-io</artifactId>
74         </dependency>
75         <dependency>
76          <groupId>ch.qos.logback</groupId>
77          <artifactId>logback-classic</artifactId>
78          <version>${logback.version}</version>
79         </dependency>
80         <dependency>
81             <groupId>com.att.eelf</groupId>
82             <artifactId>eelf-core</artifactId>
83             <exclusions>
84                 <exclusion>
85                      <groupId>ch.qos.logback</groupId>
86                      <artifactId>logback-classic</artifactId>
87                 </exclusion>
88             </exclusions>
89         </dependency>
90         <dependency>
91             <groupId>org.apache.commons</groupId>
92             <artifactId>commons-lang3</artifactId>
93         </dependency>
94
95         <dependency>
96             <groupId>junit</groupId>
97             <artifactId>junit</artifactId>
98             <scope>test</scope>
99         </dependency>
100
101     </dependencies>
102
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.felix</groupId>
107                 <artifactId>maven-bundle-plugin</artifactId>
108                 <version>${bundle.plugin.version}</version>
109                 <extensions>true</extensions>
110                 <configuration>
111                     <instructions>
112                         <Bundle-SymbolicName>org.onap.sdnc.config.audit</Bundle-SymbolicName>
113                         <Bundle-Activator>org.onap.sdnc.config.audit.SliAuditActivator</Bundle-Activator>
114                         <Export-Package>org.onap.sdnc.config.audit,org.onap.sdnc.config.audit.node</Export-Package>
115                         <!-- <Embed-Dependency>jackson-databind,jackson-annotations,jackson-core,eelf-core,xmlunit,xmlunit-core,logback-core,logback-classic</Embed-Dependency> -->
116                         <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>
117                         <Import-Package>*;resolution:=optional</Import-Package>
118                         <DynamicImport-Package>*</DynamicImport-Package>
119                     </instructions>
120                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
121                 </configuration>
122             </plugin>
123
124         </plugins>
125     </build>
126     <version>1.7.2</version>
127 </project>