I know this is about outdated software but please bear with me. We're using the last version of the Jenkins v1.x branch. Having just migrated from Subversion to git, we need to reconfigure our CI to use git. One job needs to checkout two projects and build both to run the tests. Since the git plugin does not allow to check out different projects into different directories (see JENKINS-4535 and the various follow-ups - TLDR: it wasn't implemented), we're using the Multiple SCM plugin to achieve that.
Now we're being bitten by the fact that SCM polling does not work correctly in this setup and Jenkins runs the job every time even if there are no changes. I found this fix for when you're checking out two different branches of the same project, but in our case, we're checking out the same branch of different projects. I guess this is why the mentioned fix won't work, since the branch specifier is exactly the same for both of the projects.
Is there anything we can try to make this setup run correctly? Please note that there's a lot of transition work to do since the migration to git and thus upgrading Jenkins to v2.x or using pipelines - although definitely intended - is something that we'd really like to avoid right now.