aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-08-28 17:44:44 -0700
committerJakob Odersky <jakob@odersky.com>2017-08-28 17:44:44 -0700
commit1f31f01f9c0ad73a70a9e3dd23c9d8ec27fd1792 (patch)
tree4d5efe0694cd5ce1f84bc418f65283ebea088e0d /README.md
parent4fc072c49c3b896ab31c1db29228033a98f9a838 (diff)
downloadsbt-jni-1f31f01f9c0ad73a70a9e3dd23c9d8ec27fd1792.tar.gz
sbt-jni-1f31f01f9c0ad73a70a9e3dd23c9d8ec27fd1792.tar.bz2
sbt-jni-1f31f01f9c0ad73a70a9e3dd23c9d8ec27fd1792.zip
Upgrade to sbt 1.0.1v1.3.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0e1cd68..791ef37 100644
--- a/README.md
+++ b/README.md
@@ -138,7 +138,7 @@ This plugin packages native libraries produced by JniNative in a way that they c
```scala
lazy val core = project in file("myproject-core"). // regular scala code with @native methods
- dependsOnRun(native) // remove this if `core` is a library, leave choice to end-user
+ dependsOn(native % Runtime) // remove this if `core` is a library, leave choice to end-user
lazy val native = project in file("myproject-native"). // native code and build script
enablePlugin(JniNative) // JniNative needs to be explicitly enabled