Languages of the repository: JavaScript, CSS, JSON, HTML, XML, YAML (Salesforce Commerce Cloud / SFCC project)
SonarCloud project: Private
Problem
PR analysis reports 639k New Lines and 122k New Lines to cover when the PR contains only 1 changed file (bitbucket-pipelines.yml, +54 lines, -2 lines). The quality gate fails on coverage (58.9% vs 80% required) and reliability rating (D vs A required) because it is evaluating the entire codebase as “new code”.
Setup Context
We have a dual-CI setup (migrating):
Jenkins performs branch analyses using sonar.branch.name and sonar.projectVersion=${githash} (7-character git commit hash). This has been running for some time across multiple branches (develop, master, CI2, CI7, CI9-PWA, etc.).
Bitbucket Pipelines is being introduced for PR analyses using sonar.pullrequest.key, sonar.pullrequest.branch, and sonar.pullrequest.base.
The New Code Definition for the project is set to “Previous version”.
Evidence That PR Detection Works
The scanner logs confirm the PR is correctly detected:
13:44:22.315 INFO Detected project key '****' from 'Bitbucket Cloud Pipelines'
13:44:22.315 INFO Detected organization key '****' from 'Bitbucket Cloud Pipelines'
13:44:22.351 INFO Found an active CI vendor: 'Bitbucket Pipelines'
13:44:24.039 INFO Detected project binding: BOUND
13:44:26.176 INFO Pull request 123456 for merge into develop from task/XXX-11111
13:44:33.165 INFO Sensor HTML is restricted to changed files only
Evidence That the Develop Baseline Exists
The develop branch has a recent analysis (1 hour ago) with:
Have an existing SonarCloud project with branch analyses performed by Jenkins using sonar.branch.name and sonar.projectVersion=${githash}
New Code Definition set to “Previous version”
develop branch has a passing baseline analysis with coverage data
Create a new branch from develop
Change only bitbucket-pipelines.yml (non-code file)
Open a PR targeting develop
Run SonarScanner CLI from Bitbucket Pipelines with sonar.pullrequest.* parameters
Observe that SonarCloud reports 639k new lines instead of ~0
Expected Behaviour
PR analysis should compare against the develop target branch and report approximately 0 new lines of code to cover (since only a YAML file was changed, not JavaScript source files).
Questions
Does the “Previous version” new code definition affect PR analysis scope? The documentation suggests PR analysis compares against the target branch, but the behaviour suggests otherwise.
Could the dual-CI setup (Jenkins for branches, Bitbucket for PRs) cause SonarCloud to miscalculate the PR diff?
Is there a known issue with PR new code calculation when sonar.projectVersion is set on branch analyses but not on PR analyses?
Welcome to the community and thanks for this thorough report!
Can you share your analysis log, redacted as necessary?
The analysis / scanner log is what’s output from the analysis command. Hopefully, the log you provide - redacted as necessary - will include that command as well.
Runner matching labels:
- linux
- self.hosted
Runner name: jenkins-vm-runner-01-vm
Runner UUID: {877f195b-xxx-xxx-a8fb-xxxa2be066}
Runner labels: self.hosted, linux
Runner version:
current: 5.8.1
latest: 5.8.1
+ umask 000
+ export GIT_LFS_SKIP_SMUDGE=1
+ retry 6 git clone --branch='[REDACTED_BRANCH]' https://x-token-auth:$REPOSITORY_OAUTH_ACCESS_TOKEN@bitbucket.org/$BITBUCKET_REPO_FULL_NAME.git $BUILD_DIR
Cloning into '/opt/atlassian/pipelines/agent/build'...
Updating files: 91% (8429/9242)
Updating files: 92% (8503/9242)
Updating files: 93% (8596/9242)
Updating files: 94% (8688/9242)
Updating files: 95% (8780/9242)
Updating files: 96% (8873/9242)
Updating files: 97% (8965/9242)
Updating files: 98% (9058/9242)
Updating files: 99% (9150/9242)
Updating files: 100% (9242/9242)
Updating files: 100% (9242/9242), done.
+ git reset --hard e6557xxx2e9eff632
HEAD is now at 6557 XXX-11111:ADD:Sonar and jest - update pipeline
+ git config user.name bitbucket-pipelines
+ git config user.email commits-noreply@bitbucket.org
+ git config push.default current
+ CONFLICT_EXIT_CODE=3
+ git merge b1b14b9d02f0 --no-edit || exit $CONFLICT_EXIT_CODE
Already up to date.
+ git config http.${BITBUCKET_GIT_HTTP_ORIGIN}.proxy http://localhost:29418/
+ git remote set-url origin http://bitbucket.org/$BITBUCKET_REPO_FULL_NAME
+ git reflog expire --expire=all --all
+ echo ".bitbucket/pipelines/generated" >> .git/info/exclude
+ chmod 777 $BUILD_DIR
Artifact "coverage/**": Downloading
Artifact "coverage/**": Downloaded 11.5 MiB in 1 seconds
Artifact "coverage/**": Extracting
Artifact "coverage/**": Extracted in 0 seconds
Default variables:
BITBUCKET_BRANCH
BITBUCKET_BUILD_NUMBER
BITBUCKET_CLONE_DIR
BITBUCKET_COMMIT
BITBUCKET_GIT_HTTP_ORIGIN
BITBUCKET_GIT_SSH_ORIGIN
BITBUCKET_PACKAGES_TOKEN
BITBUCKET_PACKAGES_USERNAME
BITBUCKET_PIPELINES_VARIABLES_PATH
BITBUCKET_PIPELINE_UUID
BITBUCKET_PROJECT_KEY
BITBUCKET_PROJECT_UUID
BITBUCKET_PR_DESTINATION_BRANCH
BITBUCKET_PR_DESTINATION_COMMIT
BITBUCKET_PR_ID
BITBUCKET_REPO_FULL_NAME
BITBUCKET_REPO_IS_PRIVATE
BITBUCKET_REPO_OWNER
BITBUCKET_REPO_OWNER_UUID
BITBUCKET_REPO_SLUG
BITBUCKET_REPO_UUID
BITBUCKET_SSH_KEY_FILE
BITBUCKET_STEP_OIDC_TOKEN
BITBUCKET_STEP_RUN_NUMBER
BITBUCKET_STEP_TRIGGERER_UUID
BITBUCKET_STEP_UUID
BITBUCKET_TEST_METADATA_FILE_PATH
BITBUCKET_WORKSPACE
CI
DOCKER_HOST
Repository variables:
BITBUCKET_API_TOKEN
JIRA_API_TOKEN
JIRA_BASE_URL
JIRA_USER
REQUIRED_FIX_VERSION
SONAR_TOKEN
Runtime:
self-hosted:
storage: default
Images used:
build: node@sha256:ecabd1cb6956d7acfffe8af6bbfbe2df42362269fd28c227f36367213d0bb777
Runner warnings:
node:22: Your kernel does not support memory swappiness capabilities or the cgroup is not mounted. Memory swappiness discarded.
+ echo "BITBUCKET_BRANCH: $BITBUCKET_BRANCH"
BITBUCKET_BRANCH: [REDACTED_BRANCH]
+ echo "BITBUCKET_PR_DESTINATION_BRANCH: $BITBUCKET_PR_DESTINATION_BRANCH"
BITBUCKET_PR_DESTINATION_BRANCH: [REDACTED_BRANCH]
+ echo "Changed files:"
Changed files:
+ git diff --name-only origin/[REDACTED_BRANCH]...HEAD
[REDACTED_FILE]
+ apt-get update && apt-get install -y --no-install-rXXXXmends unzip default-jre-headless
Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB]
Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6924 B]
Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [294 kB]
Fetched 9347 kB in 1s (9810 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
unzip is already the newest version (6.0-28).
The following additional packages will be installed:
ca-certificates-java java-common libasound2 libasound2-data libavahi-client3
libavahi-common-data libavahi-common3 libcups2 libdbus-1-3 libnspr4 libnss3
libpcsclite1 openjdk-17-jre-headless
Suggested packages:
default-jre libasound2-plugins alsa-utils cups-common pcscd libnss-mdns
fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho
fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic
RXXXXmended packages:
alsa-ucm-conf alsa-topology-conf dbus
The following NEW packages will be installed:
ca-certificates-java default-jre-headless java-common libasound2
libasound2-data libavahi-client3 libavahi-common-data libavahi-common3
libcups2 libdbus-1-3 libnspr4 libnss3 libpcsclite1 openjdk-17-jre-headless
0 upgraded, 14 newly installed, 0 to remove and 25 not upgraded.
Need to get 46.4 MB of archives.
After this operation, 201 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bookworm/main amd64 ca-certificates-java all 20230710~deb12u1 [11.9 kB]
Get:2 http://deb.debian.org/debian bookworm/main amd64 java-common all 0.74 [6388 B]
Get:3 http://deb.debian.org/debian bookworm/main amd64 libavahi-common-data amd64 0.8-10+deb12u1 [107 kB]
Get:4 http://deb.debian.org/debian bookworm/main amd64 libavahi-common3 amd64 0.8-10+deb12u1 [42.1 kB]
Get:5 http://deb.debian.org/debian bookworm/main amd64 libdbus-1-3 amd64 1.14.10-1~deb12u1 [201 kB]
Get:6 http://deb.debian.org/debian bookworm/main amd64 libavahi-client3 amd64 0.8-10+deb12u1 [45.8 kB]
Get:7 http://deb.debian.org/debian bookworm/main amd64 libcups2 amd64 2.4.2-3+deb12u9 [245 kB]
Get:8 http://deb.debian.org/debian bookworm/main amd64 libnspr4 amd64 2:4.35-1 [113 kB]
Get:9 http://deb.debian.org/debian-security bookworm-security/main amd64 libnss3 amd64 2:3.87.1-1+deb12u2 [1332 kB]
Get:10 http://deb.debian.org/debian bookworm/main amd64 libasound2-data all 1.2.8-1 [20.5 kB]
Get:11 http://deb.debian.org/debian bookworm/main amd64 libasound2 amd64 1.2.8-1+b1 [362 kB]
Get:12 http://deb.debian.org/debian bookworm/main amd64 libpcsclite1 amd64 1.9.9-2 [49.7 kB]
Get:13 http://deb.debian.org/debian-security bookworm-security/main amd64 openjdk-17-jre-headless amd64 17.0.18+8-1~deb12u1 [43.9 MB]
Get:14 http://deb.debian.org/debian bookworm/main amd64 default-jre-headless amd64 2:1.17-74 [2936 B]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 46.4 MB in 0s (216 MB/s)
Selecting previously unselected package ca-certificates-java.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 23258 files and directories currently installed.)
Preparing to unpack .../00-ca-certificates-java_20230710~deb12u1_all.deb ...
Unpacking ca-certificates-java (20230710~deb12u1) ...
Selecting previously unselected package java-common.
Preparing to unpack .../01-java-common_0.74_all.deb ...
Unpacking java-common (0.74) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../02-libavahi-common-data_0.8-10+deb12u1_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.8-10+deb12u1) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../03-libavahi-common3_0.8-10+deb12u1_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.8-10+deb12u1) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../04-libdbus-1-3_1.14.10-1~deb12u1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../05-libavahi-client3_0.8-10+deb12u1_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.8-10+deb12u1) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../06-libcups2_2.4.2-3+deb12u9_amd64.deb ...
Unpacking libcups2:amd64 (2.4.2-3+deb12u9) ...
Selecting previously unselected package libnspr4:amd64.
Preparing to unpack .../07-libnspr4_2%3a4.35-1_amd64.deb ...
Unpacking libnspr4:amd64 (2:4.35-1) ...
Selecting previously unselected package libnss3:amd64.
Preparing to unpack .../08-libnss3_2%3a3.87.1-1+deb12u2_amd64.deb ...
Unpacking libnss3:amd64 (2:3.87.1-1+deb12u2) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../09-libasound2-data_1.2.8-1_all.deb ...
Unpacking libasound2-data (1.2.8-1) ...
Selecting previously unselected package libasound2:amd64.
Preparing to unpack .../10-libasound2_1.2.8-1+b1_amd64.deb ...
Unpacking libasound2:amd64 (1.2.8-1+b1) ...
Selecting previously unselected package libpcsclite1:amd64.
Preparing to unpack .../11-libpcsclite1_1.9.9-2_amd64.deb ...
Unpacking libpcsclite1:amd64 (1.9.9-2) ...
Selecting previously unselected package openjdk-17-jre-headless:amd64.
Preparing to unpack .../12-openjdk-17-jre-headless_17.0.18+8-1~deb12u1_amd64.deb ...
Unpacking openjdk-17-jre-headless:amd64 (17.0.18+8-1~deb12u1) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../13-default-jre-headless_2%3a1.17-74_amd64.deb ...
Unpacking default-jre-headless (2:1.17-74) ...
Setting up java-common (0.74) ...
Setting up libasound2-data (1.2.8-1) ...
Setting up libnspr4:amd64 (2:4.35-1) ...
Setting up libavahi-common-data:amd64 (0.8-10+deb12u1) ...
Setting up libdbus-1-3:amd64 (1.14.10-1~deb12u1) ...
Setting up libpcsclite1:amd64 (1.9.9-2) ...
Setting up libasound2:amd64 (1.2.8-1+b1) ...
Setting up ca-certificates-java (20230710~deb12u1) ...
No JRE found. Skipping Java certificates setup.
Setting up libavahi-common3:amd64 (0.8-10+deb12u1) ...
Setting up libnss3:amd64 (2:3.87.1-1+deb12u2) ...
Setting up libavahi-client3:amd64 (0.8-10+deb12u1) ...
Setting up libcups2:amd64 (2.4.2-3+deb12u9) ...
Setting up openjdk-17-jre-headless:amd64 (17.0.18+8-1~deb12u1) ...
update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode
update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/jpackage to provide /usr/bin/jpackage (jpackage) in auto mode
update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode
update-alternatives: using /usr/lib/jvm/java-17-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode
Processing triggers for libc-bin (2.36-9+deb12u13) ...
Processing triggers for ca-certificates-java (20230710~deb12u1) ...
Adding debian:ACCVRAIZ1.pem
Adding debian:AC_RAIZ_FNMT-RCM.pem
Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem
Adding debian:ANF_Secure_Server_Root_CA.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:Amazon_Root_CA_1.pem
Adding debian:Amazon_Root_CA_2.pem
Adding debian:Amazon_Root_CA_3.pem
Adding debian:Amazon_Root_CA_4.pem
Adding debian:Atos_TrustedRoot_2011.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068_2.pem
Adding debian:Baltimore_CyberTrust_Root.pem
Adding debian:Buypass_Class_2_Root_CA.pem
Adding debian:Buypass_Class_3_Root_CA.pem
Adding debian:CA_Disig_Root_R2.pem
Adding debian:CFCA_EV_ROOT.pem
Adding debian:COMODO_Certification_Authority.pem
Adding debian:COMODO_ECC_Certification_Authority.pem
Adding debian:COMODO_RSA_Certification_Authority.pem
Adding debian:Certainly_Root_E1.pem
Adding debian:Certainly_Root_R1.pem
Adding debian:Certigna.pem
Adding debian:Certigna_Root_CA.pem
Adding debian:Certum_EC-384_CA.pem
Adding debian:Certum_Trusted_Network_CA.pem
Adding debian:Certum_Trusted_Network_CA_2.pem
Adding debian:Certum_Trusted_Root_CA.pem
Adding debian:Comodo_AAA_Services_root.pem
Adding debian:D-TRUST_BR_Root_CA_1_2020.pem
Adding debian:D-TRUST_EV_Root_CA_1_2020.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
Adding debian:DigiCert_Assured_ID_Root_CA.pem
Adding debian:DigiCert_Assured_ID_Root_G2.pem
Adding debian:DigiCert_Assured_ID_Root_G3.pem
Adding debian:DigiCert_Global_Root_CA.pem
Adding debian:DigiCert_Global_Root_G2.pem
Adding debian:DigiCert_Global_Root_G3.pem
Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
Adding debian:DigiCert_TLS_ECC_P384_Root_G5.pem
Adding debian:DigiCert_TLS_RSA4096_Root_G5.pem
Adding debian:DigiCert_Trusted_Root_G4.pem
Adding debian:E-Tugra_Certification_Authority.pem
Adding debian:E-Tugra_Global_Root_CA_ECC_v3.pem
Adding debian:E-Tugra_Global_Root_CA_RSA_v3.pem
Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
Adding debian:Entrust_Root_Certification_Authority.pem
Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem
Adding debian:Entrust_Root_Certification_Authority_-_G2.pem
Adding debian:Entrust_Root_Certification_Authority_-_G4.pem
Adding debian:GDCA_TrustAUTH_R5_ROOT.pem
Adding debian:GLOBALTRUST_2020.pem
Adding debian:GTS_Root_R1.pem
Adding debian:GTS_Root_R2.pem
Adding debian:GTS_Root_R3.pem
Adding debian:GTS_Root_R4.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem
Adding debian:GlobalSign_Root_CA.pem
Adding debian:GlobalSign_Root_CA_-_R3.pem
Adding debian:GlobalSign_Root_CA_-_R6.pem
Adding debian:GlobalSign_Root_E46.pem
Adding debian:GlobalSign_Root_R46.pem
Adding debian:Go_Daddy_Class_2_CA.pem
Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
Adding debian:HARICA_TLS_ECC_Root_CA_2021.pem
Adding debian:HARICA_TLS_RSA_Root_CA_2021.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
Adding debian:HiPKI_Root_CA_-_G1.pem
Adding debian:Hongkong_Post_Root_CA_1.pem
Adding debian:Hongkong_Post_Root_CA_3.pem
Adding debian:ISRG_Root_X1.pem
Adding debian:ISRG_Root_X2.pem
Adding debian:IdenTrust_Commercial_Root_CA_1.pem
Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem
Adding debian:Izenpe.com.pem
Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem
Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem
Adding debian:NAVER_Global_Root_Certification_Authority.pem
Adding debian:NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem
Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem
Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem
Adding debian:QuoVadis_Root_CA_1_G3.pem
Adding debian:QuoVadis_Root_CA_2.pem
Adding debian:QuoVadis_Root_CA_2_G3.pem
Adding debian:QuoVadis_Root_CA_3.pem
Adding debian:QuoVadis_Root_CA_3_G3.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
Adding debian:SSL.com_Root_Certification_Authority_ECC.pem
Adding debian:SSL.com_Root_Certification_Authority_RSA.pem
Adding debian:SZAFIR_ROOT_CA2.pem
Adding debian:Sectigo_Public_Server_Authentication_Root_E46.pem
Adding debian:Sectigo_Public_Server_Authentication_Root_R46.pem
Adding debian:SecureSign_RootCA11.pem
Adding debian:SecureTrust_CA.pem
Adding debian:Secure_Global_CA.pem
Adding debian:Security_Communication_ECC_RootCA1.pem
Adding debian:Security_Communication_RootCA2.pem
Adding debian:Security_Communication_RootCA3.pem
Adding debian:Security_Communication_Root_CA.pem
Adding debian:Starfield_Class_2_CA.pem
Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
Adding debian:SwissSign_Gold_CA_-_G2.pem
Adding debian:SwissSign_Silver_CA_-_G2.pem
Adding debian:T-TeleSec_GlobalRoot_Class_2.pem
Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
Adding debian:TWCA_Global_Root_CA.pem
Adding debian:TWCA_Root_Certification_Authority.pem
Adding debian:TeliaSonera_Root_CA_v1.pem
Adding debian:Telia_Root_CA_v2.pem
Adding debian:TrustCor_ECA-1.pem
Adding debian:TrustCor_RootCert_CA-1.pem
Adding debian:TrustCor_RootCert_CA-2.pem
Adding debian:Trustwave_Global_Certification_Authority.pem
Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem
Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem
Adding debian:TunTrust_Root_CA.pem
Adding debian:UCA_Extended_Validation_Root.pem
Adding debian:UCA_Global_G2_Root.pem
Adding debian:USERTrust_ECC_Certification_Authority.pem
Adding debian:USERTrust_RSA_Certification_Authority.pem
Adding debian:XRamp_Global_CA_Root.pem
Adding debian:certSIGN_ROOT_CA.pem
Adding debian:certSIGN_Root_CA_G2.pem
Adding debian:e-Szigno_Root_CA_2017.pem
Adding debian:ePKI_Root_Certification_Authority.pem
Adding debian:emSign_ECC_Root_CA_-_C3.pem
Adding debian:emSign_ECC_Root_CA_-_G3.pem
Adding debian:emSign_Root_CA_-_C1.pem
Adding debian:emSign_Root_CA_-_G1.pem
Adding debian:vTrus_ECC_Root_CA.pem
Adding debian:vTrus_Root_CA.pem
done.
Setting up default-jre-headless (2:1.17-74) ...
+ export SONAR_SCANNER_VERSION=8.0.1.6346
+ curl -sSLo sonar-scanner.zip "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux-x64.zip"
+ unzip -q sonar-scanner.zip
+ export PATH="$(pwd)/sonar-scanner-${SONAR_SCANNER_VERSION}-linux-x64/bin:$PATH"
+ export DEVELOP_VERSION=$(git rev-parse --short=7 origin/[REDACTED_BRANCH])
+ echo "DEVELOP_VERSION: $DEVELOP_VERSION"
DEVELOP_VERSION: b1b14b9
+ node --version
v22.22.2
+ java -version
openjdk version "17.0.18" 2026-01-20
OpenJDK Runtime Environment (build 17.0.18+8-Debian-1deb12u1)
OpenJDK 64-Bit Server VM (build 17.0.18+8-Debian-1deb12u1, mixed mode, sharing)
+ sonar-scanner -Dsonar.token=$SONAR_TOKEN -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=xxxonline -Dsonar.projectKey=xxxonline_XXXX-xxx -Dsonar.sources=cartridges -Dsonar.qualitygate.wait=true -Dsonar.qualitygate.timeout=300 -Dsonar.javascript.lcov.reportPaths=coverage/lcov.info -Dsonar.javascript.node.maxspace=16384 -Dsonar.scanner.skipNodeProvisioning=true -Dsonar.projectVersion=$DEVELOP_VERSION -Dsonar.pullrequest.key=$BITBUCKET_PR_ID -Dsonar.pullrequest.branch=$BITBUCKET_BRANCH -Dsonar.pullrequest.base=$BITBUCKET_PR_DESTINATION_BRANCH -Dsonar.exclusions=**/n
15:32:56.324 INFO Scanner configuration file: [REDACTED_PATH]/sonar-scanner-8.0.1.6346-linux-x64/conf/sonar-scanner.properties
15:32:56.326 INFO Project root configuration file: NONE
15:32:56.339 INFO SonarScanner CLI 8.0.1.6346
15:32:56.344 INFO Linux 6.8.0-1041-azure amd64
15:32:59.168 INFO Communicating with SonarQube Cloud
15:32:59.168 INFO JRE provisioning: os[linux], arch[x86_64]
15:33:02.138 INFO Starting SonarScanner Engine...
15:33:02.139 INFO Java 21.0.9 Eclipse Adoptium (64-bit)
15:33:05.296 INFO Load global settings
15:33:05.746 INFO Load global settings (done) | time=449ms
15:33:05.827 INFO Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
15:33:05.984 INFO Loading required plugins
15:33:05.984 INFO Load plugins index
15:33:06.030 INFO Load plugins index (done) | time=46ms
15:33:06.031 INFO Load/download plugins
15:33:06.785 INFO Load/download plugins (done) | time=754ms
15:33:06.908 INFO Loaded core extensions: a3s, architecture, sca
15:33:07.285 INFO Detected project key 'xxxonline_XXXX-xxx' from 'Bitbucket Cloud Pipelines'
15:33:07.285 INFO Detected organization key 'xxxonline' from 'Bitbucket Cloud Pipelines'
15:33:07.289 INFO Process project properties
15:33:07.306 INFO Project key: xxxonline_XXXX-xxx
15:33:07.307 INFO Base dir: /opt/atlassian/pipelines/agent/build
15:33:07.307 INFO Working dir: [REDACTED_PATH]/.scannerwork
15:33:07.318 INFO Found an active CI vendor: 'Bitbucket Pipelines'
15:33:07.320 INFO Load project branches
15:33:07.584 INFO Load project branches (done) | time=263ms
15:33:07.588 INFO Load project settings for component key: 'xxxonline_XXXX-xxx'
15:33:07.941 INFO Load project settings for component key: 'xxxonline_XXXX-xxx' (done) | time=352ms
15:33:08.476 INFO Check ALM binding of project 'xxxonline_XXXX-xxx'
15:33:08.639 INFO Detected project binding: BOUND
15:33:08.639 INFO Check ALM binding of project 'xxxonline_XXXX-xxx' (done) | time=162ms
15:33:08.642 INFO Load project pull requests
15:33:09.118 INFO Load project pull requests (done) | time=475ms
15:33:09.122 INFO Load branch configuration
15:33:09.465 INFO Load branch configuration (done) | time=343ms
15:33:09.474 INFO Load quality profiles
15:33:10.084 INFO Load quality profiles (done) | time=609ms
15:33:10.106 INFO Create analysis
15:33:10.280 INFO Create analysis (done) | time=173ms
15:33:10.290 INFO Load active rules
15:33:10.785 INFO Load active rules (done) | time=494ms
15:33:10.951 INFO Organization key: xxxonline
15:33:10.951 INFO Pull request 95569 for merge into [REDACTED_BRANCH] from [REDACTED_BRANCH]
15:33:10.967 INFO Preprocessing files...
15:33:12.724 INFO 6 languages detected in 5429 preprocessed files (done) | time=1757ms
15:33:12.725 INFO 1821 files ignored because of inclusion/exclusion patterns
15:33:12.746 INFO Loading plugins for detected languages
15:33:12.746 INFO Load/download plugins
15:33:13.716 INFO Load/download plugins (done) | time=969ms
15:33:13.889 INFO Load project repositories
15:33:14.301 INFO Load project repositories (done) | time=411ms
15:33:14.313 INFO Indexing files...
15:33:14.314 INFO Project configuration:
15:33:14.314 INFO Excluded sources: **/node_modu
15:33:14.314 INFO Excluded sources for coverage: **/handtion: **/mock/**, **/*Mock*, **/bm_page_designer/**
15:33:15.450 INFO 5429 files indexed (done) | time=1137ms
15:33:15.456 INFO Quality profile for css: Sonar way
15:33:15.457 INFO Quality profile for js: XXX-F-JS
15:33:15.457 INFO Quality profile for json: Sonar way
15:33:15.457 INFO Quality profile for web: Sonar way
15:33:15.457 INFO Quality profile for xml: Sonar way
15:33:15.457 INFO Quality profile for yaml: Sonar way
15:33:15.458 INFO ------------- Run sensors on module xxxonline_XXXX-xxx
15:33:15.499 INFO Load metrics repository
15:33:15.597 INFO Load metrics repository (done) | time=97ms
15:33:15.605 INFO Sensor cache enabled
15:33:15.608 INFO Load sensor cache
15:33:16.517 INFO Load sensor cache (24 MB) | time=908ms
15:33:16.990 INFO Reflections took 47 ms to scan 1 urls, producing 25 keys and 261 values
15:33:17.509 INFO Sensor HTML [web]
15:33:17.510 INFO Sensor HTML is restricted to changed files only
15:33:17.534 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.535 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.540 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.546 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.553 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.556 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.559 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.560 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.566 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.567 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.567 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.570 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.580 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.663 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.665 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.666 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.666 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.670 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.671 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.678 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.683 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.695 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.702 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.702 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.706 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.709 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.715 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.720 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.721 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.723 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.724 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.728 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.730 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.735 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.736 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.737 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.753 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.755 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.759 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.760 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.763 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.764 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.767 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.767 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.768 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.769 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.769 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.770 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.773 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.776 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.787 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.788 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.789 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.793 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.795 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.796 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.804 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.809 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.855 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.859 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.861 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.864 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.865 WARN Invalid character encountered in file at line 47 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.865 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.867 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.869 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.871 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.876 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.879 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.881 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.883 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.887 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.887 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.887 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.888 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.892 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.893 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.894 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.895 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.911 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.911 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.911 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.912 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.913 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.917 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.918 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.919 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.919 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.921 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.924 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.925 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.928 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.964 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.967 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.970 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.971 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.985 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:17.986 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.156 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.157 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.157 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.159 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.159 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.161 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.161 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.161 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.164 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.165 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.165 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.166 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.168 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.169 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.169 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.170 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.171 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.172 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.174 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.175 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.189 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.190 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.191 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.192 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.194 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.194 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.202 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.203 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.207 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.209 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.210 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.211 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.213 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.215 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.216 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.222 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.224 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.225 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.230 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.231 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.236 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.238 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.243 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.246 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.250 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.253 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.256 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.256 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.257 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.268 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.270 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.273 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.274 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.274 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.275 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.277 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.277 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.277 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.283 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.288 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.298 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.299 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.299 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.300 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.300 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.301 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.301 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.303 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.303 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.305 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.307 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.307 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.307 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.308 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.309 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.310 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.313 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.314 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.316 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.319 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.319 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.320 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.322 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.322 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.323 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.324 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.332 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.332 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.334 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.336 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.338 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.339 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.339 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.341 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.343 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.344 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.347 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.348 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.349 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.350 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.350 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.353 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.354 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.354 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.361 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.362 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.364 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.364 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.367 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.370 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.380 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.385 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.386 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.389 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.389 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.399 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.400 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.425 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.426 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.429 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.439 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.439 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.440 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.443 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.445 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.451 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.454 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.456 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.461 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.462 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.463 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.464 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.495 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.497 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.500 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.500 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.501 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.502 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.504 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.506 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.507 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.516 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.518 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.519 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.520 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.522 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.522 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.527 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.529 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.536 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.539 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.541 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.543 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.544 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.544 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.546 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.552 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.553 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.553 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.558 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.561 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.564 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.564 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.565 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.567 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.567 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.567 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.569 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.571 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.572 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.576 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.586 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.588 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.589 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.590 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.595 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.598 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.598 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.598 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.605 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.605 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.608 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.610 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.617 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.619 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.620 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.620 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.621 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.621 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.622 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.622 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.622 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.623 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.623 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.625 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.628 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.637 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.642 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.645 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.651 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.652 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.653 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.663 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.664 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.664 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.664 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.665 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.670 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.673 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.674 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.674 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.680 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.680 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.684 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.685 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.690 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.700 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.700 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.700 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.701 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.701 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.712 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.713 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.713 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.714 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.716 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.723 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.724 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.726 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.729 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.731 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.734 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.736 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.738 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.738 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.742 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.743 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.745 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.746 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.748 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.749 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.750 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.750 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.750 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.751 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.752 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.754 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.755 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.758 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.760 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.768 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.770 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.780 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.781 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.783 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.787 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.787 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.795 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.795 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.808 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.809 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.810 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.811 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.812 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.821 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.823 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.824 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.824 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.825 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.826 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.828 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.828 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.828 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.831 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.835 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.835 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.837 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.842 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.843 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.846 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.848 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.854 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.859 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.862 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.864 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.868 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.868 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.883 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.883 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.884 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.884 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.885 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.891 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.893 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.894 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.894 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.895 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.901 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.901 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.902 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.902 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.903 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.903 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.905 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.923 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.928 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.928 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.931 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.931 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.932 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.938 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.939 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.941 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.941 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.942 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.942 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.943 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.944 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.946 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.946 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.951 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.951 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.954 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.955 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.960 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.960 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.960 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.963 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.970 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.973 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.975 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:18.979 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.016 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.017 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.018 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.018 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.018 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.019 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.023 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.027 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.029 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.031 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.034 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.035 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.036 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.037 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.040 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.040 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.043 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.044 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.045 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.046 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.046 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.046 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.048 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.049 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.050 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.050 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.050 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.051 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.051 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.057 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.061 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.061 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.061 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.062 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.062 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.066 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.066 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.069 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.069 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.074 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.078 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.079 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.079 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.084 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.087 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.125 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.127 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.127 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.128 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.130 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.130 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.131 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.132 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.132 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.133 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.135 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.138 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.140 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.141 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.141 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.142 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.142 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.142 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.142 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.146 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.148 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.149 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.151 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.153 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.154 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.155 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.156 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.157 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.157 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.158 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.158 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.160 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.160 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.160 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.160 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.169 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.172 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.172 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.178 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.179 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.180 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.186 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.188 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.191 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.192 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.193 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.193 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.194 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.197 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.198 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.207 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.207 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.209 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.210 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.216 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.219 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.220 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.220 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.221 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.224 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.232 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.232 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.234 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.410 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.417 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.419 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.421 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.427 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.432 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.452 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.455 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.456 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.526 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.526 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.526 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.526 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.527 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.530 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.534 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.534 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.534 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.534 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.536 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.546 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.546 WARN Invalid character encountered in file at line 2 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.546 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.547 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.550 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.550 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.551 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.557 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.565 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.582 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.582 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.582 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.585 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.586 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.587 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.754 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.755 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.756 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.759 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.759 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.759 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.776 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.778 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.778 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.779 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.781 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.783 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.783 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.784 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.785 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.785 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.785 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.789 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.791 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.791 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.791 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.791 WARN Invalid character encountered in file at line 3 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.791 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.792 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.794 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.795 WARN Invalid character encountered in file at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
15:33:19.797 INFO Sensor HTML [web] (done) | time=2288ms
15:33:19.797 INFO Sensor XML Sensor [xml]
15:33:19.797 INFO Sensor XML Sensor is restricted to changed files only
15:33:19.806 INFO 67 source files to be analyzed
15:33:20.331 INFO 67/67 source files have been analyzed
15:33:20.331 INFO Sensor XML Sensor [xml] (done) | time=533ms
15:33:20.331 INFO Sensor JasminFileCollectorSensor [jasmin]
15:33:20.335 INFO Sensor JasminFileCollectorSensor [jasmin] (done) | time=3ms
15:33:20.335 INFO Sensor IaC CloudFormation Sensor [iac]
15:33:20.360 INFO There are no files to be analyzed for the CloudFormation language
15:33:20.360 INFO Sensor IaC CloudFormation Sensor [iac] (done) | time=24ms
15:33:20.360 INFO Sensor IaC cfn-lint report Sensor [iac]
15:33:20.361 INFO Sensor IaC cfn-lint report Sensor [iac] (done) | time=0ms
15:33:20.361 INFO Sensor IaC Kustomization Sensor [iac]
15:33:20.365 INFO Sensor IaC Kustomization Sensor [iac] (done) | time=3ms
15:33:20.365 INFO Sensor IaC hadolint report Sensor [iac]
15:33:20.365 INFO Sensor IaC hadolint report Sensor [iac] (done) | time=0ms
15:33:20.365 INFO Sensor IaC Azure Resource Manager Sensor [iac]
15:33:20.365 INFO Sensor IaC Azure Resource Manager Sensor is restricted to changed files only
15:33:20.374 INFO There are no files to be analyzed for the Azure Resource Manager language
15:33:20.374 INFO Sensor IaC Azure Resource Manager Sensor [iac] (done) | time=8ms
15:33:20.374 INFO Sensor Java Config Sensor [iac]
15:33:20.439 INFO There are no files to be analyzed for the Java language
15:33:20.439 INFO Sensor Java Config Sensor [iac] (done) | time=64ms
15:33:20.439 INFO Sensor IaC Docker Sensor [iac]
15:33:20.440 INFO Sensor IaC Docker Sensor is restricted to changed files only
15:33:20.483 INFO There are no files to be analyzed for the Docker language
15:33:20.484 INFO Sensor IaC Docker Sensor [iac] (done) | time=43ms
15:33:20.484 INFO Sensor IaC Ansible Sensor [iac]
15:33:20.540 INFO There are no files to be analyzed for the Ansible language
15:33:20.541 INFO Sensor IaC Ansible Sensor [iac] (done) | time=56ms
15:33:20.541 INFO Sensor IaC ansible-lint report Sensor [iac]
15:33:20.541 INFO Sensor IaC ansible-lint report Sensor [iac] (done) | time=0ms
15:33:20.541 INFO Sensor IaC spectral report Sensor [iac]
15:33:20.543 INFO Sensor IaC spectral report Sensor [iac] (done) | time=1ms
15:33:20.543 INFO Sensor IaC GitHub Actions Sensor [iac]
15:33:20.544 INFO There are no files to be analyzed for the GitHub Actions language
15:33:20.544 INFO Sensor IaC GitHub Actions Sensor [iac] (done) | time=1ms
15:33:20.544 INFO Sensor IaC actionlint report Sensor [iac]
15:33:20.545 INFO Sensor IaC actionlint report Sensor [iac] (done) | time=0ms
15:33:20.545 INFO Sensor IaC Azure Pipelines Sensor [iac]
15:33:20.564 INFO There are no files to be analyzed for the Azure Pipelines language
15:33:20.564 INFO Sensor IaC Azure Pipelines Sensor [iac] (done) | time=19ms
15:33:20.565 INFO Sensor IaC Shell Sensor [iac]
15:33:20.565 INFO There are no files to be analyzed for the Shell language
15:33:20.565 INFO Sensor IaC Shell Sensor [iac] (done) | time=0ms
15:33:20.565 INFO Sensor JavaScript/TypeScript/CSS analysis [javascript]
15:33:20.827 INFO 'sonar.scanner.skipNodeProvisioning' is set. Skipping embedded Node.js runtime deployment.
15:33:20.828 INFO Configured Node.js --max-old-space-size=16384.
15:33:20.828 INFO Forcing to use Node.js from the host.
15:33:20.828 INFO Using Node.js executable: 'node'.
15:33:22.600 INFO Memory configuration: OS (32097 MB), Docker (16384 MB), Node.js (16432 MB).
15:33:22.714 INFO WebSocket client connected on /ws
15:33:22.714 WARN Using Node.js version 22.22.2 to execute analysis is not rXXXXmended. Please upgrade to a newer LTS version of Node.js: 24.0.
15:33:22.716 INFO Plugin version: [12.3.0.39932]
15:33:24.343 INFO Some of the project files were automatically excluded because they looked like generated code. Enable debug logging to see which files were excluded. You can disable bundle detection by setting sonar.javascript.detectBundles=false
15:33:25.947 INFO Found 0 tsconfig.json file(s): []
15:35:26.244 ERROR Error: Unexpected token, expected "(" (26:8)
15:35:26.245 ERROR at e.parsingError ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
15:35:26.245 ERROR at M0r ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:26024)
15:35:26.245 ERROR at wyr ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:26646)
15:35:26.245 ERROR at mRm ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:428096)
15:35:26.245 ERROR at kEo ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:428635)
15:35:26.245 ERROR at lMe ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1245)
15:35:26.246 ERROR at zwg ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:12028)
15:35:26.246 ERROR at async oel ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:10966)
15:35:26.246 ERROR at async del ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16687)
15:35:26.246 ERROR at async ttt ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
15:35:26.247 ERROR at async MessagePort.<anonymous> ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
15:35:26.249 WARN Failed to parse file [cartridges/bm_customfeeds/cartridge/controllers/BMCustomFeeds.js] at line 26: Unexpected token, expected "(" (26:8)
15:35:54.899 WARN Failed to parse file [cartridges/int_customfeeds/cartridge/scripts/export/jobsteps/CustomFeeds.js] at line 53: Unexpected token, expected "(" (53:5)
15:36:03.277 INFO JasminAstConsumer done
15:36:03.277 INFO Hit the cache for 0 out of 1755
15:36:03.278 INFO Miss the cache for 1755 out of 1755: FILE_CHANGED [1755/1755]
15:36:03.278 INFO Sensor JavaScript/TypeScript/CSS analysis [javascript] (done) | time=162712ms
15:36:03.278 INFO Sensor JavaScript/TypeScript Coverage [javascript]
15:36:03.279 INFO Analysing [[REDACTED_PATH]/coverage/lcov.info]
15:36:03.282 INFO 2259 source files to be analyzed
15:36:03.282 INFO Analyzing 1740 file(s) using default options [lib: lib.es2020.d.ts, lib.dom.d.ts]
15:36:03.315 ERROR Error: Unexpected token, expected "(" (53:5)
15:36:03.315 ERROR at e.parsingError ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
15:36:03.315 ERROR at M0r ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:26024)
15:36:03.315 ERROR at wyr ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:26646)
15:36:03.316 ERROR at mRm ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:428096)
15:36:03.316 ERROR at kEo ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2424:428635)
15:36:03.316 ERROR at lMe ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1245)
15:36:03.316 ERROR at zwg ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:12028)
15:36:03.316 ERROR at async oel ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:10966)
15:36:03.316 ERROR at async del ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16687)
15:36:03.316 ERROR at async ttt ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
15:36:03.316 ERROR at async MessagePort.<anonymous> ([REDACTED_PATH]/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
15:36:03.336 INFO 2259/2259 source files have been analyzed
15:36:03.836 WARN Could not resolve 80 file paths in [[REDACTED_PATH]/coverage/lcov.info]
15:36:03.836 WARN First unresolved path: jest.config.js (Run in DEBUG mode to get full list of unresolved paths)
15:36:03.836 INFO Sensor JavaScript/TypeScript Coverage [javascript] (done) | time=557ms
15:36:03.836 INFO Sensor IaC Kubernetes Sensor [iac]
15:36:04.023 INFO There are no files to be analyzed for the Kubernetes language
15:36:04.023 INFO Sensor IaC Kubernetes Sensor [iac] (done) | time=186ms
15:36:04.023 INFO Sensor IaC YAML Sensor [iac]
15:36:04.024 INFO Sensor for language "YAML" is disabled by a feature flag. You can enable it by setting "sonar.featureflag.cloud-security-enable-generic-yaml-and-json-analyzer" to true.
15:36:04.024 INFO Sensor IaC YAML Sensor [iac] (done) | time=0ms
15:36:04.024 INFO Sensor IaC JSON Sensor [iac]
15:36:04.024 INFO Sensor for language "JSON" is disabled by a feature flag. You can enable it by setting "sonar.featureflag.cloud-security-enable-generic-yaml-and-json-analyzer" to true.
15:36:04.024 INFO Sensor IaC JSON Sensor [iac] (done) | time=0ms
15:36:04.024 INFO Sensor EnterpriseTextAndSecretsSensor [textenterprise]
15:36:04.024 INFO Sensor EnterpriseTextAndSecretsSensor is restricted to changed files only
15:36:04.036 INFO Available processors: 8
15:36:04.036 INFO Using 8 threads for analysis.
15:36:04.423 INFO The property "sonar.tests" is not set. To improve the analysis accuracy, we categorize a file as a test file if any of the following is true:
* The filename starts with "test"
* The filename contains "test." or "tests."
* Any directory in the file path is named: "doc", "docs", "test", "tests", "mock" or "mocks"
* Any directory in the file path has a name ending in "test" or "tests"
15:36:04.520 INFO Start fetching files for the text and secrets analysis
15:36:04.526 INFO Using Git CLI to retrieve dirty files
15:36:04.662 INFO Retrieving language associated files and files included via "sonar.text.inclusions" that are tracked by git
15:36:04.770 INFO Starting the text and secrets analysis
15:36:04.771 INFO 2616 source files to be analyzed for the text and secrets analysis
15:36:14.772 INFO 2614/2616 files analyzed, current files: cartridges/bc_library/cartridge/static/default/ext-core/ext-all-debug.js, cartridges/bc_library/cartridge/static/default/ext-core/ext-all.js
15:36:21.705 INFO 2616/2616 source files have been analyzed for the text and secrets analysis
15:36:21.717 INFO Start fetching files for the binary file analysis
15:36:21.719 INFO There are no files to be analyzed for the binary file analysis
15:36:21.723 INFO Sensor EnterpriseTextAndSecretsSensor [textenterprise] (done) | time=17698ms
15:36:21.734 INFO ------------- Run sensors on project
15:36:21.837 INFO Sensor JsSecuritySensorV2 [jasmin]
15:36:21.888 INFO 1737 file(s) will be analysed by SonarJasmin.
15:36:25.573 INFO Analysis progress: 2% (50/1737 files)
15:36:25.943 INFO Analysis progress: 5% (100/1737 files)
15:36:26.198 INFO Analysis progress: 8% (150/1737 files)
15:36:26.877 INFO Analysis progress: 11% (200/1737 files)
15:36:27.370 INFO Analysis progress: 14% (250/1737 files)
15:36:27.709 INFO Analysis progress: 17% (300/1737 files)
15:36:28.317 INFO Analysis progress: 20% (350/1737 files)
15:36:28.581 INFO Analysis progress: 23% (400/1737 files)
15:36:29.072 INFO Analysis progress: 25% (450/1737 files)
15:36:29.607 INFO Analysis progress: 28% (500/1737 files)
15:36:30.318 INFO Analysis progress: 31% (550/1737 files)
15:36:30.638 INFO Analysis progress: 34% (600/1737 files)
15:36:30.855 INFO Analysis progress: 37% (650/1737 files)
15:36:31.109 INFO Analysis progress: 40% (700/1737 files)
15:36:31.190 INFO Analysis progress: 43% (750/1737 files)
15:36:31.256 INFO Analysis progress: 46% (800/1737 files)
15:36:31.302 INFO Analysis progress: 48% (850/1737 files)
15:36:32.322 INFO Analysis progress: 51% (900/1737 files)
15:36:32.584 INFO Analysis progress: 54% (950/1737 files)
15:36:33.394 INFO Analysis progress: 57% (1000/1737 files)
15:36:33.925 INFO Analysis progress: 60% (1050/1737 files)
15:36:34.054 INFO Analysis progress: 63% (1100/1737 files)
15:36:34.168 INFO Analysis progress: 66% (1150/1737 files)
15:36:34.397 INFO Analysis progress: 69% (1200/1737 files)
15:36:34.572 INFO Analysis progress: 71% (1250/1737 files)
15:36:34.883 INFO Analysis progress: 74% (1300/1737 files)
15:36:35.221 INFO Analysis progress: 77% (1350/1737 files)
15:36:35.296 INFO Analysis progress: 80% (1400/1737 files)
15:36:35.431 INFO Analysis progress: 83% (1450/1737 files)
15:36:35.477 INFO Analysis progress: 86% (1500/1737 files)
15:36:35.610 INFO Analysis progress: 89% (1550/1737 files)
15:36:35.668 INFO Analysis progress: 92% (1600/1737 files)
15:36:35.876 INFO Analysis progress: 94% (1650/1737 files)
15:36:35.990 INFO Analysis progress: 97% (1700/1737 files)
15:36:36.142 INFO Sensor JsSecuritySensorV2 [jasmin] (done) | time=14305ms
15:36:36.142 INFO Sensor JsArchitectureSensor [architecture]
15:36:36.277 INFO Found 1 potential Udg file location(s) for "js" in "[REDACTED_PATH]/.scannerwork"
15:36:36.277 INFO - [REDACTED_PATH]/.scannerwork/architecture/js
15:36:36.287 INFO Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
15:36:36.292 INFO * Protobuf reading starting | memory total=1554 | free=572 | used=981 (MB)
15:36:36.292 INFO * Reading SonarArchitecture UDG data from directory "[REDACTED_PATH]/.scannerwork/architecture/js"
15:36:36.525 INFO * Files successfully loaded: "1738" out of "1738"
15:36:36.525 INFO * Purging externals (components not scanned) from graphs
15:36:36.526 INFO * Purging excluded nodes from graphs
15:36:36.560 INFO * Protobuf reading complete | memory total=1554 | free=530 | used=1023 (MB)
15:36:36.687 INFO * Build architecture.graph.js.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=1554 | free=443 | used=1110 (MB)
15:36:36.735 INFO No directives configured
15:36:36.738 INFO * No intended architecture defined or detected, using an empty model
15:36:37.372 INFO Sensor JsArchitectureSensor [architecture] (done) | time=1229ms
15:36:37.372 INFO Sensor Zero Coverage Sensor
15:36:37.507 INFO Sensor Zero Coverage Sensor (done) | time=134ms
15:36:37.507 INFO Sensor Architecture Telemetry [architecture]
15:36:37.508 INFO Sensor Architecture Telemetry [architecture] (done) | time=0ms
15:36:37.707 INFO ------------- Gather SCA dependencies on project
15:36:38.131 INFO Dependency analysis skipped
15:36:38.408 INFO CPD Executor 731 files had no CPD blocks
15:36:38.408 INFO CPD Executor Calculating CPD for 1521 files
15:36:38.856 INFO CPD Executor CPD calculation finished (done) | time=448ms
15:36:38.856 INFO SCM Publisher is disabled
15:36:38.863 INFO SCM revision ID 'e6557f21cc2e9eff632f96547d7b8392f8c9ee3b'
15:36:39.726 INFO Analysis report generated in 677ms, dir size=36 MB
15:36:43.199 INFO Analysis report compressed in 3472ms, zip size=12 MB
15:36:45.202 INFO Analysis report uploaded in 2003ms
15:36:46.874 INFO Successfully sent architecture data
15:36:46.874 INFO ------------- Upload SCA dependency files
15:36:46.874 INFO ------------- Check Quality Gate status
15:36:46.874 INFO Waiting for the analysis report to be processed (max 300s)
15:37:34.989 ERROR QUALITY GATE STATUS: FAILED - View details on https://sonarcloud.io/dashboard?id=xxxoxxx_XXXX-xxx&pullRequest=xxx
15:37:35.354 INFO EXECUTION FAILURE
15:37:35.355 INFO Total time: 4:39.034s
Searching for test report files using patterns [**failsafe-reports/**.xml, **TestResults/**.xml, **test-reports/**.xml, **test-results/**.xml, **surefire-reports/**.xml] down to a depth of 8
Ignoring patterns during search [**.git/**]
Finished scanning for test reports. Found 0 test report files in 0 seconds.
Merged test suites, total number tests is 0, with 0 failures and 0 errors in 0 seconds.