This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch maven-compiler-plugin-3.x in repository https://gitbox.apache.org/repos/asf/maven-compiler-plugin.git
commit aab10b324f2aa8360fd99d7961c20225336e33f7 Author: Tamas Cservenak <[email protected]> AuthorDate: Mon Oct 6 13:52:37 2025 +0200 Fix for Kotlin 2.x (#978) By default, it starts a daemon, but uses IT local repo, hence m-clean-p fails on Windows. Kotlin was upped here: 52d922f9215fe52de51853d3635cbbc91b56f68a Ref: https://kotlinlang.org/docs/kotlin-daemon.html (cherry picked from commit dc33a10ac65b963595aaf1376e457643813b9fc1) --- src/it/MCOMPILER-567-kt/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/it/MCOMPILER-567-kt/pom.xml b/src/it/MCOMPILER-567-kt/pom.xml index 3959b57..079015d 100644 --- a/src/it/MCOMPILER-567-kt/pom.xml +++ b/src/it/MCOMPILER-567-kt/pom.xml @@ -27,6 +27,10 @@ <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> + <properties> + <kotlin.compiler.daemon>false</kotlin.compiler.daemon> + </properties> + <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId>
