[gradle-user] Gradle Scalate precompile plugin

2011-08-21 Thread rajmahendra
i am developing a GAE application using Scala. for this i am using Scalate. To deploy Scalate on GAE i need to precompile my views (.ssp files). I can see plugin for SBT and Maven ( http://scalate.fusesource.org/documentation/user-guide.html#precompiling_templates ), Is there any plugin for this

[gradle-user] Re: Gradle Plugin for a new framework

2011-01-05 Thread rajmahendra
task create-dirs { sourceSets.all*.java.srcDirs*.each { it.mkdirs() } sourceSets.all*.resources.srcDirs*.each { it.mkdirs() } } I am wondering why not this code be available in all Plugins, once i apply a plugin i get a ready made command to create the strucutre :) -- View this

[gradle-user] Re: Gradle Archetype like Maven

2011-01-05 Thread rajmahendra
at lease this code be available as a ready made command in all plugins! task create-dirs { sourceSets.all*.java.srcDirs*.each { it.mkdirs() } sourceSets.all*.resources.srcDirs*.each { it.mkdirs() } } -- View this message in context:

[gradle-user] how to get miglayout-swing in gradle

2010-12-20 Thread rajmahendra
i am trying to get the miglayout jar file miglayout-3.7.2-swing.jar i want only this jar. i dont want all the jars of miglayout-3.7.2 if i give com.miglayout:miglayout:3@jar, its downloading everything. Any one help me how to down miglayout-3.7.2-swing.jar in gradle ? -- View this

[gradle-user] RE: how to get miglayout-swing in gradle

2010-12-20 Thread rajmahendra
BINGO! it worked! :) Thank you I was trying to add swing before the version :) -- View this message in context: http://gradle.1045684.n5.nabble.com/how-to-get-miglayout-swing-in-gradle-tp3313054p3313084.html Sent from the gradle-user mailing list archive at Nabble.com.

[gradle-user] Re: Gradle Plugin for a new framework

2010-12-13 Thread rajmahendra
yes, But i like to have this inside my plugin. i dont want to tell my user to do this in his build.gradle -- View this message in context: http://gradle.1045684.n5.nabble.com/Gradle-Plugin-for-a-new-framework-tp3298741p3302960.html Sent from the gradle-user mailing list archive at

[gradle-user] Gradle Archetype like Maven

2010-12-13 Thread rajmahendra
Is there any way to have something like Maven Archetype ? User do download Gradle and just using the gradle command line he can create a project structure with a pre written build.gradle file!! -- View this message in context:

[gradle-user] Gradle Plugin for a new framework

2010-12-09 Thread rajmahendra
Hi I am creating a Gradle plugin for first time for a new Framework. i am trying to create a project structure for the framework. i can create a project using a build.gradle as... task create-dirs { sourceSets.all*.java.srcDirs*.each { it.mkdirs() }