I tried to configure Qodana to the Bitbucket pipeline for sending reports but I have an issue. in my project I used a private repo dependency to design my bitbucket pipeline for downloading my private repository dependency,I have a settings.xml file also but I am unable to send a report its show error like:_
<code><span>023-11-30 12:12:13,422 [ 355983] SEVERE - #c.i.c.InspectionApplicationBase - Maven project Aggrr has unresolved artifacts: [com.instantsys.geocoder:geocoder:jar:2.4:compile, net.elmergarduno:j-calais:jar:0.2:compile, com.myjavatools:mjxml:jar:1.0:compile,<br><br>my current script is :<br></span>- image: Atlassian/default-image:4
- pipelines:
- branches:
- main:
- - step:
- name: Qodana
- caches:
- - qodana
- image: jetbrains/qodana-jvm
- script:
- - export QODANA_TOKEN=$QODANA_TOKEN # Export the environment variable
- - qodana --results-dir=$BITBUCKET_CLONE_DIR/.qodana --report-dir=$BITBUCKET_CLONE_DIR/.qodana/report --cache-dir=$BITBUCKET_CLONE_DIR/.qodana/cache -DskipTests=true
- artifacts:
- - .qodana/report
- definitions:
- caches:
- qodana: .qodana/cache