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