Grails codenarc plugin for Grails 1.3.9 - grails

Searching the plugin site and other resources I could not find which plugin version must I install for my Grails version. Can someone help me out?

You can install the codenarc plugin a Grails 1.X app by running the following command:
grails install-plugin codenarc

Related

how can I install grails plugin in ant build?

I am using ant build tool for my Grails 1.3.7 project.
I verified all Grails 1.3.7 documentation too. Even I am not able to find how to install(add) a plugin in ant build tool(build.xml).
Install with grails install-plugin /home/user/grails-someplugin-1.0.zip

Which version of codenarc will support to Grails 1.3.7?

I am trying to implement for my grails project using 1.3.7 version. I am using ant build instead of Gradle build tool. I am not able to find
Which version of codenarc will support to Grails 1.3.7?
Versions above 0.9 and under 1.0.

Jasper Report plugin in Grails 3.1.8

Generate PDF file using jasper report in Grails 3.1.8 . But when I
add dependencies some error is occurred. I can't adding any jasper report dependencies
in Grails 3.1.8. Please help me or any idea to use jasper report plugin in grails 3.1.8.I already used
(1)
compile "org.grails.plugins:jasper:1.11.0"
(2)
compile 'com.lowagie:itext:2.1.7.js2'
compile 'net.sf.jasperreports:jasperreports:6.2.1'
The plugin org.grails.plugins:jasper:1.11.0 is not grails 3 compatible. It is only up to Grails 2.x
There is a plugin for Grails 3 version here.https://grails.org/plugins.html#plugin/grails-jasper.
In other hand, you could run grails dependency-report for seeing what it is happening. It seems that there is a conflict between dependencies. But as I said, that plugin probably won't work with your project.
I was having the same issue. I fixed it by downloading the jasper report jar and kept it in a folder named lib, then showed the path in dependencies like this.
compile files('lib/jasperreports-5.5.0.jar')

Installation issues for grails activiti plugin with grails 2.2.4

I have been trying to install grails activiti plugin in my grails project which uses grails 2.2.4
Repo -
mavenRepo "https://maven.alfresco.com/nexus/content/groups/public/"
Dependency -
compile ":activiti:5.12.1"
Running grails refresh-dependencies throws "Unresolved dependencies" error
However if i try the same with grails 2.3.4, the plugin installs properly.
I am not able to figure out the reason behind this, any help would be appreciated.

Grails plugin not being change after installing

I am using grails 2.2.1 and have created plugin in the same version and once i had already installed plugin into a project and started working but after doing some changes in the plugin
i did run-app then maven-install and package-plugin again with the same plugin and removed plugin from the same project and grails but the next time when i install plugin the changes can not be seen.How can i get the changes that I have done in the plugin please help.
my problem is fixed ..to remove the plugin we have to remove it from the projects root directory and from the grails directory in which current project is running.With these things we can get the changes after re-installing the plugin.

Resources