Downloading a Grails plugin - grails

Is there a Maven repo from where I can download grails plugin files.
I know I can do
install-plugin name
but I want to store it in my repo.

Grails Plugin Repo can be found here http://repo.grails.org/grails/plugins/org/grails/plugins/
or you can browse Artifactory and search for the plugin you need.

Related

how to build customized existing jenkins plugin

for my project i am customizing the jenkins plugin.
when i build the Junit reporter plugin, it successfully creates hpi plugin file, since it has no dependencies.
for **testng-plugin** build fails. since it needs maven plugin dependencies.
how to build the hpi plugin from source of the exisitng customized
jenkins plugin which has dependencies?

artifact download from artifactory and deploy in weblogic using maven

this is my first time here. Hope I will find what I need.
Here is the situation. I need to download an artifact from the artifactory and deploy it in remote weblogic server using maven. Any ideas? I was able to do this using ant but I was asked to this using maven.
Here you go - official WebLogic documentation.

Workaround to use cache-headers plugin without logging dependency

I'd like to use logback plugin along with cache-headers plugin. The problem is that cache-headers depends on the logging plugin, whereas logback need it to be removed.
Is there a way to get rid of a plugin's plugin dependency in grails (Aether) ?
That dependency is removed in cache-headers version 1.1.6, but it hasn't been released :
http://grails.1312388.n4.nabble.com/cache-headers-1-1-6-release-td4651033.html
I released version 1.1.6 with this fix and some other cleanup.
If there isn't a release planned soon the best solution is to build the plugin yourself and push it to some internal or personal maven repo. You can use the grails release plugin to deploy the code to a maven repo instead of grails central.

How to install grails plugin from github repo?

I looked in the Grails docs, but I could not find how to instruct the BuildConfig.groovy to tell my Grails app to get a plugin from a github repo. This is the repo I want to include, https://github.com/westonplatter/backbonejs-grails-plugin.
You have to clone (or fork based on your need) the repo and build the plugin to create a zip and then use the plugin as a plugin dependency in BuildConfig.
Once cloned, you can use grails maven-install on the plugin so that the zip would be available in local .m2 repo if you have one. Follow this for steps and this for a similar answer.
Otherwise, you can directly use the plugin in your app by following this answer or refer Specifying Plugin Locations.

Grails 2.0 artifacts being published to maven central / codehaus repository

The recently released Grails 2.0 jars don't appear to be available in the Maven central or codehaus repositories. Are there any plans to publish them there?
They're at http://repo.grails.org/grails/core and you can browse the repo at http://repo.grails.org/grails and search by group/artifact/version at http://repo.grails.org/grails/webapp/gavcsearch.html
Grails has an artifactory configured at http://repo.grails.org

Resources