Affected version
1.0.3
Bug description
(yes, I am aware of #1219 and #1269)
In the Jdbi build, we heavily depend on setting MAVEN_ARGS to control build behavior. When replacing 'mvn' with 'mvnd', the values from the environment variable are not read.
This is on macOS 15.7.1, Java 25, gnumake 3.81 (shipped with OS), mvnd 1.0.3 (installed from homebrew)
Affected version
1.0.3
Bug description
(yes, I am aware of #1219 and #1269)
In the Jdbi build, we heavily depend on setting MAVEN_ARGS to control build behavior. When replacing 'mvn' with 'mvnd', the values from the environment variable are not read.
MAVEN ?= ./mvnw)MAVEN='./mvnw' make install-fast. The build skips tests, checkers etc and builds the codeMAVEN='mvnd' make install-fast. The build will execute tests, checkers etc. because mvnd did not pick upMAVEN_ARGS='-Pfast'which is set in the MakefileThis is on macOS 15.7.1, Java 25, gnumake 3.81 (shipped with OS), mvnd 1.0.3 (installed from homebrew)