blob: 020f4b77994658d75261b086299d70bd5713f129 [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001<!--
2 ~ Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
3 ~
4 ~ This program and the accompanying materials are made available under the
5 ~ terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 ~ and is available at http://www.eclipse.org/legal/epl-v10.html
7 -->
8
9<project xmlns="http://maven.apache.org/POM/4.0.0"
10 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
12 <modelVersion>4.0.0</modelVersion>
13
14 <groupId>net.onrc.onos</groupId>
15 <artifactId>onos-features</artifactId>
16 <packaging>jar</packaging>
17 <version>1.0.0-SNAPSHOT</version>
18
19 <name>onos-features</name>
20 <description>Apache Karaf features repository</description>
alshabib1f44e8e2014-08-14 15:19:57 -070021 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.codehaus.mojo</groupId>
25 <artifactId>build-helper-maven-plugin</artifactId>
26 <version>1.3</version>
27 <executions>
28 <execution>
29 <id>attach-artifacts</id>
30 <phase>package</phase>
31 <goals>
32 <goal>attach-artifact</goal>
33 </goals>
34 <configuration>
35 <artifacts>
36 <artifact>
37 <file>features.xml</file>
38 <type>xml</type>
39 <classifier>features</classifier>
40 </artifact>
41 </artifacts>
42 </configuration>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
48
49</project>