2024-11-01 10:03:38 +08:00
|
|
|
|
<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>
|
|
|
|
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
|
|
|
<version>3.5.3</version>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>乐企平台${project.version}</name>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.7.18</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
|
|
|
|
<jeecgboot.version>3.5.3</jeecgboot.version>
|
|
|
|
|
|
2024-12-24 18:38:55 +08:00
|
|
|
|
<logback.version>1.3.14</logback.version>
|
2024-11-01 10:03:38 +08:00
|
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
|
|
|
<mapstruct.version>1.5.2.Final</mapstruct.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>jeecg-boot-dependencies</module>
|
|
|
|
|
<module>jeecg-boot-bom</module>
|
|
|
|
|
<module>jeecg-boot-base-core</module>
|
|
|
|
|
<module>jeecg-module-system</module>
|
|
|
|
|
<module>jeecg-module-cspt</module>
|
|
|
|
|
<module>jeecg-module-deliver</module>
|
|
|
|
|
<module>jeecg-server-cloud</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyun</id>
|
|
|
|
|
<name>aliyun Repository</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jeecg</id>
|
|
|
|
|
<name>jeecg Repository</name>
|
|
|
|
|
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jeecg-snapshots</id>
|
|
|
|
|
<name>jeecg-snapshots Repository</name>
|
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-12-24 18:38:55 +08:00
|
|
|
|
<!-- log4j2 begin -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- log4j2 end -->
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>ch.qos.logback</groupId>-->
|
|
|
|
|
<!-- <artifactId>logback-classic</artifactId>-->
|
|
|
|
|
<!-- <version>${logback.version}</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
2024-11-01 10:03:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Lombok -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.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>
|
2024-12-24 18:38:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpasyncclient</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ofdrw</groupId>
|
|
|
|
|
<artifactId>ofdrw-full</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.huaweicloud</groupId>
|
|
|
|
|
<artifactId>esdk-obs-java</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
|
|
|
<artifactId>shedlock-spring</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--每个外部存储实例所需依赖包不一样,这里是jdbc-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.javacrumbs.shedlock</groupId>
|
|
|
|
|
<artifactId>shedlock-provider-jdbc-template</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
<artifactId>font-asian</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.openhtmltopdf</groupId>
|
|
|
|
|
<artifactId>openhtmltopdf-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.openhtmltopdf</groupId>
|
|
|
|
|
<artifactId>openhtmltopdf-pdfbox</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.htmlunit</groupId>
|
|
|
|
|
<artifactId>htmlunit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okio</groupId>
|
|
|
|
|
<artifactId>okio</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.yomahub</groupId>
|
|
|
|
|
<artifactId>liteflow-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-11-01 10:03:38 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-dependencies</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-bom</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- 指定JDK编译版本 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.11.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 打包跳过测试 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>3.5.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 避免font文件的二进制文件格式压缩破坏 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<nonFilteredFileExtensions>
|
|
|
|
|
<nonFilteredFileExtension>woff</nonFilteredFileExtension>
|
|
|
|
|
<nonFilteredFileExtension>woff2</nonFilteredFileExtension>
|
|
|
|
|
<nonFilteredFileExtension>eot</nonFilteredFileExtension>
|
|
|
|
|
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
|
|
|
<nonFilteredFileExtension>svg</nonFilteredFileExtension>
|
|
|
|
|
</nonFilteredFileExtensions>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<excludes>
|
2024-12-24 18:38:55 +08:00
|
|
|
|
<exclude>config/bootstrap*.yml</exclude>
|
2024-11-01 10:03:38 +08:00
|
|
|
|
<exclude>application*.yml</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
2024-12-24 18:38:55 +08:00
|
|
|
|
<include>config/bootstrap.yml</include>
|
|
|
|
|
<include>config/bootstrap-${profile.name}.yml</include>
|
2024-11-01 10:03:38 +08:00
|
|
|
|
<include>application.yml</include>
|
|
|
|
|
<include>application-${profile.name}.yml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
<include>**/*.json</include>
|
|
|
|
|
<include>**/*.ftl</include>
|
|
|
|
|
<include>**/*.yml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jeecg</id>
|
|
|
|
|
<name>jeecg Repository</name>
|
|
|
|
|
<url>http://maven.jeecg.com:8090/nexus/content/repositories/jeecg</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>jeecg-snapshots</id>
|
|
|
|
|
<name>jeecg Snapshot Repository</name>
|
|
|
|
|
<url>http://maven.jeecg.com:8090/nexus/content/repositories/snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
<!-- 环境 -->
|
|
|
|
|
<profiles>
|
|
|
|
|
<!-- 开发 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<!--默认激活配置-->
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<properties>
|
|
|
|
|
<!--当前环境-->
|
|
|
|
|
<profile.name>dev</profile.name>
|
|
|
|
|
<!--Nacos服务地址-->
|
|
|
|
|
<config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
|
|
|
|
|
<!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
|
|
|
|
|
<config.namespace>lqfw</config.namespace>
|
|
|
|
|
<!--Nacos配置分组名称-->
|
|
|
|
|
<config.group>DEFAULT_GROUP</config.group>
|
|
|
|
|
<!--Nacos用户名-->
|
|
|
|
|
<config.username>nacos</config.username>
|
|
|
|
|
<!--Nacos密码-->
|
|
|
|
|
<config.password>nacos</config.password>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<!-- 测试Nacos开启鉴权、设置分组和命名空间
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profile.name>dev</profile.name>
|
|
|
|
|
<config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
|
|
|
|
|
<config.namespace>ac14ab82-51f8-4f0c-aa5b-25fb8384bfb6</config.namespace>
|
|
|
|
|
<config.group>JEECGDEV_GROUP</config.group>
|
|
|
|
|
<config.username>nacos</config.username>
|
|
|
|
|
<config.password>nacos</config.password>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile> -->
|
|
|
|
|
<!-- 测试 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>test</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<!--当前环境-->
|
|
|
|
|
<profile.name>test</profile.name>
|
|
|
|
|
<!--Nacos服务地址-->
|
|
|
|
|
<config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
|
|
|
|
|
<!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
|
|
|
|
|
<config.namespace>lqfw</config.namespace>
|
|
|
|
|
<!--Nacos配置分组名称-->
|
|
|
|
|
<config.group>DEFAULT_GROUP</config.group>
|
|
|
|
|
<!--Nacos用户名-->
|
|
|
|
|
<config.username></config.username>
|
|
|
|
|
<!--Nacos密码-->
|
|
|
|
|
<config.password></config.password>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<!-- 生产 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<!--当前环境-->
|
|
|
|
|
<profile.name>prod</profile.name>
|
|
|
|
|
<!--Nacos服务地址-->
|
|
|
|
|
<config.server-addr>jeecg-boot-nacos:8848</config.server-addr>
|
|
|
|
|
<!--Nacos配置中心命名空间,用于支持多环境.这里必须使用ID,不能使用名称,默认为空-->
|
|
|
|
|
<config.namespace>lqfw</config.namespace>
|
|
|
|
|
<!--Nacos配置分组名称-->
|
|
|
|
|
<config.group>DEFAULT_GROUP</config.group>
|
|
|
|
|
<!--Nacos用户名-->
|
|
|
|
|
<config.username></config.username>
|
|
|
|
|
<!--Nacos密码-->
|
|
|
|
|
<config.password></config.password>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<!-- SpringCloud运行环境 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>SpringCloud</id>
|
|
|
|
|
<modules>
|
|
|
|
|
<!-- 微服务模块-->
|
|
|
|
|
<module>jeecg-server-cloud</module>
|
|
|
|
|
</modules>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
</project>
|