v1.2.2
DV8FromTheWorld
released this
13 Feb 17:09
·
2359 commits
to master
since this release
Downloads for this version are available from the build server:
http://home.dv8tion.net:8080/job/JDA%20Legacy/139/
or below.
As of this release JDA requires dependencies that are not on Maven Central. As such, JDA uses external repositories. In the future, Maven users will not need to define this external repositories, however, due to a bug in Gradle, Gradle users will always need to define these repositories.
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>1.2.2_139</version>
</dependency>
<repositories>
<repository>
<id>letece</id>
<url>http://lutece.paris.fr/nexus/content/repositories/lutece_third_party</url>
</repository>
<repository>
<id>DV8FromTheWorld</id>
<url>https://github.com/DV8FromTheWorld/Maven-Repository/raw/master/repo</url>
</repository>
</repositories>
Gradle
dependencies {
compile 'net.dv8tion:JDA:1.2.2_139'
}
repositories {
mavenCentral()
maven {
url "http://lutece.paris.fr/nexus/content/repositories/lutece_third_party/"
}
maven {
url "https://github.com/DV8FromTheWorld/Maven-Repository/raw/master/repo"
}
}
Maven Central Link: http://search.maven.org/#artifactdetails%7Cnet.dv8tion%7CJDA%7C1.2.2_139%7Cjar