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