My team has a common parent project with a module containing several reporting plugin configurations (e.g. checkstyle and findbugs, similar to Checkstyle's multimodule configuration, but in a separate project). I'm going to call the common parent project "common" and the reporting module "build-tools".
I'm trying to find a way to, when the common project is released, to have the common project reference the correct version of the build-tools module without doing a manual release.
Here are a couple of the things I've tried:
- Use ${project.version} for the build-tools version number. This uses the version number specified in the projects using the common as a parent.
- Use regular version numbers. These are not updated in the common project.
- Use a property. Again, the property value isn't updated on release.
Thanks!