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