blob: e370fc65bec5e34cfa552eaef9b000d63948d71c [file] [log] [blame]
tom09419512014-08-15 11:28:43 -07001<?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>
tom0eb04ca2014-08-25 14:34:51 -07008 <groupId>org.onlab.onos</groupId>
tom09419512014-08-15 11:28:43 -07009 <artifactId>onos</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-features</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070015 <packaging>pom</packaging>
tom09419512014-08-15 11:28:43 -070016
tom09419512014-08-15 11:28:43 -070017 <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>
tom0eb04ca2014-08-25 14:34:51 -070024 <version>1.9</version>
tom09419512014-08-15 11:28:43 -070025 <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>