According to your screenshot you have the following configuration:
<systemPropertyVariables>
<cucumber.options>
<![CDATA[--tags ${tags} ${dryRun} [${cucumber.features.dir}/${feature}]]>
</cucumber.options>
</systemPropertyVariables>
This would insert true or false into the environment variable, which is not a valid option and instead gets interpreted as a path to a feature file.
Cucumber instead expects a parameter like --dry-run or --no-dry-run (https://github.com/cucumber/cucumber-jvm/blob/v1.2.0/core/src/main/java/cucumber/runtime/RuntimeOptions.java#L116). The solution would be to define your property like this:
<properties>
<dryRun>--dry-run</dryRun>
</properties>
Unrelated to that, the opening brace before the feature path would also cause cucumber not to find the feature.