-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Labels
Description
hello,
is it possible to exclude a particular module in a multi-module project?
for example, if i have a pom with
<modules>
<module>module1</module>
<module>module2</module>
<module>module3</module>
</modules>
and i want module 1 and module 2 to use the parent project.version
but i want module3 to use a manual versioning scheme.
i have a config with updatePom = true
and it overwrites my manually configured version for module3 in the pom.xml. is there a way to prevent this from occurring for specific submodule?