Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Commit

Permalink
Merge branch 'dev' into v3/release
Browse files Browse the repository at this point in the history
  • Loading branch information
schnapster committed Mar 11, 2018
2 parents e8b983b + 3f833d4 commit e171130
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
3 changes: 1 addition & 2 deletions FredBoat/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'com.gorylenko.gradle-git-properties'
apply plugin: 'application'
apply plugin: 'org.junit.platform.gradle.plugin'
apply plugin: 'propdeps'
apply plugin: 'propdeps-idea'
apply plugin: 'org.springframework.boot'
Expand Down Expand Up @@ -46,7 +45,7 @@ dependencies {
compile(group: 'lavalink', name: 'Lavalink-Client', version: '-SNAPSHOT')
} else {
//production
compile(group: 'com.github.Frederikam.Lavalink', name: 'Lavalink-Client', version: lavalinkVersion)
compile(group: 'com.github.Frederikam', name: 'Lavalink', version: lavalinkVersion)
}

compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: springBootVersion
Expand Down
36 changes: 19 additions & 17 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ subprojects {
//@formatter:off

//plugin versions
gradleGitVersion = '1.4.17' //do not upgrade to 1.4.20, it fails builds randomly
gradleGitVersion = '1.4.21'
shadowVersion = '2.0.2'
springBootVersion = '2.0.0.RC1'
jUnitPluginVersion = '1.0.2'
springBootVersion = '2.0.0.RELEASE'
propDepsVersion = '0.0.9.RELEASE'

//@formatter:on
Expand All @@ -38,7 +37,6 @@ subprojects {
classpath "gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:${gradleGitVersion}"
classpath "com.github.jengelman.gradle.plugins:shadow:${shadowVersion}"
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
classpath "org.junit.platform:junit-platform-gradle-plugin:${jUnitPluginVersion}"
classpath "io.spring.gradle:propdeps-plugin:${propDepsVersion}"
}
}
Expand All @@ -55,25 +53,29 @@ subprojects {
options.encoding = 'UTF-8'
}

test {
useJUnitPlatform()
}

ext {
//@formatter:off

springBootVersion = "${springBootVersion}"
//discord deps
jdaVersion = '3.5.1_339'
jdaVersion = '3.5.1_347'

//audio deps
lavaplayerVersion = '1.2.53'
lavaplayerVersion = '1.2.56'
jdaNasVersion = '1.0.6'
lavalinkVersion = '2f0df387c36b1850f63779398e89270c83f56ee3'
lavalinkVersion = '3c54c0566e'

//utility deps
jsonOrgVersion = '20180130'
commonsTextVersion = '1.2'
commonsIOVersion = '2.6'
commonsCodecVersion = '1.11'
commonsCollectionsVersion = '4.1'
snakeYamlVersion = '1.19'
snakeYamlVersion = '1.20'
fastUtilVersion = '8.1.1'
togglzVersion = '2.5.0.Final'
guavaVersion = '24.0-jre'
Expand All @@ -82,26 +84,26 @@ subprojects {

//logging / monitoring deps
logbackVersion = '1.2.3'
sentryVersion = '1.6.8'
prometheusClientVersion = '0.2.0'
sentryVersion = '1.7.1'
prometheusClientVersion = '0.3.0'

//http / web deps
okhttpVersion = '3.9.1'
sparkVersion = '2.7.1'
okhttpVersion = '3.10.0'
sparkVersion = '2.7.2'

//QA deps
spotbugsVersion = '3.1.1'
spotbugsVersion = '3.1.2'
napsterAnnotations = '0.0.1'

//database deps
sqlsauceVersion = '0.0.13'
hibernateVersion = '5.2.13.Final'
hibernateVersion = '5.2.14.Final'
flywayVersion = '5.0.7'
dsProxyVersion = '1.4.6'
dsProxyVersion = '1.4.7'
jaxbApiVersion = '2.3.0'

//testing deps
junitVersion = '5.0.3'
junitVersion = '5.1.0'
apiGuardianVersion = '1.0.0'


Expand All @@ -117,7 +119,7 @@ ext {
import org.gradle.api.tasks.wrapper.Wrapper.DistributionType

task wrapper(type: Wrapper) {
gradleVersion = '4.4.1'
gradleVersion = '4.6'
distributionType = DistributionType.ALL
}

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-all.zip

0 comments on commit e171130

Please sign in to comment.