From 5d21a67ba48990f44e9825341ec71af2e6282f1f Mon Sep 17 00:00:00 2001 From: stepan Date: Fri, 12 Dec 2025 11:24:00 +0100 Subject: [PATCH] Add dependencies to exec-maven-plugin patch-gradle-props execution Include explicit dependencies in the exec-maven-plugin execution. This should ensure that required artifacts such as python-launcher are available when the plugin runs this execution. This change should improve reliability of the plugin execution, especially in environments where transitive dependencies might not be available by default. --- pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pom.xml b/pom.xml index 2f352f4..dfd49f7 100644 --- a/pom.xml +++ b/pom.xml @@ -131,6 +131,25 @@ + + + org.graalvm.python + ${project.python.artifact} + ${project.polyglot.version} + pom + + + org.graalvm.polyglot + ${project.python.artifact} + ${project.polyglot.version} + pom + + + org.graalvm.python + python-launcher + ${project.polyglot.version} + +