remove dummyprovider 74/40974/3
authorIsaku Yamahata <isaku.yamahata@intel.com>
Tue, 28 Jun 2016 21:22:46 +0000 (14:22 -0700)
committerIsaku Yamahata <isaku.yamahata@gmail.com>
Fri, 1 Jul 2016 17:54:07 +0000 (17:54 +0000)
Now dummyprovider does nothing but provider feature name.
This patch removes dummyprovider

Change-Id: I523fc69552053b54f8c7a780fcc7bd3bd8bf8fce
Signed-off-by: Isaku Yamahata <isaku.yamahata@intel.com>
dummyprovider/pom.xml [deleted file]
dummyprovider/src/main/java/org/opendaylight/neutron/dummyprovider/Activator.java [deleted file]
pom.xml

diff --git a/dummyprovider/pom.xml b/dummyprovider/pom.xml
deleted file mode 100644 (file)
index 8db813d..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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.neutron</groupId>
-    <artifactId>project-neutron-parent</artifactId>
-    <version>0.7.0-SNAPSHOT</version>
-    <relativePath>../parent</relativePath>
-  </parent>
-
-  <groupId>org.opendaylight.neutron</groupId>
-  <artifactId>dummyprovider</artifactId>
-  <version>0.7.0-SNAPSHOT</version>
-  <packaging>bundle</packaging>
-  <properties>
-    <checkstyle.location>${project.parent.basedir}/src/main/resources</checkstyle.location>
-  </properties>
-  <dependencies>
-    <dependency>
-      <groupId>org.opendaylight.neutron</groupId>
-      <artifactId>neutron-spi</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.osgi</groupId>
-      <artifactId>org.osgi.core</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.felix</groupId>
-      <artifactId>org.apache.felix.dependencymanager</artifactId>
-    </dependency>
-  </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.felix</groupId>
-        <artifactId>maven-bundle-plugin</artifactId>
-        <extensions>true</extensions>
-        <configuration>
-          <instructions>
-            <Import-Package>*</Import-Package>
-            <Bundle-Activator>org.opendaylight.neutron.dummyprovider.Activator</Bundle-Activator>
-          </instructions>
-          <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
-  <!--
-      Maven Site Configuration
-
-      The following configuration is necessary for maven-site-plugin to
-      correctly identify the correct deployment path for OpenDaylight Maven
-      sites.
-  -->
-  <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
-
-  <distributionManagement>
-    <site>
-      <id>opendaylight-site</id>
-      <url>${nexus.site.url}/${project.artifactId}/</url>
-    </site>
-  </distributionManagement>
-</project>
diff --git a/dummyprovider/src/main/java/org/opendaylight/neutron/dummyprovider/Activator.java b/dummyprovider/src/main/java/org/opendaylight/neutron/dummyprovider/Activator.java
deleted file mode 100644 (file)
index 2b06964..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (c) 2015 IBM Corporation 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
- */
-
-package org.opendaylight.neutron.dummyprovider;
-
-import org.apache.felix.dm.DependencyActivatorBase;
-import org.apache.felix.dm.DependencyManager;
-
-import org.osgi.framework.BundleContext;
-
-public class Activator extends DependencyActivatorBase {
-
-    @Override
-    public void init(BundleContext context, DependencyManager manager) throws Exception {
-    }
-
-    /**
-     * Function called when the activator stops just before the
-     * cleanup done by ComponentActivatorAbstractBase
-     *
-     */
-    @Override
-    public void destroy(BundleContext context, DependencyManager manager) throws Exception {
-    }
-
-}
diff --git a/pom.xml b/pom.xml
index 843ef9a5c85b5a0eb2d3a9e33a02f0e15505c835..0799b0f5d73e15e1d54e4079f5c7efc7af940fec 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -93,7 +93,6 @@
     <module>neutron-spi</module>
     <module>northbound-api</module>
     <module>transcriber</module>
-    <module>dummyprovider</module>
     <module>neutron-logger</module>
     <module>features/production</module>
     <module>features/test</module>