fix comment

This commit is contained in:
Looly
2024-07-15 20:03:24 +08:00
parent 052c45537b
commit 0220a1c55e
62 changed files with 557 additions and 249 deletions

77
pom.xml
View File

@@ -57,12 +57,12 @@
</properties>
<dependencies>
<!-- Kotlin适配用于在测试和编译中使用kotlin代码 -->
<!-- Kotlin适配用于在测试中使用kotlin代码 -->
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin-version}</version>
<scope>provided</scope>
<scope>test</scope>
</dependency>
<!-- 全局单元测试 -->
<dependency>
@@ -100,6 +100,10 @@
<name>VampireAchao</name>
<email>VampireAchao@dromara.org</email>
</developer>
<developer>
<name>CherryRum</name>
<email>yulin.1996@foxmail.com</email>
</developer>
<developer>
<name>Emptypoint</name>
<email>1215582715@qq.com</email>
@@ -116,10 +120,6 @@
<name>Dazer007</name>
<email>dazer007@163.com</email>
</developer>
<developer>
<name>CherryRum</name>
<email>yulin.1996@foxmail.com</email>
</developer>
<developer>
<name>Aihuahua</name>
<email>aihuahua522@qq.com</email>
@@ -169,8 +169,10 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<fork>true</fork>
<source>${compile.version}</source>
<target>${compile.version}</target>
<!-- 编译时启用警告位置 -->
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
@@ -214,46 +216,6 @@
</goals>
</execution>
</executions>
<configuration>
<tags>
<tag>
<name>apiNote</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>implSpec</name>
<placement>a</placement>
<head>Implementation Requirements:</head>
</tag>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
<tag>
<name>param</name>
</tag>
<tag>
<name>return</name>
</tag>
<tag>
<name>throws</name>
</tag>
<tag>
<name>since</name>
</tag>
<tag>
<name>version</name>
</tag>
<tag>
<name>serialData</name>
</tag>
<tag>
<name>see</name>
</tag>
</tags>
</configuration>
</plugin>
<!-- 统一更新pom版本 -->
<plugin>
@@ -277,6 +239,29 @@
<check/>
</configuration>
</plugin>
<!-- 用于生成模块化系统中的module-info.classhttps://github.com/moditect/moditect -->
<plugin>
<groupId>org.moditect</groupId>
<artifactId>moditect-maven-plugin</artifactId>
<version>1.2.2.Final</version>
<executions>
<execution>
<id>add-module-infos</id>
<phase>package</phase>
<goals>
<goal>add-module-info</goal>
</goals>
<configuration>
<jvmVersion>9</jvmVersion>
<module>
<moduleInfo>
<name>${Automatic-Module-Name}</name>
</moduleInfo>
</module>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>