Skip to content

Commit

Permalink
JBIDE-18020: Fixed contributor info in m2e plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Aug 6, 2014
1 parent 83fae7b commit 709df6d
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 15 deletions.
5 changes: 4 additions & 1 deletion plugins/org.jboss.tools.forge.m2e/build.properties
@@ -1,5 +1,8 @@
#
# Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
# Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
#
# Contributors:
# Fred Bricon (Red Hat, Inc.) - initial API and implementation
#
# Licensed under the Eclipse Public License version 1.0, available at
# http://www.eclipse.org/legal/epl-v10.html
Expand Down
5 changes: 4 additions & 1 deletion plugins/org.jboss.tools.forge.m2e/plugin.properties
@@ -1,5 +1,8 @@
#
# Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
# Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
#
# Contributors:
# Fred Bricon (Red Hat, Inc.) - initial API and implementation
#
# Licensed under the Eclipse Public License version 1.0, available at
# http://www.eclipse.org/legal/epl-v10.html
Expand Down
5 changes: 4 additions & 1 deletion plugins/org.jboss.tools.forge.m2e/plugin.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
Contributors:
Fred Bricon (Red Hat, Inc.) - initial API and implementation
Licensed under the Eclipse Public License version 1.0, available at
http://www.eclipse.org/legal/epl-v10.html
Expand Down
5 changes: 4 additions & 1 deletion plugins/org.jboss.tools.forge.m2e/pom.xml
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
Contributors:
Fred Bricon (Red Hat, Inc.) - initial API and implementation
Licensed under the Eclipse Public License version 1.0, available at
http://www.eclipse.org/legal/epl-v10.html
Expand Down
@@ -1,5 +1,8 @@
/**
* Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
* Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
*
* Contributors:
* Fred Bricon (Red Hat, Inc.) - initial API and implementation
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
Expand All @@ -17,9 +20,9 @@
/**
* Adds support for workspace projects referenced with the
* <code>forge-addon</code> classifier in Eclipse Launch Configurations.
*
*
* @author Fred Bricon
*
*
*/
public class ForgeAddonClassifierClasspathProvider extends
AbstractClassifierClasspathProvider {
Expand Down
@@ -1,5 +1,8 @@
/**
* Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved
* Copyright (c) Red Hat, Inc., contributors and others 2013 - 2014. All rights reserved
*
* Contributors:
* Fred Bricon (Red Hat, Inc.) - initial API and implementation
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
Expand All @@ -20,20 +23,25 @@ public class M2eForgeActivator extends AbstractUIPlugin {

// The shared instance
private static M2eForgeActivator plugin;


/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*
* @see
* org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext
* )
*/
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
plugin = this;
}

/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*
* @see
* org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
* )
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
Expand All @@ -50,10 +58,11 @@ public static M2eForgeActivator getDefault() {
}

/**
* Returns an image descriptor for the image file at the given
* plug-in relative path
* Returns an image descriptor for the image file at the given plug-in
* relative path
*
* @param path the path
* @param path
* the path
* @return the image descriptor
*/
public static ImageDescriptor getImageDescriptor(String path) {
Expand Down

0 comments on commit 709df6d

Please sign in to comment.