This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| SONAR_DIR=/opt/sonar | |
| SONAR_PLUGINS_DIR=$SONAR_DIR/extensions/plugins | |
| SONAR_LOG_DIR=$SONAR_DIR/logs | |
| SONAR_USR=sonar | |
| SONAR_GRP=nogroup | |
| #DOC : Exits if an error occured during with the last command | |
| function assert { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Acquire::http::Proxy-Auto-Detect "/etc/apt/detect_proxy.sh"; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # detect_proxy.sh / chmod a+x | |
| # fichier de détection si le proxy indiqué est disponible | |
| # s'il est disponible, renvoie sur la sortie standard la configuration avec proxy | |
| # sinon, renvoi DIRECT | |
| proxy_address= | |
| proxy_port=8080 | |
| nc -zw1 $proxy_address $proxy_port && echo http://$proxy_address:$proxy_port/ || echo DIRECT | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| if [ $# -ne 1 ] | |
| then | |
| echo " " | |
| echo " " | |
| echo "Usage : findclass.sh <Class Name/Part of ClassName >" | |
| echo " " | |
| exit -1 | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # WSL 'git' wrapper, save as /usr/local/bin/git and chmod a+x | |
| if [ "${PWD:0:7}" = "/mnt/c/" ]; then | |
| /mnt/c/Program\ Files/Git/bin/git.exe "$@" | |
| else | |
| /usr/bin/git "$@" | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [2019-04-12T09:24:59.437Z] [INFO] Sensor FindBugs Sensor [findbugs] | |
| [2019-04-12T09:25:00.002Z] [INFO] Loading findbugs plugin: /home/[redacted]/jenkins_slave/workspace/[redacted]/[redacted]/sources/[redacted]/target/sonar/findbugs/fb-contrib.jar | |
| [2019-04-12T09:25:00.002Z] [INFO] Loading findbugs plugin: /home/[redacted]/jenkins_slave/workspace/[redacted]/[redacted]/sources/[redacted]/target/sonar/findbugs/findsecbugs-plugin.jar | |
| [2019-04-12T09:25:00.002Z] [INFO] Findbugs output report: /home/[redacted]/jenkins_slave/workspace/[redacted]/[redacted]/sources/[redacted]/target/sonar/findbugs-result.xml | |
| [2019-04-12T09:25:00.265Z] [INFO] Use filter-file: /home/[redacted]/jenkins_slave/workspace/[redacted]/[redacted]/sources/Tools/sonar/findbugs-exclusions.xml | |
| [2019-04-12T09:25:18.328Z] [INFO] ------------------------------------------------------------------------ | |
| [2019-04-12T09:25:18.328Z] [INFO] Reactor Summary for [redacted] 12.3.0-SNAPSHOT: | |
| [2019-04-12T09:25:18.328Z] [INFO] | |
| [2019-04-12T09:25:18.328Z] [INFO] [re |