1 Star 0 Fork 3

Jacky.wang12138/WitBoot

forked from sunxiaozhi/WitBoot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 7.19 KB
一键复制 编辑 原始数据 按行查看 历史
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.6</version>
</parent>
<groupId>com.witboot</groupId>
<artifactId>witboot</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<name>WitBoot</name>
<description>WitBoot</description>
<properties>
<java.version>17</java.version>
<spring-boot.version>3.0.6</spring-boot.version>
<arthas.version>3.4.8</arthas.version>
<common-io.version>2.7</common-io.version>
<druid.version>1.2.18</druid.version>
<pagehelper.version>1.4.7</pagehelper.version>
<mybatis.version>3.0.0</mybatis.version>
<cola.components.version>4.0.0</cola.components.version>
<validation-api.version>2.0.0.Final</validation-api.version>
<hibernate-validator.version>6.1.6.Final</hibernate-validator.version>
<jjwt-api.version>0.11.5</jjwt-api.version>
<knife4j-openapi3-jakarta-spring-boot-starter.version>4.0.0</knife4j-openapi3-jakarta-spring-boot-starter.version>
<hutool.version>5.8.26</hutool.version>
</properties>
<modules>
<module>witboot-start</module>
<module>witboot-client</module>
<module>witboot-domain</module>
<module>witboot-app</module>
<module>witboot-adapter</module>
<module>witboot-infrastructure</module>
</modules>
<dependencyManagement>
<dependencies>
<!--COLA Components-->
<dependency>
<groupId>com.alibaba.cola</groupId>
<artifactId>cola-component-domain-starter</artifactId>
<version>${cola.components.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.cola</groupId>
<artifactId>cola-component-exception</artifactId>
<version>${cola.components.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.cola</groupId>
<artifactId>cola-component-dto</artifactId>
<version>${cola.components.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba.cola</groupId>
<artifactId>cola-component-catchlog-starter</artifactId>
<version>${cola.components.version}</version>
</dependency>
<!--COLA Components End-->
<dependency>
<groupId>com.taobao.arthas</groupId>
<artifactId>arthas-spring-boot-starter</artifactId>
<version>${arthas.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${common-io.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>com.witboot</groupId>
<artifactId>witboot-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.witboot</groupId>
<artifactId>witboot-app</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.witboot</groupId>
<artifactId>witboot-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.witboot</groupId>
<artifactId>witboot-domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.witboot</groupId>
<artifactId>witboot-infrastructure</artifactId>
<version>${project.version}</version>
</dependency>
<!--Validation API-->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${validation-api.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>
<!--Validation API End -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>${jjwt-api.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>${jjwt-api.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${jjwt-api.version}</version>
</dependency>
<!-- API文档-swagger -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
<version>${knife4j-openapi3-jakarta-spring-boot-starter.version}</version>
<type>pom</type>
</dependency>
<!-- API文档-swagger -->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jackywang12138/WitBoot.git
git@gitee.com:jackywang12138/WitBoot.git
jackywang12138
WitBoot
WitBoot
main

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385