diff --git a/documentation/index.html b/documentation/index.html index ae265a7..c3d9a25 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -129,6 +129,34 @@ Here are a few noteworthy details about this small build file:
kotlinProject
and homeDir
are supplied by Kobalt and are referred to as "directives"
+ + In terms of syntax, there are basically three different ways to specify values in a build file: +
++name = "kobalt"+
+compile("dep1", "dep2", "dep2")+
+dependencies { + ... +}+
+ Remember that a build file is a valid Kotlin source, so you can use function calls instead of literal values, or any other correct Kotlin code in your build file: +
++version = readVersion()