Skip to content

Commit bc99549

Browse files
committed
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.
1 parent 0e76143 commit bc99549

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,25 @@
131131
</configuration>
132132
</execution>
133133
</executions>
134+
<dependencies>
135+
<dependency>
136+
<groupId>org.graalvm.python</groupId>
137+
<artifactId>${project.python.artifact}</artifactId>
138+
<version>${project.polyglot.version}</version>
139+
<type>pom</type>
140+
</dependency>
141+
<dependency>
142+
<groupId>org.graalvm.polyglot</groupId>
143+
<artifactId>${project.python.artifact}</artifactId>
144+
<version>${project.polyglot.version}</version>
145+
<type>pom</type>
146+
</dependency>
147+
<dependency>
148+
<groupId>org.graalvm.python</groupId>
149+
<artifactId>python-launcher</artifactId>
150+
<version>${project.polyglot.version}</version>
151+
</dependency>
152+
</dependencies>
134153
</plugin>
135154
</plugins>
136155
</build>

0 commit comments

Comments
 (0)