Skip to content

Commit

Permalink
Supplement module dependency relation and fix project info
Browse files Browse the repository at this point in the history
  • Loading branch information
Pil0tXia committed Jan 11, 2024
1 parent 561acac commit 8e336bf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

### 模块介绍

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

Expand Down
21 changes: 9 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">


<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>

Expand All @@ -40,37 +39,35 @@

<name>eventmesh-dashboard</name>
<description>eventmesh-dashboard</description>
<url>https://github.com/apache/pulsar</url>
<url>https://github.com/apache/eventmesh-dashboard</url>

<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org/</url>
<url>https://www.apache.org/</url>
</organization>
<inceptionYear>2017</inceptionYear>

<inceptionYear>2021</inceptionYear>
<developers>
<developer>
<organization>Apache eventmesh developers</organization>
<organizationUrl>http://eventmesh.apache.org/</organizationUrl>
<organization>Apache EventMesh developers</organization>
<organizationUrl>https://eventmesh.apache.org/</organizationUrl>
</developer>
</developers>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<scm>
<url>https://github.com/apache/eventmesh-dashboard</url>
<connection>scm:git:https://github.com/apache/eventmesh-dashboard.git</connection>
<developerConnection>scm:git:ssh://[email protected]:apache/eventmesh-dashboard.git</developerConnection>
</scm>

<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/apache/puleventmesh-dashboardsar/actions</url>
<url>https://github.com/apache/eventmesh-dashboard/actions</url>
</ciManagement>

<issueManagement>
Expand All @@ -79,8 +76,8 @@
</issueManagement>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

</properties>
Expand Down

0 comments on commit 8e336bf

Please sign in to comment.