mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix comment
This commit is contained in:
77
pom.xml
77
pom.xml
@@ -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.class,见:https://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>
|
||||
|
||||
|
Reference in New Issue
Block a user