Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | 694852f | 2018-06-13 16:10:33 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
| 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
| 21 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 22 | ============LICENSE_END========================================================= |
| 23 | --> |
| 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 25 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 26 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <parent> |
| 29 | <artifactId>appc-dispatcher</artifactId> |
| 30 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 31 | <version>1.4.0-SNAPSHOT</version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 32 | </parent> |
| 33 | |
| 34 | <name>APPC Dispatcher - Features</name> |
| 35 | <artifactId>appc-dispatcher-features</artifactId> |
| 36 | <packaging>jar</packaging> |
| 37 | |
| 38 | <build> |
| 39 | <resources> |
| 40 | <resource> |
| 41 | <filtering>true</filtering> |
| 42 | <directory>src/main/resources</directory> |
| 43 | </resource> |
| 44 | </resources> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-resources-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>filter</id> |
| 52 | <goals> |
| 53 | <goal>resources</goal> |
| 54 | </goals> |
| 55 | <phase>generate-resources</phase> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | <plugin> |
| 60 | <groupId>org.codehaus.mojo</groupId> |
| 61 | <artifactId>build-helper-maven-plugin</artifactId> |
| 62 | <executions> |
| 63 | <execution> |
| 64 | <id>attach-artifacts</id> |
| 65 | <goals> |
| 66 | <goal>attach-artifact</goal> |
| 67 | </goals> |
| 68 | <phase>package</phase> |
| 69 | <configuration> |
| 70 | <artifacts> |
| 71 | <artifact> |
| 72 | <file>${project.build.directory}/classes/${features.file}</file> |
| 73 | <type>xml</type> |
| 74 | <classifier>features</classifier> |
| 75 | </artifact> |
| 76 | </artifacts> |
| 77 | </configuration> |
| 78 | </execution> |
| 79 | </executions> |
| 80 | </plugin> |
| 81 | |
| 82 | </plugins> |
| 83 | </build> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 84 | </project> |