aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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