From 5242882ba61e88877d1699d297fd15062d2ade30 Mon Sep 17 00:00:00 2001
From: Cedric Beust
Date: Mon, 12 Oct 2015 21:24:05 -0700
Subject: [PATCH 1/3] Section.
---
documentation/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/documentation/index.html b/documentation/index.html
index 65bdb84..552da89 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -554,7 +554,7 @@ val p = kotlinProject {
Kobalt is licensed under Apache 2.0 and is currently hosted on github.
-Discuss Kobalt
+Discuss Kobalt
If you are interested in discussing Kobalt related topics with other fellow users or developers, you have several options:
From e83c908f5a37b859f51885325bd1251a3572ca65 Mon Sep 17 00:00:00 2001
From: Cedric Beust
Date: Wed, 14 Oct 2015 02:26:00 -0700
Subject: [PATCH 2/3] Doc update.
---
home/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/home/index.html b/home/index.html
index 9634ece..e1c9b1b 100644
--- a/home/index.html
+++ b/home/index.html
@@ -95,7 +95,7 @@ val j = jcenter(jcommander) {
Fast builds.
Support all scopes (including provided
).
Streamlining the build file, applying "convention over configuration" as much as possible (for example, to install a plug-in, Gradle forces you to both declare it and apply it. With Kobalt, the simple act of declaring a dependency on it installs the plug-in).
- A turnkey solution with all the common plug-ins pre-installed. No need to go hunting through dozens of outdated results for the elusive JCenter plug-in: with Kobalt, you can create a package and upload it to JCenter within ten minutes. See for yourself!
+ A turnkey solution with all the common plug-ins pre-installed. With Kobalt, you can create a package and upload it to JCenter within ten minutes. See for yourself!
An agnostic build tool. Kobalt can be used to build Kotlin and Java projects today but it's capable to build anything: any language (JVM or not) or platform (Android, Spring, ...).
From 3c1407516900f71058ebbf5a7c3ec4650cd9263b Mon Sep 17 00:00:00 2001
From: Cedric Beust
Date: Wed, 14 Oct 2015 21:24:23 -0700
Subject: [PATCH 3/3] Remove mentions of KobaltLogger.
---
plug-in-development/index.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/plug-in-development/index.html b/plug-in-development/index.html
index 019518d..2aee0e7 100644
--- a/plug-in-development/index.html
+++ b/plug-in-development/index.html
@@ -183,11 +183,11 @@ fun lineCount(project: Project): TaskResult {
-We create a task called "lineCount"
in which we look for all files ending in ".kt" in all the source directories of the project. Finally, we display a count of files and lines at the end by using KobaltLogger.log()
, which is obtained by extending the trait KobaltLogger
:
+We create a task called "lineCount"
in which we look for all files ending in ".kt" in all the source directories of the project. Finally, we display a count of files and lines at the end by using log()
, which is automatically supplied by the Kobalt API:
-public class Main : BasePlugin(), KobaltLogger {
+public class Main : BasePlugin() {
@@ -258,7 +258,7 @@ fun main(argv: Array<String>) {
com.beust.kobalt.main(argv)
}
-public class Main : BasePlugin(), KobaltLogger {
+public class Main : BasePlugin() {
// ...