Skip to content
Snippets Groups Projects
Commit 55b0b758 authored by Florian Hölzl's avatar Florian Hölzl
Browse files

Added activator class to force build server's Maven to create metadata.

refs 674
parent 32f5592b
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry exported="true" kind="lib" path="lib/org.conqat.ide.commons.jar"/>
......
......@@ -67,3 +67,4 @@ Export-Package: au.com.bytecode.opencsv,
org.conqat.lib.commons.visitor,
org.conqat.lib.commons.xml
Bundle-Vendor: fortiss GmbH
Bundle-Activator: org.fortiss.tooling.common.TK2CommonActivator
......@@ -3,4 +3,5 @@ bin.includes = META-INF/,\
lib/commons-lang-2.6.jar,\
lib/commons-io-2.4.jar,\
lib/opencsv-2.3.jar
src.includes = lib/
src.includes = lib/,\
src/
/*--------------------------------------------------------------------------+
$Id: codetemplates.xml 1 2011-01-01 00:00:01Z hoelzl $
| |
| Copyright 2016 fortiss GmbH |
| |
| 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.fortiss.tooling.common;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* Activator for the tooling kernel commons plugin.
*
* @author hoelzl
* @author $Author: hoelzl $
* @version $Rev: 18709 $
* @ConQAT.Rating RED Hash:
*/
public final class TK2CommonActivator extends Plugin {
/** The plug-in ID. */
public static final String PLUGIN_ID = TK2CommonActivator.class.getPackage().getName(); //$NON-NLS-1$
/** The shared instance. */
private static TK2CommonActivator plugin;
/** {@inheritDoc} */
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
System.out.println("[Plugin] " + PLUGIN_ID + " started.");
}
/** {@inheritDoc} */
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/** Returns the shared instance. */
public static TK2CommonActivator getDefault() {
return plugin;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment