blob: fdfbf38a3faf6d91f209d0b68b4f806a49b09e73 [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 ================================================================================
6 Copyright (C) 2017 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
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 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
25<project xmlns="http://maven.apache.org/POM/4.0.0"
26 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080030 <groupId>org.onap.appc</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040031 <artifactId>appc-network-inventory-client</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070032 <version>1.4.0-SNAPSHOT</version>
beili.zhou102df7f2017-08-29 16:26:56 -040033 </parent>
Anand Chaturvedie178b072017-08-14 20:10:36 -040034
beili.zhou102df7f2017-08-29 16:26:56 -040035 <artifactId>appc-network-inventory-client-provider</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070036 <version>1.4.0-SNAPSHOT</version>
beili.zhou102df7f2017-08-29 16:26:56 -040037 <packaging>bundle</packaging>
38 <name>APPC Network Client - Provider</name>
Anand Chaturvedie178b072017-08-14 20:10:36 -040039
beili.zhou102df7f2017-08-29 16:26:56 -040040 <dependencies>
Anand Chaturvedie178b072017-08-14 20:10:36 -040041
beili.zhou102df7f2017-08-29 16:26:56 -040042 <dependency>
43 <groupId>equinoxSDK381</groupId>
44 <artifactId>org.eclipse.osgi</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>commons-io</groupId>
48 <artifactId>commons-io</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>com.att.eelf</groupId>
52 <artifactId>eelf-core</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>com.sun.jersey</groupId>
56 <artifactId>jersey-client</artifactId>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.powermock</groupId>
66 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070067 <version>1.6.4</version>
beili.zhou102df7f2017-08-29 16:26:56 -040068 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.powermock</groupId>
72 <artifactId>powermock-module-junit4</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070073 <version>1.6.4</version>
beili.zhou102df7f2017-08-29 16:26:56 -040074 <scope>test</scope>
75 </dependency>
76 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080077 <groupId>org.onap.appc</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040078 <artifactId>appc-config-params-provider</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070082 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040083 <artifactId>sli-common</artifactId>
84 </dependency>
85 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070086 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040087 <artifactId>sli-provider</artifactId>
88 </dependency>
89 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070090 <groupId>org.onap.ccsdk.sli.core</groupId>
beili.zhou102df7f2017-08-29 16:26:56 -040091 <artifactId>dblib-provider</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.json</groupId>
95 <artifactId>json</artifactId>
96 </dependency>
Patrick Brady3e8e2d82018-05-01 13:35:59 -070097 <dependency>
98 <groupId>com.fasterxml.jackson.dataformat</groupId>
99 <artifactId>jackson-dataformat-yaml</artifactId>
100 <version>2.3.2</version>
101 </dependency>
102 <dependency>
103 <groupId>org.yaml</groupId>
104 <artifactId>snakeyaml</artifactId>
105 <version>${snakeyaml.version}</version>
106 </dependency>
beili.zhou102df7f2017-08-29 16:26:56 -0400107 </dependencies>
Anand Chaturvedie178b072017-08-14 20:10:36 -0400108
beili.zhou102df7f2017-08-29 16:26:56 -0400109 <build>
110 <plugins>
111 <plugin>
112 <groupId>org.apache.felix</groupId>
113 <artifactId>maven-bundle-plugin</artifactId>
114 <extensions>true</extensions>
115 <configuration>
116 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -0800117 <Bundle-SymbolicName>org.onap.appc.instar</Bundle-SymbolicName>
118 <Bundle-Activator>org.onap.appc.instar.InstarClientActivator</Bundle-Activator>
119 <Export-Package>org.onap.appc.instar</Export-Package>
beili.zhou102df7f2017-08-29 16:26:56 -0400120 <Import-Package>*</Import-Package>
Patrick Brady3e8e2d82018-05-01 13:35:59 -0700121 <Embed-Dependency>jackson-dataformat-yaml,snakeyaml</Embed-Dependency>
beili.zhou102df7f2017-08-29 16:26:56 -0400122 <DynamicImport-Package>*</DynamicImport-Package>
123 </instructions>
124 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
125 </configuration>
126 </plugin>
127 </plugins>
128 <pluginManagement>
129 <plugins>
130 </plugins>
131 </pluginManagement>
132 </build>
Anand Chaturvedie178b072017-08-14 20:10:36 -0400133</project>