53 lines
1.7 KiB
XML
53 lines
1.7 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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>com.ruoyi</groupId>
|
||
|
<artifactId>ruoyi-models</artifactId>
|
||
|
<version>3.8.8.3.1</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>ruoyi-music</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.ruoyi</groupId>
|
||
|
<artifactId>ruoyi-common</artifactId>
|
||
|
<version>${ruoyi.version}</version>
|
||
|
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 音频元数据解析 -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.sbordes</groupId>
|
||
|
<artifactId>jaudiotagger</artifactId>
|
||
|
<version>2.2.6</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/src/main/resources/lib/jaudiotagger-2.2.6.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- 网络路径支持 -->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>jcifs</groupId>-->
|
||
|
<!-- <artifactId>jcifs</artifactId>-->
|
||
|
<!-- <version>1.3.17</version>-->
|
||
|
<!-- </dependency>-->
|
||
|
<!-- -->
|
||
|
<dependency>
|
||
|
<groupId>eu.agno3.jcifs</groupId>
|
||
|
<artifactId>jcifs-ng</artifactId>
|
||
|
<version>2.1.9</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|