blob: cd2525f7275dac0aa012a494ef9479b1e209d901 [file] [log] [blame]
Patrick Bradyb49dd122018-08-10 15:30:58 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3============LICENSE_START=======================================================
4ONAP : APPC
5================================================================================
6Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7=============================================================================
8Licensed under the Apache License, Version 2.0 (the "License");
9you may not use this file except in compliance with the License.
10You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14Unless required by applicable law or agreed to in writing, software
15distributed under the License is distributed on an "AS IS" BASIS,
16WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17See the License for the specific language governing permissions and
18limitations 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>
Patrick Bradyd4c14b12019-05-08 12:57:09 -070028 <version>2.5.0</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070029 <relativePath />
30 </parent>
31
32 <groupId>org.onap.appc</groupId>
33 <artifactId>onap-appc-config-flow-controller</artifactId>
Patrick Brady1d5c5fb2019-05-09 13:04:18 -070034 <version>1.5.1-SNAPSHOT</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070035 <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>commons-lang</groupId>
54 <artifactId>commons-lang</artifactId>
55 <version>2.6</version>
56 </dependency>
57 <dependency>
58 <groupId>commons-collections</groupId>
59 <artifactId>commons-collections</artifactId>
60 <version>${commons.collections.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.onap.appc</groupId>
64 <artifactId>appc-config-flow-controller-provider</artifactId>
65 <version>${project.version}</version>
Patrick Bradyb49dd122018-08-10 15:30:58 -070066 </dependency>
67 </dependencies>
68
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.karaf.tooling</groupId>
73 <artifactId>karaf-maven-plugin</artifactId>
74 <extensions>true</extensions>
75 <configuration>
76 <includeTransitiveDependency>false</includeTransitiveDependency>
77 <excludedArtifactIds>
78 <excludedArtifactId>slf4j-api</excludedArtifactId>
79 <excludedArtifactId>tomcat-jdbc</excludedArtifactId>
80 <excludedArtifactId>tomcat-juli</excludedArtifactId>
81 <excludedArtifactId>httpcore</excludedArtifactId>
82 <excludedArtifactId>httpclient</excludedArtifactId>
83 <excludedArtifactId>org.eclipse.osgi</excludedArtifactId>
84
85 </excludedArtifactIds>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90</project>