167 Star 1.4K Fork 467

entfrm / entfrm-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.26 KB
一键复制 编辑 原始数据 按行查看 历史
Retire 提交于 2024-01-30 10:55 . 升级 mybatis版本依赖
<?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.entfrm</groupId>
<artifactId>entfrm-boot</artifactId>
<packaging>pom</packaging>
<version>3.0.0</version>
<modules>
<module>entfrm-core</module>
<module>entfrm-biz</module>
<module>entfrm-web</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<java.version>8</java.version>
<spring-boot.version>2.5.8</spring-boot.version>
<mybatis-plus.version>3.5.5</mybatis-plus.version>
<dynamic-ds.version>3.5.2</dynamic-ds.version>
<sa-token.version>1.28.0</sa-token.version>
<hutool.version>5.7.18</hutool.version>
<poi.version>4.1.2</poi.version>
<druid.version>1.2.8</druid.version>
<oshi.version>5.3.6</oshi.version>
<easypoi.version>4.3.0</easypoi.version>
<ip2region.version>1.7.2</ip2region.version>
<velocity.version>1.7</velocity.version>
<knife4j.version>3.0.3</knife4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
<exclusions>
<!--排除tomcat依赖-->
<exclusion>
<artifactId>spring-boot-starter-tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<!--阿里云-->
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<target>${maven.compiler.target}</target>
<source>${maven.compiler.source}</source>
<encoding>UTF-8</encoding>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/entfrm/entfrm-boot.git
git@gitee.com:entfrm/entfrm-boot.git
entfrm
entfrm-boot
entfrm-boot
master

搜索帮助