How to add a dependency to Maven
Add the following org.jetbrains.kotlin-wrappers : kotlin-react-router-dom-legacy maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.jetbrains.kotlin-wrappers</groupId>
<artifactId>kotlin-react-router-dom-legacy</artifactId>
<version>6.3.0-pre.506-compat</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.jetbrains.kotlin-wrappers : kotlin-react-router-dom-legacy gradle dependency to your build.gradle
file:
implementation 'org.jetbrains.kotlin-wrappers:kotlin-react-router-dom-legacy:6.3.0-pre.506-compat'
Gradle Kotlin DSL: Add the following org.jetbrains.kotlin-wrappers : kotlin-react-router-dom-legacy gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.jetbrains.kotlin-wrappers:kotlin-react-router-dom-legacy:6.3.0-pre.506-compat")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.jetbrains.kotlin-wrappers : kotlin-react-router-dom-legacy sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.jetbrains.kotlin-wrappers" % "kotlin-react-router-dom-legacy" % "6.3.0-pre.506-compat"