You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2024/03/12 08:58:06 UTC

(camel-quarkus) branch camel-main updated: Fixed shiro after update of dependency

This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/camel-main by this push:
     new a9ad270f8b Fixed shiro after update of dependency
a9ad270f8b is described below

commit a9ad270f8b06c14b4e696d15f2f65c9a99b48244
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Tue Mar 12 09:54:24 2024 +0100

    Fixed shiro after update of dependency
---
 .../apache/camel/quarkus/component/shiro/deployment/ShiroProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/shiro/deployment/src/main/java/org/apache/camel/quarkus/component/shiro/deployment/ShiroProcessor.java b/extensions/shiro/deployment/src/main/java/org/apache/camel/quarkus/component/shiro/deployment/ShiroProcessor.java
index 275ed9d76a..e1425d55f9 100644
--- a/extensions/shiro/deployment/src/main/java/org/apache/camel/quarkus/component/shiro/deployment/ShiroProcessor.java
+++ b/extensions/shiro/deployment/src/main/java/org/apache/camel/quarkus/component/shiro/deployment/ShiroProcessor.java
@@ -101,6 +101,6 @@ class ShiroProcessor {
 
     @BuildStep
     IndexDependencyBuildItem registerDependencyForIndex() {
-        return new IndexDependencyBuildItem("org.apache.shiro", "shiro-core", "jakarta");
+        return new IndexDependencyBuildItem("org.apache.shiro", "shiro-core");
     }
 }