noderank statistics
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.

tasks.json 457B

12345678910111213141516171819
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "verify",
  8. "type": "shell",
  9. "command": "mvn -B verify",
  10. "group": "build"
  11. },
  12. {
  13. "label": "test",
  14. "type": "shell",
  15. "command": "mvn -B test",
  16. "group": "test"
  17. }
  18. ]
  19. }