File tree Expand file tree Collapse file tree 6 files changed +8
-14
lines changed
spring-pulsar-sample-apps
sample-pulsar-functions/sample-signup-app Expand file tree Collapse file tree 6 files changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,8 @@ org.gradle.jvmargs=-Xmx4g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -Df
6
6
7
7
pulsarClientVersion =3.1.0
8
8
pulsarClientReactiveVersion =0.3.0
9
+ springFrameworkVersion =6.1.0-M4
9
10
10
11
# only used by docs, tests, and samples (unpublished deps)
11
12
springBootVersion =3.2.0-SNAPSHOT
12
-
13
- springFrameworkVersion =6.1.0-M4
14
-
15
- # these are temp until autoconfig moves into boot
16
- springPulsarBinderVersion =0.2.1-SNAPSHOT
17
- springCloudStreamVersion =4.0.3
13
+ springCloudStreamVersion =4.1.0-SNAPSHOT
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ tasks.withType(org.asciidoctor.gradle.jvm.AbstractAsciidoctorTask) {
89
89
" spring-framework-version" : project. springFrameworkVersion ?: ' current' ,
90
90
" spring-cloud-stream-version" : project. springCloudStreamVersion ?: ' current' ,
91
91
" spring-pulsar-version" : project. version,
92
- " spring-pulsar-binder-version" : project. springPulsarBinderVersion ?: ' current' ,
93
92
" pulsar-client-version" : project. pulsarClientVersion ?: ' current' ,
94
93
" pulsar-client-reactive-version" : project. pulsarClientReactiveVersion ?: ' current' ,
95
94
" is-snapshot-version" : project. version. endsWith(" -SNAPSHOT" )
Original file line number Diff line number Diff line change 2
2
:spring-framework-version: current
3
3
:spring-cloud-stream-version: current
4
4
:spring-pulsar-version: current
5
- :spring-pulsar-binder-version: current
6
5
:pulsar-client-version: current
7
6
:pulsar-client-reactive-version: current
8
7
:is-snapshot-version: false
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ We need to include the following dependency on your application to use Apache Pu
16
16
----
17
17
<dependencies>
18
18
<dependency>
19
- <groupId>org.springframework.pulsar </groupId>
20
- <artifactId>spring-pulsar-spring- cloud-stream-binder</artifactId>
21
- <version>{spring-pulsar-binder -version}</version>
19
+ <groupId>org.springframework.cloud </groupId>
20
+ <artifactId>spring-cloud-stream-binder-pulsar </artifactId>
21
+ <version>{spring-cloud-stream -version}</version>
22
22
</dependency>
23
23
</dependencies>
24
24
----
@@ -27,7 +27,7 @@ We need to include the following dependency on your application to use Apache Pu
27
27
.Gradle
28
28
----
29
29
dependencies {
30
- implementation 'org.springframework.pulsar :spring-pulsar-spring- cloud-stream-binder:{spring-pulsar-binder -version}'
30
+ implementation 'org.springframework.cloud :spring-cloud-stream-binder-pulsar :{spring-cloud-stream -version}'
31
31
}
32
32
----
33
33
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ repositories {
14
14
15
15
dependencies {
16
16
implementation " org.springframework.boot:spring-boot-starter-pulsar:${ springBootVersion} "
17
- implementation " org.springframework.pulsar :spring-pulsar-spring- cloud-stream-binder:${ springPulsarBinderVersion } "
17
+ implementation " org.springframework.cloud :spring-cloud-stream-binder-pulsar :${ springCloudStreamVersion } "
18
18
}
19
19
20
20
bootRun {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ repositories {
14
14
}
15
15
16
16
dependencies {
17
- implementation " org.springframework.pulsar :spring-pulsar-spring- cloud-stream-binder:${ springPulsarBinderVersion } "
17
+ implementation " org.springframework.cloud :spring-cloud-stream-binder-pulsar :${ springCloudStreamVersion } "
18
18
implementation " org.springframework.boot:spring-boot-starter-pulsar:${ springBootVersion} "
19
19
implementation ' org.springframework.boot:spring-boot-starter-amqp'
20
20
implementation ' org.springframework.boot:spring-boot-starter-data-cassandra'
You can’t perform that action at this time.
0 commit comments