Skip to content

Commit 929a591

Browse files
author
wangjin18
committed
release version 4.1.0
1 parent cb97ae3 commit 929a591

File tree

12 files changed

+33
-26
lines changed

12 files changed

+33
-26
lines changed

docs/cn/client.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ JoyQueue 支持Openmessaging协议,并提供Java版本的原生客户端。此
1414
<dependency>
1515
<groupId>com.jd.joyqueue</groupId>
1616
<artifactId>joyqueue-client-all</artifactId>
17-
<version>4.1.0-SNAPSHOT</version>
17+
<version>4.1.0</version>
1818
</dependency>
1919
```
2020

@@ -238,7 +238,7 @@ public class JoyQueueSimpleProducerInterceptor implements ProducerInterceptor, O
238238
<dependency>
239239
<groupId>com.jd.joyqueue</groupId>
240240
<artifactId>joyqueue-client-all</artifactId>
241-
<version>4.1.0-SNAPSHOT</version>
241+
<version>4.1.0</version>
242242
</dependency>
243243
<dependency>
244244
<groupId>io.openmessaging</groupId>
@@ -313,7 +313,7 @@ public class SimpleMessageListener implements MessageListener {
313313
<dependency>
314314
<groupId>com.jd.joyqueue</groupId>
315315
<artifactId>joyqueue-client-all</artifactId>
316-
<version>4.1.0-SNAPSHOT</version>
316+
<version>4.1.0</version>
317317
</dependency>
318318
<dependency>
319319
<groupId>io.openmessaging</groupId>

docs/cn/quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Java HotSpot(TM) 64-Bit Server VM (build 25.202-b08, mixed mode)
2222
使用`server-start.sh`命令启动消息服务实例:
2323

2424
```bash
25-
$ joyqueue-server-4.1.0-SNAPSHOT/bin/server-start.sh
25+
$ joyqueue-server-4.1.0/bin/server-start.sh
2626

2727
......
2828

@@ -34,7 +34,7 @@ $ joyqueue-server-4.1.0-SNAPSHOT/bin/server-start.sh
3434
\___/ \___/ \__, |\__\_\\__,_|\___|\__,_|\___|
3535
|___/
3636

37-
ver. 4.1.0-SNAPSHOT
37+
ver. 4.1.0
3838

3939
[19:17:13:183] [main] [INFO] - com.jd.joyqueue.broker.Launcher.main(Launcher.java:35) - JoyQueue is started
4040
......
@@ -50,7 +50,7 @@ JoyQueue Web,默认连接本机的JoyQueue Server。如果JoyQueue Web与JoyQu
5050

5151
```bash
5252

53-
$ joyqueue-web-4.1.0-SNAPSHOT/bin/start.sh
53+
$ joyqueue-web-4.1.0/bin/start.sh
5454

5555
......
5656
2019-07-09 13:04:25.319 [main] INFO com.jd.laf.web.vertx.spring.SpringVertx - success starting Vert.x
@@ -92,7 +92,7 @@ $ joyqueue-web-4.1.0-SNAPSHOT/bin/start.sh
9292

9393
```bash
9494

95-
$ joyqueue-server-4.1.0-SNAPSHOT/bin/console-producer.sh -a joyqueue --token a768388469e144b0b6cbe87a6e339a3c -t joy_topic -b "Hello,JoyQueue"
95+
$ joyqueue-server-4.1.0/bin/console-producer.sh -a joyqueue --token a768388469e144b0b6cbe87a6e339a3c -t joy_topic -b "Hello,JoyQueue"
9696

9797
```
9898

@@ -101,7 +101,7 @@ $ joyqueue-web-4.1.0-SNAPSHOT/bin/start.sh
101101
使用`console-consumer.sh`来接收消息:
102102

103103
```bash
104-
$ joyqueue-server-4.1.0-SNAPSHOT/bin/console-consumer.sh -a joyqueue --token a768388469e144b0b6cbe87a6e339a3c -t joy_topic
104+
$ joyqueue-server-4.1.0/bin/console-consumer.sh -a joyqueue --token a768388469e144b0b6cbe87a6e339a3c -t joy_topic
105105

106106
Message{topic: joy_topic, partition: 0, index: 0, txId: null, key: null, body: Hello,JoyQueue}
107107
```

joyqueue-client/joyqueue-client-all-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>joyqueue-client</artifactId>
2222
<groupId>com.jd.joyqueue</groupId>
23-
<version>4.1.0-SNAPSHOT</version>
23+
<version>4.1.0</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.jd.joyqueue;
2+
3+
/**
4+
* To avoid javadoc error
5+
**/
6+
public class FakeAll {
7+
}

joyqueue-common/joyqueue-toolkit/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<artifactId>asm</artifactId>
6262
</dependency>
6363
<dependency>
64-
<groupId>com.jd.laf</groupId>
64+
<groupId>com.jd.joyqueue</groupId>
6565
<artifactId>laf-extension-core</artifactId>
6666
</dependency>
6767

joyqueue-console/joyqueue-web/joyqueue-web-application/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<artifactId>h2</artifactId>
4242
</dependency>
4343
<dependency>
44-
<groupId>com.jd.laf.web</groupId>
44+
<groupId>com.jd.joyqueue</groupId>
4545
<artifactId>laf-vertx-web</artifactId>
4646
</dependency>
4747
<dependency>
@@ -68,7 +68,7 @@
6868
</dependency>
6969
<dependency>
7070
<artifactId>laf-vertx-web-springboot-starter</artifactId>
71-
<groupId>com.jd.laf.web</groupId>
71+
<groupId>com.jd.joyqueue</groupId>
7272
</dependency>
7373

7474
<dependency>

joyqueue-console/joyqueue-web/joyqueue-web-handler/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<dependencies>
3333
<dependency>
34-
<groupId>com.jd.laf.web</groupId>
34+
<groupId>com.jd.joyqueue</groupId>
3535
<artifactId>laf-vertx-web</artifactId>
3636
<version>${laf-vertx.version}</version>
3737
</dependency>
@@ -59,11 +59,11 @@
5959
<artifactId>spring-jdbc</artifactId>
6060
</dependency>
6161
<dependency>
62-
<groupId>com.jd.laf.web</groupId>
62+
<groupId>com.jd.joyqueue</groupId>
6363
<artifactId>laf-vertx-web-springboot-starter</artifactId>
6464
</dependency>
6565
<dependency>
66-
<groupId>com.jd.laf.binding</groupId>
66+
<groupId>com.jd.joyqueue</groupId>
6767
<artifactId>laf-binding-core</artifactId>
6868
</dependency>
6969
</dependencies>

joyqueue-console/joyqueue-web/joyqueue-web-springboot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242

4343
<dependency>
44-
<groupId>com.jd.laf.web</groupId>
44+
<groupId>com.jd.joyqueue</groupId>
4545
<artifactId>laf-vertx-web-springboot-starter</artifactId>
4646
</dependency>
4747

joyqueue-server/joyqueue-broker-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<artifactId>commons-beanutils</artifactId>
4545
</dependency>
4646
<dependency>
47-
<groupId>com.jd.laf</groupId>
47+
<groupId>com.jd.joyqueue</groupId>
4848
<artifactId>laf-extension-core</artifactId>
4949
</dependency>
5050
<dependency>
@@ -56,7 +56,7 @@
5656
<artifactId>metrics-core</artifactId>
5757
</dependency>
5858
<dependency>
59-
<groupId>com.jd.laf.web</groupId>
59+
<groupId>com.jd.joyqueue</groupId>
6060
<artifactId>laf-vertx-web</artifactId>
6161
</dependency>
6262
<dependency>

joyqueue-server/joyqueue-nsr/joyqueue-nsr-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<artifactId>fastjson</artifactId>
3939
</dependency>
4040
<dependency>
41-
<groupId>com.jd.laf</groupId>
41+
<groupId>com.jd.joyqueue</groupId>
4242
<artifactId>laf-extension-core</artifactId>
4343
</dependency>
4444
<dependency>

0 commit comments

Comments
 (0)