Skip to content

Commit ea3ff99

Browse files
Fixed stream dependencies
1 parent 5a21dc1 commit ea3ff99

File tree

54 files changed

+55
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+55
-105
lines changed

consumer/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
3030
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.9.8'
3131

32-
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-stream', classifier: 'test-binder')
32+
testImplementation('org.springframework.cloud:spring-cloud-stream-test-binder')
3333
testImplementation('javax.inject:javax.inject:1')
3434
testImplementation("org.springframework.boot:spring-boot-starter-webflux")
3535

consumer/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@
6060
</dependency>
6161
<dependency>
6262
<groupId>org.springframework.cloud</groupId>
63-
<artifactId>spring-cloud-stream</artifactId>
64-
<type>test-jar</type>
63+
<artifactId>spring-cloud-stream-test-binder</artifactId>
6564
<scope>test</scope>
66-
<classifier>test-binder</classifier>
6765
</dependency>
6866
<!-- For JDK 14 -->
6967
<dependency>

consumer_java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
3030
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.9.8'
3131

32-
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-stream', classifier: 'test-binder')
32+
testImplementation('org.springframework.cloud:spring-cloud-stream-test-binder')
3333
testImplementation('javax.inject:javax.inject:1')
3434
testImplementation("org.springframework.boot:spring-boot-starter-webflux")
3535

consumer_java/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@
6060
</dependency>
6161
<dependency>
6262
<groupId>org.springframework.cloud</groupId>
63-
<artifactId>spring-cloud-stream</artifactId>
64-
<type>test-jar</type>
63+
<artifactId>spring-cloud-stream-test-binder</artifactId>
6564
<scope>test</scope>
66-
<classifier>test-binder</classifier>
6765
</dependency>
6866
<!-- For JDK 14 -->
6967
<dependency>

consumer_kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
3030
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.9.8'
3131

32-
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-stream', classifier: 'test-binder')
32+
testImplementation('org.springframework.cloud:spring-cloud-stream-test-binder')
3333
testImplementation('javax.inject:javax.inject:1')
3434
testImplementation("org.springframework.boot:spring-boot-starter-webflux")
3535

consumer_kotlin/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@
6060
</dependency>
6161
<dependency>
6262
<groupId>org.springframework.cloud</groupId>
63-
<artifactId>spring-cloud-stream</artifactId>
64-
<type>test-jar</type>
63+
<artifactId>spring-cloud-stream-test-binder</artifactId>
6564
<scope>test</scope>
66-
<classifier>test-binder</classifier>
6765
</dependency>
6866
<!-- For JDK 14 -->
6967
<dependency>

consumer_with_junit4/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation("org.springframework.boot:spring-boot-starter-actuator")
2929
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
3030

31-
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-stream', classifier: 'test-binder')
31+
testImplementation('org.springframework.cloud:spring-cloud-stream-test-binder')
3232
testImplementation('javax.inject:javax.inject:1')
3333
testImplementation(group: 'junit', name: 'junit', version: '4.13')
3434

consumer_with_junit4/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,8 @@
5454
</dependency>
5555
<dependency>
5656
<groupId>org.springframework.cloud</groupId>
57-
<artifactId>spring-cloud-stream</artifactId>
58-
<type>test-jar</type>
57+
<artifactId>spring-cloud-stream-test-binder</artifactId>
5958
<scope>test</scope>
60-
<classifier>test-binder</classifier>
6159
</dependency>
6260
<!-- For JDK 14 -->
6361
<dependency>

consumer_with_latest_2_2_features/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation("org.springframework.cloud:spring-cloud-starter-stream-rabbit")
3030
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.9.8'
3131

32-
testImplementation(group: 'org.springframework.cloud', name: 'spring-cloud-stream', classifier: 'test-binder')
32+
testImplementation('org.springframework.cloud:spring-cloud-stream-test-binder')
3333
testImplementation('javax.inject:javax.inject:1')
3434
testImplementation("org.springframework.boot:spring-boot-starter-webflux")
3535

consumer_with_latest_2_2_features/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@
6060
</dependency>
6161
<dependency>
6262
<groupId>org.springframework.cloud</groupId>
63-
<artifactId>spring-cloud-stream</artifactId>
64-
<type>test-jar</type>
63+
<artifactId>spring-cloud-stream-test-binder</artifactId>
6564
<scope>test</scope>
66-
<classifier>test-binder</classifier>
6765
</dependency>
6866
<!-- For JDK 14 -->
6967
<dependency>

0 commit comments

Comments
 (0)