Hey Mallet thanks for responding let me explain my situation clearly we have project publishing on sonar from sometime back we changed the project group id of that project now when the analysis done sonar assumes that as new project cause of change in group id now we don't want to loose the old historic data after doing some research they suggested me to use the following query in order to migrate old sonar data of this project to new project so i used following query
set sql_safe_updates=0;
update projects
set kee = replace(kee,'nl.foo','nl.bar') after i execute this i'm able change my old group id to new group id
when i ran the sonar job it gives me following error Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.0.1:sonar (default-cli) on project project name: Fail to execute request [code=500, url=sonar host url Response code: 500 -> [Help 1] can i resolve this by deleting the project the project which used to have old group id ?