Removed unnecessary import.

This commit is contained in:
Erik C. Thauvin 2017-03-08 01:30:20 -08:00
parent 6d86d5022a
commit b9ae264fb6

View file

@ -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: