blob: d39e79e3d7ed3f8901976c13785e5df2e922e273 [file] [log] [blame]
tom09419512014-08-15 11:28:43 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 ~ Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
tom09419512014-08-15 11:28:43 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
tom0eb04ca2014-08-25 14:34:51 -070023 <groupId>org.onlab.onos</groupId>
tom09419512014-08-15 11:28:43 -070024 <artifactId>onos</artifactId>
25 <version>1.0.0-SNAPSHOT</version>
26 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <artifactId>onos-features</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070030 <packaging>pom</packaging>
tom09419512014-08-15 11:28:43 -070031
tom09419512014-08-15 11:28:43 -070032 <description>ONOS Apache Karaf feature definitions</description>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.codehaus.mojo</groupId>
38 <artifactId>build-helper-maven-plugin</artifactId>
tom0eb04ca2014-08-25 14:34:51 -070039 <version>1.9</version>
tom09419512014-08-15 11:28:43 -070040 <executions>
41 <execution>
42 <id>attach-artifacts</id>
43 <phase>package</phase>
44 <goals>
45 <goal>attach-artifact</goal>
46 </goals>
47 <configuration>
48 <artifacts>
49 <artifact>
50 <file>features.xml</file>
51 <type>xml</type>
52 <classifier>features</classifier>
53 </artifact>
54 </artifacts>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61
62</project>