Affected version
3.26.1-SNAPSHOT
Bug description
The IT MPMD-335-aggregate-classpath-repositories is not compatible with Maven 4 (see #190)
'repositories.repository.[corp1].url' contains an unsupported expression (only expressions starting with 'project.basedir' or 'project.rootDirectory' are supported).
The project.rootDirectory property only exists in Maven 4.
So the IT's repository definition using ${user.dir} is not compatible with Maven 4:
<repositories>
<repository>
<id>corp1</id>
<url>file://${user.dir}/private-repo</url>
</repository>
</repositories>