File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed
deployment/src/main/java/io/quarkiverse/dapr/langchain4j/deployment
examples/src/main/resources Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ FeatureBuildItem feature() {
169169 */
170170 @ BuildStep
171171 IndexDependencyBuildItem indexRuntimeModule () {
172- return new IndexDependencyBuildItem ("io.quarkiverse. dapr" , "quarkus-agentic-dapr" );
172+ return new IndexDependencyBuildItem ("io.dapr.quarkus " , "quarkus-agentic-dapr" );
173173 }
174174
175175 /**
Original file line number Diff line number Diff line change @@ -21,6 +21,6 @@ quarkus.langchain4j.tracing.include-tool-result=true
2121quarkus.log.category."io.quarkiverse.dapr.workflows".level =DEBUG
2222
2323
24- dapr.agents.statestore =agent-registry
25- dapr.agents.team =default
26- dapr.appid =agentic-example
24+ # dapr.agents.statestore=agent-registry
25+ # dapr.agents.team=default
26+ # dapr.appid=agentic-example
Original file line number Diff line number Diff line change 5050 <artifactId >commons-io</artifactId >
5151 <version >2.20.0</version >
5252 </dependency >
53+ <!-- Override the root POM's JUnit 5.11.4 pinning.
54+ Quarkus 3.31.2 uses JUnit 6.0.2; the root POM explicitly pins
55+ junit-jupiter artifacts to 5.11.4 which is incompatible with
56+ junit-platform 6.x (missing Namespace.getParts()). Explicit
57+ entries here override the parent POM's dependencyManagement. -->
58+ <dependency >
59+ <groupId >org.junit</groupId >
60+ <artifactId >junit-bom</artifactId >
61+ <version >6.0.2</version >
62+ <type >pom</type >
63+ <scope >import</scope >
64+ </dependency >
65+ <dependency >
66+ <groupId >org.junit.jupiter</groupId >
67+ <artifactId >junit-jupiter</artifactId >
68+ <version >6.0.2</version >
69+ </dependency >
70+ <dependency >
71+ <groupId >org.junit.jupiter</groupId >
72+ <artifactId >junit-jupiter-api</artifactId >
73+ <version >6.0.2</version >
74+ </dependency >
75+ <dependency >
76+ <groupId >org.junit.jupiter</groupId >
77+ <artifactId >junit-jupiter-engine</artifactId >
78+ <version >6.0.2</version >
79+ </dependency >
5380 </dependencies >
5481 </dependencyManagement >
5582</project >
You can’t perform that action at this time.
0 commit comments