65 lines
1.8 KiB
XML
65 lines
1.8 KiB
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">
|
||
<parent>
|
||
<artifactId>ry-xinli</artifactId>
|
||
<groupId>com.ddnai</groupId>
|
||
<version>1.0.0</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>ry-xinli-system</artifactId>
|
||
|
||
<description>
|
||
system系统模块
|
||
</description>
|
||
|
||
<dependencies>
|
||
|
||
<!-- 通用工具-->
|
||
<dependency>
|
||
<groupId>com.ddnai</groupId>
|
||
<artifactId>ry-xinli-common</artifactId>
|
||
</dependency>
|
||
|
||
<!-- excel工具 -->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
</dependency>
|
||
|
||
<!-- POI Word文档解析 -->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-scratchpad</artifactId>
|
||
</dependency>
|
||
|
||
<!-- PDF解析工具 -->
|
||
<dependency>
|
||
<groupId>org.apache.pdfbox</groupId>
|
||
<artifactId>pdfbox</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.pdfbox</groupId>
|
||
<artifactId>pdfbox-tools</artifactId>
|
||
</dependency>
|
||
|
||
<!-- OkHttp HTTP客户端 -->
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Jave2音频转换库(MP3/M4A等→WAV) -->
|
||
<dependency>
|
||
<groupId>ws.schild</groupId>
|
||
<artifactId>jave-all-deps</artifactId>
|
||
<version>3.3.1</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
</project>
|