diff --git a/README.md b/README.md index 32a62b5..8334b53 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ If you define your project in a `Build.scala`, you also need the following impor import pl.project13.scala.sbt.JmhPlugin ``` -You can read more about [auto plugins in sbt on it's documentation page](http://www.scala-sbt.org/0.13/tutorial/Using-Plugins.html#Enabling+and+disabling+auto+plugins). +You can read more about [auto plugins in sbt on it's documentation page](https://www.scala-sbt.org/1.x/docs/Using-Plugins.html#Enabling+and+disabling+auto+plugins). Write your benchmarks in `src/main/scala`. They will be picked up and instrumented by the plugin. diff --git a/plugin/src/main/scala/pl/project13/scala/sbt/JmhPlugin.scala b/plugin/src/main/scala/pl/project13/scala/sbt/JmhPlugin.scala index 0e9e9d1..047350b 100644 --- a/plugin/src/main/scala/pl/project13/scala/sbt/JmhPlugin.scala +++ b/plugin/src/main/scala/pl/project13/scala/sbt/JmhPlugin.scala @@ -37,7 +37,7 @@ object JmhPlugin extends AutoPlugin { /** All we need is Java. */ override def requires = plugins.JvmPlugin - /** Plugin must be enabled on the benchmarks project. See http://www.scala-sbt.org/0.13/tutorial/Using-Plugins.html */ + /** Plugin must be enabled on the benchmarks project. See https://www.scala-sbt.org/1.x/docs/Using-Plugins.html */ override def trigger = noTrigger override def projectConfigurations = Seq(Jmh)