From fe3c7ffcbec7ba6c1f3de2c1989f533d398771c6 Mon Sep 17 00:00:00 2001
From: Cedric Beust project{}
directive creates an object of type Project
.
+ You can specify arguments to be passed to the Java and Kotlin compilers as follows: +
++val p = project { + javaCompiler { + args("-source", "1.7", "-target", "1.7") + } + kotlinCompiler { + args("-no-stdlib") + } +}+