Hii
Iam trying to get familier with sonarcloud by setting-up a gradle-demo project (helloworld.java). i haven’t seen any results in overview of my project.
Here is my result in terminal:
BUILD SUCCESSFUL in 15s
2 actionable tasks: 1 executed, 1 up-to-date
Here is my sonarcloud properties in build.gradle:
sonarqube {
properties {
property "sonar.projectKey", "gradle-demo"
property "sonar.organization", "gradle-demo"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.login", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
property "sonar.sourceEncoding", "UTF-8"
}
}