diff --git a/plug-ins/index.html b/plug-ins/index.html
index 4676c59..d6f1cf1 100644
--- a/plug-ins/index.html
+++ b/plug-ins/index.html
@@ -65,6 +65,20 @@ val p = project(wrapper) {
The 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") + } +}+