4e0c3dbd252bdc19faccd342df5c2870b30293f9
[appc.git] / appc-oam / appc-oam-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 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
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
22   ============LICENSE_END=========================================================
23   -->
24 <project
25         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>
30                 <groupId>org.onap.appc.parent</groupId>
31                 <artifactId>binding-parent</artifactId>
32                 <version>1.5.0-SNAPSHOT</version>
33                 <relativePath />
34         </parent>
35         <groupId>org.onap.appc</groupId>
36     <artifactId>appc-oam-bundle</artifactId>
37     <name>APPC OAM - Bundle</name>
38     <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>
47                         <Export-Package>org.onap.appc.oam</Export-Package>
48                         <Import-Package>
49                             org.onap.appc.i18n,
50                             org.onap.appc.logging,
51                             org.onap.appc.util,
52                             com.att.eelf.configuration,
53                             com.att.eelf.i18n,
54                             org.onap.appc.adapter.messaging.*,
55                             org.onap.appc.adapter.message.*,
56                             org.onap.appc.adapter.factory.*,
57                             *;resolution:=optional
58                         </Import-Package>
59                         <Embed-Transitive>true</Embed-Transitive>
60                     </instructions>
61                 </configuration>
62             </plugin>
63         </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>
97             <groupId>org.onap.appc</groupId>
98             <artifactId>appc-common-bundle</artifactId>
99             <version>${project.version}</version>
100             <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>
112         </dependency>
113         <dependency>
114             <groupId>org.onap.appc</groupId>
115             <artifactId>appc-oam-model</artifactId>
116             <version>${project.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>org.onap.appc</groupId>
120             <artifactId>appc-metric-bundle</artifactId>
121             <version>${project.version}</version>
122         </dependency>
123
124         <dependency>
125             <groupId>org.onap.appc</groupId>
126             <artifactId>appc-request-handler-api</artifactId>
127             <version>${project.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.onap.appc</groupId>
131             <artifactId>appc-lifecycle-management-api</artifactId>
132             <version>${project.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.onap.appc</groupId>
136             <artifactId>appc-lifecycle-management-core</artifactId>
137             <version>${project.version}</version>
138         </dependency>
139         <dependency>
140             <groupId>org.onap.appc</groupId>
141             <artifactId>state-machine-lib</artifactId>
142             <version>${project.version}</version>
143         </dependency>
144
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>config-api</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.opendaylight.controller</groupId>
151             <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>
159             <groupId>junit</groupId>
160             <artifactId>junit</artifactId>
161             <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>org.mockito</groupId>
165             <artifactId>mockito-core</artifactId>
166             <version>1.10.19</version>
167             <scope>test</scope>
168         </dependency>
169         <dependency>
170             <groupId>org.powermock</groupId>
171             <artifactId>powermock-api-mockito</artifactId>
172             <version>1.6.4</version>
173             <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>
181         <dependency>
182             <groupId>org.javassist</groupId>
183             <artifactId>javassist</artifactId>
184             <version>3.22.0-GA</version>
185             <scope>test</scope>
186         </dependency>
187         <!-- TEMP CODE -->
188         <dependency>
189             <groupId>org.json</groupId>
190             <artifactId>json</artifactId>
191         </dependency>
192
193
194         <dependency>
195             <groupId>org.onap.appc</groupId>
196             <artifactId>appc-message-adapter-api</artifactId>
197             <version>${project.version}</version>
198             <scope>provided</scope>
199         </dependency>
200         <dependency>
201             <groupId>org.onap.appc</groupId>
202             <artifactId>appc-message-adapter-factory</artifactId>
203             <version>${project.version}</version>
204             <scope>provided</scope>
205         </dependency>
206         <dependency>
207             <groupId>org.onap.appc</groupId>
208             <artifactId>appc-dmaap-adapter-bundle</artifactId>
209             <version>${project.version}</version>
210             <scope>provided</scope>
211         </dependency>
212     </dependencies>
213
214     <version>1.5.0-SNAPSHOT</version>
215 </project>