Mvn sonar:sonar -Dsonar.host.url=https://sonar.private.com failed

When i run mvn sonar:sonar -Dsonar.host.rul=https://sonar.private.com , I had the following error
[ERROR] No plugin found for prefix ‘.host.url=https’
INFO : i used last mvan sonar plugin ( no version specifiec in command )

Do you use Windows? It sounds to me that you didn’t escape special characters (for example in PowerShell):

mvn sonar:sonar "-Dsonar.host.url=https://sonar.private.com"
1 Like

Hi , I’m not sure if you still there in this organization, but I am facing same issue and the thing is I am using the command with correct strings-

mvn clean verify sonar:sonar -Dsonar.projectKey= -Dsonar.projectName=‘’ -Dsonar.host.url=https://sonarqube.private.com -Dsonar.token= -s jfrog-settings.xml

[ERROR] No plugin found for prefix ‘.host.url=https’ in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users\bhargab3.m2\repository),…

Please help