123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <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/maven-v4_0_0.xsd">
- <!-- 使父工程继承springboot工程 -->
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.3.4.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.example</groupId>
- <artifactId>cqcy-ei</artifactId>
- <version>1.0-SNAPSHOT</version>
- <!-- 修改父工程的打包方式为pom,子类可继承 -->
- <packaging>pom</packaging>
- <name>cqcy-ei</name>
- <modules>
- <module>cqcy-ei-common</module>
- <module>cqcy-ei-da</module>
- <module>cqcy-ei-ua</module>
- </modules>
- <properties>
- <java-version>1.8</java-version>
- <mybatis-version>2.2.2</mybatis-version>
- <mysql-connector-version>8.0.21</mysql-connector-version>
- <redis-version>2.3.4.RELEASE</redis-version>
- <websocket-version>2.3.4.RELEASE</websocket-version>
- <fastjson-version>1.2.83</fastjson-version>
- <hutool-version>5.5.2</hutool-version>
- <cron-version>9.2.0</cron-version>
- <jwt-version>3.8.2</jwt-version>
- <quartz-version>2.3.2</quartz-version>
- <pool2-version>2.8.1</pool2-version>
- <validation-version>2.0.1.Final</validation-version>
- <bdparsii-version>1.0.0</bdparsii-version>
- <truelicense-version>1.33</truelicense-version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>${mybatis-version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <version>${redis-version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- <version>${websocket-version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson-version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool-version}</version>
- </dependency>
- <dependency>
- <groupId>com.cronutils</groupId>
- <artifactId>cron-utils</artifactId>
- <version>${cron-version}</version>
- </dependency>
- <dependency>
- <groupId>com.auth0</groupId>
- <artifactId>java-jwt</artifactId>
- <version>${jwt-version}</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>${quartz-version}</version>
- </dependency>
- <!--对象池化组件-->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-pool2</artifactId>
- <version>${pool2-version}</version>
- </dependency>
- <!--spring接口接受参数对象,添加校验功能-->
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- <version>${validation-version}</version>
- </dependency>
- <!--数学四则运算依赖 -->
- <dependency>
- <groupId>com.mpobjects</groupId>
- <artifactId>bdparsii</artifactId>
- <version>${bdparsii-version}</version>
- </dependency>
- <!--证书认证-->
- <dependency>
- <groupId>de.schlichtherle.truelicense</groupId>
- <artifactId>truelicense-core</artifactId>
- <version>${truelicense-version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|