Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
freyacodes committed Jan 17, 2019
2 parents 131e164 + f38944d commit a8d7b2c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
build/*
*.jar
!gradle/wrapper/gradle-wrapper.jar
.project
.classpath
.settings
5 changes: 2 additions & 3 deletions LavalinkServer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ bootJar {
archiveName = "Lavalink.jar"
}

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = targetCompatibility = 1.8

bootRun {
//compiling tests during bootRun increases the likelihood of catching broken tests locally instead of on the CI
Expand All @@ -38,7 +37,7 @@ test {
}

dependencies {
compile group: 'space.npstr', name: 'Magma', version: magmaVersion
compile group: 'club.minnced', name: 'magma', version: magmaVersion
compile group: 'com.sedmelluq', name: 'lavaplayer', version: lavaplayerVersion
compile group: 'com.sedmelluq', name: 'jda-nas', version: jdaNasVersion
compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: kotlinVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void setPassword(String password) {
/**
* @deprecated use {@link SentryConfigProperties} instead.
*/
@Deprecated(since = "3")
@Deprecated
public String getSentryDsn() {
return sentryDsn;
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ allprojects {
mavenCentral() // main maven repo
jcenter() // JDA and some other stuff
mavenLocal() // useful for developing
maven { url "https://jitpack.io" } // build projects directly from github
maven { url "https://jitpack.io" } // build projects directly from github
}

group = 'lavalink'
Expand All @@ -50,7 +50,7 @@ subprojects {
//@formatter:off

lavaplayerVersion = '1.3.10'
magmaVersion = '0.8.3'
magmaVersion = '0.9.0'
jdaNasVersion = '1.0.6'
jappVersion = '1.3'

Expand Down

0 comments on commit a8d7b2c

Please sign in to comment.