Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>appc-dispatcher</artifactId> |
| 6 | <groupId>org.openecomp.appc</groupId> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame^] | 7 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 8 | </parent> |
| 9 | <name>appc-dispatcher-features</name> |
| 10 | <artifactId>appc-dispatcher-features</artifactId> |
| 11 | |
| 12 | <packaging>jar</packaging> |
| 13 | |
| 14 | <build> |
| 15 | <resources> |
| 16 | <resource> |
| 17 | <filtering>true</filtering> |
| 18 | <directory>src/main/resources</directory> |
| 19 | </resource> |
| 20 | </resources> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.maven.plugins</groupId> |
| 24 | <artifactId>maven-resources-plugin</artifactId> |
| 25 | <executions> |
| 26 | <execution> |
| 27 | <id>filter</id> |
| 28 | <goals> |
| 29 | <goal>resources</goal> |
| 30 | </goals> |
| 31 | <phase>generate-resources</phase> |
| 32 | </execution> |
| 33 | </executions> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <groupId>org.codehaus.mojo</groupId> |
| 37 | <artifactId>build-helper-maven-plugin</artifactId> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <id>attach-artifacts</id> |
| 41 | <goals> |
| 42 | <goal>attach-artifact</goal> |
| 43 | </goals> |
| 44 | <phase>package</phase> |
| 45 | <configuration> |
| 46 | <artifacts> |
| 47 | <artifact> |
| 48 | <file>${project.build.directory}/classes/${features.file}</file> |
| 49 | <type>xml</type> |
| 50 | <classifier>features</classifier> |
| 51 | </artifact> |
| 52 | </artifacts> |
| 53 | </configuration> |
| 54 | </execution> |
| 55 | </executions> |
| 56 | </plugin> |
| 57 | |
| 58 | </plugins> |
| 59 | </build> |
| 60 | </project> |