chore(deps): bump org.apache.maven.plugins:maven-surefire-plugin (#111)

Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.2.2 to 3.2.5.
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.2.2...surefire-3.2.5)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 file changed
tree: c80cc6790a434a163a4d0894945ca46e60395197
  1. .github/
  2. .mvn/
  3. deployment/
  4. docker/
  5. eventmesh-dashboard-common/
  6. eventmesh-dashboard-console/
  7. eventmesh-dashboard-core/
  8. eventmesh-dashboard-observe/
  9. eventmesh-dashboard-service/
  10. eventmesh-dashboard-view/
  11. style/
  12. tools/
  13. .asf.yaml
  14. .gitattributes
  15. .gitignore
  16. .licenserc.yaml
  17. LICENSE
  18. mvnw
  19. mvnw.cmd
  20. NOTICE
  21. pom.xml
  22. README.md
  23. README.zh-CN.md
README.md

EventMesh Dashboard

🌐 简体中文

Introduction

The EventMesh Dashboard is under development and will support functionalities such as Connection management, cluster health checks, etc. Feel free to reach out to the EventMesh Assistant to contribute.

The Dashboard for EventMesh, maintained during v1.8.0 ~ v1.10.0, is a pure frontend project located at the Next.js Dashboard branch.

Weekly development meeting documents for EventMesh Dashboard: https://docs.qq.com/doc/DQmhVbklUdGNNWGZi

Technical Architecture

Environment

  • JDK 8/11
  • Maven 3.9.x
  • Spring Boot 2.7.x

Module Introduction

  1. eventmesh-dashboard-console: Code for business modules, invoking service interfaces.
  2. eventmesh-dashboard-observe: Code for monitoring modules.
  3. eventmesh-dashboard-core: Code for EventMesh Runtime, Meta, and related components, providing service implementations.
  4. eventmesh-dashboard-service: Common API interfaces, abstracting core functionalities.
  5. eventmesh-dashboard-common: Code for common modules.
  6. eventmesh-dashboard-view: Frontend code.

Auto Deploy EventMesh Dashboard

When the repository code is updated, the script will build and run the EventMesh Dashboard based on the latest version of the code.

Usage

cd ~/service
git clone https://github.com/apache/eventmesh-dashboard.git
cd eventmesh-dashboard/deployment/

Edit credentials:

cp .env.example .env
vim .env

Add task to crontab:

crontab -e
0 * * * * bash ~/service/eventmesh-dashboard/deployment/auto-deploy-eventmesh-dashboard.sh

Build

Build on source code

cd eventmesh-dashboard
./mvnw clean package

TODO download mysql-connector-j manually

java -DDB_ADDRESS=$DB_ADDRESS -DDB_USERNAME=$DB_USERNAME -DDB_PASSWORD=$DB_PASSWORD -jar eventmesh-dashboard-console/target/eventmesh-dashboard-console-0.0.1-SNAPSHOT.jar

Build and Run with Docker

To be updated

cd eventmesh-dashboard
./gradlew clean bootJar
docker build -t yourname/eventmesh-dashboard -f docker/Dockerfile .
docker run -d --name eventmesh-dashboard -p 8080:8080 yourname/eventmesh-dashboard