This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quarkus XMLSec moved to Quarkus CXF (#172)
- Loading branch information
Showing
1 changed file
with
31 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,38 @@ | ||
# Quarkus - Xmlsec | ||
# ⚠️ Quarkus XMLSec has moved to https://github.com/quarkiverse/quarkus-cxf/tree/main/extensions/santuario-xmlsec[Quarkus CXF] | ||
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> | ||
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) | ||
<!-- ALL-CONTRIBUTORS-BADGE:END --> | ||
|
||
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/quarkiverse/quarkus-xmlsec/build.yml?style=for-the-badge) | ||
![Maven Central](https://img.shields.io/maven-central/v/io.quarkiverse.xmlsec/quarkus-xmlsec?style=for-the-badge) | ||
|
||
## Welcome to Quarkiverse! | ||
|
||
Congratulations and thank you for creating a new Quarkus extension project in Quarkiverse! | ||
|
||
Feel free to replace this content with the proper description of your new project and necessary instructions how to use and contribute to it. | ||
|
||
You can find the basic info, Quarkiverse policies and conventions in [the Quarkiverse wiki](https://github.com/quarkiverse/quarkiverse/wiki). | ||
|
||
In case you are creating a Quarkus extension project for the first time, please follow [Building My First Extension](https://quarkus.io/guides/building-my-first-extension) guide. | ||
|
||
Other useful articles related to Quarkus extension development can be found under the [Writing Extensions](https://quarkus.io/guides/#writing-extensions) guide category on the [Quarkus.io](http://quarkus.io) website. | ||
|
||
Thanks again, good luck and have fun! | ||
|
||
## Documentation | ||
|
||
The documentation for this extension should be maintained as part of this repository and it is stored in the `docs/` directory. | ||
|
||
The layout should follow the [Antora's Standard File and Directory Set](https://docs.antora.org/antora/2.3/standard-directories/). | ||
|
||
Once the docs are ready to be published, please open a PR including this repository in the [Quarkiverse Docs Antora playbook](https://github.com/quarkiverse/quarkiverse-docs/blob/main/antora-playbook.yml#L7). See an example [here](https://github.com/quarkiverse/quarkiverse-docs/pull/1). | ||
## Contributors ✨ | ||
|
||
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): | ||
|
||
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> | ||
<!-- prettier-ignore-start --> | ||
<!-- markdownlint-disable --> | ||
<table> | ||
<tr> | ||
<td align="center"><a href="http://martinrichards.me"><img src="https://avatars.githubusercontent.com/u/632594?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Martinffx</b></sub></a><br /><a href="https://github.com/quarkiverse/quarkus-xmlsec/commits?author=martinffx" title="Code">💻</a> <a href="#maintenance-martinffx" title="Maintenance">🚧</a></td> | ||
<td align="center"><a href="https://twitter.com/ppalaga"><img src="https://avatars.githubusercontent.com/u/1826249?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Peter Palaga</b></sub></a><br /><a href="https://github.com/quarkiverse/quarkus-xmlsec/commits?author=ppalaga" title="Code">💻</a> <a href="#maintenance-ppalaga" title="Maintenance">🚧</a></td> | ||
</tr> | ||
</table> | ||
|
||
<!-- markdownlint-restore --> | ||
<!-- prettier-ignore-end --> | ||
|
||
<!-- ALL-CONTRIBUTORS-LIST:END --> | ||
|
||
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! | ||
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: | ||
|
||
```xml | ||
... | ||
<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> | ||
... | ||
``` |