summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2023-07-04 21:12:07 +0200
committerGitHub <noreply@github.com>2023-07-04 21:12:07 +0200
commit9eb82078bfb84f265f3425f25610bcc1a80fc0d1 (patch)
tree846292e2a37f16a228be7e0683d5ed37578dc570
parentc889ebcda171a9bab20fdee225b8eeee4c1921ca (diff)
parentd97fcd810c2b9f26edcda4b9e2982079b8957bad (diff)
Merge pull request #27633 from vespa-engine/jdisc-to-vespa
Replace Jdisc->Vespa in warning
-rw-r--r--bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateOsgiManifestMojo.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateOsgiManifestMojo.java b/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateOsgiManifestMojo.java
index 8f588ffa5b0..dcca60e1be8 100644
--- a/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateOsgiManifestMojo.java
+++ b/bundle-plugin/src/main/java/com/yahoo/container/plugin/mojo/GenerateOsgiManifestMojo.java
@@ -262,7 +262,7 @@ public class GenerateOsgiManifestMojo extends AbstractGenerateOsgiManifestMojo {
.sorted().toList();
if (! violations.isEmpty()) {
- warnOrThrow("Artifacts provided from Jdisc runtime are included in compile scope: " + violations
+ warnOrThrow("Artifacts provided from Vespa runtime are included in compile scope: " + violations
+ ". Direct dependencies should be removed."
+ " For transitive dependencies, run 'mvn dependency:tree' and add necessary exclusions.");
}