1 Star 41 Fork 0

zhangxingjia / yiyi-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.73 KB
一键复制 编辑 原始数据 按行查看 历史
zhangxingjia 提交于 2024-03-16 18:53 . OkHttp支持自定义重试策略
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yiyi</groupId>
<artifactId>yiyi-boot</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<modules>
<module>yiyi-dependencies</module>
<module>yiyi-framework</module>
<module>yiyi-module-system</module>
<module>yiyi-server</module>
<module>yiyi-test</module>
<module>yiyi-module-job</module>
</modules>
<name>yiyi-boot</name>
<description>YIYI-BOOT快速开发,提供项目基本配置</description>
<url>https://gitee.com/zxjos</url>
<properties>
<revision>1.1.0</revision>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven-surefire-plugin.version>2.20</maven-surefire-plugin.version>
<!-- 如果 spring.boot.version 版本修改,则这里也要跟着修改 -->
<spring-boot-maven-plugin.version>2.7.18</spring-boot-maven-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.yiyi</groupId>
<artifactId>yiyi-dependencies</artifactId>
<version>${revision}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>aliyunmaven</id>
<name>aliyun</name>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
</repositories>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zxjos/yiyi-boot.git
git@gitee.com:zxjos/yiyi-boot.git
zxjos
yiyi-boot
yiyi-boot
master

搜索帮助