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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>binding-parent</artifactId>
29                 <version>2.7.2</version>
30                 <relativePath/>
31         </parent>
32         <groupId>org.onap.appc</groupId>
33     <artifactId>appc-oam-bundle</artifactId>
34     <name>APPC OAM - Bundle</name>
35     <packaging>bundle</packaging>
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.felix</groupId>
40                 <artifactId>maven-bundle-plugin</artifactId>
41                 <extensions>true</extensions>
42                 <configuration>
43                     <instructions>
44                         <Export-Package>org.onap.appc.oam</Export-Package>
45                         <Import-Package>
46                             org.onap.appc.i18n,
47                             org.onap.appc.logging,
48                             org.onap.appc.util,
49                             com.att.eelf.configuration,
50                             com.att.eelf.i18n,
51                             org.onap.appc.adapter.messaging.*,
52                             org.onap.appc.adapter.message.*,
53                             org.onap.appc.adapter.factory.*,
54                             *;resolution:=optional
55                         </Import-Package>
56                         <Embed-Transitive>true</Embed-Transitive>
57                     </instructions>
58                 </configuration>
59             </plugin>
60         </plugins>
61         <pluginManagement>
62             <plugins>
63                 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
64                 <plugin>
65                     <groupId>org.eclipse.m2e</groupId>
66                     <artifactId>lifecycle-mapping</artifactId>
67                     <version>1.0.0</version>
68                     <configuration>
69                         <lifecycleMappingMetadata>
70                             <pluginExecutions>
71                                 <pluginExecution>
72                                     <pluginExecutionFilter>
73                                         <groupId>org.codehaus.mojo</groupId>
74                                         <artifactId>build-helper-maven-plugin</artifactId>
75                                         <versionRange>[1.9.1,)</versionRange>
76                                         <goals>
77                                             <goal>add-source</goal>
78                                         </goals>
79                                     </pluginExecutionFilter>
80                                     <action>
81                                         <ignore/>
82                                     </action>
83                                 </pluginExecution>
84                             </pluginExecutions>
85                         </lifecycleMappingMetadata>
86                     </configuration>
87                 </plugin>
88             </plugins>
89         </pluginManagement>
90     </build>
91
92     <dependencies>
93         <dependency>
94             <groupId>org.onap.appc</groupId>
95             <artifactId>appc-common-bundle</artifactId>
96             <version>${project.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.onap.appc</groupId>
100             <artifactId>appc-oam-model</artifactId>
101             <version>${project.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.onap.appc</groupId>
105             <artifactId>appc-metric-bundle</artifactId>
106             <version>${project.version}</version>
107         </dependency>
108
109         <dependency>
110             <groupId>org.onap.appc</groupId>
111             <artifactId>appc-request-handler-api</artifactId>
112             <version>${project.version}</version>
113         </dependency>
114         <dependency>
115             <groupId>org.onap.appc</groupId>
116             <artifactId>appc-lifecycle-management-api</artifactId>
117             <version>${project.version}</version>
118         </dependency>
119         <dependency>
120             <groupId>org.onap.appc</groupId>
121             <artifactId>appc-lifecycle-management-core</artifactId>
122             <version>${project.version}</version>
123         </dependency>
124         <dependency>
125             <groupId>org.onap.appc</groupId>
126             <artifactId>state-machine-lib</artifactId>
127             <version>${project.version}</version>
128         </dependency>
129
130         <dependency>
131             <groupId>org.opendaylight.controller</groupId>
132             <artifactId>config-api</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>org.opendaylight.controller</groupId>
136             <artifactId>sal-common-util</artifactId>
137         </dependency>
138         <dependency>
139             <artifactId>sal-test-model</artifactId>
140             <groupId>org.opendaylight.controller</groupId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>junit</groupId>
145             <artifactId>junit</artifactId>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.mockito</groupId>
150             <artifactId>mockito-core</artifactId>
151             <version>1.10.19</version>
152             <scope>test</scope>
153         </dependency>
154         <dependency>
155             <groupId>org.powermock</groupId>
156             <artifactId>powermock-api-mockito</artifactId>
157             <version>1.6.4</version>
158             <scope>test</scope>
159         </dependency>
160         <dependency>
161             <groupId>org.powermock</groupId>
162             <artifactId>powermock-module-junit4</artifactId>
163             <version>1.6.2</version>
164             <scope>test</scope>
165         </dependency>
166         <dependency>
167             <groupId>org.javassist</groupId>
168             <artifactId>javassist</artifactId>
169             <version>3.22.0-GA</version>
170             <scope>test</scope>
171         </dependency>
172         <!-- TEMP CODE -->
173         <dependency>
174             <groupId>org.json</groupId>
175             <artifactId>json</artifactId>
176         </dependency>
177
178         <dependency>
179             <groupId>org.onap.appc</groupId>
180             <artifactId>appc-service-communicator-bundle</artifactId>
181             <version>${project.version}</version>
182             <scope>provided</scope>
183         </dependency>
184     </dependencies>
185
186     <version>1.7.2</version>
187 </project>