[ISSUE #16] Set up Maven CI & Add .asf.yaml & Rename core packages (#17)

* Set up CI

* Add LICENSE

* Add CheckStyle

* Set up DB

* Add druid StatFilter controller

* sync CI change in https://github.com/apache/eventmesh/pull/4722

* Supplement module dependency relation and fix project info

* Move original Admin into Core & rewrite dependencies

* Rename package to .core

* Add .asf.yaml

* Enable branches with namespace triggering CI

* Set up Maven CI

* Downgrade JDK from 17 to 8

* Remove failed empty test

* Remove failed dependabot task

* Unify version number (using maven 3.8.1, maven wrapper to be added)

---------

Co-authored-by: laohu <2732554140@qq.com>
41 files changed
tree: c535b29138de113536105b52505f5c25cf73c8b8
  1. .github/
  2. docker/
  3. eventmesh-dashboard-common/
  4. eventmesh-dashboard-console/
  5. eventmesh-dashboard-core/
  6. eventmesh-dashboard-observe/
  7. eventmesh-dashboard-service/
  8. eventmesh-dashboard-view/
  9. style/
  10. .asf.yaml
  11. .gitattributes
  12. .gitignore
  13. LICENSE
  14. NOTICE
  15. pom.xml
  16. README.md
README.md

EventMesh Dashboard

介绍

业务架构

技术架构

环境

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

模块依赖图

模块介绍

  1. eventmesh-dashboard-console 业务模块的代码,调用service接口
  2. eventmesh-dashboard-observe 监控模块的代码
  3. eventmesh-dashboard-core 对eventmesh以及相关组件的代码,提供service实现
  4. eventmesh-dashboard-service 公用API接口,对core的抽象
  5. eventmesh-dashboard-common 公共模块的代码
  6. eventmesh-dashboard-view 前端代码

eventmesh-dashboard-core 介绍

Build

Build on source code

cd eventmesh-dashboard
./gradlew clean bootJar
java -jar build/libs/eventmesh-dashboard-0.0.1-SNAPSHOT.jar

Build and Run with Docker

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