From b9ae264fb665bc9de51c0b2ead1db1d8273b6758 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Wed, 8 Mar 2017 01:30:20 -0800 Subject: [PATCH] Removed unnecessary import. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 190a0fa..fa70cca 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,6 @@ The plug-in will detect the Maven Local Repository location, similarly to Gradle To use the plug-in include the following in your `Build.kt` file: ```kotlin -import net.thauvin.erik.kobalt.plugin.maven.local.* - val bs = buildScript { plugins("net.thauvin.erik:kobalt-maven-local:") } @@ -21,7 +19,10 @@ val p = project { Use the `localMaven()` directive to tell Kobalt to look for artifacts in the Maven Local Repository: ```kotlin -val repos = repos(localMaven()) +val bs = buildScript { + ... + repos(localMaven()) +} ``` To publish to the Maven Local Repository use the `publishToMavenLocal` task: