Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 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 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 22 | --> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <artifactId>appc-artifact-handler</artifactId> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 28 | <groupId>org.onap.appc</groupId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 29 | <version>1.3.0-SNAPSHOT</version> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | <artifactId>appc-artifact-handler-features</artifactId> |
Dilip kumar Pampana | 819f39b | 2018-01-05 11:47:22 -0500 | [diff] [blame] | 32 | <name>APPC Artifact Handler - Feature</name> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 33 | <packaging>jar</packaging> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 37 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 38 | <artifactId>appc-artifact-handler-model</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 41 | <groupId>org.onap.appc</groupId> |
Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [diff] [blame] | 42 | <artifactId>appc-artifact-handler-provider</artifactId> |
| 43 | <classifier>config</classifier> |
| 44 | <type>xml</type> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.opendaylight.mdsal</groupId> |
| 48 | <artifactId>features-mdsal</artifactId> |
| 49 | <classifier>features</classifier> |
| 50 | <type>xml</type> |
| 51 | <scope>runtime</scope> |
| 52 | </dependency> |
| 53 | <!-- dependency for opendaylight-karaf-empty for use by testing --> |
| 54 | <dependency> |
| 55 | <groupId>org.opendaylight.controller</groupId> |
| 56 | <artifactId>opendaylight-karaf-empty</artifactId> |
| 57 | <type>zip</type> |
| 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <!-- Required for launching the feature tests --> |
| 62 | <groupId>org.opendaylight.odlparent</groupId> |
| 63 | <artifactId>features-test</artifactId> |
| 64 | <scope>test</scope> |
| 65 | <version>${odl.commons.opendaylight.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.opendaylight.yangtools</groupId> |
| 69 | <artifactId>features-yangtools</artifactId> |
| 70 | <classifier>features</classifier> |
| 71 | <type>xml</type> |
| 72 | <scope>runtime</scope> |
| 73 | </dependency> |
| 74 | </dependencies> |
| 75 | |
| 76 | <build> |
| 77 | <resources> |
| 78 | <resource> |
| 79 | <filtering>true</filtering> |
| 80 | <directory>src/main/resources</directory> |
| 81 | </resource> |
| 82 | </resources> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-resources-plugin</artifactId> |
| 87 | <executions> |
| 88 | <execution> |
| 89 | <id>filter</id> |
| 90 | <goals> |
| 91 | <goal>resources</goal> |
| 92 | </goals> |
| 93 | <phase>generate-resources</phase> |
| 94 | </execution> |
| 95 | </executions> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.codehaus.mojo</groupId> |
| 99 | <artifactId>build-helper-maven-plugin</artifactId> |
| 100 | <executions> |
| 101 | <execution> |
| 102 | <id>attach-artifacts</id> |
| 103 | <goals> |
| 104 | <goal>attach-artifact</goal> |
| 105 | </goals> |
| 106 | <phase>package</phase> |
| 107 | <configuration> |
| 108 | <artifacts> |
| 109 | <artifact> |
| 110 | <file>${project.build.directory}/classes/${features.file}</file> |
| 111 | <type>xml</type> |
| 112 | <classifier>features</classifier> |
| 113 | </artifact> |
| 114 | </artifacts> |
| 115 | </configuration> |
| 116 | </execution> |
| 117 | </executions> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | </build> |
| 121 | </project> |