Skip to content

Commit

Permalink
found the issue with the version
Browse files Browse the repository at this point in the history
Signed-off-by: salaboy <Salaboy@gmail.com>
  • Loading branch information
salaboy committed Feb 27, 2025
1 parent f6d9bc5 commit fc0bdb4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
16 changes: 7 additions & 9 deletions sdk-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<grpc.version>1.69.0</grpc.version>
<protobuf.version>3.25.5</protobuf.version>
<opentelemetry.version>1.39.0</opentelemetry.version>
<springboot.version>3.3.1</springboot.version>
<springboot.version>3.3.8</springboot.version>
<logback-classic.version>1.4.12</logback-classic.version>
<wiremock.version>3.9.1</wiremock.version>
<testcontainers-test.version>1.20.0</testcontainers-test.version>
Expand Down Expand Up @@ -178,11 +178,6 @@
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-keyvalue</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wiremock</groupId>
<artifactId>wiremock-standalone</artifactId>
Expand All @@ -201,9 +196,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.6.7</version>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -308,6 +302,10 @@
<configuration>
<!--suppress UnresolvedMavenProperty -->
<skip>${skipITs}</skip>
<classpathDependencyExcludes>
<classpathDependencyExclude>com.github.os72:protoc-jar-maven-plugin</classpathDependencyExclude>
<classpathDependencyExclude>eu.rekawek.toxiproxy:toxiproxy-java</classpathDependencyExclude>
</classpathDependencyExcludes>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
*/
@SpringBootApplication
public class TestApplication {

/**
* Starts Dapr's callback in a given port.
* @param port Port to listen to.
*/
public static void start(long port) {
SpringApplication app = new SpringApplication(TestApplication.class);
app.run(String.format("--server.port=%d", port));
SpringApplication.run(TestApplication.class, String.format("--server.port=%d", port), "--debug=true");
}

}
2 changes: 1 addition & 1 deletion sdk-tests/src/test/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</encoder>
</appender>

<root level="INFO">
<root level="DEBUG">
<appender-ref ref="STDOUT" />
</root>
</configuration>

0 comments on commit fc0bdb4

Please sign in to comment.