blob: 32058afd0fe13ebc9e3fcf8aded4ae3bf97da481 [file] [log] [blame]
Anand Chaturvedie178b072017-08-14 20:10:36 -04001<?xml version="1.0" encoding="UTF-8"?>
beili.zhou102df7f2017-08-29 16:26:56 -04002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungfb3eec22018-06-14 10:17:19 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
beili.zhou102df7f2017-08-29 16:26:56 -04007 ================================================================================
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
Anand Chaturvedie178b072017-08-14 20:10:36 -040013
beili.zhou102df7f2017-08-29 16:26:56 -040014 http://www.apache.org/licenses/LICENSE-2.0
Anand Chaturvedie178b072017-08-14 20:10:36 -040015
beili.zhou102df7f2017-08-29 16:26:56 -040016 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.
Anand Chaturvedie178b072017-08-14 20:10:36 -040021
beili.zhou102df7f2017-08-29 16:26:56 -040022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
Patrick Brady46f865c2018-08-13 10:00:29 -070028 <parent>
29 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070031 <version>1.4.0</version>
Patrick Brady46f865c2018-08-13 10:00:29 -070032 <relativePath />
33 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080034 <groupId>org.onap.appc</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040035
beili.zhou102df7f2017-08-29 16:26:56 -040036 <artifactId>appc-network-inventory-client-provider</artifactId>
Patrick Bradyc23c9a02018-11-19 13:37:50 -080037 <version>1.4.3-SNAPSHOT</version>
beili.zhou102df7f2017-08-29 16:26:56 -040038 <packaging>bundle</packaging>
39 <name>APPC Network Client - Provider</name>
Anand Chaturvedie178b072017-08-14 20:10:36 -040040
beili.zhou102df7f2017-08-29 16:26:56 -040041 <dependencies>
Anand Chaturvedie178b072017-08-14 20:10:36 -040042
beili.zhou102df7f2017-08-29 16:26:56 -040043 <dependency>
44 <groupId>equinoxSDK381</groupId>
45 <artifactId>org.eclipse.osgi</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>commons-io</groupId>
49 <artifactId>commons-io</artifactId>
50 </dependency>
51 <dependency>
Patrick Brady28da5022018-09-17 12:52:55 -070052 <groupId>ch.qos.logback</groupId>
53 <artifactId>logback-classic</artifactId>
54 <version>${logback.version}</version>
55 </dependency>
56 <dependency>
beili.zhou102df7f2017-08-29 16:26:56 -040057 <groupId>com.att.eelf</groupId>
58 <artifactId>eelf-core</artifactId>
Patrick Brady28da5022018-09-17 12:52:55 -070059 <exclusions>
60 <exclusion>
61 <groupId>ch.qos.logback</groupId>
62 <artifactId>logback-classic</artifactId>
63 </exclusion>
64 </exclusions>
beili.zhou102df7f2017-08-29 16:26:56 -040065 </dependency>
66 <dependency>
67 <groupId>com.sun.jersey</groupId>
68 <artifactId>jersey-client</artifactId>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.powermock</groupId>
78 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070079 <version>1.6.4</version>
beili.zhou102df7f2017-08-29 16:26:56 -040080 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.powermock</groupId>
84 <artifactId>powermock-module-junit4</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070085 <version>1.6.4</version>
beili.zhou102df7f2017-08-29 16:26:56 -040086 <scope>test</scope>
87 </dependency>
88 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080089 <groupId>org.onap.appc</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040090 <artifactId>appc-config-params-provider</artifactId>
91 <version>${project.version}</version>
92 </dependency>
93 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070094 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040095 <artifactId>sli-common</artifactId>
96 </dependency>
97 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070098 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040099 <artifactId>sli-provider</artifactId>
100 </dependency>
101 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700102 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -0400103 <artifactId>dblib-provider</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>org.json</groupId>
107 <artifactId>json</artifactId>
108 </dependency>
Patrick Brady3e8e2d82018-05-01 13:35:59 -0700109 <dependency>
110 <groupId>com.fasterxml.jackson.dataformat</groupId>
111 <artifactId>jackson-dataformat-yaml</artifactId>
112 <version>2.3.2</version>
113 </dependency>
114 <dependency>
115 <groupId>org.yaml</groupId>
116 <artifactId>snakeyaml</artifactId>
117 <version>${snakeyaml.version}</version>
118 </dependency>
beili.zhou102df7f2017-08-29 16:26:56 -0400119 </dependencies>
Anand Chaturvedie178b072017-08-14 20:10:36 -0400120
beili.zhou102df7f2017-08-29 16:26:56 -0400121 <build>
122 <plugins>
123 <plugin>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>maven-bundle-plugin</artifactId>
126 <extensions>true</extensions>
127 <configuration>
128 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -0800129 <Bundle-SymbolicName>org.onap.appc.instar</Bundle-SymbolicName>
130 <Bundle-Activator>org.onap.appc.instar.InstarClientActivator</Bundle-Activator>
131 <Export-Package>org.onap.appc.instar</Export-Package>
beili.zhou102df7f2017-08-29 16:26:56 -0400132 <Import-Package>*</Import-Package>
Patrick Brady3e8e2d82018-05-01 13:35:59 -0700133 <Embed-Dependency>jackson-dataformat-yaml,snakeyaml</Embed-Dependency>
beili.zhou102df7f2017-08-29 16:26:56 -0400134 <DynamicImport-Package>*</DynamicImport-Package>
135 </instructions>
136 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
137 </configuration>
138 </plugin>
139 </plugins>
140 <pluginManagement>
141 <plugins>
142 </plugins>
143 </pluginManagement>
144 </build>
Anand Chaturvedie178b072017-08-14 20:10:36 -0400145</project>