加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.77 KB
一键复制 编辑 原始数据 按行查看 历史
Chen 提交于 2022-04-07 21:43 . Changes
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>2.2.5.RELEASE</version>
</parent>
<groupId>com.sdut.examonline</groupId>
<artifactId>ExamOnline</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<modules>
<module>eo-common</module>
<module>eo-web</module>
<module>eo-gateway</module>
<module>eo-service-user</module>
<module>eo-service-file</module>
<module>eo-service-depart</module>
<module>eo-service-question</module>
<module>eo-service-exam</module>
<module>eo-service-paper</module>
<module>eo-dubbo</module>
<module>eo-service-message</module>
<module>eo-service-log</module>
</modules>
<properties>
<poi-tl.version>1.10.1</poi-tl.version>
<easyexcel.version>3.0.5</easyexcel.version>
<aliyun-sdk-oss.version>3.10.2</aliyun-sdk-oss.version>
<baidu-face-sdk.version>4.16.6</baidu-face-sdk.version>
<zxing.version>3.2.1</zxing.version>
<spring-boot.version>2.2.5.RELEASE</spring-boot.version>
<spring-cloud.version>Hoxton.RELEASE</spring-cloud.version>
<spring-cloud-alibaba.version>2.2.1.RELEASE</spring-cloud-alibaba.version>
<jwt.version>0.9.1</jwt.version>
<dozer.version>6.5.2</dozer.version>
<knife4j.version>1.9.6</knife4j.version>
<swagger.version>2.9.2</swagger.version>
<apache.commons.version>3.12.0</apache.commons.version>
<mysql.version>8.0.25</mysql.version>
<mybatis-plus.version>3.5.1</mybatis-plus.version>
<log4j2.version>2.17.1</log4j2.version>
<lombok.version>1.18.22</lombok.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jwt.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${apache.commons.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化