How to add a dependency to Maven
Add the following nl.marc-apps : tts-compose-browser-wasm maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>nl.marc-apps</groupId>
<artifactId>tts-compose-browser-wasm</artifactId>
<version>2.3.0-wasm0</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following nl.marc-apps : tts-compose-browser-wasm gradle dependency to your build.gradle
file:
implementation 'nl.marc-apps:tts-compose-browser-wasm:2.3.0-wasm0'
Gradle Kotlin DSL: Add the following nl.marc-apps : tts-compose-browser-wasm gradle kotlin dependency to your build.gradle.kts
file:
implementation("nl.marc-apps:tts-compose-browser-wasm:2.3.0-wasm0")
How to add a dependency to SBT Scala
SBT Scala: Add the following nl.marc-apps : tts-compose-browser-wasm sbt scala dependency to your build.sbt
file:
libraryDependencies += "nl.marc-apps" % "tts-compose-browser-wasm" % "2.3.0-wasm0"