Skip to content

Commit

Permalink
Release version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wendy512 committed May 7, 2024
1 parent effa697 commit 9c246d1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 18 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you use Maven, you just need to add the following dependency in pom.xml:
<dependency>
<groupId>io.github.wendy512</groupId>
<artifactId>stream-core</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand All @@ -33,12 +33,12 @@ If you use Maven, you just need to add the following dependency in pom.xml:
[Reference Wiki](https://github.com/wendy512/stream/wiki)

## Examples
* [Local queue](https://github.com/wendy512/stream-samples/local-sample)
* [Kafka](https://github.com/wendy512/stream-samples/kafka-sample)
* [MQTT](https://github.com/wendy512/stream-samples/mqtt-sample)
* [RabbitMQ](https://github.com/wendy512/stream-samples/rabbitmq-sample)
* [Redis](https://github.com/wendy512/stream-samples/redis-sample)
* [Pulsar](https://github.com/wendy512/stream-samples/pulsar-sample)
* [Local queue](https://github.com/wendy512/stream-samples/tree/master/local-sample)
* [Kafka](https://github.com/wendy512/stream-samples/tree/master/kafka-sample)
* [MQTT](https://github.com/wendy512/stream-samples/tree/master/mqtt-sample)
* [RabbitMQ](https://github.com/wendy512/stream-samples/tree/master/rabbitmq-sample)
* [Redis](https://github.com/wendy512/stream-samples/tree/master/redis-sample)
* [Pulsar](https://github.com/wendy512/stream-samples/tree/master/pulsar-sample)

## License
Stream is based on the [Apache License 2.0](./LICENSE) agreement, and Stream relies on some third-party components whose open source agreement is also Apache License 2.0.
Expand Down
12 changes: 7 additions & 5 deletions README_zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Stream异步消息高性能处理框架,类似go chan,多线程异步处理
<dependency>
<groupId>io.github.wendy512</groupId>
<artifactId>stream-core</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand All @@ -33,10 +33,12 @@ Stream异步消息高性能处理框架,类似go chan,多线程异步处理
[参考Wiki](https://github.com/wendy512/stream/wiki)

## 示例
* [本地队列](https://github.com/wendy512/stream/tree/master/samples/local-sample)
* [Kafka](https://github.com/wendy512/stream/tree/master/samples/kafka-sample)
* [MQTT](https://github.com/wendy512/stream/tree/master/samples/mqtt-sample)
* [RabbitMQ](https://github.com/wendy512/stream/tree/master/samples/rabbitmq-sample)
* [Local queue](https://github.com/wendy512/stream-samples/tree/master/local-sample)
* [Kafka](https://github.com/wendy512/stream-samples/tree/master/kafka-sample)
* [MQTT](https://github.com/wendy512/stream-samples/tree/master/mqtt-sample)
* [RabbitMQ](https://github.com/wendy512/stream-samples/tree/master/rabbitmq-sample)
* [Redis](https://github.com/wendy512/stream-samples/tree/master/redis-sample)
* [Pulsar](https://github.com/wendy512/stream-samples/tree/master/pulsar-sample)

## 开源许可
Stream 基于 [Apache License 2.0](./LICENSE) 协议,Stream 依赖了一些第三方组件,它们的开源协议也为 Apache License 2.0。
Expand Down
6 changes: 3 additions & 3 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version>
<maven-release-plugin.version>3.0.0-M7</maven-release-plugin.version>
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-collections4.version>4.4</commons-collections4.version>
<!-- logback -->
Expand Down Expand Up @@ -175,7 +175,7 @@
<goals>deploy</goals>
</configuration>
</plugin>
<!--gpg插件
<!--gpg插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -189,7 +189,7 @@
</goals>
</execution>
</executions>
</plugin>-->
</plugin>
</plugins>
</build>

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<nexus-staging-maven-plugin.version>1.6.7</nexus-staging-maven-plugin.version>
<maven-release-plugin.version>3.0.0-M7</maven-release-plugin.version>
<maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
<maven-gpg-plugin.version>3.2.4</maven-gpg-plugin.version>
<versions-maven-plugin.version>2.3</versions-maven-plugin.version>
<flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version>
</properties>
Expand Down Expand Up @@ -143,7 +143,7 @@
<doclint>none</doclint>
</configuration>
</plugin>
<!--gpg插件
<!--gpg插件-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand All @@ -157,7 +157,7 @@
</goals>
</execution>
</executions>
</plugin>-->
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
Expand Down

0 comments on commit 9c246d1

Please sign in to comment.