From 629d62cb22a175417c2a467a6593e401e947ccd3 Mon Sep 17 00:00:00 2001 From: John Grimes Date: Thu, 8 Feb 2024 06:32:54 +1000 Subject: [PATCH] Change Java and Scala installation advice to use library-runtime --- site/docs/libraries/installation/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/docs/libraries/installation/index.md b/site/docs/libraries/installation/index.md index fbf42eca27..6e51a34852 100644 --- a/site/docs/libraries/installation/index.md +++ b/site/docs/libraries/installation/index.md @@ -39,7 +39,7 @@ To add the Pathling library to your project, add the following to your [SBT](https://www.scala-sbt.org/) configuration: ```scala -libraryDependencies += "au.csiro.pathling" % "library-api" % "[version]" +libraryDependencies += "au.csiro.pathling" % "library-runtime" % "[version]" ``` ### Java @@ -50,7 +50,7 @@ your `pom.xml`: ```xml au.csiro.pathling - library-api + library-runtime [version] ```