I want to disable or ignore my security check from Sonar Qube for a particular code. Below the screenshot, I have used directly my entity class in the request body. And I want to keep this change.
Just want to know how do I ignore this using the Sonar Qube Gradle property
sonarqube {
properties {
property("sonar.exclusions", "abc.java")
property("sonar.jacoco.reportPath", "./test_results.exec")
property("sonar.projectKey", "test");
property("sonar.login", "78t87324jhjahdsgjjhsa")
property("sonar.host.url", "https://sonarqube.test.te")
}
}