Release appc
[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>2.6.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         </dependency>
101         <dependency>
102             <groupId>org.onap.appc</groupId>
103             <artifactId>appc-oam-model</artifactId>
104             <version>${project.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>org.onap.appc</groupId>
108             <artifactId>appc-metric-bundle</artifactId>
109             <version>${project.version}</version>
110         </dependency>
111
112         <dependency>
113             <groupId>org.onap.appc</groupId>
114             <artifactId>appc-request-handler-api</artifactId>
115             <version>${project.version}</version>
116         </dependency>
117         <dependency>
118             <groupId>org.onap.appc</groupId>
119             <artifactId>appc-lifecycle-management-api</artifactId>
120             <version>${project.version}</version>
121         </dependency>
122         <dependency>
123             <groupId>org.onap.appc</groupId>
124             <artifactId>appc-lifecycle-management-core</artifactId>
125             <version>${project.version}</version>
126         </dependency>
127         <dependency>
128             <groupId>org.onap.appc</groupId>
129             <artifactId>state-machine-lib</artifactId>
130             <version>${project.version}</version>
131         </dependency>
132
133         <dependency>
134             <groupId>org.opendaylight.controller</groupId>
135             <artifactId>config-api</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>sal-common-util</artifactId>
140         </dependency>
141         <dependency>
142             <artifactId>sal-test-model</artifactId>
143             <groupId>org.opendaylight.controller</groupId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>junit</groupId>
148             <artifactId>junit</artifactId>
149             <scope>test</scope>
150         </dependency>
151         <dependency>
152             <groupId>org.mockito</groupId>
153             <artifactId>mockito-core</artifactId>
154             <version>1.10.19</version>
155             <scope>test</scope>
156         </dependency>
157         <dependency>
158             <groupId>org.powermock</groupId>
159             <artifactId>powermock-api-mockito</artifactId>
160             <version>1.6.4</version>
161             <scope>test</scope>
162         </dependency>
163         <dependency>
164             <groupId>org.powermock</groupId>
165             <artifactId>powermock-module-junit4</artifactId>
166             <version>1.6.2</version>
167             <scope>test</scope>
168         </dependency>
169         <dependency>
170             <groupId>org.javassist</groupId>
171             <artifactId>javassist</artifactId>
172             <version>3.22.0-GA</version>
173             <scope>test</scope>
174         </dependency>
175         <!-- TEMP CODE -->
176         <dependency>
177             <groupId>org.json</groupId>
178             <artifactId>json</artifactId>
179         </dependency>
180
181
182         <dependency>
183             <groupId>org.onap.appc</groupId>
184             <artifactId>appc-message-adapter-api</artifactId>
185             <version>${project.version}</version>
186             <scope>provided</scope>
187         </dependency>
188         <dependency>
189             <groupId>org.onap.appc</groupId>
190             <artifactId>appc-message-adapter-factory</artifactId>
191             <version>${project.version}</version>
192             <scope>provided</scope>
193         </dependency>
194         <dependency>
195             <groupId>org.onap.appc</groupId>
196             <artifactId>appc-dmaap-adapter-bundle</artifactId>
197             <version>${project.version}</version>
198             <scope>provided</scope>
199         </dependency>
200     </dependencies>
201
202     <version>1.6.0</version>
203 </project>