Bug 7631: provide Karaf 4 features 86/53786/1
authorStephen Kitt <skitt@redhat.com>
Fri, 24 Mar 2017 10:34:24 +0000 (11:34 +0100)
committerStephen Kitt <skitt@redhat.com>
Fri, 24 Mar 2017 10:36:00 +0000 (11:36 +0100)
Change-Id: Id0e917f0a2867ebf8453bb692cf65ac04ad9c41a
Signed-off-by: Stephen Kitt <skitt@redhat.com>
13 files changed:
nemo-features/nemo-features/pom.xml [new file with mode: 0644]
nemo-features/nemo-features/src/main/features/features.xml [moved from nemo-features/src/main/features/features.xml with 98% similarity]
nemo-features/nemo-features4/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-api/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-cli-renderer/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-cli-renderer/src/main/feature/feature.xml [new file with mode: 0644]
nemo-features/odl-nemo-engine-rest/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-engine-ui/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-engine/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-engine/src/main/feature/feature.xml [new file with mode: 0644]
nemo-features/odl-nemo-openflow-renderer/pom.xml [new file with mode: 0644]
nemo-features/odl-nemo-openflow-renderer/src/main/feature/feature.xml [new file with mode: 0644]
nemo-features/pom.xml

diff --git a/nemo-features/nemo-features/pom.xml b/nemo-features/nemo-features/pom.xml
new file mode 100644 (file)
index 0000000..ba94212
--- /dev/null
@@ -0,0 +1,227 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
+This program and the accompanying materials are made available under the
+terms of the Eclipse Public License v1.0 which accompanies this distribution,
+and is available at http://www.eclipse.org/legal/epl-v10.html
+-->
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.opendaylight.odlparent</groupId>
+    <artifactId>features-parent</artifactId>
+    <version>1.8.0-SNAPSHOT</version>
+    <relativePath/>
+  </parent>
+
+  <groupId>org.opendaylight.nemo</groupId>
+  <artifactId>nemo-features</artifactId>
+  <version>1.2.0-SNAPSHOT</version>
+  <!-- <name> formatting is used by autorelease to parse and notify projects on
+       build failure. Please do not modify this unless you have a good reason. -->
+  <name>ODL :: nemo :: ${project.artifactId}</name>
+
+  <prerequisites>
+    <maven>3.1.1</maven>
+  </prerequisites>
+
+  <properties>
+    <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
+    <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
+    <restconf.version>1.5.0-SNAPSHOT</restconf.version>
+    <dlux.version>0.5.0-SNAPSHOT</dlux.version>
+    <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.opendaylight.mdsal.model</groupId>
+        <artifactId>mdsal-model-artifacts</artifactId>
+        <version>${mdsal.model.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.opendaylight.controller</groupId>
+        <artifactId>mdsal-artifacts</artifactId>
+        <version>${mdsal.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.opendaylight.netconf</groupId>
+        <artifactId>restconf-artifacts</artifactId>
+        <version>${restconf.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.opendaylight.dlux</groupId>
+        <artifactId>features-dlux</artifactId>
+        <version>${dlux.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.opendaylight.mdsal.model</groupId>
+      <artifactId>features-mdsal-model</artifactId>
+      <version>${mdsal.model.version}</version>
+      <classifier>features</classifier>
+      <type>xml</type>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.controller</groupId>
+      <artifactId>features-mdsal</artifactId>
+      <classifier>features</classifier>
+      <type>xml</type>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.netconf</groupId>
+      <artifactId>features-restconf</artifactId>
+      <version>${restconf.version}</version>
+      <classifier>features</classifier>
+      <type>xml</type>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.dlux</groupId>
+      <artifactId>features-dlux</artifactId>
+      <version>${dlux.version}</version>
+      <classifier>features</classifier>
+      <type>xml</type>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.openflowplugin</groupId>
+      <artifactId>features-openflowplugin</artifactId>
+      <version>${openflowplugin.version}</version>
+      <classifier>features</classifier>
+      <type>xml</type>
+    </dependency>
+    <dependency>
+      <groupId>org.opendaylight.openflowplugin</groupId>
+      <artifactId>features-openflowplugin-extension</artifactId>
+      <version>${openflowplugin.version}</version>
+      <classifier>features</classifier>
+      <type>xml</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>nemo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>nemo-impl</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>nemo-impl</artifactId>
+      <version>${project.version}</version>
+      <classifier>config</classifier>
+      <type>xml</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>config</classifier>
+      <type>xml</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>node-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>host-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>link-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>openflow-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>external-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>config</classifier>
+      <type>xml</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>node-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>host-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>link-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>cli-renderer</artifactId>
+      <version>${project.version}</version>
+      <classifier>external-resource</classifier>
+      <type>json</type>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>nemo-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <scm>
+    <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
+    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
+    <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
+    <tag>HEAD</tag>
+  </scm>
+</project>
similarity index 98%
rename from nemo-features/src/main/features/features.xml
rename to nemo-features/nemo-features/src/main/features/features.xml
index 05a729055b01d4e48d4d3e97a47179168b4f034d..d10d54769763f0e5c3de703fee1d4fe2579128ea 100644 (file)
@@ -1,57 +1,57 @@
-<?xml version="1.0" encoding="UTF-8"?>\r
-<!--\r
-Copyright (c) 2015 Huawei, Inc and others. All rights reserved.\r
-This program and the accompanying materials are made available under the\r
-terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
-and is available at http://www.eclipse.org/legal/epl-v10.html\r
--->\r
-<features name="odl-nemo-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"\r
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
-  xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">\r
-  <repository>mvn:org.opendaylight.mdsal.model/features-mdsal-model/${mdsal.model.version}/xml/features</repository>\r
-  <repository>mvn:org.opendaylight.controller/features-mdsal/${mdsal.version}/xml/features</repository>\r
-  <repository>mvn:org.opendaylight.netconf/features-restconf/${restconf.version}/xml/features</repository>\r
-  <repository>mvn:org.opendaylight.dlux/features-dlux/${dlux.version}/xml/features</repository>\r
-  <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/${openflowplugin.version}/xml/features</repository>\r
-  <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin-extension/${openflowplugin.version}/xml/features</repository>\r
-  <feature name='odl-nemo-api' version='${project.version}' description='OpenDaylight :: NEMO :: API'>\r
-    <feature version='${mdsal.model.version}'>odl-mdsal-models</feature>\r
-    <bundle>mvn:org.opendaylight.nemo/nemo-api/${project.version}</bundle>\r
-  </feature>\r
-  <feature name='odl-nemo-engine' version='${project.version}' description='OpenDaylight :: NEMO :: Engine'>\r
-    <feature version='${mdsal.version}'>odl-mdsal-broker</feature>\r
-    <feature version='${project.version}'>odl-nemo-api</feature>\r
-    <bundle>mvn:org.opendaylight.nemo/nemo-impl/${project.version}</bundle>\r
-    <configfile finalname='etc/opendaylight/karaf/00-nemo-engine.xml'>mvn:org.opendaylight.nemo/nemo-impl/${project.version}/xml/config</configfile>\r
-  </feature>\r
-  <feature name='odl-nemo-engine-rest' version='${project.version}' description='OpenDaylight :: NEMO :: Engine :: REST'>\r
-    <feature version='${restconf.version}'>odl-restconf</feature>\r
-    <feature version='${mdsal.version}'>odl-mdsal-apidocs</feature>\r
-    <feature version='${project.version}'>odl-nemo-engine</feature>\r
-  </feature>\r
-  <feature name='odl-nemo-openflow-renderer' version='${project.version}' description='OpenDaylight :: NEMO :: OpenFlow Renderer'>\r
-    <feature version='${openflowplugin.version}'>odl-openflowplugin-flow-services</feature>\r
-    <feature version='${openflowplugin.version}'>odl-openflowplugin-nxm-extensions</feature>\r
-    <feature version='${project.version}'>odl-nemo-engine-rest</feature>\r
-    <bundle>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}</bundle>\r
-    <configfile finalname='etc/opendaylight/karaf/01-nemo-openflow-renderer.xml'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/xml/config</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-node-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/node-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-link-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/link-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-host-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/host-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-external-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/external-resource</configfile>\r
-  </feature>\r
-  <feature name='odl-nemo-cli-renderer' version='${project.version}' description='OpenDaylight :: NEMO :: CLI Renderer'>\r
-    <feature version='${project.version}'>odl-nemo-engine-rest</feature>\r
-    <bundle>mvn:org.opendaylight.nemo/cli-renderer/${project.version}</bundle>\r
-    <configfile finalname='etc/opendaylight/karaf/02-nemo-cli-renderer.xml'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/xml/config</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-node-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/node-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-link-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/link-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-host-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/host-resource</configfile>\r
-    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-external-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/external-resource</configfile>\r
-  </feature>\r
-  <feature name='odl-nemo-engine-ui' version='${project.version}' description='OpenDaylight :: NEMO :: Engine :: UI'>\r
-    <feature version='${dlux.version}'>odl-dlux-core</feature>\r
-    <feature version='${project.version}'>odl-nemo-engine-rest</feature>\r
-    <bundle>mvn:org.opendaylight.nemo/nemo-ui/${project.version}</bundle>\r
-  </feature>\r
-</features>\r
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
+This program and the accompanying materials are made available under the
+terms of the Eclipse Public License v1.0 which accompanies this distribution,
+and is available at http://www.eclipse.org/legal/epl-v10.html
+-->
+<features name="odl-nemo-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
+  <repository>mvn:org.opendaylight.mdsal.model/features-mdsal-model/${mdsal.model.version}/xml/features</repository>
+  <repository>mvn:org.opendaylight.controller/features-mdsal/${mdsal.version}/xml/features</repository>
+  <repository>mvn:org.opendaylight.netconf/features-restconf/${restconf.version}/xml/features</repository>
+  <repository>mvn:org.opendaylight.dlux/features-dlux/${dlux.version}/xml/features</repository>
+  <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin/${openflowplugin.version}/xml/features</repository>
+  <repository>mvn:org.opendaylight.openflowplugin/features-openflowplugin-extension/${openflowplugin.version}/xml/features</repository>
+  <feature name='odl-nemo-api' version='${project.version}' description='OpenDaylight :: NEMO :: API'>
+    <feature version='${mdsal.model.version}'>odl-mdsal-models</feature>
+    <bundle>mvn:org.opendaylight.nemo/nemo-api/${project.version}</bundle>
+  </feature>
+  <feature name='odl-nemo-engine' version='${project.version}' description='OpenDaylight :: NEMO :: Engine'>
+    <feature version='${mdsal.version}'>odl-mdsal-broker</feature>
+    <feature version='${project.version}'>odl-nemo-api</feature>
+    <bundle>mvn:org.opendaylight.nemo/nemo-impl/${project.version}</bundle>
+    <configfile finalname='etc/opendaylight/karaf/00-nemo-engine.xml'>mvn:org.opendaylight.nemo/nemo-impl/${project.version}/xml/config</configfile>
+  </feature>
+  <feature name='odl-nemo-engine-rest' version='${project.version}' description='OpenDaylight :: NEMO :: Engine :: REST'>
+    <feature version='${restconf.version}'>odl-restconf</feature>
+    <feature version='${mdsal.version}'>odl-mdsal-apidocs</feature>
+    <feature version='${project.version}'>odl-nemo-engine</feature>
+  </feature>
+  <feature name='odl-nemo-openflow-renderer' version='${project.version}' description='OpenDaylight :: NEMO :: OpenFlow Renderer'>
+    <feature version='${openflowplugin.version}'>odl-openflowplugin-flow-services</feature>
+    <feature version='${openflowplugin.version}'>odl-openflowplugin-nxm-extensions</feature>
+    <feature version='${project.version}'>odl-nemo-engine-rest</feature>
+    <bundle>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}</bundle>
+    <configfile finalname='etc/opendaylight/karaf/01-nemo-openflow-renderer.xml'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/xml/config</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-node-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/node-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-link-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/link-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-host-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/host-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-openflow-renderer-external-resource.json'>mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/external-resource</configfile>
+  </feature>
+  <feature name='odl-nemo-cli-renderer' version='${project.version}' description='OpenDaylight :: NEMO :: CLI Renderer'>
+    <feature version='${project.version}'>odl-nemo-engine-rest</feature>
+    <bundle>mvn:org.opendaylight.nemo/cli-renderer/${project.version}</bundle>
+    <configfile finalname='etc/opendaylight/karaf/02-nemo-cli-renderer.xml'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/xml/config</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-node-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/node-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-link-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/link-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-host-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/host-resource</configfile>
+    <configfile finalname='etc/opendaylight/karaf/nemo-cli-renderer-external-resource.json'>mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/external-resource</configfile>
+  </feature>
+  <feature name='odl-nemo-engine-ui' version='${project.version}' description='OpenDaylight :: NEMO :: Engine :: UI'>
+    <feature version='${dlux.version}'>odl-dlux-core</feature>
+    <feature version='${project.version}'>odl-nemo-engine-rest</feature>
+    <bundle>mvn:org.opendaylight.nemo/nemo-ui/${project.version}</bundle>
+  </feature>
+</features>
diff --git a/nemo-features/nemo-features4/pom.xml b/nemo-features/nemo-features4/pom.xml
new file mode 100644 (file)
index 0000000..44ca46b
--- /dev/null
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>feature-repo-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>nemo-features4</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <!-- <name> formatting is used by autorelease to parse and notify projects on
+         build failure. Please do not modify this unless you have a good reason. -->
+    <name>ODL :: nemo :: ${project.artifactId}</name>
+    <packaging>feature</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-api</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine-rest</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine-ui</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-api/pom.xml b/nemo-features/odl-nemo-api/pom.xml
new file mode 100644 (file)
index 0000000..99f6fc4
--- /dev/null
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-api</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: API</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.mdsal.model</groupId>
+            <artifactId>odl-mdsal-models</artifactId>
+            <version>0.10.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>nemo-api</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-cli-renderer/pom.xml b/nemo-features/odl-nemo-cli-renderer/pom.xml
new file mode 100644 (file)
index 0000000..4c966b4
--- /dev/null
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-cli-renderer</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: CLI Renderer</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine-rest</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/02-nemo-cli-renderer.xml" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>config</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-cli-renderer-node-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>node-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-cli-renderer-link-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>link-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-cli-renderer-host-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>host-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-cli-renderer-external-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>cli-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>external-resource</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-cli-renderer/src/main/feature/feature.xml b/nemo-features/odl-nemo-cli-renderer/src/main/feature/feature.xml
new file mode 100644 (file)
index 0000000..33036da
--- /dev/null
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<features name="odl-nemo-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0">
+    <feature name="odl-nemo-cli-renderer" version="${project.version}">
+        <configfile finalname="etc/opendaylight/karaf/02-nemo-cli-renderer.xml">
+            mvn:org.opendaylight.nemo/cli-renderer/${project.version}/xml/config
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-cli-renderer-node-resource.json">
+            mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/node-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-cli-renderer-link-resource.json">
+            mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/link-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-cli-renderer-host-resource.json">
+            mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/host-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-cli-renderer-external-resource.json">
+            mvn:org.opendaylight.nemo/cli-renderer/${project.version}/json/external-resource
+        </configfile>
+    </feature>
+</features>
diff --git a/nemo-features/odl-nemo-engine-rest/pom.xml b/nemo-features/odl-nemo-engine-rest/pom.xml
new file mode 100644 (file)
index 0000000..87aec21
--- /dev/null
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-engine-rest</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: Engine :: REST</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-restconf</artifactId>
+            <version>1.5.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.netconf</groupId>
+            <artifactId>odl-mdsal-apidocs</artifactId>
+            <version>1.5.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-engine-ui/pom.xml b/nemo-features/odl-nemo-engine-ui/pom.xml
new file mode 100644 (file)
index 0000000..1f97bda
--- /dev/null
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-engine-ui</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: Engine :: UI</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.dlux</groupId>
+            <artifactId>odl-dlux-core</artifactId>
+            <version>0.5.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine-rest</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.nemo</groupId>
+            <artifactId>nemo-ui</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-engine/pom.xml b/nemo-features/odl-nemo-engine/pom.xml
new file mode 100644 (file)
index 0000000..cdcbd75
--- /dev/null
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-engine</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: Engine</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>odl-mdsal-broker</artifactId>
+            <version>1.5.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-api</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>nemo-impl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/00-nemo-engine.xml" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>nemo-impl</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>config</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-engine/src/main/feature/feature.xml b/nemo-features/odl-nemo-engine/src/main/feature/feature.xml
new file mode 100644 (file)
index 0000000..5e09973
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<features name="odl-nemo-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0">
+    <feature name="odl-nemo-engine" version="${project.version}">
+        <configfile finalname="etc/opendaylight/karaf/00-nemo-engine.xml">
+            mvn:org.opendaylight.nemo/nemo-impl/${project.version}/xml/config
+        </configfile>
+    </feature>
+</features>
diff --git a/nemo-features/odl-nemo-openflow-renderer/pom.xml b/nemo-features/odl-nemo-openflow-renderer/pom.xml
new file mode 100644 (file)
index 0000000..2dd657c
--- /dev/null
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>single-feature-parent</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>odl-nemo-openflow-renderer</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <packaging>feature</packaging>
+
+    <name>OpenDaylight :: NEMO :: OpenFlow Renderer</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.opendaylight.openflowplugin</groupId>
+            <artifactId>odl-openflowplugin-flow-services</artifactId>
+            <version>0.4.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.openflowplugin</groupId>
+            <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
+            <version>0.4.0-SNAPSHOT</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>odl-nemo-engine-rest</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/01-nemo-openflow-renderer.xml" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>config</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-openflow-renderer-node-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>node-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-openflow-renderer-link-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>link-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-openflow-renderer-host-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>host-resource</classifier>
+        </dependency>
+        <dependency>
+            <!-- finalname="etc/opendaylight/karaf/nemo-openflow-renderer-external-resource.json" -->
+            <groupId>${project.groupId}</groupId>
+            <artifactId>openflow-renderer</artifactId>
+            <version>${project.version}</version>
+            <type>json</type>
+            <classifier>external-resource</classifier>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file
diff --git a/nemo-features/odl-nemo-openflow-renderer/src/main/feature/feature.xml b/nemo-features/odl-nemo-openflow-renderer/src/main/feature/feature.xml
new file mode 100644 (file)
index 0000000..4dd927a
--- /dev/null
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright © 2017 Red Hat, Inc. and others.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<features name="odl-nemo-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0">
+    <feature name="odl-nemo-openflow-renderer" version="${project.version}">
+        <configfile finalname="etc/opendaylight/karaf/01-nemo-openflow-renderer.xml">
+            mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/xml/config
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-openflow-renderer-node-resource.json">
+            mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/node-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-openflow-renderer-link-resource.json">
+            mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/link-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-openflow-renderer-host-resource.json">
+            mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/host-resource
+        </configfile>
+        <configfile finalname="etc/opendaylight/karaf/nemo-openflow-renderer-external-resource.json">
+            mvn:org.opendaylight.nemo/openflow-renderer/${project.version}/json/external-resource
+        </configfile>
+    </feature>
+</features>
index ba94212646a45ddc13622663e1391d2f63e0dc30..c159e6b1dd1d16468e295c34d813f5501172f46d 100644 (file)
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-Copyright (c) 2015 Huawei, Inc and others. All rights reserved.
-This program and the accompanying materials are made available under the
-terms of the Eclipse Public License v1.0 which accompanies this distribution,
-and is available at http://www.eclipse.org/legal/epl-v10.html
--->
-<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/xsd/maven-4.0.0.xsd">
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.opendaylight.odlparent</groupId>
-    <artifactId>features-parent</artifactId>
-    <version>1.8.0-SNAPSHOT</version>
-    <relativePath/>
-  </parent>
+ Copyright © 2017 Red Hat, Inc. and others.
 
-  <groupId>org.opendaylight.nemo</groupId>
-  <artifactId>nemo-features</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <!-- <name> formatting is used by autorelease to parse and notify projects on
-       build failure. Please do not modify this unless you have a good reason. -->
-  <name>ODL :: nemo :: ${project.artifactId}</name>
-
-  <prerequisites>
-    <maven>3.1.1</maven>
-  </prerequisites>
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+ -->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
 
-  <properties>
-    <mdsal.model.version>0.10.0-SNAPSHOT</mdsal.model.version>
-    <mdsal.version>1.5.0-SNAPSHOT</mdsal.version>
-    <restconf.version>1.5.0-SNAPSHOT</restconf.version>
-    <dlux.version>0.5.0-SNAPSHOT</dlux.version>
-    <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
-  </properties>
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>1.8.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
 
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>org.opendaylight.mdsal.model</groupId>
-        <artifactId>mdsal-model-artifacts</artifactId>
-        <version>${mdsal.model.version}</version>
-        <type>pom</type>
-        <scope>import</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.opendaylight.controller</groupId>
-        <artifactId>mdsal-artifacts</artifactId>
-        <version>${mdsal.version}</version>
-        <type>pom</type>
-        <scope>import</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.opendaylight.netconf</groupId>
-        <artifactId>restconf-artifacts</artifactId>
-        <version>${restconf.version}</version>
-        <type>pom</type>
-        <scope>import</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.opendaylight.dlux</groupId>
-        <artifactId>features-dlux</artifactId>
-        <version>${dlux.version}</version>
-        <type>pom</type>
-        <scope>import</scope>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
+    <groupId>org.opendaylight.nemo</groupId>
+    <artifactId>nemo-features-aggregator</artifactId>
+    <version>1.2.0-SNAPSHOT</version>
+    <!-- <name> formatting is used by autorelease to parse and notify projects on
+         build failure. Please do not modify this unless you have a good reason. -->
+    <name>ODL :: nemo :: ${project.artifactId}</name>
+    <packaging>pom</packaging>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.opendaylight.mdsal.model</groupId>
-      <artifactId>features-mdsal-model</artifactId>
-      <version>${mdsal.model.version}</version>
-      <classifier>features</classifier>
-      <type>xml</type>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.controller</groupId>
-      <artifactId>features-mdsal</artifactId>
-      <classifier>features</classifier>
-      <type>xml</type>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.netconf</groupId>
-      <artifactId>features-restconf</artifactId>
-      <version>${restconf.version}</version>
-      <classifier>features</classifier>
-      <type>xml</type>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.dlux</groupId>
-      <artifactId>features-dlux</artifactId>
-      <version>${dlux.version}</version>
-      <classifier>features</classifier>
-      <type>xml</type>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.openflowplugin</groupId>
-      <artifactId>features-openflowplugin</artifactId>
-      <version>${openflowplugin.version}</version>
-      <classifier>features</classifier>
-      <type>xml</type>
-    </dependency>
-    <dependency>
-      <groupId>org.opendaylight.openflowplugin</groupId>
-      <artifactId>features-openflowplugin-extension</artifactId>
-      <version>${openflowplugin.version}</version>
-      <classifier>features</classifier>
-      <type>xml</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>nemo-api</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>nemo-impl</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>nemo-impl</artifactId>
-      <version>${project.version}</version>
-      <classifier>config</classifier>
-      <type>xml</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>config</classifier>
-      <type>xml</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>node-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>host-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>link-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>openflow-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>external-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>config</classifier>
-      <type>xml</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>node-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>host-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>link-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>cli-renderer</artifactId>
-      <version>${project.version}</version>
-      <classifier>external-resource</classifier>
-      <type>json</type>
-    </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>nemo-ui</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-  </dependencies>
+    <modules>
+        <module>nemo-features</module>
+        <module>nemo-features4</module>
+        <module>odl-nemo-api</module>
+        <module>odl-nemo-engine</module>
+        <module>odl-nemo-engine-rest</module>
+        <module>odl-nemo-openflow-renderer</module>
+        <module>odl-nemo-cli-renderer</module>
+        <module>odl-nemo-engine-ui</module>
+    </modules>
 
-  <scm>
-    <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
-    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
-    <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
-    <tag>HEAD</tag>
-  </scm>
+    <scm>
+        <connection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</connection>
+        <developerConnection>scm:git:ssh://git.opendaylight.org:29418/nemo.git</developerConnection>
+        <url>https://wiki.opendaylight.org/view/NEMO:Main</url>
+        <tag>HEAD</tag>
+    </scm>
 </project>