diff options
-rw-r--r-- | build.gradle | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index a3d1359b..3cdb5483 100644 --- a/build.gradle +++ b/build.gradle @@ -6,13 +6,13 @@ buildscript { jcenter() } dependencies { - classpath 'com.github.ben-manes:gradle-versions-plugin:0.28.0' classpath 'io.github.swagger2markup:swagger2markup-gradle-plugin:1.3.3' } } plugins { - id 'org.springframework.boot' version '2.2.6.RELEASE' apply false - id("org.asciidoctor.convert") version "2.4.0" apply false + id 'com.github.ben-manes.versions' version '0.28.0' + id 'org.springframework.boot' version '2.2.7.RELEASE' apply false + id 'org.asciidoctor.convert' version '2.4.0' } repositories { @@ -28,7 +28,6 @@ dependencyManagement { applyMavenExclusions = false } -apply plugin: 'com.github.ben-manes.versions' dependencyUpdates.resolutionStrategy { componentSelection { rules -> rules.all { ComponentSelection selection -> @@ -44,7 +43,6 @@ dependencyUpdates.resolutionStrategy { apply plugin: 'java' apply plugin: 'org.springframework.boot' apply plugin: 'io.github.swagger2markup' -apply plugin: 'org.asciidoctor.convert' task yarn(type: Exec) { inputs.file('yarn.lock') |