Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 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> |
Patrick Brady | d4c14b1 | 2019-05-08 12:57:09 -0700 | [diff] [blame] | 28 | <version>2.5.0</version> |
Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 29 | <relativePath /> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.appc</groupId> |
| 33 | <artifactId>onap-appc-config-flow-controller</artifactId> |
Patrick Brady | 1d5c5fb | 2019-05-09 13:04:18 -0700 | [diff] [blame^] | 34 | <version>1.5.1-SNAPSHOT</version> |
Patrick Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 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>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 Brady | b49dd12 | 2018-08-10 15:30:58 -0700 | [diff] [blame] | 66 | </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> |