diff --git a/README.md b/README.md index 9aea5bc..8b06aed 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Maven Local Repository plug-in for [Kobalt](http://beust.com/kobalt/home/index.html) -[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Build Status](https://travis-ci.org/ethauvin/kobalt-maven-local.svg?branch=master)](https://travis-ci.org/ethauvin/kobalt-maven-local) +[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Build Status](https://travis-ci.org/ethauvin/kobalt-maven-local.svg?branch=master)](https://travis-ci.org/ethauvin/kobalt-maven-local) [![Download](https://api.bintray.com/packages/ethauvin/maven/kobalt-maven-local/images/download.svg) ](https://bintray.com/ethauvin/maven/kobalt-maven-local/_latestVersion) The plug-in will detect the Maven Local Repository location, similarly to Gradle's [mavenLocal()](https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.dsl.RepositoryHandler.html#org.gradle.api.artifacts.dsl.RepositoryHandler:mavenLocal()) repository handler. @@ -9,17 +9,18 @@ To use the plug-in include the following in your `Build.kt` file: ```kotlin import net.thauvin.erik.kobalt.plugin.maven.local.* -val repos = repos(localMaven()) - val pl = plugins("net.thauvin.erik:kobalt-maven-local:") val p = project { name = "example" } ``` -[View Example](https://github.com/ethauvin/kobalt-maven-local/blob/master/example/kobalt/src/Build.kt) -The `localMaven()` directive will add the location of the Maven Local Repository to Kobalt's repositories list. +Use the `lovalMaven()` directive to tell Kobalt to look for artifacts in the Maven Local Repository: + +```kotlin +val repos = repos(localMaven()) +``` To publish to the Maven Local Repository use the `publishToMavenLocal` task: @@ -27,6 +28,8 @@ To publish to the Maven Local Repository use the `publishToMavenLocal` task: ./kobaltw publishToMavenLocal ``` +[View Example](https://github.com/ethauvin/kobalt-maven-local/blob/master/example/kobalt/src/Build.kt) + ## Locations The plug-in looks for the Maven Local Repository in the following locations: diff --git a/example/kobalt/src/Build.kt b/example/kobalt/src/Build.kt index 92c1a33..376e07e 100644 --- a/example/kobalt/src/Build.kt +++ b/example/kobalt/src/Build.kt @@ -6,8 +6,8 @@ import net.thauvin.erik.kobalt.plugin.maven.local.* val repos = repos(localMaven()) -val pl = plugins(file("../kobaltBuild/libs/kobalt-maven-local-0.4.0-beta.jar")) -//val pl = plugins("net.thauvin.erik:kobalt-maven-local:0.4.0-beta") +//val pl = plugins(file("../kobaltBuild/libs/kobalt-maven-local-0.5.0.jar")) +val pl = plugins("net.thauvin.erik:kobalt-maven-local:0.5.0") val example = project { diff --git a/kobalt-maven-local.ipr b/kobalt-maven-local.ipr index ed6ee87..52ea4d7 100644 --- a/kobalt-maven-local.ipr +++ b/kobalt-maven-local.ipr @@ -128,7 +128,7 @@