blob: 4e0c3dbd252bdc19faccd342df5c2870b30293f9 [file] [log] [blame]
Patrick Bradyc7d00752017-06-01 10:45:37 -07001<?xml version="1.0" encoding="UTF-8"?>
Anand9ebb5dd2018-01-04 12:44:05 -05002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Bradyc664d0a2019-01-29 10:18:27 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Anand9ebb5dd2018-01-04 12:44:05 -05007 ================================================================================
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
Anand9ebb5dd2018-01-04 12:44:05 -050022 ============LICENSE_END=========================================================
23 -->
beili.zhou9adb43f2017-08-11 22:16:05 -040024<project
25 xmlns="http://maven.apache.org/POM/4.0.0"
26 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Patrick Bradyc7d00752017-06-01 10:45:37 -070027 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>
Patrick Brady85aedb52018-08-09 13:43:54 -070029 <parent>
30 <groupId>org.onap.appc.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080032 <version>1.5.0-SNAPSHOT</version>
Patrick Brady85aedb52018-08-09 13:43:54 -070033 <relativePath />
34 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080035 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070036 <artifactId>appc-oam-bundle</artifactId>
Anand9ebb5dd2018-01-04 12:44:05 -050037 <name>APPC OAM - Bundle</name>
Patrick Bradyc7d00752017-06-01 10:45:37 -070038 <packaging>bundle</packaging>
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
44 <extensions>true</extensions>
45 <configuration>
46 <instructions>
Patrick Brady07567592017-12-13 11:09:30 -080047 <Export-Package>org.onap.appc.oam</Export-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -070048 <Import-Package>
Patrick Brady07567592017-12-13 11:09:30 -080049 org.onap.appc.i18n,
50 org.onap.appc.logging,
51 org.onap.appc.util,
Patrick Bradyc7d00752017-06-01 10:45:37 -070052 com.att.eelf.configuration,
53 com.att.eelf.i18n,
Patrick Brady07567592017-12-13 11:09:30 -080054 org.onap.appc.adapter.messaging.*,
55 org.onap.appc.adapter.message.*,
56 org.onap.appc.adapter.factory.*,
Patrick Bradyc7d00752017-06-01 10:45:37 -070057 *;resolution:=optional
58 </Import-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -070059 <Embed-Transitive>true</Embed-Transitive>
60 </instructions>
61 </configuration>
62 </plugin>
Patrick Bradyc7d00752017-06-01 10:45:37 -070063 </plugins>
64 <pluginManagement>
65 <plugins>
66 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
67 <plugin>
68 <groupId>org.eclipse.m2e</groupId>
69 <artifactId>lifecycle-mapping</artifactId>
70 <version>1.0.0</version>
71 <configuration>
72 <lifecycleMappingMetadata>
73 <pluginExecutions>
74 <pluginExecution>
75 <pluginExecutionFilter>
76 <groupId>org.codehaus.mojo</groupId>
77 <artifactId>build-helper-maven-plugin</artifactId>
78 <versionRange>[1.9.1,)</versionRange>
79 <goals>
80 <goal>add-source</goal>
81 </goals>
82 </pluginExecutionFilter>
83 <action>
84 <ignore/>
85 </action>
86 </pluginExecution>
87 </pluginExecutions>
88 </lifecycleMappingMetadata>
89 </configuration>
90 </plugin>
91 </plugins>
92 </pluginManagement>
93 </build>
94
95 <dependencies>
96 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080097 <groupId>org.onap.appc</groupId>
Patrick Brady85aedb52018-08-09 13:43:54 -070098 <artifactId>appc-common-bundle</artifactId>
Patrick Bradyc7d00752017-06-01 10:45:37 -070099 <version>${project.version}</version>
Taka Cho52cf1a82019-03-13 14:40:15 -0400100 <exclusions>
101 <exclusion>
102 <groupId>com.fasterxml.jackson.core</groupId>
103 <artifactId>jackson-databind</artifactId>
104 </exclusion>
105 </exclusions>
106 </dependency>
107
108 <dependency>
109 <groupId>com.fasterxml.jackson.core</groupId>
110 <artifactId>jackson-databind</artifactId>
111 <version>2.8.11.3</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700112 </dependency>
113 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800114 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700115 <artifactId>appc-oam-model</artifactId>
116 <version>${project.version}</version>
117 </dependency>
118 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800119 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700120 <artifactId>appc-metric-bundle</artifactId>
121 <version>${project.version}</version>
122 </dependency>
123
124 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800125 <groupId>org.onap.appc</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700126 <artifactId>appc-request-handler-api</artifactId>
127 <version>${project.version}</version>
128 </dependency>
beili.zhou9adb43f2017-08-11 22:16:05 -0400129 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800130 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400131 <artifactId>appc-lifecycle-management-api</artifactId>
132 <version>${project.version}</version>
133 </dependency>
134 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800135 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400136 <artifactId>appc-lifecycle-management-core</artifactId>
137 <version>${project.version}</version>
138 </dependency>
139 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800140 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400141 <artifactId>state-machine-lib</artifactId>
142 <version>${project.version}</version>
143 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700144
145 <dependency>
146 <groupId>org.opendaylight.controller</groupId>
147 <artifactId>config-api</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>org.opendaylight.controller</groupId>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700151 <artifactId>sal-common-util</artifactId>
152 </dependency>
153 <dependency>
154 <artifactId>sal-test-model</artifactId>
155 <groupId>org.opendaylight.controller</groupId>
156 <scope>test</scope>
157 </dependency>
158 <dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700159 <groupId>junit</groupId>
160 <artifactId>junit</artifactId>
161 <scope>test</scope>
162 </dependency>
beili.zhou9adb43f2017-08-11 22:16:05 -0400163 <dependency>
164 <groupId>org.mockito</groupId>
Patrick Brady76706002017-09-04 21:37:25 -0700165 <artifactId>mockito-core</artifactId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400166 <version>1.10.19</version>
167 <scope>test</scope>
168 </dependency>
169 <dependency>
170 <groupId>org.powermock</groupId>
171 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -0700172 <version>1.6.4</version>
beili.zhou9adb43f2017-08-11 22:16:05 -0400173 <scope>test</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.powermock</groupId>
177 <artifactId>powermock-module-junit4</artifactId>
178 <version>1.6.2</version>
179 <scope>test</scope>
180 </dependency>
Patrick Brady92461672019-02-27 13:41:53 -0800181 <dependency>
182 <groupId>org.javassist</groupId>
183 <artifactId>javassist</artifactId>
184 <version>3.22.0-GA</version>
185 <scope>test</scope>
186 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700187 <!-- TEMP CODE -->
188 <dependency>
189 <groupId>org.json</groupId>
190 <artifactId>json</artifactId>
191 </dependency>
192
193
beili.zhou9adb43f2017-08-11 22:16:05 -0400194 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800195 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400196 <artifactId>appc-message-adapter-api</artifactId>
197 <version>${project.version}</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700198 <scope>provided</scope>
beili.zhou9adb43f2017-08-11 22:16:05 -0400199 </dependency>
200 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800201 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400202 <artifactId>appc-message-adapter-factory</artifactId>
203 <version>${project.version}</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700204 <scope>provided</scope>
beili.zhou9adb43f2017-08-11 22:16:05 -0400205 </dependency>
206 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -0800207 <groupId>org.onap.appc</groupId>
beili.zhou9adb43f2017-08-11 22:16:05 -0400208 <artifactId>appc-dmaap-adapter-bundle</artifactId>
209 <version>${project.version}</version>
210 <scope>provided</scope>
211 </dependency>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700212 </dependencies>
213
Patrick Bradyccd67e92018-11-12 12:14:11 -0800214 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700215</project>