spring-cloud / stream-applications

Functions and Spring Cloud Stream Applications for data driven microservices
https://spring.io/projects/spring-cloud-stream-applications
247 stars 106 forks source link

Fix scope of function-test-support dependency #509

Closed cachescrubber closed 9 months ago

cachescrubber commented 9 months ago

Fix scope of function-test-support dependency

I noticed unexpected logging behaviour when using sftp-consumer caused by the missing test scope of the function-test-support dependency.

Workaround:

    <dependency>
      <groupId>org.springframework.cloud.fn</groupId>
      <artifactId>sftp-consumer</artifactId>
      <version>4.0.1-SNAPSHOT</version>
      <exclusions>
        <exclusion>
          <groupId>org.springframework.cloud.fn</groupId>
          <artifactId>function-test-support</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
onobc commented 9 months ago

Thanks for the contribution @cachescrubber !