Skip to content

Commit

Permalink
Updated dependencies, added RestAction checking with gradle plugin: J…
Browse files Browse the repository at this point in the history
…DAction.
  • Loading branch information
DV8FromTheWorld committed Jan 24, 2017
1 parent a5ed69d commit 3941adb
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions build.gradle
@@ -1,8 +1,12 @@
import org.apache.tools.ant.filters.ReplaceTokens

plugins {
id 'com.sedmelluq.jdaction' version '1.0.1'
}

apply plugin: 'java'

def versionObj = new Version(major: 1, minor: 3, revision: 0)
def versionObj = new Version(major: 1, minor: 3, revision: 1)
group = "net.dv8tion"
archivesBaseName = "Yui"
version = "${versionObj.toString()}"
Expand All @@ -24,6 +28,10 @@ sourceSets {
}
}

jdaction {
sourceSets = [sourceSets.main]
}

// copy the main sources and filter any '@buildVersion@' occurences.
task processVersion (type: Copy) {
from sourceSets.main.java
Expand Down Expand Up @@ -70,15 +78,11 @@ artifacts {
}
repositories {
jcenter()

maven {
url 'http://maven.sedmelluq.com'
}
}

dependencies {
compile "net.dv8tion:JDA:3.0.BETA2_117"
compile 'com.sedmelluq:lavaplayer:1.1.34'
compile "net.dv8tion:JDA:3.0.BETA2_122"
compile 'com.sedmelluq:lavaplayer:1.1.42'
compile "net.lingala.zip4j:zip4j:1.3.2"
compile "com.google.code.gson:gson:2.4"
compile "org.xerial:sqlite-jdbc:3.8.11.2"
Expand Down

0 comments on commit 3941adb

Please sign in to comment.