1 Star 0 Fork 0

mofum/open-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.36 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mofum/open-tools.git
git@gitee.com:mofum/open-tools.git
mofum
open-tools
open-tools
master

搜索帮助