217 lines
7.9 KiB
XML
217 lines
7.9 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.4.4</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
</parent>
|
|
<groupId>com.yutou</groupId>
|
|
<artifactId>nas</artifactId>
|
|
<version>0.0.1</version>
|
|
<name>nas</name>
|
|
<description>NAS Service</description>
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<kotlin.version>1.5.10</kotlin.version>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<id>jaudiotagger-repository</id>
|
|
<url>https://dl.bintray.com/ijabz/maven</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jcenter</id>
|
|
<url>https://jcenter.bintray.com/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.24</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.junit.vintage</groupId>
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>4.3.1</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.17</version>
|
|
</dependency>
|
|
<!-- <dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>2.0.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/fastjson2-2.0.3.jar</systemPath>
|
|
</dependency>-->
|
|
<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
|
|
<dependency>
|
|
<groupId>com.jcraft</groupId>
|
|
<artifactId>jsch</artifactId>
|
|
<version>0.1.55</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.jthink</groupId>
|
|
<artifactId>jaudiotagger</artifactId>
|
|
<version>3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.ealva</groupId>
|
|
<artifactId>ealvatag</artifactId>
|
|
<version>0.4.6</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.bramp.ffmpeg</groupId>
|
|
<artifactId>ffmpeg</artifactId>
|
|
<version>0.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iflytek</groupId>
|
|
<artifactId>msc</artifactId>
|
|
<version>4.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/Msc.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iflytek</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>4.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/libs/json-jena-1.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
<version>2.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
<version>3.15.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.drewnoakes</groupId>
|
|
<artifactId>metadata-extractor</artifactId>
|
|
<version>2.18.0</version>
|
|
</dependency>
|
|
<!-- <dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.acgist</groupId>
|
|
<artifactId>snail</artifactId>
|
|
<version>1.17.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>${project.basedir}/src/main/java</sourceDirectory>
|
|
<!-- <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>-->
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<version>1.8</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>test</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<tasks>
|
|
<echo>复制正式文件</echo>
|
|
<copy file="src/main/resources/application.properties.release" tofile="${project.build.outputDirectory}/application.properties" overwrite="true"/>
|
|
</tasks>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<!--使用-Dloader.path需要在打包的时候增加<layout>ZIP</layou
|
|
t>,不指定的话-Dloader.path不生效-->
|
|
<layout>ZIP</layout>
|
|
<!-- 指定该jar包启动时的主类[建议] -->
|
|
<mainClass>com.yutou.nas.NasApplication</mainClass>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<compilerArguments>
|
|
<extdirs>${basedir}/libs</extdirs>
|
|
</compilerArguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>libs</directory>
|
|
<targetPath>BOOT-INF/lib/</targetPath>
|
|
<includes>
|
|
<include>**/*.jar</include>
|
|
</includes>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|