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.
-If you are interested in discussing Kobalt related topics with other fellow users or developers, you have several options: diff --git a/home/index.html b/home/index.html index b2783d5..92f3d6c 100644 --- a/home/index.html +++ b/home/index.html @@ -95,7 +95,7 @@ val j = jcenter(jcommander) {
provided
).
-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() { // ...