From b6ca3807b50819c43c475ffc21e663017fb59077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Wed, 16 Sep 2020 16:20:39 +0200 Subject: [PATCH] No more runtime / deployment BOMs --- .../io/quarkus/maven/CreateExtensionMojo.java | 22 +++++++++---------- .../runtime-pom.xml | 2 +- .../asciidoc/building-my-first-extension.adoc | 6 ++--- .../src/main/asciidoc/writing-extensions.adoc | 7 +++--- extensions/pom.xml | 2 +- 5 files changed, 19 insertions(+), 20 deletions(-) diff --git a/devtools/maven/src/main/java/io/quarkus/maven/CreateExtensionMojo.java b/devtools/maven/src/main/java/io/quarkus/maven/CreateExtensionMojo.java index 80b6e9dd06586..c6f7433ef03a6 100644 --- a/devtools/maven/src/main/java/io/quarkus/maven/CreateExtensionMojo.java +++ b/devtools/maven/src/main/java/io/quarkus/maven/CreateExtensionMojo.java @@ -384,7 +384,7 @@ public class CreateExtensionMojo extends AbstractMojo { String encoding; /** - * Path relative to {@link #basedir} pointing at a {@code pom.xml} file containing the BOM (Bill of Materials) that + * Path relative to {@link #basedir} pointing at a {@code pom.xml} file containing the platform BOM (Bill of Materials) that * manages extension artifacts. If set, the newly created runtime and deployment modules will be added to * {@code } section of this bom; otherwise the newly created modules will not be added * to any BOM. @@ -395,8 +395,8 @@ public class CreateExtensionMojo extends AbstractMojo { Path bomPath; /** - * A version for the entries added to the runtime BOM (see {@link #runtimeBomPath}) and to the deployment BOM (see - * {@link #deploymentBomPath}). If you want to pass a property placeholder, use {@code @} instead if {@code $} so + * A version for the entries added to the platform BOM (see {@link #bomPath}). + * If you want to pass a property placeholder, use {@code @} instead if {@code $} so * that the property is not evaluated by the current mojo - e.g. @{my-project.version} * * @since 0.25.0 @@ -406,15 +406,15 @@ public class CreateExtensionMojo extends AbstractMojo { /** * A list of strings of the form {@code groupId:artifactId:version[:type[:classifier[:scope]]]} representing the - * dependencies that should be added to the generated runtime module and to the runtime BOM if it is specified via - * {@link #runtimeBomPath}. + * dependencies that should be added to the generated runtime module and to the platform BOM if it is specified via + * {@link #bomPath}. *

* In case the built-in Maven ${placeholder} expansion does not work well for you (because you e.g. * pass {@link #additionalRuntimeDependencies}) via CLI, the Mojo supports a custom @{placeholder} * expansion: *