From a0a62d649d88a343dfbfc04b404331998c5bdcae Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sun, 10 Jan 2016 18:05:44 -0800 Subject: [PATCH] Doc fixes. --- home/index.html | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/home/index.html b/home/index.html index 602e1bd..843b66a 100644 --- a/home/index.html +++ b/home/index.html @@ -66,7 +66,7 @@

Build file auto-completion in your IDE

-

Clean syntax for build files

+

Clean, minimal syntax for build files

For example, here is JCommander's entire build file:

@@ -101,11 +101,21 @@ val jcommander = javaProject {

This build file also includes a directive to upload your artifacts to Bintray automatically.

-

Support for incremental tasks (faster builds)

-

Intuitive plug-in architecture

+

Incremental tasks

+

+ Most of Kobalt's core tasks are incremental, which means that if you run them without having changed anything, they will be skipped. The support for incremental tasks is also trivial to add for plug-in developers, which guarantees that your builds with Kobalt will always be as fast as they can be. +

+

Intuitive plug-in architecture

+

+ Kobalt's plug-in architecture is heavily inspired from other successful plug-in architectures such + as Eclipse and IDEA. Thanks to Kotlin's static type safety, writing plug-ins for Kobalt is both + flexible and intuitive, with a minimum of boiler plate. See the + Kobalt plug-in development documentation for more details. +

+

Status