Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>capa-parent</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-examples</artifactId>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<groupId>group.rxcloud</groupId>
<artifactId>capa-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
<name>capa-sdk-parent</name>
<description>SDK for Capa.</description>
<url>https://github.com/reactivegroup</url>
Expand Down Expand Up @@ -72,7 +72,7 @@
<java.version>8</java.version>
<file.encoding>UTF-8</file.encoding>
<maven.version>3.8.1</maven.version>
<cloud-runtimes.version>1.0.4.RELEASE</cloud-runtimes.version>
<cloud-runtimes.version>1.0.7.RELEASE</cloud-runtimes.version>
<reactor-core.version>3.3.11.RELEASE</reactor-core.version>
<junit.version>5.3.1</junit.version>
<mockito-core.version>3.6.0</mockito-core.version>
Expand Down Expand Up @@ -128,6 +128,7 @@
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>${reactor-core.version}</version>
<optional>true</optional>
</dependency>

<!-- unit test -->
Expand Down
3 changes: 2 additions & 1 deletion sdk-component/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>capa-parent</artifactId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-sdk-component</artifactId>
Expand Down Expand Up @@ -70,6 +70,7 @@
<artifactId>kotlin-stdlib-common</artifactId>
<version>${kotlin-stdlib.version}</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sdk-infrastructure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>capa-parent</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-sdk-infrastructure</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sdk-spi-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>capa-parent</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-sdk-spi-demo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sdk-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>capa-parent</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-sdk-spi</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>capa-parent</artifactId>
<version>1.0.4.RELEASE</version>
<version>1.0.6.RELEASE</version>
</parent>

<artifactId>capa-sdk</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
public interface CapaPubSubClient extends DefaultCloudRuntimesClient {

@Override
Mono<Void> publishEvent(String pubsubName, String topicName, Object data);
Mono<String> publishEvent(String pubsubName, String topicName, Object data);

@Override
Mono<Void> publishEvent(String pubsubName, String topicName, Object data, Map<String, String> metadata);
Mono<String> publishEvent(String pubsubName, String topicName, Object data, Map<String, String> metadata);

@Override
Mono<Void> publishEvent(PublishEventRequest request);
Mono<String> publishEvent(PublishEventRequest request);

@Override
default Mono<Void> shutdown() {
Expand Down