You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sonar-scanner-debug 602B

1234567891011121314
  1. #!/usr/bin/env sh
  2. #
  3. # SonarScanner Startup Script for Unix
  4. #
  5. # Optional ENV vars:
  6. # SONAR_SCANNER_OPTS - parameters passed to the Java VM when running the SonarScanner
  7. # JAVA_HOME - Location of Java's installation
  8. SONAR_SCANNER_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
  9. echo "Executing SonarScanner in Debug Mode"
  10. echo "SONAR_SCANNER_DEBUG_OPTS=\"-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000\""
  11. env SONAR_SCANNER_OPTS="$SONAR_SCANNER_OPTS" SONAR_SCANNER_DEBUG_OPTS="$SONAR_SCANNER_DEBUG_OPTS" "`dirname "$0"`"/sonar-scanner "$@"