update mockito version in APPC
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-message-adapter-factory / 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   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <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">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc.parent</groupId>
26                 <artifactId>binding-parent</artifactId>
27                 <version>2.7.0-SNAPSHOT</version>
28                 <relativePath/>
29         </parent>
30
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-message-adapter-factory</artifactId>
33         <packaging>bundle</packaging>
34         <name>appc-message-adapter-factory</name>
35
36         <dependencies>
37                 <dependency>
38                         <groupId>org.onap.appc</groupId>
39                         <artifactId>appc-common-bundle</artifactId>
40                         <version>${project.version}</version>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>org.onap.appc</groupId>
45                         <artifactId>appc-dmaap-adapter-bundle</artifactId>
46                         <version>${project.version}</version>
47             <scope>provided</scope>
48         </dependency>
49
50         <dependency>
51             <groupId>org.onap.appc</groupId>
52             <artifactId>appc-message-adapter-api</artifactId>
53             <version>${project.version}</version>
54             <scope>provided</scope>
55                 </dependency>
56                 
57                 <dependency>
58                         <groupId>junit</groupId>
59                         <artifactId>junit</artifactId>
60                         <scope>test</scope>
61                 </dependency>
62
63                 <dependency>
64                         <groupId>equinoxSDK381</groupId>
65                         <artifactId>org.eclipse.osgi</artifactId>
66                         <version>${equinox.osgi.version}</version>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>commons-codec</groupId>
71                         <artifactId>commons-codec</artifactId>
72                         </dependency>
73
74                 <dependency>
75                         <groupId>commons-lang</groupId>
76                         <artifactId>commons-lang</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-databind</artifactId>
82                 </dependency>
83                 <dependency>
84                         <groupId>com.fasterxml.jackson.core</groupId>
85                         <artifactId>jackson-core</artifactId>
86                 </dependency>
87                 <dependency>
88                         <groupId>com.fasterxml.jackson.core</groupId>
89                         <artifactId>jackson-annotations</artifactId>
90                 </dependency>
91
92                 <dependency>
93                         <groupId>org.mockito</groupId>
94                         <artifactId>mockito-core</artifactId>
95                         <version>1.10.19</version>
96                         <scope>test</scope>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.powermock</groupId>
100                         <artifactId>powermock-api-mockito</artifactId>
101                         <version>1.6.4</version>
102                         <scope>test</scope>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.hamcrest</groupId>
106                         <artifactId>hamcrest-core</artifactId>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.objenesis</groupId>
110                         <artifactId>objenesis</artifactId>
111                         <version>2.2</version>
112                 </dependency>
113
114                 <dependency>
115                         <groupId>org.powermock</groupId>
116                         <artifactId>powermock-module-junit4</artifactId>
117                         <version>1.6.4</version>
118                         <scope>test</scope>
119                 </dependency>
120
121                 <dependency>
122                         <groupId>org.onap.ccsdk.sli.core</groupId>
123                         <artifactId>sli-common</artifactId>
124                         <scope>compile</scope>
125                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
126                         <exclusions>
127                                 <exclusion>
128                                         <groupId>org.onap.ccsdk.sli.core</groupId>
129                                         <artifactId>dblib-provider</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133
134                 <dependency>
135                         <groupId>org.onap.ccsdk.sli.core</groupId>
136                         <artifactId>sli-provider</artifactId>
137                         <scope>compile</scope>
138                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
139                         <exclusions>
140                                 <exclusion>
141                                         <groupId>org.onap.ccsdk.sli.core</groupId>
142                                         <artifactId>dblib-provider</artifactId>
143                                 </exclusion>
144                         </exclusions>
145                 </dependency>
146
147         </dependencies>
148
149         <build>
150                 <plugins>
151                         <plugin>
152                                 <groupId>org.apache.felix</groupId>
153                                 <artifactId>maven-bundle-plugin</artifactId>
154                                 <extensions>true</extensions>
155                                 <configuration>
156                                         <instructions>
157                                                 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
158                                                 <Bundle-Version>${project.version}</Bundle-Version>
159                                                 <Export-Package>org.onap.appc.adapter.factory</Export-Package>
160                                                 <Bundle-Activator>org.onap.appc.adapter.factory.DmaapMessageAdapterFactoryActivator</Bundle-Activator>
161                                                 <Export-Service>org.onap.appc.adapter.message.MessageAdapterFactory</Export-Service>
162                                                 <Import-Package>org.onap.appc.adapter.messaging.*,org.onap.appc.adapter.message.*,org.onap.appc.metricservice.*,com.att.nsa.*org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,!org.osgi.service.event.*,org.osgi.service.*,org.osgi.util.*,com.vmware.*,org.apache.xerces.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.*,javax.naming.*,javax.crypto.*,org.eclipse.jetty.servlets</Import-Package>
163                                                 <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|pax-*</Embed-Dependency>
164                                                 <Embed-Transitive>true</Embed-Transitive>
165                                                 <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint>
166                                         </instructions>
167                                 </configuration>
168                         </plugin>
169                 </plugins>
170         </build>
171         <version>1.7.0-SNAPSHOT</version>
172 </project>