coder-thin-template-backend/coder-thin-template-web/pom.xml
Leo 9bff768648 feat: 全新的coder-thin-template企业级开发框架
- 新增coder-thin-template-common通用工具模块
- 新增coder-thin-template-model数据模型模块
- 新增coder-thin-template-modules业务模块容器
- 新增coder-thin-template-mybatisplus数据访问层
- 新增coder-thin-template-plugins插件化架构
- 新增coder-thin-template-web启动模块
- 完整的插件化企业级开发脚手架
- 支持Sa-Token鉴权、Excel处理、限流、防重提交等丰富功能
2025-10-17 11:08:22 +08:00

111 lines
4.0 KiB
XML

<?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.leocoder.template</groupId>
<artifactId>coder-thin-template-backend</artifactId>
<version>${revision}</version>
</parent>
<name>coder-thin-template-web</name>
<artifactId>coder-thin-template-web</artifactId>
<description>入口项目,负责打包</description>
<dependencies>
<!-- SpringBoot Web容器 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Sa-Token模块和系统管理模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-system</artifactId>
<version>${revision}</version>
</dependency>
<!-- 前台业务模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-portal</artifactId>
<version>${revision}</version>
</dependency>
<!-- SpringDoc OpenAPI 3.0 -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
<!-- OSS对象存储模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-oss</artifactId>
<version>${revision}</version>
</dependency>
<!-- 字典管理模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-dict</artifactId>
<version>${revision}</version>
</dependency>
<!-- 定时任务 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-job</artifactId>
<version>${revision}</version>
</dependency>
<!-- 代码生成器 -->
<!-- <dependency> -->
<!-- <groupId>org.leocoder.template</groupId> -->
<!-- <artifactId>coder-thin-template-generator</artifactId> -->
<!-- <version>${revision}</version> -->
<!-- </dependency> -->
<!-- 监控模块 -->
<dependency>
<groupId>org.leocoder.template</groupId>
<artifactId>coder-thin-template-monitor</artifactId>
<version>${revision}</version>
</dependency>
<!-- 热榜API模块 -->
<!-- <dependency> -->
<!-- <groupId>org.leocoder.template</groupId> -->
<!-- <artifactId>coder-hotlist-api</artifactId> -->
<!-- <version>${revision}</version> -->
<!-- </dependency> -->
</dependencies>
<build>
<!-- 指定打包名字 -->
<finalName>coder-admin</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springboot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
</build>
</project>