Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE #322] Rename package name "com.webank.eventmesh" to "org.apache.eventmesh" #319

Merged
merged 2 commits into from
Apr 28, 2021
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 docs/cn/instructions/eventmesh-runtime-quickstart.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dependencies {
**2.3.4 启动运行**

```
运行com.webank.eventmesh.starter.StartUp的主要方法
运行org.apache.eventmesh.starter.StartUp的主要方法
```

## 3 Docker 运行
Expand Down
12 changes: 6 additions & 6 deletions docs/cn/instructions/eventmesh-sdk-java-quickstart.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ TCP 和 Http 示例都在**eventmesh-test**模块下
- 启动消费者,订阅上一步骤已经创建的Topic

```
运行com.webank.eventmesh.tcp.demo.AsyncSubscribe的主要方法
运行org.apache.eventmesh.tcp.demo.AsyncSubscribe的主要方法
```

- 启动发送端,发送消息

```
运行com.webank.eventmesh.tcp.demo.AsyncPublish的主要方法
运行org.apache.eventmesh.tcp.demo.AsyncPublish的主要方法
```

<h4>广播消息</h4>
Expand All @@ -37,13 +37,13 @@ TCP 和 Http 示例都在**eventmesh-test**模块下
- 启动消费端,订阅上一步骤已经创建的Topic

```
运行com.webank.eventmesh.tcp.demo.AsyncSubscribeBroadcast的主要方法
运行org.apache.eventmesh.tcp.demo.AsyncSubscribeBroadcast的主要方法
```

- 启动发送端,发送广播消息

```
运行com.webank.eventmesh.tcp.demo.AsyncPublishBroadcast的主要方法
运行org.apache.eventmesh.tcp.demo.AsyncPublishBroadcast的主要方法
```

### 2. HTTP演示
Expand All @@ -63,13 +63,13 @@ TCP 和 Http 示例都在**eventmesh-test**模块下
异步事件消费端为spring boot demo,运行demo即可启动服务并完成Topic订阅

```
运行com.webank.eventmesh.http.demo.sub.SpringBootDemoApplication的主要方法
运行org.apache.eventmesh.http.demo.sub.SpringBootDemoApplication的主要方法
```

- 启动发送端,发送消息

```
运行com.webank.eventmesh.http.demo.AsyncPublishInstance的主要方法
运行org.apache.eventmesh.http.demo.AsyncPublishInstance的主要方法
```


Expand Down
2 changes: 1 addition & 1 deletion docs/en/instructions/eventmesh-runtime-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ dependencies {

**2.3.4 Run**

running `com.webank.eventmesh.starter.StartUp` main method
running `org.apache.eventmesh.starter.StartUp` main method

## 3 Run with Docker

Expand Down
12 changes: 6 additions & 6 deletions docs/en/instructions/eventmesh-sdk-java-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ the `resources` directory
- start consumer ,subscribe topic in previous step.

```
Run the main method of com.webank.eventmesh.tcp.demo.AsyncSubscribe
Run the main method of org.apache.eventmesh.tcp.demo.AsyncSubscribe
```

- start producer, send message

```
Run the main method of com.webank.eventmesh.tcp.demo.AsyncPublish
Run the main method of org.apache.eventmesh.tcp.demo.AsyncPublish
```

#### Broadcast msg
Expand All @@ -38,13 +38,13 @@ Run the main method of com.webank.eventmesh.tcp.demo.AsyncPublish
- start consumer ,subscribe topic in previous step.

```
Run the main method of com.webank.eventmesh.tcp.demo.AsyncSubscribeBroadcast
Run the main method of org.apache.eventmesh.tcp.demo.AsyncSubscribeBroadcast
```

* start producer, send broadcast message

```
Run the main method of com.webank.eventmesh.tcp.demo.AsyncPublishBroadcast
Run the main method of org.apache.eventmesh.tcp.demo.AsyncPublishBroadcast
```

### 2. HTTP DEMO
Expand All @@ -65,12 +65,12 @@ Run the main method of com.webank.eventmesh.tcp.demo.AsyncPublishBroadcast
topic.

```
Run the main method of com.webank.eventmesh.http.demo.sub.SpringBootDemoApplication
Run the main method of org.apache.eventmesh.http.demo.sub.SpringBootDemoApplication
```

- start producer, produce msg

```
Run the main method of com.webank.eventmesh.http.demo.AsyncPublishInstance
Run the main method of org.apache.eventmesh.http.demo.AsyncPublishInstance
```

2 changes: 1 addition & 1 deletion eventmesh-connector-rocketmq/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

group=com.webank.eventmesh
group=org.apache.eventmesh
version=1.2.0
defibus_version=1.0.1
rocketmq_version=4.7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
// * limitations under the License.
// */
//
//package org.apache.runtime.configuration;
//package com.webank.runtime.configuration;
//
//import com.google.common.base.Preconditions;
//import org.apache.runtime.util.EventMeshUtil;
//import com.webank.runtime.util.EventMeshUtil;
Comment on lines +18 to +21
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here still com.webank

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I have noticed that. But I think there is no "org.apache.runtime" package...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the class is useless, we'd better remove it :D

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, you can remove these classes later

//import org.apache.commons.lang3.StringUtils;
//
//public class CommonConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// * limitations under the License.
// */
//
//package org.apache.runtime.configuration;
//package com.webank.runtime.configuration;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to the above

//
//import org.apache.eventmesh.common.ThreadPoolFactory;
//import org.apache.commons.lang3.StringUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// * See the License for the specific language governing permissions and
// * limitations under the License.
// */
//package org.apache.runtime.domain;
//package com.webank.runtime.domain;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to the above

//
//import org.apache.rocketmq.client.impl.consumer.ProcessQueue;
//import org.apache.rocketmq.common.message.MessageExt;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
group=com.webank.eventmesh
group=org.apache.eventmesh
version=1.2.0-SNAPSHOT
rocketmqVersion=4.4.0
jdk=1.8
Expand Down