Quarkus native and solace client issue

Hi @marc

I tried with -Djavax.net.ssl.trustStore without any success. My current solution is:

    final String trustStore = System.getProperty("javax.net.ssl.trustStore");
    if (trustStore != null) {
      properties.setProperty(JCSMPProperties.SSL_TRUST_STORE, trustStore);
    }

Which works fine for me.