Skip to content

Commit 75f77de

Browse files
committed
[fit] add name and description for FIT poms
1 parent 9906b5e commit 75f77de

File tree

97 files changed

+444
-502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+444
-502
lines changed

framework/fel/java/services/tool-service/src/main/java/modelengine/fel/tool/model/transfer/ToolData.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ public String getUniqueName() {
100100
/**
101101
* 获取工具的描述信息。
102102
*
103-
* @return *
104103
* @return 表示工具的描述信息的 {@link String}。
105104
*/
106105
public String getDescription() {

framework/fit/java/fit-aop/fit-aop-aspect/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
<artifactId>fit-aop-aspect</artifactId>
1313

14+
<name>FIT AOP Aspect</name>
15+
<description>FIT AOP Aspect is a self-developed extension implementation of the aspect layer that provides
16+
aspect-oriented programming capabilities.
17+
</description>
18+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
19+
1420
<dependencies>
1521
<!-- FIT core -->
1622
<dependency>

framework/fit/java/fit-aop/fit-aop-bytebuddy/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111

1212
<artifactId>fit-aop-bytebuddy</artifactId>
1313

14+
<name>FIT AOP Byte-Buddy</name>
15+
<description>FIT AOP Byte-Buddy is a bytecode-enhanced implementation of the proxy layer based on Byte-Buddy.
16+
</description>
17+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
18+
1419
<properties>
1520
<!-- Third-party versions -->
1621
<bytebuddy.version>1.17.5</bytebuddy.version>

framework/fit/java/fit-aop/fit-aop/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111

1212
<artifactId>fit-aop</artifactId>
1313

14+
<name>FIT AOP</name>
15+
<description>FIT AOP provides core infrastructure that enables extension through both aspect and proxy layers.
16+
</description>
17+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
18+
1419
<dependencies>
1520
<!-- FIT core -->
1621
<dependency>

framework/fit/java/fit-aop/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
<artifactId>fit-aop-parent</artifactId>
1313
<packaging>pom</packaging>
1414

15+
<name>FIT AOP Parent</name>
16+
<description>FIT Framework AOP module provides aspect-oriented programming support with multiple implementations
17+
(AspectJ, ByteBuddy, etc.).
18+
</description>
19+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
20+
1521
<modules>
1622
<module>fit-aop</module>
1723
<module>fit-aop-aspect</module>

framework/fit/java/fit-api/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
<artifactId>fit-api</artifactId>
1313

14+
<name>FIT API</name>
15+
<description>FIT Framework API module is the core interface layer, providing all public API interfaces and
16+
annotation definitions.
17+
</description>
18+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
19+
1420
<dependencies>
1521
<!-- FIT core -->
1622
<dependency>

framework/fit/java/fit-broker/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@
1111

1212
<artifactId>fit-broker</artifactId>
1313

14+
<name>FIT Broker</name>
15+
<description>FIT Framework Broker module provides all FIT invocation-related functionality, including intra-process
16+
plugin communication and cross-plugin communication. The module serves as a central communication hub for both
17+
local and distributed plugin interactions.
18+
</description>
19+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
20+
1421
<dependencies>
1522
<!-- FIT core -->
1623
<dependency>

framework/fit/java/fit-builtin/plugins/fit-actuator/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
<artifactId>fit-actuator</artifactId>
1313

14+
<name>FIT Actuator</name>
15+
<description>FIT Framework Actuator Plugin module provides monitoring and management capabilities for FIT
16+
applications.
17+
</description>
18+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
19+
1420
<dependencies>
1521
<!-- FIT core -->
1622
<dependency>

framework/fit/java/fit-builtin/plugins/fit-client-http/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
<artifactId>fit-client-http</artifactId>
1313

14+
<name>FIT Client Http</name>
15+
<description>FIT Framework Client Http Plugin module provides HTTP implementation for client-side FIT communication
16+
service.
17+
</description>
18+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
19+
1420
<dependencies>
1521
<!-- FIT core -->
1622
<dependency>

framework/fit/java/fit-builtin/plugins/fit-dynamic-plugin-directory/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111

1212
<artifactId>fit-dynamic-plugin-directory</artifactId>
1313

14+
<name>FIT Dynamic Plugin Directory</name>
15+
<description>FIT Framework Dynamic Plugin Directory Plugin module provides implementation for dynamic loading and
16+
unloading of plugins through dynamic directories.
17+
</description>
18+
<url>https://github.com/ModelEngine-Group/fit-framework</url>
19+
1420
<dependencies>
1521
<!-- FIT core -->
1622
<dependency>

0 commit comments

Comments
 (0)