Grails 2.0 artifacts being published to maven central / codehaus repository - grails

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

Related

How to deploy .net artifacts to JFrog artifactory

As JFrog Artifactory provides maven repository which maintains a maven-metadata.xml to get the latest maven artifact.
Is there anything to maintain latest artifacts of .net web applications. It would be good if there's a solution with the trial version.
Thank you
Dotnet Binaries Image
On the PRO version of Artifactory you can also create a Nuget repository and deploy your .net files there. See additional information here:
https://www.jfrog.com/confluence/display/RTF/NuGet+Repositories

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.

Downloading a Grails plugin

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.

STS / Grails: Workspace dependency resolution

My environment is STS 2.8.0-M2 with Grails 1.3.7. I have a Grails project and a plain Java/Maven project in my workspace.
I am used to M2Eclipse workspace dependency resolution for plain Java/Maven projects and I'd love to see something similar working with Grails. According to the docs it appears like Maven dependencies can only be pulled from a repository or a flat directory but NOT from another plain Java/Maven project in the same workspace. As far as I know, that's a feature coming from M2Eclipse, but enabling this one on the Grails project just causes STS to crash and I assume that it would still conflict with Grails even if I would use the Grails Maven plugin.
Do you guys have any advice or practical experience how to enable workspace dependency resolution with Grails in STS 2.8? I want to avoid having to rebuild a dependent project during development over and over.
Thanks!
For Beta/UAT releases I use artifactory to deploy my jars and grails picks up from the local artifactory with the mavenRepo variable in BuildConfig.groovy pointing to the local artifactory.
eg
mavenRepo "http://maya:8081/artifactory/plugins-release-local/"
Development environment:
1)For plugins I use the line
grails.plugin.location.'plugin-name'="../PluginProject"
2) For normal java project I reference it directly using the build properties of the java project.
BuildConfig.groovy fulfills all my requirements and I never used maven in grails projects

Resources