You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/debugging.adoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -488,7 +488,7 @@ WARNING: The transformation will only be applied to your project's classes. The
488
488
<dependency>
489
489
<groupId>io.projectreactor</groupId>
490
490
<artifactId>reactor-tools</artifactId>
491
-
<1>
491
+
<version>VERSION</version> <1>
492
492
<classifier>original</classifier> <2>
493
493
<scope>runtime</scope>
494
494
</dependency>
@@ -510,7 +510,7 @@ WARNING: The transformation will only be applied to your project's classes. The
510
510
</plugins>
511
511
</build>
512
512
----
513
-
<1> If you use the xref:gettingStarted.adoc#getting[BOM], you do not need to specify a `<version>`.
513
+
<1> The version must be specified explicitly. Although the xref:gettingStarted.adoc#getting[Reactor BOM] manages `reactor-tools`, Maven's `dependencyManagement` only applies to project dependencies — it does not cover dependencies declared inside a plugin's `<dependencies>` block, which is where `reactor-tools:original` is used here.
514
514
<2> `classifier` here is important.
515
515
516
516
.reactor-tools with https://github.com/raphw/byte-buddy/tree/byte-buddy-1.10.9/byte-buddy-gradle-plugin[ByteBuddy's Gradle plugin]
@@ -528,7 +528,7 @@ dependencies {
528
528
byteBuddyPlugin(
529
529
group: 'io.projectreactor',
530
530
name: 'reactor-tools',
531
-
<1>
531
+
version: 'VERSION', <1>
532
532
classifier: 'original', <2>
533
533
)
534
534
}
@@ -540,7 +540,7 @@ byteBuddy {
540
540
}
541
541
}
542
542
----
543
-
<1> If you use the xref:gettingStarted.adoc#getting[BOM], you do not need to specify a `version`.
543
+
<1> The version must be specified explicitly. The `byteBuddyPlugin` is a standalone Gradle configuration, so the Reactor BOM (if imported via `platform(...)`) does not manage versions for dependencies declared in it.
0 commit comments