Release appc
[appc.git] / appc-outbound / appc-network-inventory-client / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>binding-parent</artifactId>
29                 <version>2.7.2</version>
30                 <relativePath/>
31         </parent>
32         <groupId>org.onap.appc</groupId>
33
34     <artifactId>appc-network-inventory-client-provider</artifactId>
35     <version>1.7.2</version>
36     <packaging>bundle</packaging>
37     <name>APPC Network Client - Provider</name>
38
39     <dependencies>
40
41         <dependency>
42             <groupId>equinoxSDK381</groupId>
43             <artifactId>org.eclipse.osgi</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>commons-io</groupId>
47             <artifactId>commons-io</artifactId>
48         </dependency>
49         <dependency>
50          <groupId>ch.qos.logback</groupId>
51          <artifactId>logback-classic</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>com.att.eelf</groupId>
55             <artifactId>eelf-core</artifactId>
56             <exclusions>
57                  <exclusion>
58                       <groupId>ch.qos.logback</groupId>
59                       <artifactId>logback-classic</artifactId>
60                  </exclusion>
61             </exclusions>
62         </dependency>
63         <dependency>
64             <groupId>org.glassfish.jersey.core</groupId>
65             <artifactId>jersey-client</artifactId>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.jline</groupId>
70             <artifactId>jline</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.powermock</groupId>
80             <artifactId>powermock-api-mockito</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.powermock</groupId>
85             <artifactId>powermock-module-junit4</artifactId>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.javassist</groupId>
90             <artifactId>javassist</artifactId>
91             <version>3.22.0-GA</version>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.appc</groupId>
96             <artifactId>appc-config-params-provider</artifactId>
97             <version>${project.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.ccsdk.sli.core</groupId>
101             <artifactId>sli-common</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.onap.ccsdk.sli.core</groupId>
105             <artifactId>sli-provider</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.onap.ccsdk.sli.core</groupId>
109             <artifactId>dblib-provider</artifactId>
110         </dependency>
111         <dependency>
112             <groupId>org.json</groupId>
113             <artifactId>json</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>com.fasterxml.jackson.dataformat</groupId>
117             <artifactId>jackson-dataformat-yaml</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.yaml</groupId>
121             <artifactId>snakeyaml</artifactId>
122         </dependency>
123     </dependencies>
124
125     <build>
126         <plugins>
127             <plugin>
128                 <groupId>org.apache.felix</groupId>
129                 <artifactId>maven-bundle-plugin</artifactId>
130                 <extensions>true</extensions>
131                 <configuration>
132                     <instructions>
133                         <Bundle-SymbolicName>org.onap.appc.instar</Bundle-SymbolicName>
134                         <Bundle-Activator>org.onap.appc.instar.InstarClientActivator</Bundle-Activator>
135                         <Export-Package>org.onap.appc.instar</Export-Package>
136                         <Import-Package>*</Import-Package>
137                         <Embed-Dependency>jackson-dataformat-yaml,snakeyaml</Embed-Dependency>
138                     </instructions>
139                 </configuration>
140             </plugin>
141         </plugins>
142         <pluginManagement>
143             <plugins>
144             </plugins>
145         </pluginManagement>
146     </build>
147 </project>