205 lines
7.0 KiB
XML
205 lines
7.0 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.qiwenshare</groupId>
|
||
<artifactId>qiwenshare</artifactId>
|
||
<version>1.2.7</version>
|
||
</parent>
|
||
|
||
<artifactId>qiwen-file</artifactId>
|
||
<version>1.2.7-SNAPSHOT</version>
|
||
<name>qiwen-file</name>
|
||
<description>pan.qiwenshare.com</description>
|
||
<packaging>jar</packaging>
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<spring-cloud.version>Hoxton.SR1</spring-cloud.version>
|
||
<skipTests>true</skipTests>
|
||
<docker.image.prefix>scp</docker.image.prefix>
|
||
<release-path>target/../release</release-path>
|
||
<app-name>${project.artifactId}-${project.version}</app-name>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-ui</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<!-- fastjson -->
|
||
<dependency>
|
||
<groupId>com.alibaba.fastjson2</groupId>
|
||
<artifactId>fastjson2</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 导入Mysql数据库链接jar包-->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<scope>runtime</scope>
|
||
</dependency>
|
||
|
||
|
||
<!--jpa-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-aop</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-security</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</dependency>
|
||
<!--mybatis end-->
|
||
|
||
<dependency>
|
||
<groupId>com.qiwenshare</groupId>
|
||
<artifactId>ufop-spring-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>co.elastic.clients</groupId>
|
||
<artifactId>elasticsearch-java</artifactId>
|
||
<version>8.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>jakarta.json</groupId>
|
||
<artifactId>jakarta.json-api</artifactId>
|
||
<version>2.0.1</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org</groupId>
|
||
<artifactId>jaudiotagger</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.inversoft</groupId>
|
||
<artifactId>prime-jwt</artifactId>
|
||
<version>2.0.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.modelmapper</groupId>
|
||
<artifactId>modelmapper</artifactId>
|
||
<version>2.4.2</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<!--排除静态文件-->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<configuration>
|
||
<archive>
|
||
<!-- 添加index则不从mainfest中读取classpath,而是从Index.list中读取 -->
|
||
<!-- <index>true</index> -->
|
||
<manifest>
|
||
<mainClass>com.qiwenshare.file.FileApplication</mainClass>
|
||
<addClasspath>true</addClasspath>
|
||
<classpathPrefix>lib/</classpathPrefix>
|
||
</manifest>
|
||
<manifestEntries>
|
||
<Class-Path>./</Class-Path>
|
||
</manifestEntries>
|
||
</archive>
|
||
|
||
<excludes>
|
||
<exclude>static/**</exclude>
|
||
</excludes>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-assembly-plugin</artifactId>
|
||
<configuration>
|
||
<!-- not append assembly id in release file name -->
|
||
<appendAssemblyId>false</appendAssemblyId>
|
||
<descriptors>
|
||
<descriptor>src/main/resources/build/assembly.xml</descriptor>
|
||
</descriptors>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>make-assembly</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>single</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
|
||
<!--ant插件执行自定义动作-->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-antrun-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>run</goal>
|
||
</goals>
|
||
<configuration>
|
||
<target>
|
||
<delete dir="${release-path}" />
|
||
<copy todir="${release-path}" >
|
||
<fileset dir="target/${app-name}/${app-name}">
|
||
<exclude name="**/*-android-*.jar"/>
|
||
</fileset>
|
||
</copy>
|
||
</target>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
|
||
|
||
</build>
|
||
|
||
</project>
|