diff options
author | vitalyster | 2020-11-11 02:45:43 +0300 |
---|---|---|
committer | vitalyster | 2020-11-11 02:49:35 +0300 |
commit | 2ae3c6425353364bf34394f971a162b357604d3b (patch) | |
tree | 7b14d1b5bdc508c9230cad7e858ae5d0c97e5c6f | |
parent | 67f4519129b1a4bf1ced63c935ce381f95433714 (diff) |
Disable gradle versions plugin
Dependencies now handled by Dependabot
-rw-r--r-- | build.gradle | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/build.gradle b/build.gradle index fe71cabd..78d95f59 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,6 @@ buildscript { } } plugins { - id 'com.github.ben-manes.versions' version '0.33.0' id 'org.springframework.boot' version '2.3.4.RELEASE' apply false id 'org.asciidoctor.convert' version '2.4.0' } @@ -28,18 +27,6 @@ dependencyManagement { applyMavenExclusions = false } -dependencyUpdates.resolutionStrategy { - componentSelection { rules -> - rules.all { ComponentSelection selection -> - boolean rejected = ['alpha', 'beta', 'rc', 'cr', 'm', 'pr', 'b'].any { qualifier -> - selection.candidate.version ==~ /(?i).*[.-]${qualifier}[.\d-]*/ - } - if (rejected) { - selection.reject('Release candidate') - } - } - } -} apply plugin: 'java' apply plugin: 'org.springframework.boot' apply plugin: 'io.github.swagger2markup' |