Skip Wonnell | ab6c2c0 | 2017-08-14 17:47:10 -0500 | [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 | |
| 5 | <parent> |
| 6 | <artifactId>appc-design-services</artifactId> |
| 7 | <groupId>org.openecomp.appc</groupId> |
| 8 | <version>1.1.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | <artifactId>appc-design-services-features</artifactId> |
| 11 | |
| 12 | <packaging>jar</packaging> |
| 13 | |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>org.openecomp.appc</groupId> |
| 17 | <artifactId>appc-design-services-model</artifactId> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>org.openecomp.appc</groupId> |
| 21 | <artifactId>appc-design-services-provider</artifactId> |
| 22 | </dependency> |
| 23 | |
| 24 | <!-- dependency for opendaylight-karaf-empty for use by testing --> |
| 25 | <dependency> |
| 26 | <groupId>org.opendaylight.controller</groupId> |
| 27 | <artifactId>opendaylight-karaf-empty</artifactId> |
| 28 | <type>zip</type> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <!-- Required for launching the feature tests--> |
| 33 | <groupId>org.opendaylight.odlparent</groupId> |
| 34 | <artifactId>features-test</artifactId> |
| 35 | <scope>test</scope> |
| 36 | <version>${odl.commons.opendaylight.version}</version> |
| 37 | </dependency> |
| 38 | </dependencies> |
| 39 | |
| 40 | <build> |
| 41 | <resources> |
| 42 | <resource> |
| 43 | <filtering>true</filtering> |
| 44 | <directory>src/main/resources</directory> |
| 45 | </resource> |
| 46 | </resources> |
| 47 | <plugins> |
| 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> |
| 50 | <artifactId>maven-resources-plugin</artifactId> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <id>filter</id> |
| 54 | <goals> |
| 55 | <goal>resources</goal> |
| 56 | </goals> |
| 57 | <phase>generate-resources</phase> |
| 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | <plugin> |
| 62 | <groupId>org.codehaus.mojo</groupId> |
| 63 | <artifactId>build-helper-maven-plugin</artifactId> |
| 64 | <executions> |
| 65 | <execution> |
| 66 | <id>attach-artifacts</id> |
| 67 | <goals> |
| 68 | <goal>attach-artifact</goal> |
| 69 | </goals> |
| 70 | <phase>package</phase> |
| 71 | <configuration> |
| 72 | <artifacts> |
| 73 | <artifact> |
| 74 | <file>${project.build.directory}/classes/${features.file}</file> |
| 75 | <type>xml</type> |
| 76 | <classifier>features</classifier> |
| 77 | </artifact> |
| 78 | </artifacts> |
| 79 | </configuration> |
| 80 | </execution> |
| 81 | </executions> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </build> |
| 85 | </project> |