From 6fdb7fb3084a55771b38655af6cfee566cccfc1e Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Wed, 20 Jul 2016 23:05:47 -0800 Subject: [PATCH] Update the settings doc. --- documentation/index.html | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/documentation/index.html b/documentation/index.html index 4b349d5..a574c35 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -292,13 +292,13 @@ dependencies {

-<kobalt-settings>
-    <local-repo>/Users/beust/my-kobalt-repo</local-repo>
-    <default-repos>
+<kobaltSettings>
+    <localCache>/Users/beust/my-kobalt-repo</localCache>
+    <defaultRepos>
         <repo>http://jcenter.com</repo>
         <repo>http://example.com</repo>
-    </default-repos>
-</kobalt-settings>
+ </defaultRepos> +</kobaltSettings>

Here is a list of the parameters you can configure:

@@ -317,25 +317,30 @@ dependencies { - default-repos + defaultRepos Default repos List of repos overriding the default ones that Kobalt uses. - kobalt-compiler-version - 1.0.0 + kobaltCompilerVersion + 1.0.3 The version of the Kotlin compiler that Kobalt uses. - kobalt-compiler-repo + kobaltCompilerRepo None The Maven repository where to find the compiler. By default, the compiler is looked up in the default repos (JCenter, Maven, ...). - local-repo - ~/.kobalt/repository + localCache + ~/.kobalt/cache Where Kobalt stores all the downloaded dependencies. + + localMavenRepo + ~/.kobalt/localMavenRepo + Where Kobalt publishes artifacts when the task publishToLocalMaven is invoked. +

Templates