You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My project consists of a parent module and several sub modules. To be able to migrate von Java 11 to Java 17 i had to add several JVM configurations. I picked the .mvn/jvm.config approach (https://maven.apache.org/configure.html). I created a directory .mvn in the root of the Project and placed a file named jvm.config with the following content inside:
Running "right click parent => Run maven => clean install" results in a process with these settings picked up.
Running "right click any submodule => Run maven => clean install" results in a process with these settings NOT picked up.
I used ps aux | grep add-opens to check that.
After setting the option "Use a Terminal to run goals, with a custom mvn command: " to "mvn", the configuration is also picked up when a submodule is executed.
To Reproduce
see above
Expected behavior
The options set in projectroot/.mvn/jvm.config should always be picked up, when no projectroot/submodule/.mvn/jvm.config is found in the submodule's root.
The text was updated successfully, but these errors were encountered:
I have no knowledge about the architecture of Idea Plugins. If you are telling me, that your Plugin depends upon default Idea feature, then it has to be an Idea bug.
My project consists of a parent module and several sub modules. To be able to migrate von Java 11 to Java 17 i had to add several JVM configurations. I picked the
.mvn/jvm.config
approach (https://maven.apache.org/configure.html). I created a directory.mvn
in the root of the Project and placed a file namedjvm.config
with the following content inside:I used
ps aux | grep add-opens
to check that.After setting the option "Use a Terminal to run goals, with a custom mvn command: " to "mvn", the configuration is also picked up when a submodule is executed.
To Reproduce
see above
Expected behavior
The options set in
projectroot/.mvn/jvm.config
should always be picked up, when noprojectroot/submodule/.mvn/jvm.config
is found in the submodule's root.The text was updated successfully, but these errors were encountered: