blob: eebb8f2566a5702ccb869f1d338c546ddecf12f2 [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>
21
22 <dependencies>
23 <!--<dependency>
24 <groupId>commons-codec</groupId>
25 <artifactId>commons-codec</artifactId>
26 <version>1.7</version>
27 </dependency>
28 <dependency>
29 <groupId>commons-io</groupId>
30 <artifactId>commons-io</artifactId>
31 <version>2.4</version>
32 </dependency>
33 <dependency>
34 <groupId>commons-lang</groupId>
35 <artifactId>commons-lang</artifactId>
36 <version>2.6</version>
37 </dependency>
38 <dependency>
39 <groupId>commons-configuration</groupId>
40 <artifactId>commons-configuration</artifactId>
41 <version>1.10</version>
42 </dependency>-->
43 </dependencies>
44
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.codehaus.mojo</groupId>
49 <artifactId>build-helper-maven-plugin</artifactId>
50 <version>1.3</version>
51 <executions>
52 <execution>
53 <id>attach-artifacts</id>
54 <phase>package</phase>
55 <goals>
56 <goal>attach-artifact</goal>
57 </goals>
58 <configuration>
59 <artifacts>
60 <artifact>
61 <file>features.xml</file>
62 <type>xml</type>
63 <classifier>features</classifier>
64 </artifact>
65 </artifacts>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72
73</project>