Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

quarkiverse/quarkus-xmlsec

Repository files navigation

⚠️ Quarkus XMLSec has moved to Quarkus CXF

All Contributors

GitHub Workflow Status Maven Central

The last version released under the old Maven coordinates io.quarkiverse.xmlsec:quarkus-xmlsec is 2.5.0 (based on Quarkus 3.7.0).

The new Maven coordinates (since Quarkus 3.8.0+) are as follows:

  ...
  <properties>
    <quarkus.version>3.8.0</quarkus.version><!-- or newer -->
  </properies>

  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>io.quarkus.platform</groupId>
        <artifactId>quarkus-cxf-bom</artifactId>
        <version>${quarkus.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>

  <dependencies>
    <dependency>
      <groupId>io.quarkiverse.cxf</groupId>
      <artifactId>quarkus-cxf-santuario-xmlsec</artifactId>
    </dependency>
  </dependencies>
  ...