From 30ab413b363dfeb68f69cd2a40f4668092819be0 Mon Sep 17 00:00:00 2001 From: Leonid Dubinsky Date: Thu, 14 Aug 2025 21:50:51 -0400 Subject: [PATCH] Mention Gradle support with the multi-backend Scala plugin. --- docs/overview/installation.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/overview/installation.md b/docs/overview/installation.md index 9c51f8bc..abe068d2 100644 --- a/docs/overview/installation.md +++ b/docs/overview/installation.md @@ -39,7 +39,18 @@ object test extends Tests { ### scala-cli ```scala //> using lib "org.typelevel::weaver-cats:@VERSION@" -//> using testFramework "weaver.framework.CatsEffect" // this may neccessary if you have other TestFramework on your dependencies +//> using testFramework "weaver.framework.CatsEffect" // this may be neccessary if you have other testFramework on your dependencies +``` + +### Gradle +With [Gradle plugin for multi-backend Scala](https://github.com/dubinsky/scalajs-gradle): +```groovy +plugins { + id 'org.podval.tools.scalajs' version '' +} +dependencies { + testImplementation scalaBackend.testFramework(org.podval.tools.test.framework.WeaverTest) +} ``` ## Usage