Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Duarte Meneses 3639887afa SONAR-17593 Rename gradle task and extension from 'sonarqube' to 'sonar' il y a 1 an
..
src/main SONAR-16465 Replace parameter sinceLeakPeriod with inNewCodePeriod (#6275) il y a 1 an
README.md Fix sonar-ws-generator/README il y a 5 ans
build.gradle SONAR-17593 Rename gradle task and extension from 'sonarqube' to 'sonar' il y a 1 an
run.sh Double-quote variables used in command arguments in Bash il y a 5 ans

README.md

What is this project used for?

The sonar-ws-generator must be used to generate the java sources used to access the Web API (HTTP) of SonarQube. The generated sources are not compilable on their own, but require to be copied in the sonar-ws module.

How do I use it?

  • Make your changes on the SonarQube Web API (protobuf specification of responses in sonar-ws or WebService implementations in sonar-server)
  • Build SonarQube with ./gradlew build -x test -x obfuscate)
  • Run generator: sonar-ws-generator/run.sh
  • Check your git status: the generated sources are copied in sonar-ws/src/main/java. Please double check the changed code.
  • Now you can rebuild sonar-ws and use it in integration tests

Hints

  • A request parameter has type List<String> if its description contains “comma-separated” or “list of” (case insensitive). Examples:
    • “Comma-separated list of metric keys”
    • “List of metric keys”