blob: baf4bf7d515e4243a0c6ad70b22c099796e552c0 [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>
8 <groupId>net.onrc.onos</groupId>
9 <artifactId>onos</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 <relativePath>../pom.xml</relativePath>
12 </parent>
13
14 <artifactId>onos-features</artifactId>
15 <packaging>jar</packaging>
16
17 <name>onos-features</name>
18 <description>ONOS Apache Karaf feature definitions</description>
19
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.codehaus.mojo</groupId>
24 <artifactId>build-helper-maven-plugin</artifactId>
25 <version>1.3</version>
26 <executions>
27 <execution>
28 <id>attach-artifacts</id>
29 <phase>package</phase>
30 <goals>
31 <goal>attach-artifact</goal>
32 </goals>
33 <configuration>
34 <artifacts>
35 <artifact>
36 <file>features.xml</file>
37 <type>xml</type>
38 <classifier>features</classifier>
39 </artifact>
40 </artifacts>
41 </configuration>
42 </execution>
43 </executions>
44 </plugin>
45 </plugins>
46 </build>
47
48</project>