JENA-879: Removed Activator Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/2cb3899e Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/2cb3899e Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/2cb3899e
Branch: refs/heads/master Commit: 2cb3899e923a4934f83665628d0f4b81c35880a9 Parents: e33160b Author: Stian Soiland-Reyes <[email protected]> Authored: Mon Feb 2 23:43:16 2015 +0000 Committer: Stian Soiland-Reyes <[email protected]> Committed: Mon Feb 9 09:57:03 2015 +0000 ---------------------------------------------------------------------- .../jena/osgi/test/JenaOSGITestActivator.java | 42 -------------------- 1 file changed, 42 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/2cb3899e/apache-jena-osgi/jena-osgi-test/src/main/java/org/apache/jena/osgi/test/JenaOSGITestActivator.java ---------------------------------------------------------------------- diff --git a/apache-jena-osgi/jena-osgi-test/src/main/java/org/apache/jena/osgi/test/JenaOSGITestActivator.java b/apache-jena-osgi/jena-osgi-test/src/main/java/org/apache/jena/osgi/test/JenaOSGITestActivator.java deleted file mode 100644 index 1349114..0000000 --- a/apache-jena-osgi/jena-osgi-test/src/main/java/org/apache/jena/osgi/test/JenaOSGITestActivator.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.jena.osgi.test; - -import java.util.Dictionary; -import java.util.Hashtable; - -import org.osgi.framework.BundleActivator; -import org.osgi.framework.BundleContext; - -public class JenaOSGITestActivator implements BundleActivator { - - @Override - public void start(BundleContext context) throws Exception { - System.out.println("Starting "); - Dictionary<String, String> properties = new Hashtable<>(); - properties.put("eosgi.testId", "JenaOSGITest"); - properties.put("eosgi.testEngine", "junit4"); - context.registerService(JenaOSGITest.class, new JenaOSGITestImpl(), properties); - } - - @Override - public void stop(BundleContext context) throws Exception { - } - -}
