You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by lh...@apache.org on 2022/09/09 20:58:06 UTC

[pulsar-client-reactive] branch main updated (0d4b344 -> ac37570)

This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-reactive.git


    from 0d4b344  Add concurrency control for GitHub Actions workflow
     new 3d5ffa3  Use org.apache.pulsar as maven artifact group
     new ac37570  Fix artifact id in examples

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.adoc  | 4 ++--
 build.gradle | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


[pulsar-client-reactive] 01/02: Use org.apache.pulsar as maven artifact group

Posted by lh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-reactive.git

commit 3d5ffa3119cd5492909ec8bad940a10d567cdc8b
Author: Lari Hotari <lh...@apache.org>
AuthorDate: Fri Sep 9 23:55:59 2022 +0300

    Use org.apache.pulsar as maven artifact group
---
 build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.gradle b/build.gradle
index 89dc173..5a3e666 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,6 +19,6 @@ plugins {
 }
 
 allprojects {
-    group = 'org.apache.pulsar.reactive.client'
+    group = 'org.apache.pulsar'
     apply plugin: 'io.spring.javaformat'
 }


[pulsar-client-reactive] 02/02: Fix artifact id in examples

Posted by lh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lhotari pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-client-reactive.git

commit ac37570e83d773ae59bf8db1af43121f645d213a
Author: Lari Hotari <lh...@apache.org>
AuthorDate: Fri Sep 9 23:57:21 2022 +0300

    Fix artifact id in examples
---
 README.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.adoc b/README.adoc
index 127bc0c..6516dfa 100644
--- a/README.adoc
+++ b/README.adoc
@@ -45,7 +45,7 @@ With Maven:
 <dependencies>
     <dependency>
         <groupId>org.apache.pulsar</groupId>
-        <artifactId>reactive-pulsar-adapter</artifactId>
+        <artifactId>pulsar-client-reactive-adapter</artifactId>
         <version>0.1.0-SNAPSHOT</version>
     </dependency>
 </dependencies>
@@ -100,7 +100,7 @@ Adding Caffeine based producer cache with Maven:
 <dependencies>
     <dependency>
         <groupId>org.apache.pulsar</groupId>
-        <artifactId>reactive-pulsar-adapter</artifactId>
+        <artifactId>pulsar-client-reactive-adapter</artifactId>
         <version>0.1.0-SNAPSHOT</version>
     </dependency>
     <dependency>