How to host eclipse plugins(cheatsheet)? - eclipse

I have developed a eclipse plugin (cheatsheet), packaged in jar format. Can anyone tell me how to host that plugin publicily or in tomcat server so that remote user can install it through the given URL, using the Install Software menu ?
I don't want to copy that plugin in eclipse's plugin folder i want to install that...

You have to create an update site for that. Here is the Eclipse tutorial for creating an update site.

Related

How to offline install of Spring Boot Tools Plugin into Eclipse IDE?

I need to install Spring Tools 4 Plugin into my Eclipse IDE. The Problem is, that I dont have any Internet access on this machine. My other Plugins like SonarLint, MoreUnit I installed via zip archive available on official sites or github.
Install New Software -> add archive.
I cant find any zip archives for Spring Boot Tools 4. Is there a way to get it or another way to install that plugin offline?
I tried to download and install everything on another machine and copy it, but its forbidden to connect bigger usb drives to the machine. For the plugin itsef it will be ok.
Here is the archived update site for STS 4.4.2 for Eclipse 2019-09:
https://dist.springsource.com/release/TOOLS/sts4/update/4.4.2.RELEASE/e4.13/sts4-4.4.2.RELEASE-e4.13.0-updatesite.zip
It contains all the STS4 pieces and a bunch of additional plugins from Eclipse, we haven't really tested a full offline installation using purely this update site. Usually the install procedure contains other update sites while installing a feature in order to find missing dependencies. So in case you don't have internet access and the STS4 install requires a dependency that usually comes from the main Eclipse p2 repo, you might run into this. In that case, please open a bug at https://github.com/spring-projects/sts4/issues and we will fix that.
Hope this helps!

Download only Weblogic Server Tools plugin for eclipse neon

I have to install the plugin Weblogic Server Tools for Weblogic 12c. I want to install it in an external location to give only plugins folder to other developers.
On Oracle download website, I find only a full OEPE package of 1,4Go, but my previous weblogic 10 plugin size is 60Mo.
Can I find only the Weblogic Server Tools plugin in a zip ?
The solution I found is to install the plugin via market place, then move the features and plugin folder to an external folder with a link.

Install a plugin in a complex unix environment

I've created an eclipse plugin on my local host, which works ok.
Now I've to deploy the plugin (.jar) file to some complex unix based environment which has dozens of eclipse installations.
I need to have the plugin only in one of the eclipse instances.
I tried to find all plugin/features/droping directories in system and copy to each of them my plugin. But still I cannot see it in eclipse.
I tried to
Install New Software and Add a local archive but eclipse failed with "no repository found"
Questions :
How can I install the jar file plugin from GUI ?
If its not possible, how can I figure out where is the correct
location of plugin directory from inside eclipse GUI ?
Otherwise how can I see if the eclipse is trying to load the .jar
plugin at all ? (Probably some of the dependencies are failing...)
When you tried
Install New Software and Add a local archive but eclipse failed with "no repository found"
Did you provide the plug-in .jar directly or an update site ?
You should create an update site for it to work.
See http://www.vogella.com/articles/EclipsePlugIn/article.html#p2deployplugin
(The drop-in solution is not reliable.)

Install Glassfish Eclipse Plugin without internet conenction?

I can't connect Eclipse to internet because of security issues in my work, i want to find a way to download the Glassfish Eclipse Plugin manually (Without using the Eclipse Market Place or Eclipse Install Wizard) and install it separately ...
I made many searches and all i found is how to install the Glassfish Eclipse Plugin using the download Link from Eclipse Plugin Installer ...
PS : Glassfish Server is already installed in my Laptop i just need the Eclipse Plugin.
From where can i download the Plugin ?
And how can i install it ?
GlassFish Tools is part of Oracle Enterprise Pack for Eclipse, which is offered in a number of different download formats, such as a ready-to-run Eclipse install and a downloadable repository. Either of these options is a good choice for users with connection problems. If you already have Eclipse installed, download the offline repository (may be called 'OEPE plugins only' on the download site). Then use the install plugins wizard, but point at the downloaded zip instead of a public URL. Make sure to uncheck the consult other repositories option to keep Eclipse from wandering to the network unnecessary.
OEPE - Main Download Page
OEPE - Latest Release

How to install a custom plug-in in Eclipse Ganymede?

We have a custom plug-in. That is, the company where I'm working developed it in house.
I would like to install it as an available plug-in in Eclipse Ganymede. How do I do that?
From what I can figure out, the Eclipse software install only supports installation from Eclipse software update sites.
I went to Help -> Install New Software... -> Add -> Local...
to browse to a folder containing the plug-in. Although the dialog lets me add the directory as an update site, it doesn't work. It expects that directory to be a local Eclipse update site (I think). I get the error
No repository found at file:/G:/TOOLS/...
Next I just copied the plug-in into the plug-in directory under my Eclipse installation. That didn't work either. I also tried copying it into the dropins directory. No dice.
Can anyone enlighten me how to install a plug-in that's not on an "update" site?
Thanks in advance....
Usually an Eclipse plug-in packaged as zip file is install by extracting it into the Eclipse installation directory (or the plugins directory depending on how it is packaged, as it can also extract files in features directory).
Next restart Eclipse with the --clean option.
Did you check the Eclipse error log? Maybe the bundle is failing to deploy for some reason.
Otherwise, create a Feature and Update Site for your plugin as described here. An update site can either be a remote http server (SVN even), or a local directory. The nice thing is that you'll get versioning and the ability to upgrade and uninstall from inside Eclipse. It also makes things easier once your plugin grows into several plugins because they can be bundled together into a single, versioned feature.