Remove old appc-common
[appc.git] / appc-adapters / appc-rest-adapter / appc-rest-adapter-features / onap-appc-rest-adapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2018 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.4.0-SNAPSHOT</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.appc</groupId>
33     <artifactId>onap-appc-rest-adapter</artifactId>
34     <version>1.4.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.ccsdk.sli.core</groupId>
48             <artifactId>ccsdk-sli</artifactId>
49             <type>xml</type>
50             <classifier>features</classifier>
51         </dependency>
52         <dependency>
53             <groupId>org.onap.appc</groupId>
54             <artifactId>onap-appc-core</artifactId>
55             <version>${project.version}</version>
56             <type>xml</type>
57             <classifier>features</classifier>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.appc</groupId>
61             <artifactId>appc-rest-adapter-bundle</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
66             <artifactId>jersey-guava</artifactId>
67             <version>2.25.1</version>
68         </dependency>
69         <dependency>
70             <groupId>com.fasterxml.jackson.core</groupId>
71             <artifactId>jackson-core</artifactId>
72             <version>2.8.4</version>
73         </dependency>
74         <dependency>
75             <groupId>com.fasterxml.jackson.core</groupId>
76             <artifactId>jackson-databind</artifactId>
77             <version>2.8.4</version>
78         </dependency>
79         <dependency>
80             <groupId>com.fasterxml.jackson.core</groupId>
81             <artifactId>jackson-annotations</artifactId>
82             <version>2.8.4</version>
83         </dependency>
84         <dependency>
85             <groupId>com.fasterxml.jackson.jaxrs</groupId>
86             <artifactId>jackson-jaxrs-base</artifactId>
87             <version>2.8.4</version>
88         </dependency>
89         <dependency>
90             <groupId>com.fasterxml.jackson.jaxrs</groupId>
91             <artifactId>jackson-jaxrs-json-provider</artifactId>
92             <version>2.8.4</version>
93         </dependency>
94         <dependency>
95             <groupId>org.glassfish.jersey.core</groupId>
96             <artifactId>jersey-server</artifactId>
97             <version>2.25.1</version>
98         </dependency>
99         <dependency>
100             <groupId>com.ning</groupId>
101             <artifactId>async-http-client</artifactId>
102             <version>1.9.39</version>
103         </dependency>
104         <dependency>
105             <groupId>org.glassfish.grizzly</groupId>
106             <artifactId>grizzly-http-servlet</artifactId>
107             <version>2.3.28</version>
108         </dependency>
109         <dependency>
110             <groupId>org.glassfish.grizzly</groupId>
111             <artifactId>grizzly-http</artifactId>
112             <version>2.3.28</version>
113         </dependency>
114         
115     </dependencies>
116
117     <build>
118         <plugins>
119             <plugin>
120                 <groupId>org.apache.karaf.tooling</groupId>
121                 <artifactId>karaf-maven-plugin</artifactId>
122                 <extensions>true</extensions>
123                 <configuration>
124                 <includeTransitiveDependency>true</includeTransitiveDependency>
125                     <excludedArtifactIds>
126                         <excludedArtifactId>slf4j-api</excludedArtifactId>
127                         <excludedArtifactId>tomcat-jdbc</excludedArtifactId>
128                         <excludedArtifactId>tomcat-juli</excludedArtifactId>
129                          <excludedArtifactId>httpcore</excludedArtifactId>
130                          <excludedArtifactId>httpclient</excludedArtifactId>
131                          <excludedArtifactId>org.eclipse.osgi</excludedArtifactId>
132                          <excludedArtifactId>appc-common-bundle</excludedArtifactId>
133                          
134                     </excludedArtifactIds>
135                 </configuration>
136             </plugin>
137         </plugins>
138     </build>
139 </project>