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