- 重构 document-core 与 MinerU 公共层,补齐 Office 异步任务基础设施 - 新增 PPTX/XLSX 解析模块与 starter 自动装配 - 补充 README 与相关测试覆盖
24 lines
819 B
XML
24 lines
819 B
XML
<?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.easyagents</groupId>
|
|
<artifactId>easy-agents</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>easy-agents-document</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>easy-agents-document</name>
|
|
|
|
<modules>
|
|
<module>easy-agents-document-core</module>
|
|
<module>easy-agents-document-pdf</module>
|
|
<module>easy-agents-document-pptx</module>
|
|
<module>easy-agents-document-xlsx</module>
|
|
</modules>
|
|
</project>
|