Can't connect to marketplace

Hi,
I try to establish a connection to the marketplace, but it’s unable to successfully connect. I use the latest Enterprise version.

I use the container version and pass the following vars:

  HTTP_PROXYHOST: tech.proxy.com
  HTTP_PROXYPORT: 8089
  HTTP_PROXYUSER: techuser
  HTTP_PROXYPASSWORD: techpw

Manually testing via curl from inside the container:

I have no name!@8cab70c2e449:/opt/sonarqube$ curl --proxy http://techuser:techpw@tech.proxy.com:8089 https://downloads.sonarsource.com/sonarqube/update/update-center.properties
#Generated file
#Tue Feb 04 09:30:22 UTC 2025
10.0.changelogUrl=https\://sonarsource.atlassian.net/issues/?jql\=project%20%3D%2010139%20AND%20fixVersion%20%3D%2012624
10.0.date=2023-04-03
10.0.description=Faster first analysis, improved user & group management with Okta & Azure/SCIM integration, new security rules for Docker, new rules for .NET and JavaScript/TypeScript, support for new C/C++ compilers
10.0.downloadDatacenterUrl=https\://binaries.sonarsource.com/CommercialDistribution/sonarqube-datacenter/sonarqube-datacenter-10.0.0.68432.zip
10.0.downloadDeveloperUrl=https\://binaries.sonarsource.com/CommercialDistribution/sonarqube-developer/sonarqube-developer-10.0.0.68432.zip
10.0.downloadEnterpriseUrl=https\://binaries.sonarsource.com/CommercialDistribution/sonarqube-enterprise/sonarqube-enterprise-10.0.0.68432.zip
10.0.downloadUrl=https\://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-10.0.0.68432.zip

When I look at the logs, I see the following errors:

2025.02.04 14:24:59 WARN  web[f449635e-40aa-4860-ab9f-0109147b04b2][c.s.f.s.api.P.o] Error while checking AI CodeFix service status
java.io.IOException: Unexpected response code for CONNECT: 403
2025.02.04 14:24:59 ERROR web[36096e30-b84e-4f82-a2bb-40ad51468ac8][o.s.s.p.UpdateCenterClient] Fail to connect to update center
org.sonar.api.utils.SonarException: Fail to download: https://downloads.sonarsource.com/sonarqube/update/update-center.properties
Caused by: javax.net.ssl.SSLHandshakeException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

What keystore is being used by sonarqube?

Hi,

What version of SonarQube are you using? This sounds like

SONAR-20540 Update center and plugin download do not respect proxy settings (user and password)

Which was fixed in 10.4.

 
Ann

Hi Ann,

I use Enterprise Edition v2025.1 (10241)

Hi,

Thanks for that detail. I’m going to flag this for the team.

 
Ann

Thank you!

Hey @YourDudeness.

How did you deploy your instance? Pure docker or Kubernetes?
If you used Kubernetes, are you using the latest version from ArtifactHub?

Otherwise, can you share how you deployed it (e.g. docker-compose.yml)?

Hey,

I have a dedicated host with podman on a RHEL 9 system.
The Image origins from dockerhub, but gets pulled into our own repo.


services:
  sonarqube:
    image: {{ container_registry }}/{{ container_namespace }}/{{ sonarqube_container_name }}:{{ sonarqube_container_tag }}
    name: sonarqube
    user: {{ sonarqube.user.id }}  
    environment:
      SONAR_WEB_HOST: 0.0.0.0
      SONAR_WEB_PORT: 9000
      SONAR_WEB_HTTP_MAXTHREADS: 50
      SONAR_LOG_LEVEL: INFO
      SONAR_LOG_LEVEL_APP: INFO
      SONAR_LOG_LEVEL_WEB: INFO
      SONAR_LOG_LEVEL_CE: INFO
      SONAR_LOG_LEVEL_ES: INFO
      SONAR_WEB_SESSIONTIMEOUTINMINUTES: 4320
      LDAP_URL: ldaps://ldap.company:636
      LDAP_BINDDN: cn=<redacted>,ou=people,ou=System,dc=<redacted>,dc=<redacted>,dc=de
      LDAP_BINDPASSWORD: {{ ldap_pass }}
      LDAP_USER_EMAILATTRIBUTE: email
      LDAP_USER_BASEDN: dc=central,dc=de
      LDAP_GROUP_BASEDN:  dc=central,dc=de
      LDAP_USER_REQUEST: (&(objectClass=inetorgperson)(mail={login})(|(memberOf=cn=<redacted>,ou=groups,ou=<redacted>=central,dc=<redacted>,dc=de)(memberOf=cn=<redacted>,ou=groups,ou=<redacted>,dc=central,dc=de)))
      SONAR_WEB_JAVAADDITIONALOPTS: -Dlog4j2.formatMsgNoLookups=true -Djavax.net.ssl.trustStore=/opt/sonarqube/ssl/cacerts -Djavax.net.ssl.trustStorePassword={{ sonarqube_server_ssl_truststore_password }}
      SONAR_SECURITY_REALM: LDAP
      SONAR_AUTHENTICATOR_DOWNCASE: true
      {% if 'ansible_test' not in group_names -%}
      SONAR_JDBC_URL: {{ ora_url }}
      SONAR_JDBC_USERNAME: {{ ora_username }}
      SONAR_JDBC_PASSWORD: {{ ora_passwd }}
      {%- endif +%}
      HTTP_PROXYHOST: {{ sonarqube_http_proxy_host }}
      HTTP_PROXYPORT: {{ sonarqube_http_proxy_port }}
      HTTP_PROXYUSER: {{ sonarqube_http_proxy_user }}
      HTTP_PROXYPASSWORD: {{ sonarqube_http_proxy_password }}
    volumes:
      - {{ sonarqube_data_path }}:/opt/sonarqube/data:Z
      - {{ sonarqube_extensions_path }}:/opt/sonarqube/extensions:Z
      - {{ sonarqube_log_path }}:/opt/sonarqube/logs:Z
      - {{ sonarqube_cert_path }}:/opt/sonarqube/ssl:Z
    ports:
      - "8080:9000"
1 Like

Anything new on that issue?

Dear @YourDudeness,

Thanks for posting your docker-compose file! Custom certificates can be added using the path specified in our documentation. You might want to populate your truststore and then mount it at the right path.

<...>
   volumes:
     - /path/to/your/cacerts.truststore:/opt/java/openjdk/lib/security/cacerts:ro
<...>

Please let us know if this helps…

1 Like

Hi,

I found out what the issue was.

I now wonder, are these plugins supposed to show up in the marketplace on my instance?
I can’t check for myself what my security department has whitelisted, but I currently only see 32 plugins listed.

2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'abap' version : 3.15.1.6010 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'architecture' version : 1.6.0.2596 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'architecturejavafrontend' version : 1.6.0.2596 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.4.0.2018 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cfamilydependencies' version : 6.62.0.78645 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cobol' version : 5.8.0.8309 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cpp' version : 6.62.0.78645 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'csharpenterprise' version : 10.4.0.108396 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dart' version : 1.0.0.1952 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbd' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbdjavafrontend' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbdpythonfrontend' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.14.0.5032 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.18.0.240 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.41.0.14206 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'iacenterprise' version : 1.41.0.14206 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'java' version : 8.9.0.37768 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.20.0.29356 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'javasymbolicexecution' version : 8.9.0.37768 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'jcl' version : 1.4.0.1375 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.22.0.5972 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.42.0.12795 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'pli' version : 1.16.0.5325 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'plsql' version : 3.15.0.7123 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.26.0.19456 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'rpg' version : 3.10.0.5337 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.18.0.234 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'security' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securitycsharpfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityjavafrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityjsfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityphpfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securitypythonfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'sonarapex' version : 1.18.0.198 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.18.0.266 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'swift' version : 4.13.0.7903 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'textenterprise' version : 2.20.0.5038 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'tsql' version : 1.14.0.7614 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'vb' version : 2.14.0.5475 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'vbnetenterprise' version : 10.4.0.108396 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.18.0.5605 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.12.0.5749 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'abap' version : 3.15.1.6010 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'architecture' version : 1.6.0.2596 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'architecturejavafrontend' version : 1.6.0.2596 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.4.0.2018 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cfamilydependencies' version : 6.62.0.78645 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cobol' version : 5.8.0.8309 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'cpp' version : 6.62.0.78645 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'csharpenterprise' version : 10.4.0.108396 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dart' version : 1.0.0.1952 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbd' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbdjavafrontend' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'dbdpythonfrontend' version : 1.36.1.13250 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.14.0.5032 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.18.0.240 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.41.0.14206 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'iacenterprise' version : 1.41.0.14206 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'java' version : 8.9.0.37768 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.20.0.29356 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'javasymbolicexecution' version : 8.9.0.37768 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'jcl' version : 1.4.0.1375 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.22.0.5972 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.42.0.12795 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'pli' version : 1.16.0.5325 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'plsql' version : 3.15.0.7123 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.26.0.19456 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'rpg' version : 3.10.0.5337 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.18.0.234 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'security' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securitycsharpfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityjavafrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityjsfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securityphpfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'securitypythonfrontend' version : 10.11.0.34915 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'sonarapex' version : 1.18.0.198 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.18.0.266 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'swift' version : 4.13.0.7903 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'textenterprise' version : 2.20.0.5038 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'tsql' version : 1.14.0.7614 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'vb' version : 2.14.0.5475 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'vbnetenterprise' version : 10.4.0.108396 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.18.0.5605 has not been found on the update center.
2025.04.10 05:20:51 INFO  web[1505159e-c2ee-4a42-98d8-1b3c054074d4][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.12.0.5749 has not been found on the update center.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.