gradle.rst
changeset 2158 4273aeaa0c1a
parent 2157 e5b91cfd93ce
child 2248 0498f4c91fda
--- a/gradle.rst	Sun Jul 16 00:21:24 2017 +0300
+++ b/gradle.rst	Sun Jul 16 00:46:56 2017 +0300
@@ -214,6 +214,20 @@
 
   $ gradle -m clean compile
 
+Bootstrap project structure
+===========================
+
+This creates simple project with Gradle boilerplate files::
+
+  $ gradle init --type java-library
+
+To convert Maven project (with ``pom.xml`` file) to Gradle project use::
+
+  $ gradle init --type pom
+
+https://docs.gradle.org/current/userguide/build_init_plugin.html
+  Official docs on ``init`` plugin.
+
 Gradle wrapper
 ==============