We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With Spring Boot 2.7.x, start.spring.io is adding the following test dependency to the generated Maven builds only (see spring-io/initializr#1159):
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream</artifactId> <scope>test</scope> <classifier>test-binder</classifier> <type>test-jar</type> </dependency>
As of Spring Cloud Stream 4.0 (and Spring Boot 3.0), we should instead use the following for both Maven and Gradle builds:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream-test-binder</artifactId> <scope>test</scope> </dependency>
The text was updated successfully, but these errors were encountered:
bf7623f
bclozel
No branches or pull requests
With Spring Boot 2.7.x, start.spring.io is adding the following test dependency to the generated Maven builds only (see spring-io/initializr#1159):
As of Spring Cloud Stream 4.0 (and Spring Boot 3.0), we should instead use the following for both Maven and Gradle builds:
The text was updated successfully, but these errors were encountered: