[Home] button in top left corner >> [Projects] tab in top left corner >> (under name, click on the name of your project) >> [Project Deletion] (on the left panel/dashboard at the bottom) >> [Delete project] (in the center of the page, kind of).
In some situations that you want to make it programatically you can use the SonarQube's Rest Web API to do so. According to SonarQube documentation:
POST api/projects/bulk_delete
Which can be used by passing the project's ID in the "keys" parameter.
I'm no pro in Curl but it should be something like this (code generated in the Postman client) for project with key "daBestProjectKey":
Login with an administrator account, then browse to the settings page of your project to get the button "delete project".
Here is the steps I use to DELETE any project from My SonarQube.
Login as administrator.
Go to Administration -> Projects -> Projects Management.
Select the Project(s) you want to DELETE.
Click on Delete button at top right corner.
or with the command line:
POST api/projects/bulk_delete.
Here is SonarQube version 4.4,
Seems each version the GUI is changed....
Here is the steps I use to DELETE any project from My SonarQube.
[Home] button in top left corner >> [Projects] tab in top left corner >> (under name, click on the name of your project) >> [Project Deletion] (on the left panel/dashboard at the bottom) >> [Delete project] (in the center of the page, kind of).
In some situations that you want to make it programatically you can use the SonarQube's Rest Web API to do so. According to SonarQube documentation:
Which can be used by passing the project's ID in the "keys" parameter. I'm no pro in Curl but it should be something like this (code generated in the Postman client) for project with key "daBestProjectKey":
Updated for Sonar 2.11:
Login with an administrator account, then browse to the settings page of your project to get the button "delete project".
Here is the steps I use to DELETE any project from My SonarQube.
Login as administrator. Go to Administration -> Projects -> Projects Management. Select the Project(s) you want to DELETE. Click on Delete button at top right corner.
or with the command line: POST api/projects/bulk_delete.