You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to run any luncher but the identity-hubs in IntelliJ results in an EdcInjectionException with a lot of missing injected fields. Identity-hubs start without errors. Important: I'm very new to this and even to gradle so maybe I do something fundamentelly wrong.
A clear and concise description of the bug.
Running :launchers:catalog-server:run results in:
SEVERE 2024-10-24T13:38:13.5831497 Error booting runtime: The following injected fields were not provided: Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension Field "externalSigner" of type [interface org.eclipse.edc.jwt.signer.spi.JwsSignerProvider] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension Field "rulesRegistry" of type [interface org.eclipse.edc.token.spi.TokenValidationRulesRegistry] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension Field "tokenValidationService" of type [interface org.eclipse.edc.token.spi.TokenValidationService] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Exception in thread "main" org.eclipse.edc.spi.EdcException: org.eclipse.edc.boot.system.injection.EdcInjectionException: The following injected fields were not provided:
org.eclipse.edc.boot.system.injection.EdcInjectionException: The following injected fields were not provided:
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "externalSigner" of type [interface org.eclipse.edc.jwt.signer.spi.JwsSignerProvider] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "externalSigner" of type [interface org.eclipse.edc.jwt.signer.spi.JwsSignerProvider] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "rulesRegistry" of type [interface org.eclipse.edc.token.spi.TokenValidationRulesRegistry] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "tokenValidationService" of type [interface org.eclipse.edc.token.spi.TokenValidationService] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
at org.eclipse.edc.boot.system.DependencyGraph.of(DependencyGraph.java:102)
at org.eclipse.edc.boot.system.ExtensionLoader.loadServiceExtensions(ExtensionLoader.java:127)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.createExtensions(BaseRuntime.java:163)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.boot(BaseRuntime.java:91)
Field "rulesRegistry" of type [interface org.eclipse.edc.token.spi.TokenValidationRulesRegistry] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "tokenValidationService" of type [interface org.eclipse.edc.token.spi.TokenValidationService] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
at org.eclipse.edc.boot.system.runtime.BaseRuntime.main(BaseRuntime.java:77)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.onError(BaseRuntime.java:143)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.boot(BaseRuntime.java:106)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.main(BaseRuntime.java:77)
Caused by: org.eclipse.edc.boot.system.injection.EdcInjectionException: The following injected fields were not provided:
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "externalSigner" of type [interface org.eclipse.edc.jwt.signer.spi.JwsSignerProvider] required by org.eclipse.edc.iam.identitytrust.core.DcpDefaultServicesExtension
Field "rulesRegistry" of type [interface org.eclipse.edc.token.spi.TokenValidationRulesRegistry] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "tokenValidationService" of type [interface org.eclipse.edc.token.spi.TokenValidationService] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
Field "jtiValidationStore" of type [interface org.eclipse.edc.jwt.validation.jti.JtiValidationStore] required by org.eclipse.edc.iam.identitytrust.core.IdentityAndTrustExtension
at org.eclipse.edc.boot.system.DependencyGraph.of(DependencyGraph.java:102)
at org.eclipse.edc.boot.system.ExtensionLoader.loadServiceExtensions(ExtensionLoader.java:127)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.createExtensions(BaseRuntime.java:163)
at org.eclipse.edc.boot.system.runtime.BaseRuntime.boot(BaseRuntime.java:91)
... 1more
Caused by: org.eclipse.edc.boot.system.injection.EdcInjectionException: The following injected fields were not provided:
Expected Behavior
Sub-modules start.
Observed Behavior
Sub-modules don't start beacuse of unprovided injections. See above.
Steps to Reproduce
Clone repo
gradle build
gradle run --scan or run a sub-module (launcher) other than identiy-hubs
Context Information
Used version: 0.10.0-SNAPSHOT
OS: Windows 11 (sorry, can't get WSL to run atm)
I'm very new to this and even to gradle so maybe I do something fundamentelly wrong.
The text was updated successfully, but these errors were encountered:
Bug Report
Describe the Bug
Trying to run any luncher but the identity-hubs in IntelliJ results in an
EdcInjectionException
with a lot of missing injected fields. Identity-hubs start without errors. Important: I'm very new to this and even to gradle so maybe I do something fundamentelly wrong.A clear and concise description of the bug.
Running
:launchers:catalog-server:run
results in:Expected Behavior
Sub-modules start.
Observed Behavior
Sub-modules don't start beacuse of unprovided injections. See above.
Steps to Reproduce
gradle build
gradle run --scan
or run a sub-module (launcher) other than identiy-hubsContext Information
The text was updated successfully, but these errors were encountered: