diff --git a/getting-started/index.html b/getting-started/index.html index e259910..3f11beb 100644 --- a/getting-started/index.html +++ b/getting-started/index.html @@ -93,30 +93,29 @@ val p = kotlinProject { val repos = repos("http://oss.sonatype.org/content/repositories/snapshots") dependencies { - compile("org.jetbrains.kotlin:kotlin-stdlib:" + kotlin_version) - compile("org.jetbrains.kotlin:kotlin-reflect:" + kotlin_version) + compile("org.jetbrains.kotlin:kotlin-stdlib:" + kotlin_version, + "org.jetbrains.kotlin:kotlin-reflect:" + kotlin_version, + "com.fasterxml.jackson.core:jackson-core:2.6.4", + "com.fasterxml.jackson.core:jackson-databind:2.6.4", + "com.fasterxml.jackson.core:jackson-annotations:2.6.4", + "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.6.3", + "com.fasterxml.woodstox:woodstox-core:5.0.1", - compile("com.fasterxml.jackson.core:jackson-core:2.6.4") - compile("com.fasterxml.jackson.core:jackson-databind:2.6.4") - compile("com.fasterxml.jackson.core:jackson-annotations:2.6.4") - compile("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.6.3") - compile("com.fasterxml.woodstox:woodstox-core:5.0.1") - - compile("io.netty:netty-all:4.0.31.Final") - compile("commons-codec:commons-codec:1.6") - compile("commons-logging:commons-logging:1.1.1") - compile("com.netflix.rxjava:rxjava-core:0.20.0-RC4") - compile("org.slf4j:slf4j-api:1.7.5") - compile("org.slf4j:slf4j-simple:1.7.5") - compile("joda-time:joda-time:2.3") + "io.netty:netty-all:4.0.31.Final", + "commons-codec:commons-codec:1.6", + "commons-logging:commons-logging:1.1.1", + "com.netflix.rxjava:rxjava-core:0.20.0-RC4", + "org.slf4j:slf4j-api:1.7.5", + "org.slf4j:slf4j-simple:1.7.5", + "joda-time:joda-time:2.3") } //these are only downloaded when running the test task dependenciesTest { - compile("junit:junit:4.9") - compile("org.mockito:mockito-all:1.9.5") - compile("org.apache.httpcomponents:httpcore:4.3.3") - compile("org.apache.httpcomponents:httpclient:4.5.1") + compile("junit:junit:4.9", + "org.mockito:mockito-all:1.9.5", + "org.apache.httpcomponents:httpcore:4.3.3", + "org.apache.httpcomponents:httpclient:4.5.1") } //tells kobalt to produce a jar @@ -127,28 +126,28 @@ val p = kotlinProject { } -

4. In Intellij IDEA, Sync Build File

-

- If you're using Intellij IDEA, make sure you've installed the Kobalt plugin and then go to Kobalt -> Sync Build File. This will download dependencies in a way that IDEA understand so you no loger get errors. -

+

4. In Intellij IDEA, Sync Build File

+

+ If you're using Intellij IDEA, make sure you've installed the Kobalt plugin and then go to Kobalt -> Sync Build File. This will download dependencies in a way that IDEA understand so you no loger get errors. +

- - -
-
- - - - - - - - - - - \ No newline at end of file + + +
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/home/index.html b/home/index.html index d417ab7..a679845 100644 --- a/home/index.html +++ b/home/index.html @@ -55,7 +55,7 @@
-

Kobalt: friendly, fast build system

+

Kobalt: a modern, versatile build system

@@ -102,6 +102,9 @@ val jcommander = javaProject { } +

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

Design goals