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

zhoubo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-connect.git


The following commit(s) were added to refs/heads/master by this push:
     new fb015bb0 Add github action for CI and polish the README (#307)
fb015bb0 is described below

commit fb015bb0da2cb3208b65e9cc5841cc45afba03fb
Author: rongtong <[email protected]>
AuthorDate: Sat Sep 10 09:55:08 2022 +0800

    Add github action for CI and polish the README (#307)
---
 .asf.yaml                   |  16 ++++++++++++++++
 .github/workflows/maven.yml |  27 +++++++++++++++++++++++++++
 README.md                   |   2 +-
 img_2.png                   | Bin 732732 -> 0 bytes
 4 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/.asf.yaml b/.asf.yaml
index 8bae4c2b..d5ddf4b9 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -1,4 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 github:
+  description: "A tool for scalable and reliably streaming data between Apache 
RocketMQ and other systems."
   features:
     # Enable issue management
     issues: true
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 00000000..5672ed5d
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,27 @@
+# This workflow will build a Java project with Maven, and cache/restore any 
dependencies to improve the workflow execution time
+# For more information see: 
https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
+
+name: Java CI with Maven
+
+on:
+  push:
+    branches: [ "master" ]
+  pull_request:
+    types: [ opened, reopened, synchronize ]
+    branches: [ "master" ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v3
+      - name: Set up JDK 8
+        uses: actions/setup-java@v3
+        with:
+          java-version: '8'
+          distribution: 'temurin'
+          cache: maven
+      - name: Build with Maven
+        run: mvn -B package --file pom.xml
\ No newline at end of file
diff --git a/README.md b/README.md
index 376af579..fd7044bb 100644
--- a/README.md
+++ b/README.md
@@ -474,7 +474,7 @@ private static class MD5Hash implements HashFunction {
 Main Class配置:
 >org.apache.rocketmq.connect.runtime.StandaloneConnectStartup
 
-![img_2.png](img_2.png)
+![img_2.png](https://s1.ax1x.com/2022/09/10/vLoOMR.png)
 
 Program arguments配置
 
diff --git a/img_2.png b/img_2.png
deleted file mode 100644
index eae6fc37..00000000
Binary files a/img_2.png and /dev/null differ

Reply via email to