431 lines
16 KiB
XML
431 lines
16 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>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>3.0.4</version>
|
||
<relativePath/> <!-- lookup parent from repository -->
|
||
</parent>
|
||
|
||
|
||
<groupId>cn.workde</groupId>
|
||
<artifactId>drone-coding</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
|
||
<properties>
|
||
<maven.compiler.source>17</maven.compiler.source>
|
||
<maven.compiler.target>17</maven.compiler.target>
|
||
<knife4j.version>4.3.0</knife4j.version>
|
||
<hutool.version>5.8.11</hutool.version>
|
||
<jjwt.version>0.11.5</jjwt.version>
|
||
<druid.version>1.1.21</druid.version>
|
||
<mysql.version>8.0.22</mysql.version>
|
||
<mybatisplus.version>3.5.6</mybatisplus.version>
|
||
<mybatisplus.join.version>1.4.12</mybatisplus.join.version>
|
||
<mapstruct.version>1.5.3.Final</mapstruct.version>
|
||
<redisson.version>3.20.0</redisson.version>
|
||
<easyexcel.version>3.3.2</easyexcel.version>
|
||
<!-- sa-token -->
|
||
<sa-token-spring-boot3-starter.version>1.38.0</sa-token-spring-boot3-starter.version>
|
||
|
||
|
||
<app.build.name>${project.artifactId}-${project.version}</app.build.name>
|
||
<app.build.prod>target/build</app.build.prod>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-undertow</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-undertow</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-validation</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>${mysql.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid-spring-boot-starter</artifactId>
|
||
<version>${druid.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<version>${mybatisplus.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.yulichang</groupId>
|
||
<artifactId>mybatis-plus-join-boot-starter</artifactId>
|
||
<version>${mybatisplus.join.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-generator</artifactId>
|
||
<version>${mybatisplus.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>${hutool.version}</version>
|
||
</dependency>
|
||
|
||
<!-- JWT -->
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-impl</artifactId>
|
||
<version>${jjwt.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt-jackson</artifactId>
|
||
<version>${jjwt.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct</artifactId>
|
||
<version>${mapstruct.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct-processor</artifactId>
|
||
<version>${mapstruct.version}</version>
|
||
</dependency>
|
||
|
||
<!--Lombok-->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.xiaoymin</groupId>
|
||
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||
<version>${knife4j.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.redisson</groupId>
|
||
<artifactId>redisson</artifactId>
|
||
<version>${redisson.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>${easyexcel.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>net.sf.ehcache</groupId>
|
||
<artifactId>ehcache</artifactId>
|
||
<version>1.2.3</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-cache</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.aspectj</groupId>
|
||
<artifactId>aspectjweaver</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 阿里云短信 -->
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
<version>4.1.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
||
<version>1.1.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>joda-time</groupId>
|
||
<artifactId>joda-time</artifactId>
|
||
<version>2.10</version>
|
||
</dependency>
|
||
|
||
<!-- 模板引擎 -->
|
||
<dependency>
|
||
<groupId>org.apache.velocity</groupId>
|
||
<artifactId>velocity-engine-core</artifactId>
|
||
<version>2.0</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.dahuatech.icc</groupId>
|
||
<artifactId>java-sdk-oauth</artifactId>
|
||
<version>1.0.9.2</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml-schemas</artifactId>
|
||
<version>4.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>4.1.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>4.1.2</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpclient</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>joda-time</groupId>
|
||
<artifactId>joda-time</artifactId>
|
||
<version>2.10</version>
|
||
</dependency>
|
||
<!-- User-Agent 解析 -->
|
||
<dependency>
|
||
<groupId>eu.bitwalker</groupId>
|
||
<artifactId>UserAgentUtils</artifactId>
|
||
<version>1.21</version>
|
||
</dependency>
|
||
|
||
<!-- OkHttps网络请求库: http://okhttps.ejlchina.com/ -->
|
||
<dependency>
|
||
<groupId>com.ejlchina</groupId>
|
||
<artifactId>okhttps</artifactId>
|
||
<version>3.2.0</version>
|
||
</dependency>
|
||
|
||
<!-- <!– Sa-Token 启动依赖 –>-->
|
||
<!-- <!– Sa-Token 权限认证,在线文档:https://sa-token.cc –>-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>cn.dev33</groupId>-->
|
||
<!-- <artifactId>sa-token-spring-boot3-starter</artifactId>-->
|
||
<!-- <version>${sa-token-spring-boot3-starter.version}</version>-->
|
||
<!-- </dependency>-->
|
||
|
||
<!-- <!– Sa-Token 整合 jwt –>-->
|
||
<!-- <dependency>-->
|
||
<!-- <groupId>cn.dev33</groupId>-->
|
||
<!-- <artifactId>sa-token-jwt</artifactId>-->
|
||
<!-- <version>${sa-token-spring-boot3-starter.version}</version>-->
|
||
<!-- </dependency>-->
|
||
</dependencies>
|
||
<build>
|
||
<plugins>
|
||
<!-- 打JAR包 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<version>3.3.0</version>
|
||
<configuration>
|
||
<archive>
|
||
<manifest>
|
||
<addClasspath>true</addClasspath>
|
||
<!-- MANIFEST.MF 中 Class-Path 加入前缀 -->
|
||
<classpathPrefix>lib/</classpathPrefix>
|
||
<!-- jar包不包含唯一版本标识 -->
|
||
<useUniqueVersions>false</useUniqueVersions>
|
||
<!--指定入口类 需要改名 -->
|
||
<mainClass>cn.workde.Application</mainClass>
|
||
</manifest>
|
||
<manifestEntries>
|
||
<!--MANIFEST.MF 中 Class-Path 加入资源文件目录 -->
|
||
<Class-Path>./resources/</Class-Path>
|
||
</manifestEntries>
|
||
</archive>
|
||
<outputDirectory>${project.build.directory}</outputDirectory>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<!-- 该插件的作用是用于复制依赖的jar包到指定的文件夹里 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-dependency-plugin</artifactId>
|
||
<version>3.6.0</version>
|
||
<executions>
|
||
<execution>
|
||
<id>copy-dependencies</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>copy-dependencies</goal>
|
||
</goals>
|
||
<configuration>
|
||
<outputDirectory>${project.build.directory}/lib/</outputDirectory>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
<!-- 该插件的作用是用于复制指定的文件 -->
|
||
<plugin>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<!-- 复制配置文件 -->
|
||
<id>copy-resources</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>copy-resources</goal>
|
||
</goals>
|
||
<configuration>
|
||
<resources>
|
||
<resource>
|
||
<directory>src/main/resources</directory>
|
||
<includes>
|
||
<include>*.properties</include>
|
||
<include>*.xml</include>
|
||
<include>*.yml</include>
|
||
</includes>
|
||
<excludes>
|
||
<exclude>*.jar</exclude>
|
||
</excludes>
|
||
</resource>
|
||
</resources>
|
||
<outputDirectory>${project.build.directory}/resources</outputDirectory>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>3.1.1</version>
|
||
<configuration>
|
||
<skip>true</skip>
|
||
<includeSystemScope>true</includeSystemScope>
|
||
<!--重写包含依赖,包含不存在的依赖,jar里没有pom里的依赖 -->
|
||
<includes>
|
||
<include>
|
||
<groupId>null</groupId>
|
||
<artifactId>null</artifactId>
|
||
</include>
|
||
</includes>
|
||
<layout>ZIP</layout>
|
||
<!--使用外部配置文件,jar包里没有资源文件 -->
|
||
<addResources>true</addResources>
|
||
<outputDirectory>${project.build.directory}/resources</outputDirectory>
|
||
</configuration>
|
||
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
|
||
<configuration>
|
||
<!--配置jar包特殊标识 配置后,保留原文件,生成新文件 *-run.jar -->
|
||
<!--配置jar包特殊标识 不配置,原文件命名为 *.jar.original,生成新文件 *.jar -->
|
||
<!--<classifier>run</classifier> -->
|
||
</configuration>
|
||
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<!-- 对打包后的文件重新进行组装 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-antrun-plugin</artifactId>
|
||
<version>3.1.0</version>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>run</goal>
|
||
</goals>
|
||
<configuration>
|
||
<target>
|
||
<copy file="${project.basedir}/target/${app.build.name}.jar"
|
||
tofile="${app.build.prod}/drone-coding.jar"/>
|
||
<copy file="${project.basedir}/bin/start.sh" tofile="${app.build.prod}/start.sh"/>
|
||
|
||
<!-- 复制资源文件 -->
|
||
<copy todir="${app.build.prod}">
|
||
<fileset dir="target/resources">
|
||
<include name="**/*.properties"/>
|
||
<include name="**/*.xml"/>
|
||
<include name="**/*.yml"/>
|
||
</fileset>
|
||
</copy>
|
||
|
||
<!-- 复制包文件 -->
|
||
<copy todir="${app.build.prod}/lib">
|
||
<fileset dir="target/lib"/>
|
||
</copy>
|
||
</target>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
|
||
|
||
</plugins>
|
||
</build>
|
||
<repositories>
|
||
<repository>
|
||
<id>maven_central</id>
|
||
<name>Maven Central</name>
|
||
<url>https://repo.maven.apache.org/maven2/</url>
|
||
</repository>
|
||
</repositories>
|
||
</project> |