Skip to content

Commit 6975493

Browse files
committed
fixing failsafe classpath
Signed-off-by: salaboy <[email protected]>
1 parent f68df17 commit 6975493

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

spring-boot-examples/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@
5656
<groupId>org.apache.maven.plugins</groupId>
5757
<artifactId>maven-failsafe-plugin</artifactId>
5858
<version>3.2.2</version>
59+
<configuration>
60+
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
61+
</configuration>
5962
</plugin>
6063
</plugins>
6164
</build>

spring-boot-examples/workflows/remote-activities/orchestrator/src/test/java/io/dapr/springboot/examples/orchestrator/OrchestratorAppTestsIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import static org.hamcrest.CoreMatchers.is;
2727
import static org.junit.jupiter.api.Assertions.assertEquals;
2828

29-
@SpringBootTest(classes = {TestOrchestratorApplication.class, DaprTestContainersConfig.class},
29+
@SpringBootTest(classes = {TestOrchestratorApplication.class, DaprTestContainersConfig.class, CustomersRestController.class},
3030
webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT,
3131
properties = {"reuse=false", "tests.workers.enabled=true"})
3232
class OrchestratorAppTestsIT {

0 commit comments

Comments
 (0)