I noticed that my sonar maven plugin, version 3.4.0.905, can successfully read SONAR_TOKEN from environment variable defined in the gitlab ci/cd variable but cannot successfully
read SONAR_HOST_URL, instead I would need to set the following in the pom.xml and then it would work fine.
<properties>
<sonar.host.url>https://sonar.dev.my-company.net/sonar</sonar.host.url>
</properties>
is it expected?