代码拉取完成,页面将自动刷新
<?xml version='1.0' encoding='utf-8'?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.omuao.tool</groupId>
<artifactId>tool-parent</artifactId>
<version>1.0.0</version>
<name>open-tool</name>
<description>简洁有用</description>
<url>https://gitee.com/mofum/open-tools</url>
<modules>
<module>tool-core</module>
</modules>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<!-- versions -->
<compile.version>8</compile.version>
<junit.version>4.13.2</junit.version>
<lombok.version>1.18.24</lombok.version>
<hutool.version>5.8.12</hutool.version>
</properties>
<dependencies>
<!-- 全局单元测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
</dependencies>
<issueManagement>
<system>Gitee</system>
<url>https://gitee.com/mofum/open-tools/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT</name>
<url>https://www.mit-license.org/</url>
</license>
</licenses>
<developers>
<developer>
<name>Omuao</name>
<email>developer@omuao.com</email>
</developer>
</developers>
<scm>
<connection>scm:git@gitee.com:mofum/open-tools.git</connection>
<developerConnection>scm:git@gitee.com:mofum/open-tools.git</developerConnection>
<url>git@gitee.com:mofum/open-tools.git</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${compile.version}</source>
<target>${compile.version}</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<!-- Javadoc -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。