You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
372 lines
13 KiB
372 lines
13 KiB
<?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>
|
|
|
|
<groupId>com.yyy</groupId>
|
|
<artifactId>yyy</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>eam</name>
|
|
<url>http://127.0.0.1:80</url>
|
|
<description>系统基础模板</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<spring-boot.version>2.7.6</spring-boot.version>
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
<mysql.version>8.0.32</mysql.version>
|
|
<mybatis-plus.version>3.5.1</mybatis-plus.version>
|
|
<druid.version>1.2.20</druid.version>
|
|
<knife4j.version>3.0.3</knife4j.version>
|
|
<shiro.version>1.13.0</shiro.version>
|
|
<pagehelper.boot.version>1.4.7</pagehelper.boot.version>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
<!-- <commons.io.version>2.13.0</commons.io.version>-->
|
|
<commons.io.version>2.16.1</commons.io.version>
|
|
<commons-lang3.version>3.9</commons-lang3.version>
|
|
<hutool.version>4.6.10</hutool.version>
|
|
<!-- <poi.version>4.1.2</poi.version>-->
|
|
<poi.version>5.2.2</poi.version>
|
|
<lombok.version>1.18.12</lombok.version>
|
|
<slf4j.version>1.7.25</slf4j.version>
|
|
<guava.version>31.1-jre</guava.version>
|
|
<jwt.version>3.10.3</jwt.version>
|
|
<itextpdf.version>5.5.13.3</itextpdf.version>
|
|
<zxing.version>3.3.3</zxing.version>
|
|
<flowable.version>6.8.0</flowable.version>
|
|
<truelicense.version>1.33</truelicense.version>
|
|
<poi-tl.version>1.12.2</poi-tl.version>
|
|
<easyexcel.version>4.0.2</easyexcel.version>
|
|
<documents4j.version>1.0.3</documents4j.version>
|
|
<docx4j.version>8.3.11</docx4j.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>admin</module>
|
|
<module>common</module>
|
|
<module>system</module>
|
|
<module>modules</module>
|
|
<module>framework</module>
|
|
<module>flowable</module>
|
|
<module>license</module>
|
|
<module>quartz</module>
|
|
<module>kernel</module>
|
|
</modules>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<!-- 依赖声明 -->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- SpringBoot的依赖配置-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>2.7.6</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</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>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-bpmn-layout</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-engine</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
|
|
<!--任务调度-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Mybatis-Plus-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 接口文档 -->
|
|
<dependency>
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
<version>${knife4j.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Shiro核心框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-core</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Shiro使用Spring框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-spring</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Shiro使用EhCache缓存框架 -->
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
<version>${shiro.version}</version>
|
|
</dependency>
|
|
|
|
<!-- fastjson -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
|
|
<!-- lombok插件 -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- 日志-->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.boot.version}</version>
|
|
</dependency>
|
|
|
|
<!-- guava -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>${guava.version}</version>
|
|
</dependency>
|
|
|
|
<!-- jwt生成token的库 -->
|
|
<dependency>
|
|
<groupId>com.auth0</groupId>
|
|
<artifactId>java-jwt</artifactId>
|
|
<version>${jwt.version}</version>
|
|
</dependency>
|
|
|
|
<!--开发工具集-->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
|
|
<!-- excel工具 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 二维码 -->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>${itextpdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${zxing.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>javase</artifactId>
|
|
<version>${zxing.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
<artifactId>truelicense-core</artifactId>
|
|
<version>${truelicense.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
<artifactId>truelicense-xml</artifactId>
|
|
<version>${truelicense.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
<artifactId>truelicense-swing</artifactId>
|
|
<version>${truelicense.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
<artifactId>truelicense</artifactId>
|
|
<version>${truelicense.version}</version>
|
|
<type>pom</type>
|
|
</dependency>
|
|
|
|
<!-- poi-tl基于poi的word模板引擎 -->
|
|
<dependency>
|
|
<groupId>com.deepoove</groupId>
|
|
<artifactId>poi-tl</artifactId>
|
|
<version>${poi-tl.version}</version>
|
|
</dependency>
|
|
<!-- apache-poi版本>5.2.2,否则poi-tl报错 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.draco1023</groupId>
|
|
<artifactId>poi-tl-ext</artifactId>
|
|
<version>0.4.15</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
<version>${easyexcel.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.documents4j</groupId>
|
|
<artifactId>documents4j-local</artifactId>
|
|
<version>${documents4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.documents4j</groupId>
|
|
<artifactId>documents4j-transformer-msoffice-word</artifactId>
|
|
<version>${documents4j.version}</version>
|
|
</dependency>
|
|
|
|
<!--富文本转word-->
|
|
<!-- jsoup依赖 主要是解析图片标签,然后缩放图片大小-->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.12.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|