Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.3.4
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
I am trying to move my project to gradle and everything was going smoothly until I reached my grails application. My project is a multi project build and what I would love to write is:
build.gradle
------------
apply plugin: 'grails'
dependencies {
compile project(':kiwidoc:com.pongasoft.kiwidoc.index.api')
compile project(':utils:util-core')
}
and have run, war and test targets.
I could imagine 2 different ways of implementing it (ideally configurable):
- rely on a local install of grails (GRAILS_HOME)
- use artifacts in a repo
Now that grails 1.3.4 uses gradle for its own build system, it would be great to be integrated with gradle when using grails.
Peter, if you pull my changes to the plugin it would solve this particular issue.