Install Grails mongodb plugin offline - mongodb

I need to install the Grails mongodb plugin in the environment with no Internet connection. I set up Grails 2.2.4. I am trying to install mongodb_1.3.0 plugin. What do I need to download on my local machine (or in my local Maven repository) to make the installation possible. I was trying to find for a file mongodb-1.3.0.zip, but could not file such file anywhere. The MongoDB plugin documentation is of no help about an offline installation of a plugin. It simply instructs you to add
compile ':mongodb:1.3.0' line to BuildCOnfig.groovy.

i think unless u downgrade your grails version to < 2.1 something ? there is no offline dependency resolving ,you also need to install the mongo dob plugin and uninstall hibernate using plugin manager ALT+G,M on windows .....

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!

What version of Eclipse with what version of plugin Hadoop

I tried various versions of Eclipse with plugins downloaded from internet but I always have problem. With latest version of eclipse and the plugin developed for Hadoop2X, I could not open the Hadoop location configuration wizard. I reinstalled eclipse with older version Ganymede. I used the plugin the one for this version, I am able to open the wizard for Hadoop location configuration but when I try to create the project, I have given the hadoop installation direction, even then it shows the error as configure Hadoop installation directory and its not letting me move to the next section of wizard.
So can someone suggest me what version of eclipse should I use and where can I download the suitable plugin. I am using Hadoop2.5.1.
Thank You. Please help me for the same.

How to upgrade offline instance of sonarqube plugins

I have an instance of sonar on a machine not connected to the internet.
Spent lots of time going through sonarqube doc but do not see anything that addresses this.
The documented method is to use the web server's update center but that seems to only look to the internet for supported/available plugins.
Java and Findbugs plugins are at 2.4 with the fresh install of sonar 4.5.1 and the java plugin that can be downloaded is (executable jar file) is 2.5.1, so I'd like to get as current as I can.
Follow these steps.
Check what plugin version is the latest for your instance on the plugin version matrix documentation page
Download all plugin jars you need (beware of dependencies) by following the download link on each plugin page
Put the jar(s) in the SONARQUBE_HOME/extensions/plugins directory
Stop SonarQube
Start SonarQube
This should do the job.

Unable to install Plugins in Eclipse (jpbm)

I have a major problem with installing plugins in eclipse. I'm using ubuntu 10.04 64 bit and I installed:
Eclipse SDK
Version: 3.6.0
Build id: I20100608-0911
(Not by using the apt-get, via apt-get I get galileo, but that version didn't work as well)
The Plugin I want to install is: http://sourceforge.net/projects/jbpm/files/jBPM%203/jbpm-jpdl-3.2.7/ I have to use this plugin because its compatible with alresco (dms)
I tried to install the plugin via dropin and the normal way:
Help->Install new Software-> Add -> Archive -> select the downloaded *.jar.
When I hit OK, I get the following error message:
"Could not find jar:file:/home/xyxyx/jbpm.jar"
I tried to solve it by extracting the jar but no success. Putting the jar into the plugins folder and changing permissions won't help! I also tried different versions of eclipse on several systems. No success!
I have been looking for a solution all day! I tried some advice I found on stackoverflow. I don't use a proxy. I changed the update system to classic! Now I don't know what to do anymore.
Anything special I have to configure before I use eclipse on ubuntu besides installing the JDK?
Try to run the installed using the following command:
java -jar jbpm-installer-3.2.7.jar
On the other hand, you may want to use JBoss IDE which has integrated support for jBPM.

How to host eclipse plugins(cheatsheet)?

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.