123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <?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.xazhcx.aqpt</groupId>
- <artifactId>aqpt-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>aqpt-parent</name>
- <packaging>pom</packaging>
- <description>双重预防安全生产管理平台</description>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.0.RELEASE</version>
- </parent>
- <modules>
- <module>aqpt-web</module>
- <module>aqpt-common</module>
- <module>aqpt-core</module>
- <module>aqpt-service</module>
- <module>aqpt-entity</module>
- <module>aqpt-flowable</module>
- <module>aqpt-online</module>
- <module>aqpt-application-center</module>
- <module>aqpt-generator</module>
- <module>aqpt-shuili</module>
- <module>aqpt-schedule</module>
- <module>aqpt-quartz-jobs</module>
- <module>aqpt-safety-evaluation</module>
- </modules>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- <rongcloud.version>3.0.6</rongcloud.version>
- <t-io.version>3.6.1.v20200512-RELEASE</t-io.version>
- <bitwalker.version>1.21</bitwalker.version>
- <oshi.version>3.9.1</oshi.version>
- <flowable.version>6.4.2</flowable.version>
- <skipTests>true</skipTests>
- <mybatis-plus.version>3.2.0</mybatis-plus.version>
- <grpc.version>2.5.0.RELEASE</grpc.version>
- <osgl-tool.version>1.24.0</osgl-tool.version>
- <p6spy.version>3.9.0</p6spy.version>
- <japidocs.version>1.4.4</japidocs.version>
- </properties>
- <dependencies>
- <!-- <!– https://mvnrepository.com/artifact/org.apache.dubbo/dubbo-spring-boot-starter –>-->
- <!-- <dependency>-->
- <!-- <groupId>org.apache.dubbo</groupId>-->
- <!-- <artifactId>dubbo-spring-boot-starter</artifactId>-->
- <!-- <version>2.7.5</version>-->
- <!-- </dependency>-->
- <!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
- <!-- <dependency>-->
- <!-- <groupId>de.codecentric</groupId>-->
- <!-- <artifactId>spring-boot-admin-starter-server</artifactId>-->
- <!-- <version>2.2.3</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- <!-- 移除掉默认支持的 Tomcat -->
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-tomcat</artifactId>
- </exclusion>
- <!--排除默认的tomcat-jdbc-->
- <exclusion>
- <groupId>org.apache.tomcat</groupId>
- <artifactId>tomcat-jdbc</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- </dependency>
- <!-- undertow 容器 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- 添加redis支持-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <exclusions>
- <exclusion>
- <artifactId>spring-context-support</artifactId>
- <groupId>org.springframework</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.security</groupId>
- <artifactId>spring-security-jwt</artifactId>
- <version>1.0.7.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.mybatis</groupId>
- <artifactId>mybatis-typehandlers-jsr310</artifactId>
- <version>1.0.2</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.13</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/p6spy/p6spy -->
- <dependency>
- <groupId>p6spy</groupId>
- <artifactId>p6spy</artifactId>
- <version>${p6spy.version}</version>
- </dependency>
- <!-- mysql -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- </dependency>
- <!--poi-->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>4.1.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>4.1.0</version>
- </dependency>
- <!--工具jar-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.3.5</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>1.2.73</version>
- </dependency>
- <!--汉字转拼音及首字母-->
- <dependency>
- <groupId>com.belerweb</groupId>
- <artifactId>pinyin4j</artifactId>
- <version>2.5.1</version>
- </dependency>
- <!--jwt-->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- <version>0.9.1</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>29.0-jre</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- <version>3.4.0</version>
- </dependency>
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>javase</artifactId>
- <version>3.4.0</version>
- </dependency>
- <!--极光文档-->
- <dependency>
- <groupId>cn.jpush.api</groupId>
- <artifactId>jpush-client</artifactId>
- <version>3.5.3</version>
- <exclusions>
- <exclusion>
- <artifactId>gson</artifactId>
- <groupId>com.google.code.gson</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--短信发送验证-->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>3.2.9</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!--融云-->
- <dependency>
- <groupId>cn.rongcloud.im</groupId>
- <artifactId>server-sdk-java</artifactId>
- <version>${rongcloud.version}</version>
- </dependency>
- <!--ws-->
- <dependency>
- <groupId>org.t-io</groupId>
- <artifactId>tio-core</artifactId>
- <version>${t-io.version}</version>
- </dependency>
- <dependency>
- <groupId>org.java-websocket</groupId>
- <artifactId>Java-WebSocket</artifactId>
- <version>1.5.1</version>
- </dependency>
- <!--Swagger2依赖 -->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.9.2</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.9.2</version>
- </dependency>
- <!-- 热部署 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-devtools</artifactId>
- <!-- <optional>true</optional>-->
- </dependency>
- <dependency>
- <groupId>org.jetbrains</groupId>
- <artifactId>annotations</artifactId>
- <version>19.0.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.abel533</groupId>
- <artifactId>ECharts</artifactId>
- <version>3.0.0.6</version>
- </dependency>
- <dependency>
- <groupId>org.osgl</groupId>
- <artifactId>osgl-tool</artifactId>
- <version>${osgl-tool.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjrt</artifactId>
- <version>1.9.5</version>
- </dependency>
- <!--mapstruct就提供了vo与po自动转换的一种方式。-->
- <!--https://www.cnblogs.com/TimerHotel/p/springboot16.html-->
- <!--https://mapstruct.org/-->
- <!-- <dependency>-->
- <!-- <groupId>org.mapstruct</groupId>-->
- <!-- <artifactId>mapstruct-jdk8</artifactId>-->
- <!-- <version>1.3.1.Final</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.mapstruct</groupId>-->
- <!-- <artifactId>mapstruct-processor</artifactId>-->
- <!-- <version>1.3.1.Final</version>-->
- <!-- </dependency>-->
- <!--javamelody-->
- <!-- <dependency>-->
- <!-- <groupId>net.bull.javamelody</groupId>-->
- <!-- <artifactId>javamelody-spring-boot-starter</artifactId>-->
- <!-- <version>1.83.0</version>-->
- <!-- </dependency>-->
- <!-- https://mvnrepository.com/artifact/com.github.tobato/fastdfs-client -->
- <!--https://github.com/tobato/FastDFS_Client-->
- <dependency>
- <groupId>com.github.tobato</groupId>
- <artifactId>fastdfs-client</artifactId>
- <version>1.26.7</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/net.coobird/thumbnailator -->
- <dependency>
- <groupId>net.coobird</groupId>
- <artifactId>thumbnailator</artifactId>
- <version>0.4.8</version>
- </dependency>
- <!-- cmyk格式图片转换 -->
- <!--https://github.com/haraldk/TwelveMonkeys-->
- <dependency>
- <groupId>com.twelvemonkeys.imageio</groupId>
- <artifactId>imageio-jpeg</artifactId>
- <version>3.5</version>
- </dependency>
- <dependency>
- <groupId>com.twelvemonkeys.imageio</groupId>
- <artifactId>imageio-tiff</artifactId>
- <version>3.5</version>
- </dependency>
- <!-- 解析客户端操作系统、浏览器等 -->
- <dependency>
- <groupId>eu.bitwalker</groupId>
- <artifactId>UserAgentUtils</artifactId>
- <version>${bitwalker.version}</version>
- </dependency>
- <!-- 获取系统信息 -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- <version>${oshi.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.12.0</version>
- </dependency>
- <dependency>
- <groupId>io.github.yedaxia</groupId>
- <artifactId>japidocs</artifactId>
- <version>${japidocs.version}</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>2.2.3</version>
- </dependency>
- </dependencies>
- </project>
|