diff options
author | Vitaly Takmazov | 2020-05-08 09:30:27 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2020-05-08 09:30:27 +0300 |
commit | e19d86be3b2d125338e9ed0d243ce2428250fc12 (patch) | |
tree | 786f4c9c0238c903d668664c432cd89379fcbce3 | |
parent | 6bfee2467a29d389fc86533dc6127813af84f156 (diff) |
Gradle: use new syntax for some plugins
-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') |