tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 8 | <groupId>org.onlab.onos</groupId> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 9 | <artifactId>onos</artifactId> |
| 10 | <version>1.0.0-SNAPSHOT</version> |
| 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
| 13 | |
| 14 | <artifactId>onos-features</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 15 | <packaging>pom</packaging> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 16 | |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 17 | <description>ONOS Apache Karaf feature definitions</description> |
| 18 | |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.codehaus.mojo</groupId> |
| 23 | <artifactId>build-helper-maven-plugin</artifactId> |
tom | 0eb04ca | 2014-08-25 14:34:51 -0700 | [diff] [blame] | 24 | <version>1.9</version> |
tom | 0941951 | 2014-08-15 11:28:43 -0700 | [diff] [blame] | 25 | <executions> |
| 26 | <execution> |
| 27 | <id>attach-artifacts</id> |
| 28 | <phase>package</phase> |
| 29 | <goals> |
| 30 | <goal>attach-artifact</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <artifacts> |
| 34 | <artifact> |
| 35 | <file>features.xml</file> |
| 36 | <type>xml</type> |
| 37 | <classifier>features</classifier> |
| 38 | </artifact> |
| 39 | </artifacts> |
| 40 | </configuration> |
| 41 | </execution> |
| 42 | </executions> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | |
| 47 | </project> |