11buildscript {
22 ext {
3- springBootVersion = ' 2.1.4.RELEASE'
4- gradleGitVersion = ' 2.0.0'
5- grgitVersion = ' 3.1.1'
6- sonarqubeVersion = ' 2.7'
7- kotlinVersion = ' 1.3.31'
3+ springBootVersion = ' 2.0.4.RELEASE'
4+ gradleGitVersion = ' 1.5.2'
5+ sonarqubeVersion = ' 2.6.2'
6+ kotlinVersion = ' 1.2.71'
87 testLoggerVersion = ' 1.6.0'
9- versionsPluginVersion = ' 0.21.0'
108 }
119 repositories {
1210 maven { url " https://plugins.gradle.org/m2/" }
1311 maven { url ' http://repo.spring.io/plugins-release' }
1412 }
1513 dependencies {
1614 classpath " gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:${ gradleGitVersion} "
17- classpath " org.ajoberstar.grgit:grgit-gradle:$grgitVersion "
1815 classpath " org.springframework.boot:spring-boot-gradle-plugin:${ springBootVersion} "
1916 classpath " org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:${ sonarqubeVersion} "
2017 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
2118 classpath " org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion "
2219 classpath " com.adarshr:gradle-test-logger-plugin:$testLoggerVersion "
23- classpath " com.github.ben-manes:gradle-versions-plugin:$versionsPluginVersion "
2420 }
2521}
2622
@@ -39,8 +35,6 @@ allprojects {
3935subprojects {
4036 apply plugin : ' java'
4137 apply plugin : ' idea'
42- apply plugin : ' com.github.ben-manes.versions'
43-
4438 if (project. hasProperty(" includeAnalysis" )) {
4539 project. logger. lifecycle(" applying analysis plugins" )
4640 apply from : " ../analysis.gradle"
@@ -63,32 +57,25 @@ subprojects {
6357 jappVersion = ' 1.3'
6458
6559 springBootVersion = " ${ springBootVersion} "
66- springWebSocketVersion = ' 5.1.6 .RELEASE'
60+ springWebSocketVersion = ' 5.0.8 .RELEASE'
6761 logbackVersion = ' 1.2.3'
68- sentryLogbackVersion = ' 1.7.22 '
69- oshiVersion = ' 3.13.2 '
62+ sentryLogbackVersion = ' 1.7.7 '
63+ oshiVersion = ' 3.13.0 '
7064 jsonOrgVersion = ' 20180813'
71- spotbugsAnnotationsVersion = ' 3.1.12 '
72- prometheusVersion = ' 0.6 .0'
73- commonsLangVersion = ' 3.9 '
65+ spotbugsAnnotationsVersion = ' 3.1.6 '
66+ prometheusVersion = ' 0.5 .0'
67+ commonsLangVersion = ' 3.8 '
7468
7569 // @formatter:on
7670 }
77-
78- dependencyUpdates. resolutionStrategy {
79- componentSelection { rules ->
80- rules. all { ComponentSelection selection ->
81- boolean rejected = [' alpha' , ' beta' , ' rc' , ' cr' , ' m' , ' preview' , ' b' , ' ea' ]. any { qualifier ->
82- selection. candidate. version ==~ / (?i).*[.-]$qualifier[.\d -+]*/
83- }
84- if (rejected) {
85- selection. reject(' Release candidate' )
86- }
87- }
88- }
89- }
9071}
9172
9273ext {
9374 moduleName = ' Lavalink-Parent'
9475}
76+
77+ task wrapper (type : Wrapper ) {
78+ gradleVersion = ' 4.10.2'
79+ // noinspection UnnecessaryQualifiedReference
80+ distributionType = Wrapper.DistributionType . ALL
81+ }
0 commit comments