@@ -40,21 +40,22 @@ The Plugin has the following requirements:
4040[[getting-started]]
4141== Getting Started
4242
43- The plugin is available in the Gradle Plugin Portal and can be applied like this:
43+ The plugin is https://plugins.gradle.org/plugin/io.spring.dependency-management[available
44+ in the Gradle Plugin Portal] and can be applied like this:
4445
4546[source,groovy,indent=0,subs="verbatim,attributes",role="primary"]
4647.Groovy
4748----
4849plugins {
49- id "io.spring.dependency-management" version "1.0.6.RELEASE"
50+ id "io.spring.dependency-management" version <<version>>
5051}
5152----
5253
5354[source,kotlin,indent=0,subs="verbatim,attributes",role="secondary"]
5455.Kotlin
5556----
5657plugins {
57- id("io.spring.dependency-management") version "1.0.6.RELEASE"
58+ id("io.spring.dependency-management") version <<version>>
5859}
5960----
6061
@@ -71,7 +72,7 @@ buildscript {
7172 maven { url 'https://repo.spring.io/plugins-snapshot' }
7273 }
7374 dependencies {
74- classpath 'io.spring.gradle:dependency-management-plugin:1.0.7.BUILD-SNAPSHOT '
75+ classpath 'io.spring.gradle:dependency-management-plugin:<<snapshot-version>> '
7576 }
7677}
7778
@@ -88,7 +89,7 @@ buildscript {
8889 }
8990 }
9091 dependencies {
91- classpath("io.spring.gradle:dependency-management-plugin:1.0.7.BUILD-SNAPSHOT ")
92+ classpath("io.spring.gradle:dependency-management-plugin:<<snapshot-version>> ")
9293 }
9394}
9495
@@ -601,7 +602,7 @@ dependencies {
601602----
602603
603604This will cause any dependency (direct or transitive) on `com.google.guava:guava:18.0` in
604- the `compile ` configuration to use version `18.0`, overriding any dependency management
605+ the `implementation ` configuration to use version `18.0`, overriding any dependency management
605606that may exist. If you do not want a project's dependencies to override its dependency
606607management, this behavior can be disabled using `overriddenByDependencies`, as shown in
607608the following example:
0 commit comments