4 Star 1 Fork 0

ACANX/AUtil

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.38 KB
一键复制 编辑 原始数据 按行查看 历史
ACANX 提交于 2025-11-05 17:36 +08:00 . update: 迁移单元测试用例
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.acanx.util</groupId>
<artifactId>autil-json</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath> <!-- 指定父POM路径 -->
</parent>
<groupId>com.acanx.util</groupId>
<artifactId>json-fastjson</artifactId>
<version>${revision}</version>
<packaging>jar</packaging>
<name>JSON-Fastjson</name>
<description>JSON-Fastjson 工具库</description>
<url>https://github.com/ACANX/AUtil</url>
<dependencies>
<dependency>
<groupId>com.acanx.util</groupId>
<artifactId>autil-core</artifactId>
<version>${revision}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.acanx.util</groupId>
<artifactId>json-core</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>${fastjson2.version}</version>
</dependency>
<dependency>
<groupId>com.acanx.meta.model</groupId>
<artifactId>model-test</artifactId>
<version>${meta-open.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- 生成Javadoc,关闭doclint,避免注解检查不通过 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- <additionalparam>-Xdoclint:none</additionalparam>-->
<!-- <aggregate>true</aggregate>-->
<charset>${project.build.sourceEncoding}</charset> <!-- utf-8读取文件 -->
<encoding>${project.build.sourceEncoding}</encoding> <!-- utf-8进行编码代码 -->
<docencoding>${project.build.sourceEncoding}</docencoding> <!-- utf-8进行编码文档 -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/ACANX/AUtil.git
git@gitee.com:ACANX/AUtil.git
ACANX
AUtil
AUtil
0945494ece1c79f7c5db7d5e5f888458a599a931

搜索帮助