rax-remote-2/codegen/pom.xml

103 lines
2.7 KiB
XML
Raw Normal View History

2024-01-31 16:31:50 +08:00
<?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>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>rax</artifactId>
2024-01-31 16:31:50 +08:00
<version>3.7.3</version>
</parent>
2024-02-21 11:47:40 +08:00
<artifactId>codegen</artifactId>
2024-01-31 16:31:50 +08:00
<packaging>jar</packaging>
<description>代码生成模块</description>
<dependencies>
<!--接口文档-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-swagger</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<!--断路器依赖-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-feign</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<!--数据源-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-datasource</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!--common-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-json</artifactId>
</dependency>
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-core</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${configuration.version}</version>
</dependency>
<!--日志处理-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-log</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<!--安全模块-->
<dependency>
2024-02-21 11:47:40 +08:00
<groupId>com.rax</groupId>
<artifactId>common-security</artifactId>
2024-01-31 16:31:50 +08:00
</dependency>
<!--代码生成模板引擎-->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>${velocity.version}</version>
</dependency>
<dependency>
<groupId>org.apache.velocity.tools</groupId>
<artifactId>velocity-tools-generic</artifactId>
<version>${velocity.tool.version}</version>
</dependency>
<!--生成文档-->
<dependency>
<groupId>io.springboot.plugin</groupId>
<artifactId>screw-spring-boot-starter</artifactId>
<version>${screw.version}</version>
</dependency>
<!--undertow容器-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>