adding root level pom
Change-Id: Iae13429d17785f7a4825e9e81c3687e28f7d6cbc
Showing
2 changed files
with
21 additions
and
51 deletions
... | @@ -7,8 +7,8 @@ | ... | @@ -7,8 +7,8 @@ |
7 | <packaging>pom</packaging> | 7 | <packaging>pom</packaging> |
8 | <modelVersion>4.0.0</modelVersion> | 8 | <modelVersion>4.0.0</modelVersion> |
9 | 9 | ||
10 | - <name>OpenFlow library and IO</name> | 10 | + <name>OpenFlow controller</name> |
11 | - <description>The OpenFlow library and IO</description> | 11 | + <description>This module contains the OpenFlow library and its associated IO loop</description> |
12 | 12 | ||
13 | 13 | ||
14 | <modules> | 14 | <modules> | ... | ... |
1 | -<!-- | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | - ~ Copyright (c) 2014 Hewlett-Packard Development Company, L.P. | 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | - ~ | 3 | + |
4 | - ~ This program and the accompanying materials are made available under the | 4 | + <groupId>net.onrc.onos</groupId> |
5 | - ~ terms of the Eclipse Public License v1.0 which accompanies this distribution, | 5 | + <artifactId>onos</artifactId> |
6 | - ~ and is available at http://www.eclipse.org/legal/epl-v10.html | 6 | + <version>1.0-SNAPSHOT</version> |
7 | - --> | 7 | + <packaging>pom</packaging> |
8 | - | 8 | + <modelVersion>4.0.0</modelVersion> |
9 | -<project xmlns="http://maven.apache.org/POM/4.0.0" | 9 | + |
10 | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 10 | + <name>ONOS distributed controller</name> |
11 | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | 11 | + <description>ONOS</description> |
12 | - <modelVersion>4.0.0</modelVersion> | 12 | + |
13 | - | 13 | + |
14 | - <groupId>net.onrc.onos</groupId> | 14 | + <modules> |
15 | - <artifactId>onos-features</artifactId> | 15 | + <module>of</module> |
16 | - <packaging>jar</packaging> | 16 | + </modules> |
17 | - <version>1.0.0-SNAPSHOT</version> | 17 | + |
18 | - | 18 | + |
19 | - <name>onos-features</name> | 19 | +</project> |
20 | - <description>Apache Karaf features repository</description> | ||
21 | - <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> | ... | ... |
-
Please register or login to post a comment