How to add a dependency to Maven
Add the following com.byteplus : byteplus-sdk-java-rec maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.byteplus</groupId>
<artifactId>byteplus-sdk-java-rec</artifactId>
<version>1.0.14</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.byteplus : byteplus-sdk-java-rec gradle dependency to your build.gradle
file:
implementation 'com.byteplus:byteplus-sdk-java-rec:1.0.14'
Gradle Kotlin DSL: Add the following com.byteplus : byteplus-sdk-java-rec gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.byteplus:byteplus-sdk-java-rec:1.0.14")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.byteplus : byteplus-sdk-java-rec sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.byteplus" % "byteplus-sdk-java-rec" % "1.0.14"