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/15 14:30:19 UTC

(camel-quarkus) 13/27: 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

commit 1008512315273824f84b00cc2f7c01b0ea70f473
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");
     }
 }