1 Star 1 Fork 0

GCC1566/components

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.22 KB
一键复制 编辑 原始数据 按行查看 历史
吃西红柿的猫 提交于 2024-11-18 20:52 . 调整定时任务
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.6.RELEASE</version>
<relativePath/>
</parent>
<groupId>com.gcc.container</groupId>
<artifactId>components</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>rest-component</module>
<module>redis-component</module>
<module>initdatabse-component</module>
<module>es-component</module>
<module>task-component</module>
</modules>
<properties>
<!-- 组件包整体版本号 -->
<component.version>1.0.0</component.version>
<!-- 通用组件版本号 -->
<hutool.version>5.7.8</hutool.version>
<slf4j.version>1.7.30</slf4j.version>
<!-- 依赖管理版本号 -->
<swagger.version>3.0.0</swagger.version>
<knife4j.version>3.0.3</knife4j.version>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- 公共依赖 -->
<dependencies>
<!-- Spring 基础 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!-- hutool工具 -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gcc1566/components.git
git@gitee.com:gcc1566/components.git
gcc1566
components
components
master

搜索帮助