Applying patch (FELIX-89) to remove the dummy activator now that the
OSGi plugin does not guess the activator by default.


git-svn-id: https://svn.apache.org/repos/asf/incubator/felix/trunk@419027 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/org.apache.felix.ipojo/pom.xml b/org.apache.felix.ipojo/pom.xml
index defb4b6..a9119a0 100644
--- a/org.apache.felix.ipojo/pom.xml
+++ b/org.apache.felix.ipojo/pom.xml
@@ -45,7 +45,6 @@
             <exportPackage>
               org.apache.felix.ipojo, org.apache.felix.ipojo.metadata, org.apache.felix.ipojo.architecture, org.apache.felix.ipojo.parser, org.osgi.service.cm
             </exportPackage>
-            <bundleActivator>org.apache.felix.ipojo.DummyActivator</bundleActivator>
           </osgiManifest>
         </configuration>
       </plugin>
diff --git a/org.apache.felix.ipojo/src/main/java/org/apache/felix/ipojo/DummyActivator.java b/org.apache.felix.ipojo/src/main/java/org/apache/felix/ipojo/DummyActivator.java
index 7f72a94..e69de29 100644
--- a/org.apache.felix.ipojo/src/main/java/org/apache/felix/ipojo/DummyActivator.java
+++ b/org.apache.felix.ipojo/src/main/java/org/apache/felix/ipojo/DummyActivator.java
@@ -1,43 +0,0 @@
-/*
- *   Copyright 2006 The Apache Software Foundation
- *
- *   Licensed under the Apache License, Version 2.0 (the "License");
- *   you may not use this file except in compliance with the License.
- *   You may obtain a copy of the License at
- *
- *       http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing, software
- *   distributed under the License is distributed on an "AS IS" BASIS,
- *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *   See the License for the specific language governing permissions and
- *   limitations under the License.
- *
- */
-package org.apache.felix.ipojo;
-
-import org.osgi.framework.BundleActivator;
-import org.osgi.framework.BundleContext;
-
-/**
- * This class is just if you start ipojo. It does nothing but avoid the launch of the Activator class on the iPOJO bundle
- * @author <a href="mailto:felix-dev@incubator.apache.org">Felix Project Team</a>
- *
- */
-public class DummyActivator implements BundleActivator {
-
-	/**
-	 * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
-	 */
-	public void start(BundleContext arg0) throws Exception {
-		System.out.println("iPOJO Started");
-	}
-
-	/**
-	 * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
-	 */
-	public void stop(BundleContext arg0) throws Exception {
-		System.out.println("iPOJO Stopped");
-	}
-
-}