This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch feature/maven-classworlds-11028 in repository https://gitbox.apache.org/repos/asf/maven.git
commit 29413dc59d416b92275b81c63f0710f9df8368b3 Author: Guillaume Nodet <[email protected]> AuthorDate: Wed Jun 24 21:04:56 2026 +0200 [ISSUE-11028] Include JLine jars in lib/ for embedded executor compat JLine jars were exclusively placed in lib/modules/ for JPMS module path usage, but the EmbeddedMavenExecutor constructs its classpath from lib/ only. Include JLine in both locations — the JVM's module system prefers module path over classpath, so there's no conflict when both paths are active. Co-Authored-By: Claude Opus 4.6 <[email protected]> --- apache-maven/src/assembly/component.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/apache-maven/src/assembly/component.xml b/apache-maven/src/assembly/component.xml index 9a17e1338f..ae86c5639f 100644 --- a/apache-maven/src/assembly/component.xml +++ b/apache-maven/src/assembly/component.xml @@ -42,7 +42,6 @@ under the License. <excludes> <exclude>org.apache.maven:maven-api-classworlds</exclude> <exclude>org.apache.maven:maven-classworlds</exclude> - <exclude>org.jline:*</exclude> </excludes> </dependencySet> </dependencySets>
