|
Has the plugin repo been corrupted?
My grails 2.0.3 apps is now unable to properly release the spring-security-ldap plugin.
I'm referencing version 1.0.5 in my build config and this is what I get: :::::::::::::::::::::::::::::::::::::::::::::: :: UNRESOLVED DEPENDENCIES ::
:::::::::::::::::::::::::::::::::::::::::::::: :: org.springframework.ldap#org.springframework.ldap;1.3.0.RELEASE: not found
:: org.springframework.security#org.springframework.security.ldap;3.0.4.RELEASE: not found ::::::::::::::::::::::::::::::::::::::::::::::
| Error Failed to resolve dependencies (Set log level to 'warn' in BuildConfig.groovy for more information): - org.springframework.ldap:org.springframework.ldap:1.3.0.RELEASE
- org.springframework.security:org.springframework.security.ldap:3.0.4.RELEASE |
|
Administrator
|
No it is not down, nor has it been corrupted. We generated a set of
valid POMs and have now switched to the new repository. Due to this some plugins have more valid dependency data than before. The spring-security-ldap plugin is one of these. It requires the ebr() repository. You need to add: repositories { ... ebr() } To your BuildConfig.groovy Cheers On Tue, May 22, 2012 at 9:26 PM, Dean Del Ponte <[hidden email]> wrote: > Has the plugin repo been corrupted? > > My grails 2.0.3 apps is now unable to properly release the > spring-security-ldap plugin. > > I'm referencing version 1.0.5 in my build config and this is what I get: > > > :::::::::::::::::::::::::::::::::::::::::::::: > :: UNRESOLVED DEPENDENCIES :: > :::::::::::::::::::::::::::::::::::::::::::::: > :: org.springframework.ldap#org.springframework.ldap;1.3.0.RELEASE: not > found > :: > org.springframework.security#org.springframework.security.ldap;3.0.4.RELEASE: > not found > :::::::::::::::::::::::::::::::::::::::::::::: > > | Error Failed to resolve dependencies (Set log level to 'warn' in > BuildConfig.groovy for more information): > > - org.springframework.ldap:org.springframework.ldap:1.3.0.RELEASE > - > org.springframework.security:org.springframework.security.ldap:3.0.4.RELEASE -- Graeme Rocher Grails Project Lead SpringSource - A Division of VMware http://www.springsource.com --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
So is ebr() the new repository?
or the old ones: grailsPlugins() grailsHome() grailsCentral() If ebr is the new repository do we have to replace it with any of the above?
On Wed, May 23, 2012 at 1:02 AM, Graeme Rocher <[hidden email]> wrote: No it is not down, nor has it been corrupted. We generated a set of -- Thanks and regards, Ravi Teja |
|
On 24/05/2012 11:43, Raviteja Lokineni wrote:
> So is ebr() the new repository? No, it's the SpringSource Enterprise Bundle Repository, which contains OSGi-fied versions of various Spring JARs under different artifact IDs from the Maven Central ones (org.springframework.* in ebr vs. spring-* in maven Central). Ian -- Ian Roberts | Department of Computer Science [hidden email] | University of Sheffield, UK --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
I'm confused. So do we have to add it too?
On Thu, May 24, 2012 at 4:25 PM, Ian Roberts <[hidden email]> wrote:
-- Thanks and regards, Ravi Teja |
|
On 24/05/2012 12:06, Raviteja Lokineni wrote:
> I'm confused. So do we have to add it too? Yes. Once there is a new release of the plugin that depends on spring-ldap (i.e. the Maven Central version) rather than org.springframework.ldap (the ebr version) then you'll be able to remove ebr again. Ian -- Ian Roberts | Department of Computer Science [hidden email] | University of Sheffield, UK --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
Since yesterday, I receive an error when I run a "grails list-plugin-updates" with either Grails 2.0.3 or 2.0.4:
| Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. There is no more ouput generated, can I somehow increase the error reporting to see what it wrong? May this be connected to the repo changes? Is someone else experiencing these problems? Cheers, Ben
Cheers,
Ben |
|
In reply to this post by Ian Roberts
@Ian: It makes sense
![]() @Graeme: Is there any public list of such plugins or everything is fine now(plugins have been updated with maven versions)? On Thu, May 24, 2012 at 4:39 PM, Ian Roberts <[hidden email]> wrote:
-- Thanks and regards, Ravi Teja |
|
Administrator
|
Public list? Not sure what you mean. The repository is browsable here:
Cheers
On Thu, May 24, 2012 at 2:08 PM, Raviteja Lokineni <[hidden email]> wrote: @Ian: It makes sense Graeme Rocher Grails Project Lead SpringSource - A Division of VMware http://www.springsource.com |
|
Actually you said that
`The spring-security-ldap plugin is one of these. It requires the ebr() repository. You need to add: repositories { ... ebr() }` I was wondering if there were many. If so which plugins are affected? On Thu, May 24, 2012 at 6:03 PM, Graeme Rocher <[hidden email]> wrote: Public list? Not sure what you mean. The repository is browsable here: -- Thanks and regards, Ravi Teja |
|
Administrator
|
In reply to this post by Benjamin Wolff
Hi Benjamin,
This is a problem with the grails.org website, we are working on addressing this. It is a server side problem and won't require a new Grails release. It should be resolved shortly Cheers On Thu, May 24, 2012 at 1:44 PM, Benjamin Wolff <[hidden email]> wrote: > Since yesterday, I receive an error when I run a "grails list-plugin-updates" > with either Grails 2.0.3 or 2.0.4: > > | Error An error occurred resolving plugin list from resolver [grailsCentral > - http://plugins.grails.org]. > > There is no more ouput generated, can I somehow increase the error reporting > to see what it wrong? May this be connected to the repo changes? Is someone > else experiencing these problems? > > Cheers, > Ben > > > -- > View this message in context: http://grails.1312388.n4.nabble.com/Is-the-plugin-repository-down-tp4628824p4628942.html > Sent from the Grails - user mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email > > -- Graeme Rocher Grails Project Lead SpringSource - A Division of VMware http://www.springsource.com --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
Administrator
|
In reply to this post by bond_
Any plugin that requires an external repository now needs the application to declare the external repository explicitly
Cheers
On Thu, May 24, 2012 at 2:47 PM, Raviteja Lokineni <[hidden email]> wrote: Actually you said that Graeme Rocher Grails Project Lead SpringSource - A Division of VMware http://www.springsource.com |
|
In reply to this post by bond_
I released version 1.0.6 of the plugin which no longer requires the ebr repo.
Burt
On May 24, 2012 at 8:47 AM Raviteja Lokineni <[hidden email]> wrote: > Actually you said that > > `The spring-security-ldap plugin is one of these. It requires the ebr() > repository. You need to add: > > repositories { > ... > ebr() > }` > > I was wondering if there were many. If so which plugins are affected? > > On Thu, May 24, 2012 at 6:03 PM, Graeme Rocher <[hidden email]> wrote: > > > Public list? Not sure what you mean. The repository is browsable here: > > > > http://repo.grails.org/grails/plugins/org/grails/plugins/ > > > > Cheers > > > > > > On Thu, May 24, 2012 at 2:08 PM, Raviteja Lokineni < > > [hidden email]> wrote: > > > >> @Ian: It makes sense [?] > >> @Graeme: Is there any public list of such plugins or everything is fine > >> now(plugins have been updated with maven versions)? > >> > >> > >> On Thu, May 24, 2012 at 4:39 PM, Ian Roberts <[hidden email]>wrote: > >> > >>> On 24/05/2012 12:06, Raviteja Lokineni wrote: > >>> > I'm confused. So do we have to add it too? > >>> > >>> Yes. Once there is a new release of the plugin that depends on > >>> spring-ldap (i.e. the Maven Central version) rather than > >>> org.springframework.ldap (the ebr version) then you'll be able to remove > >>> ebr again. > >>> > >>> Ian > >>> > >>> -- > >>> Ian Roberts | Department of Computer Science > >>> [hidden email] | University of Sheffield, UK > >>> > >>> --------------------------------------------------------------------- > >>> To unsubscribe from this list, please visit: > >>> > >>> http://xircles.codehaus.org/manage_email > >>> > >>> > >>> > >> > >> > >> -- > >> Thanks and regards, > >> Ravi Teja > >> > >> > > > > > > -- > > Graeme Rocher > > Grails Project Lead > > SpringSource - A Division of VMware > > http://www.springsource.com > > > > > > -- > Thanks and regards, > Ravi Teja |
|
In reply to this post by Graeme Rocher-4
Hi there,
I still get the same error as Benjamin, so I guess the problem is still there? Do you guys have an estimate when grailsCentral is usable again? Cheers Finn On 05/24/2012 02:49 PM, Graeme Rocher wrote: > Hi Benjamin, > > This is a problem with the grails.org website, we are working on > addressing this. It is a server side problem and won't require a new > Grails release. It should be resolved shortly > > Cheers > > On Thu, May 24, 2012 at 1:44 PM, Benjamin Wolff<[hidden email]> wrote: >> Since yesterday, I receive an error when I run a "grails list-plugin-updates" >> with either Grails 2.0.3 or 2.0.4: >> >> | Error An error occurred resolving plugin list from resolver [grailsCentral >> - http://plugins.grails.org]. >> >> There is no more ouput generated, can I somehow increase the error reporting >> to see what it wrong? May this be connected to the repo changes? Is someone >> else experiencing these problems? >> >> Cheers, >> Ben >> >> >> -- >> View this message in context: http://grails.1312388.n4.nabble.com/Is-the-plugin-repository-down-tp4628824p4628942.html >> Sent from the Grails - user mailing list archive at Nabble.com. >> >> --------------------------------------------------------------------- >> To unsubscribe from this list, please visit: >> >> http://xircles.codehaus.org/manage_email >> >> > > --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
> Do you guys have an estimate when grailsCentral is usable again?
+1 Both list-plugins and list-plugin-updates are failing as follows: grails> list-plugins | Environment set to development..... | Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. -- "It's possible that my whole purpose in life is simply to serve as a warning to others." |
|
I am also having trouble with the list-plugins command. I am using Grails 2.0.3. I have also tried removing my .grails directory and starting a new project, but neither helped the situation.
mike@hera:/tmp/foo$ grails list-plugins
| Environment set to development..... | Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org].
| Downloading: plugins-list.xml Plugins available in the grailsCore repository are listed below:
------------------------------------------------------------- dummy <> --
hibernate <1.3.8> -- Hibernate for Grails tomcat <1.3.8> -- Apache Tomcat plugin for Grails
webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin You do not have any plugins installed.
To find more info about plugin type 'grails plugin-info [NAME]' To install type 'grails install-plugin [NAME] [VERSION]' For further info visit http://grails.org/Plugins
I did a quick tcpdump during a 'list-plugins' to see whats going on...It looks like grails is requesting:
which performs a 302 redirect to the following url:
...this returns html listings, same as you would see if hitting the url with a browser. and then the following 3 urls are requested:
On Fri, May 25, 2012 at 8:00 PM, David Russell <[hidden email]> wrote:
|
|
Anyone else sill having trouble with the plugin repository? After a few more attempts today, I am able to list-plugins with Grails 2.1.0RC2. Grails 1.3.9 & Grails 2.0.4 still appear to be broken...
Grails 1.3.9 mike@hera:/tmp/foo4$ grails list-plugins Welcome to Grails 1.3.9 - http://grails.org/
Licensed under Apache Standard License 2.0 Grails home is set to: /home/mike/bin/grails-1.3.9 Base Directory: /tmp/foo4 Resolving dependencies...
Dependencies resolved in 605ms. Running script /home/mike/bin/grails-1.3.9/scripts/ListPlugins_.groovy
Environment set to development Plugins available in the grailsCentral repository are listed below:
------------------------------------------------------------- No plugins found in repository: grailsCentral. This may be because the repository is behind an HTTP proxy.
Plug-ins you currently have installed are listed below: -------------------------------------------------------------
You do not have any plugins installed. To find more info about plugin type 'grails plugin-info [NAME]' To install type 'grails install-plugin [NAME] [VERSION]'
For further info visit http://grails.org/Plugins Grails 2.0.4 mike@hera:/tmp/foo5$ grails list-plugins | Environment set to development.....
| Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. | Downloading: plugins-list.xml
Plugins available in the grailsCore repository are listed below: -------------------------------------------------------------
dummy <> -- hibernate <1.3.8> -- Hibernate for Grails
tomcat <1.3.8> -- Apache Tomcat plugin for Grails webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin
You do not have any plugins installed. To find more info about plugin type 'grails plugin-info [NAME]'
To install type 'grails install-plugin [NAME] [VERSION]' For further info visit http://grails.org/Plugins On Sun, May 27, 2012 at 12:46 AM, Mike Powers <[hidden email]> wrote: I am also having trouble with the list-plugins command. I am using Grails 2.0.3. I have also tried removing my .grails directory and starting a new project, but neither helped the situation. |
|
On Monday den 28 May 2012 at 12.40, Mike Powers wrote:
> Anyone else sill having trouble with the plugin repository? After a few more attempts today, I am able to list-plugins with Grails 2.1.0RC2. Grails 1.3.9 & Grails 2.0.4 still appear to be broken... > Yepp, I'm still getting "An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]." using 2.0.4. /David > > Grails 1.3.9 > mike@hera:/tmp/foo4$ grails list-plugins > Welcome to Grails 1.3.9 - http://grails.org/ > Licensed under Apache Standard License 2.0 > Grails home is set to: /home/mike/bin/grails-1.3.9 > > Base Directory: /tmp/foo4 > Resolving dependencies... > Dependencies resolved in 605ms. > Running script /home/mike/bin/grails-1.3.9/scripts/ListPlugins_.groovy > Environment set to development > > Plugins available in the grailsCentral repository are listed below: > ------------------------------------------------------------- > > No plugins found in repository: grailsCentral. This may be because the repository is behind an HTTP proxy. > > Plug-ins you currently have installed are listed below: > ------------------------------------------------------------- > > You do not have any plugins installed. > > To find more info about plugin type 'grails plugin-info [NAME]' > > To install type 'grails install-plugin [NAME] [VERSION]' > > For further info visit http://grails.org/Plugins > > > Grails 2.0.4 > mike@hera:/tmp/foo5$ grails list-plugins > | Environment set to development..... > | Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. > | Downloading: plugins-list.xml > > Plugins available in the grailsCore repository are listed below: > ------------------------------------------------------------- > dummy <> -- > hibernate <1.3.8> -- Hibernate for Grails > tomcat <1.3.8> -- Apache Tomcat plugin for Grails > webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin > You do not have any plugins installed. > > To find more info about plugin type 'grails plugin-info [NAME]' > > To install type 'grails install-plugin [NAME] [VERSION]' > > For further info visit http://grails.org/Plugins > > > > > On Sun, May 27, 2012 at 12:46 AM, Mike Powers <[hidden email] (mailto:[hidden email])> wrote: > > I am also having trouble with the list-plugins command. I am using Grails 2.0.3. I have also tried removing my .grails directory and starting a new project, but neither helped the situation. > > > > mike@hera:/tmp/foo$ grails list-plugins > > | Environment set to development..... > > | Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. > > > > | Downloading: plugins-list.xml > > > > Plugins available in the grailsCore repository are listed below: > > ------------------------------------------------------------- > > dummy <> -- > > hibernate <1.3.8> -- Hibernate for Grails > > tomcat <1.3.8> -- Apache Tomcat plugin for Grails > > webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin > > You do not have any plugins installed. > > > > To find more info about plugin type 'grails plugin-info [NAME]' > > > > To install type 'grails install-plugin [NAME] [VERSION]' > > > > For further info visit http://grails.org/Plugins > > > > > > I did a quick tcpdump during a 'list-plugins' to see whats going on...It looks like grails is requesting: > > http://plugins.grails.org/ > > > > which performs a 302 redirect to the following url: > > http://grails.org/plugins > > ...this returns html listings, same as you would see if hitting the url with a browser. > > > > and then the following 3 urls are requested: > > http://svn.codehaus.org/grails/trunk/grails-plugins/ > > http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/ > > http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/plugins-list.xml > > > > > > On Fri, May 25, 2012 at 8:00 PM, David Russell <[hidden email] (mailto:[hidden email])> wrote: > > > > Do you guys have an estimate when grailsCentral is usable again? > > > > > > > > > +1 > > > > > > Both list-plugins and list-plugin-updates are failing as follows: > > > > > > grails> list-plugins > > > | Environment set to development..... > > > > > > | Error An error occurred resolving plugin list from resolver [grailsCentral - http://plugins.grails.org]. > > > > > > > > > -- > > > "It's possible that my whole purpose in life is simply to serve as a warning to others." > > > --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
This change to BuildConfig.groovy works for me in 2.0.1:
repositories { ... // grailsPlugins() grailsRepo "http://grails.org/plugins" ... } Ref: http://grails.1312388.n4.nabble.com/Plugin-publication-migration-HOWTO-td44 74812.html -Todd On 5/28/12 3:43 AM, "David Tiselius" <[hidden email]> wrote: >On Monday den 28 May 2012 at 12.40, Mike Powers wrote: >> Anyone else sill having trouble with the plugin repository? After a few >>more attempts today, I am able to list-plugins with Grails 2.1.0RC2. >>Grails 1.3.9 & Grails 2.0.4 still appear to be broken... >> > >Yepp, I'm still getting "An error occurred resolving plugin list from >resolver [grailsCentral - http://plugins.grails.org]." using 2.0.4. > >/David > >> >> Grails 1.3.9 >> mike@hera:/tmp/foo4$ grails list-plugins >> Welcome to Grails 1.3.9 - http://grails.org/ >> Licensed under Apache Standard License 2.0 >> Grails home is set to: /home/mike/bin/grails-1.3.9 >> >> Base Directory: /tmp/foo4 >> Resolving dependencies... >> Dependencies resolved in 605ms. >> Running script /home/mike/bin/grails-1.3.9/scripts/ListPlugins_.groovy >> Environment set to development >> >> Plugins available in the grailsCentral repository are listed below: >> ------------------------------------------------------------- >> >> No plugins found in repository: grailsCentral. This may be because the >>repository is behind an HTTP proxy. >> >> Plug-ins you currently have installed are listed below: >> ------------------------------------------------------------- >> >> You do not have any plugins installed. >> >> To find more info about plugin type 'grails plugin-info [NAME]' >> >> To install type 'grails install-plugin [NAME] [VERSION]' >> >> For further info visit http://grails.org/Plugins >> >> >> Grails 2.0.4 >> mike@hera:/tmp/foo5$ grails list-plugins >> | Environment set to development..... >> | Error An error occurred resolving plugin list from resolver >>[grailsCentral - http://plugins.grails.org]. >> | Downloading: plugins-list.xml >> >> Plugins available in the grailsCore repository are listed below: >> ------------------------------------------------------------- >> dummy <> -- >> hibernate <1.3.8> -- Hibernate for Grails >> tomcat <1.3.8> -- Apache Tomcat plugin for Grails >> webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin >> You do not have any plugins installed. >> >> To find more info about plugin type 'grails plugin-info [NAME]' >> >> To install type 'grails install-plugin [NAME] [VERSION]' >> >> For further info visit http://grails.org/Plugins >> >> >> >> >> On Sun, May 27, 2012 at 12:46 AM, Mike Powers <[hidden email] >>(mailto:[hidden email])> wrote: >> > I am also having trouble with the list-plugins command. I am using >>Grails 2.0.3. I have also tried removing my .grails directory and >>starting a new project, but neither helped the situation. >> > >> > mike@hera:/tmp/foo$ grails list-plugins >> > | Environment set to development..... >> > | Error An error occurred resolving plugin list from resolver >>[grailsCentral - http://plugins.grails.org]. >> > >> > | Downloading: plugins-list.xml >> > >> > Plugins available in the grailsCore repository are listed below: >> > ------------------------------------------------------------- >> > dummy <> -- >> > hibernate <1.3.8> -- Hibernate for Grails >> > tomcat <1.3.8> -- Apache Tomcat plugin for Grails >> > webflow <1.3.8.BUILD-SNAPSHOT> -- Spring Web Flow Plugin >> > You do not have any plugins installed. >> > >> > To find more info about plugin type 'grails plugin-info [NAME]' >> > >> > To install type 'grails install-plugin [NAME] [VERSION]' >> > >> > For further info visit http://grails.org/Plugins >> > >> > >> > I did a quick tcpdump during a 'list-plugins' to see whats going >>on...It looks like grails is requesting: >> > http://plugins.grails.org/ >> > >> > which performs a 302 redirect to the following url: >> > http://grails.org/plugins >> > ...this returns html listings, same as you would see if hitting the >>url with a browser. >> > >> > and then the following 3 urls are requested: >> > http://svn.codehaus.org/grails/trunk/grails-plugins/ >> > http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/ >> > >>http://svn.codehaus.org/grails/trunk/grails-plugins/.plugin-meta/plugins- >>list.xml >> > >> > >> > On Fri, May 25, 2012 at 8:00 PM, David Russell >><[hidden email] (mailto:[hidden email])> wrote: >> > > > Do you guys have an estimate when grailsCentral is usable again? >> > > >> > > >> > > +1 >> > > >> > > Both list-plugins and list-plugin-updates are failing as follows: >> > > >> > > grails> list-plugins >> > > | Environment set to development..... >> > > >> > > | Error An error occurred resolving plugin list from resolver >>[grailsCentral - http://plugins.grails.org]. >> > > >> > > >> > > -- >> > > "It's possible that my whole purpose in life is simply to serve as >>a warning to others." >> > >> > > > > >--------------------------------------------------------------------- >To unsubscribe from this list, please visit: > > http://xircles.codehaus.org/manage_email > > --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
|
Hi everyone,
Sorry for the delay, but we've run into a problem deploying a new version of the site. We're working on it, but the plugin portal still works. Hope to have the new version deployed in the next day or so. Apologies again for the inconvenience, Peter -- Peter Ledbrook Grails Advocate SpringSource - A Division of VMware --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email |
| Powered by Nabble | Edit this page |
