blob: 9a4b0d8d10dc5ae76933277c08cd02b064e9ff59 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Kalpesh Chaniyara17c829c2017-08-28 17:10:55 +05302<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady13c03532019-02-22 13:37:19 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Kalpesh Chaniyara17c829c2017-08-28 17:10:55 +05307 ================================================================================
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
Kalpesh Chaniyara17c829c2017-08-28 17:10:55 +053022 ============LICENSE_END=========================================================
23-->
Patrick Brady57b5eef2017-02-10 15:00:49 -080024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Hao Kuang78f45992017-09-27 21:26:02 +000025 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Patrick Bradyc7d00752017-06-01 10:45:37 -070026 <modelVersion>4.0.0</modelVersion>
27 <parent>
Ryan Youngb7c21e12018-08-13 22:37:11 -040028 <groupId>org.onap.appc.parent</groupId>
29 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080030 <version>1.5.0-SNAPSHOT</version>
Ryan Youngb7c21e12018-08-13 22:37:11 -040031 <relativePath/>
Patrick Bradyc7d00752017-06-01 10:45:37 -070032 </parent>
Ryan Youngb7c21e12018-08-13 22:37:11 -040033
34 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070035 <artifactId>appc-provider-bundle</artifactId>
Patrick Bradyccd67e92018-11-12 12:14:11 -080036 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -070037 <packaging>bundle</packaging>
Ryan Youngb7c21e12018-08-13 22:37:11 -040038
39 <name>appc-provider-bundle</name>
40 <description>appc-provider OSGI bundle</description>
41
Patrick Bradyc7d00752017-06-01 10:45:37 -070042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <extensions>true</extensions>
48 <configuration>
49 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -080050 <Export-Package>org.onap.appc.provider</Export-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -070051 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -080052 org.onap.appc.domainmodel.lcm,
53 org.onap.appc.i18n,
54 org.onap.appc.logging,
55 org.onap.appc.util,
Patrick Bradyc7d00752017-06-01 10:45:37 -070056 com.att.eelf.configuration,
57 com.att.eelf.i18n,
58 *;resolution:=optional
59 </Import-Package>
60 <Embed-Dependency>
Ryan Young7b632b42018-08-23 13:35:03 -040061 org.apache.http;scope=compile|runtime;inline=false
Patrick Bradyc7d00752017-06-01 10:45:37 -070062 </Embed-Dependency>
63 <Embed-Transitive>true</Embed-Transitive>
64 </instructions>
65 </configuration>
66 </plugin>
Patrick Bradyc7d00752017-06-01 10:45:37 -070067 </plugins>
68 <pluginManagement>
69 <plugins>
70 <!--This plugin's configuration is used to store Eclipse
71 m2e settings only. It has no influence on the Maven build itself. -->
72 <plugin>
73 <groupId>org.eclipse.m2e</groupId>
74 <artifactId>lifecycle-mapping</artifactId>
75 <version>1.0.0</version>
76 <configuration>
77 <lifecycleMappingMetadata>
78 <pluginExecutions>
79 <pluginExecution>
80 <pluginExecutionFilter>
81 <groupId>org.codehaus.mojo</groupId>
82 <artifactId>build-helper-maven-plugin</artifactId>
83 <versionRange>[1.9.1,)</versionRange>
84 <goals>
85 <goal>add-source</goal>
86 </goals>
87 </pluginExecutionFilter>
88 <action>
Hao Kuang78f45992017-09-27 21:26:02 +000089 <ignore/>
Patrick Bradyc7d00752017-06-01 10:45:37 -070090 </action>
91 </pluginExecution>
92 </pluginExecutions>
93 </lifecycleMappingMetadata>
94 </configuration>
95 </plugin>
96 </plugins>
97 </pluginManagement>
98 </build>
99 <dependencies>
100 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800101 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700102 <artifactId>appc-request-handler-api</artifactId>
103 <version>${project.version}</version>
104 <type>bundle</type>
105 <scope>provided</scope>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700106 </dependency>
107 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800108 <groupId>org.onap.appc</groupId>
Ryan Youngb7c21e12018-08-13 22:37:11 -0400109 <artifactId>appc-common-bundle</artifactId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700110 <version>${project.version}</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700111 </dependency>
112 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800113 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700114 <artifactId>appc-provider-model</artifactId>
115 <version>${project.version}</version>
116 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700117 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700118 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700119 <artifactId>sli-common</artifactId>
120 </dependency>
121 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700122 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700123 <artifactId>sli-provider</artifactId>
124 </dependency>
125 <dependency>
Patrick Brady13c03532019-02-22 13:37:19 -0800126 <groupId>org.osgi</groupId>
127 <artifactId>org.osgi.core</artifactId>
128 <scope>provided</scope>
129 </dependency>
130 <dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700131 <artifactId>sal-test-model</artifactId>
132 <groupId>org.opendaylight.controller</groupId>
133 <scope>test</scope>
134 </dependency>
135 <dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700136 <groupId>org.opendaylight.controller</groupId>
137 <artifactId>sal-binding-broker-impl</artifactId>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.opendaylight.controller</groupId>
142 <artifactId>sal-binding-broker-impl</artifactId>
143 <classifier>tests</classifier>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700144 <type>test-jar</type>
145 <scope>test</scope>
146 </dependency>
147 <dependency>
148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
150 <scope>test</scope>
151 </dependency>
Hao Kuang78f45992017-09-27 21:26:02 +0000152 <dependency>
153 <groupId>org.mockito</groupId>
154 <artifactId>mockito-core</artifactId>
155 <scope>test</scope>
156 </dependency>
157 <dependency>
158 <groupId>org.powermock</groupId>
159 <artifactId>powermock-api-mockito</artifactId>
160 <scope>test</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.powermock</groupId>
164 <artifactId>powermock-module-junit4</artifactId>
165 <scope>test</scope>
166 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700167 <!-- TEMP CODE -->
168 <dependency>
169 <groupId>org.json</groupId>
170 <artifactId>json</artifactId>
171 </dependency>
172 </dependencies>
Patrick Brady65fcc852019-03-15 12:54:11 -0700173</project>