e8effcf7dd3bd5d55bc648ff27dc4cbf1eedf516
[appc.git] / appc-adapters / appc-dmaap-adapter / appc-dmaap-adapter-features / onap-appc-dmaap-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
7 =============================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22     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
25     <parent>
26         <groupId>org.onap.appc.parent</groupId>
27         <artifactId>single-feature-parent</artifactId>
28         <version>1.5.0-SNAPSHOT</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.appc</groupId>
33     <artifactId>onap-appc-dmaap-adapter</artifactId>
34     <version>1.5.0-SNAPSHOT</version>
35     <packaging>feature</packaging>
36
37     <name></name>
38
39     <dependencies>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>odl-mdsal-broker</artifactId>
43             <type>xml</type>
44             <classifier>features</classifier>
45         </dependency>
46         <dependency>
47             <groupId>org.onap.appc</groupId>
48             <artifactId>appc-dmaap-adapter-bundle</artifactId>
49             <version>${project.version}</version>
50             <exclusions>
51               <exclusion>
52                 <groupId>com.fasterxml.jackson.core</groupId>
53                 <artifactId>jackson-databind</artifactId>
54               </exclusion>
55             </exclusions>
56         </dependency>
57         <dependency>
58             <groupId>org.onap.appc</groupId>
59             <artifactId>appc-message-adapter-factory</artifactId>
60             <version>${project.version}</version>
61             <exclusions>
62               <exclusion>
63                 <groupId>com.fasterxml.jackson.core</groupId>
64                 <artifactId>jackson-databind</artifactId>
65               </exclusion>
66             </exclusions>
67         </dependency>
68         <dependency>
69             <groupId>org.onap.appc</groupId>
70             <artifactId>appc-message-adapter-api</artifactId>
71             <version>${project.version}</version>
72             <exclusions>
73               <exclusion>
74                 <groupId>com.fasterxml.jackson.core</groupId>
75                 <artifactId>jackson-databind</artifactId>
76               </exclusion>
77             </exclusions>
78         </dependency>
79
80         <dependency>
81            <groupId>com.fasterxml.jackson.core</groupId>
82            <artifactId>jackson-databind</artifactId>
83            <version>2.8.11.3</version>
84         </dependency>
85
86         <dependency>
87             <groupId>com.sun.jersey</groupId>
88             <artifactId>jersey-server</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>com.sun.jersey</groupId>
92             <artifactId>jersey-servlet</artifactId>
93         </dependency>
94 <!--         <dependency> -->
95 <!--             <groupId>org.glassfish.jersey.core</groupId> -->
96 <!--             <artifactId>jersey-server</artifactId> -->
97 <!--             <version>2.22.1</version> -->
98 <!--         </dependency> -->
99 <!--         <dependency> -->
100 <!--             <groupId>com.fasterxml.jackson.jaxrs</groupId> -->
101 <!--             <artifactId>jackson-jaxrs-base</artifactId> -->
102 <!--             <version>2.5.4</version> -->
103 <!--         </dependency> -->
104 <!--         <dependency> -->
105 <!--             <groupId>com.fasterxml.jackson.jaxrs</groupId> -->
106 <!--             <artifactId>jackson-jaxrs-json-provider</artifactId> -->
107 <!--             <version>2.5.4</version> -->
108 <!--         </dependency> -->
109 <!--         <dependency> -->
110 <!--             <groupId>org.apache.httpcomponents</groupId> -->
111 <!--             <artifactId>httpclient-osgi</artifactId> -->
112 <!--             <version>4.5.3</version> -->
113 <!--         </dependency> -->
114 <!--         <dependency> -->
115 <!--             <groupId>org.apache.httpcomponents</groupId> -->
116 <!--             <artifactId>httpcore-osgi</artifactId> -->
117 <!--             <version>4.4</version> -->
118 <!--         </dependency> -->
119     </dependencies>
120
121     <build>
122         <plugins>
123             <plugin>
124                 <groupId>org.apache.karaf.tooling</groupId>
125                 <artifactId>karaf-maven-plugin</artifactId>
126                 <extensions>true</extensions>
127                 <configuration>
128                 <includeTransitiveDependency>false</includeTransitiveDependency>
129                     <excludedArtifactIds>
130                         <excludedArtifactId>slf4j-api</excludedArtifactId>
131                         <excludedArtifactId>tomcat-jdbc</excludedArtifactId>
132                         <excludedArtifactId>tomcat-juli</excludedArtifactId>
133                          <excludedArtifactId>httpcore</excludedArtifactId>
134                          <excludedArtifactId>httpclient</excludedArtifactId>
135                          <excludedArtifactId>org.eclipse.osgi</excludedArtifactId>
136                          
137                     </excludedArtifactIds>
138                 </configuration>
139             </plugin>
140         </plugins>
141     </build>
142 </project>