vote up 1 vote down star
1

I came across Nimble yesterday, but couldn't get past Step 1, configuring BuildConfig.groovy to find the Nimble's remote repository.

My BuildConfig.groovy file is one line:

grails.plugin.repos.discovery.intient="http://intient.com/downloads/grails/"

Here is the message I get when running grails install-plugin nimble 0.2:

Welcome to Grails 1.1.1 - http://grails.org/
Licensed under Apache Standard License 2.0
Grails home is set to: /opt/dev/sdks/grails-1.1.1

Base Directory: /home/wraith/dev/source/demo
Running script /opt/dev/sdks/grails-1.1.1/scripts/InstallPlugin.groovy
Environment set to development
No authentication for svn repo at intient ...
Reading remote plugin list ...
Reading remote plugin list ...
Reading remote plugin list ...
Plugin 'nimble' was not found in repository. If it is not stored in a configured repository you will need to install it manually. Type 'grails list-plugins' to find out what plugins are available.

This is the first time I have tried to install a plugin not in the official repository. What is the best way to narrow down if it is a problem at Intient.com or with my configuration?

flag

5 Answers

vote up 0 vote down

you could always download the zip file for the plugin and install it manually

link|flag
Do I replace the URL above with a local directory? Should the zip file be extracted? – Wraith Monster Oct 13 at 19:13
vote up 0 vote down
  1. Download source code from http://github.com/intient/nimble
  2. Unzip under your plugins directory of your project (usually under ${USER_HOME}/.grails/<grails-version>/projects/<myproject>/plugins)
  3. Rename the extracted folder into "nimble-0.2"
  4. Remove from BuildConfig the line grails.plugin.repos.discovery.intient="http://intient.com/downloads/grails/"
  5. Edit the file application.properties of your project and add the line plugins.nimble=0.2
  6. If not installed under your project, you should install the plugins : shiro (version 1.0-SNAPSHOT at least) and mail (>0.6). (run command grails install-plugin <pluginName> <version>)
  7. Start directly from Step 3

It should work (at least, it worked for me). Good luck

link|flag
vote up 0 vote down check

Follow these instructions with the following modifications:

  • Step 1 is correct
  • Instead of using the remote repository, download the zipped plugin
  • Move the plugin to ~/dev/plugins
  • grails install-plugin ~/dev/plugins/grails-nimble-0.2.zip
  • Steps 3-5 are correct
link|flag
vote up 0 vote down

Hey Guys

We were performing some maintenance on intient.com and the load balancer wasn't providing this content for the last 12 hours or so (oops!).

Should be sorted now but the steps Wraith Monster gave above work for a manual install as well.

Once Grails 1.2 proper hits Nimble will be part of the official plugin repo and we won't need to worry about this at all.

link|flag
Thanks, Bradley. I tried Nimble with the app-engine plugin and could not get it to work. Any room on your roadmap for App Engine integration? – Wraith Monster Oct 15 at 1:43
At this point I have no plans to work on this myself however if the community was wanting to get it to work I'd be happy to integrate it to core. – Bradley Beddoes Oct 19 at 3:02
vote up 0 vote down

Hi,

It looks like http://intient.com/downloads/grails/ is down again. Would it also be possible to fix it again?

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.