gurusai
gurusai

Reputation: 151

Error installing tomcat nio plugin for grails 1.3.9

I am facing problems while installing tomcat nio(1.3.4) plugin for grails. I am using grails 1.3.9 version.

      ::::::::::::::::::::::::::::::::::::::::::::::

      ::          UNRESOLVED DEPENDENCIES         ::

      ::::::::::::::::::::::::::::::::::::::::::::::

      :: org.grails.plugins#tomcatnio;1.3.4: not found

      ::::::::::::::::::::::::::::::::::::::::::::::

Please help or what version of tomcat nio is compatible with grails any solution..

Upvotes: 1

Views: 391

Answers (1)

Burt Beckwith
Burt Beckwith

Reputation: 75681

The old plugins should all have been migrated to the new repo at http://repo.grails.org/ but apparently this one wasn't. You can fix this by adding the old repo in BuildConfig.groovy

repositories {
   ...
   grailsRepo "http://svn.codehaus.org/grails-plugins"
}

Upvotes: 3

Related Questions