Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to create Java Gradle project from command line?

It should create standard maven folder layout like on the picture below.

Java Gradle created with Eclipse plugin

UPDATE:

  1. From http://www.gradle.org/docs/current/userguide/tutorial_java_projects.html I need create file build.gradle with 2 lines
apply plugin: 'java'
apply plugin: 'eclipse'
  1. Add to build.gradle task below, than execute gradle create-dirs
task "create-dirs" << {
   sourceSets*.java.srcDirs*.each { it.mkdirs() }
   sourceSets*.resources.srcDirs*.each { it.mkdirs() }
}

So is there way to do it in one command?

share|improve this question

2 Answers

up vote 2 down vote accepted

Unfortunately you cannot do it in one command. There is an open issue for the very feature.

Currently you'll have to do it by hand. If you need to do it often, you can create a custom gradle plugin, or just prepare your own project skeleton and copy it when needed.

share|improve this answer

@Paul you can use a wonderful project template project for gradle https://launchpad.net/gradle-templates this solves your problem :)

share|improve this answer
Latest release 1.2 Released on 2011-12-01 – Paul Verest Dec 28 '12 at 3:11
I say its already achieve the max to create project template. Try once. its very very easy :) – Rajmahendra Dec 28 '12 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.