Files
xqzp2026 22cadc3687 chore: 补充全部后端模块源代码
初始提交时遗漏了后端模块源代码,本次补充:
- App 后台:xiaoqu-complex(1338)、xiaoqu-mall(1170)、xiaoqu-public(147)、elasticsearchpublic(21)
- Web 后台:intellectual-base(55)、intellectual-task-mgmt(54)、intellectual-attendance(33)、intellectual-web、intellectual-task、intellectual-public

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-21 17:36:28 +09:30

98 lines
2.7 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>xiaoqu.home.open</groupId>
<artifactId>xiaoqu-intellectual</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>xiaoqu-intellectual-task-mgmt</artifactId>
<packaging>jar</packaging>
<name>xiaoqu-intellectual-task-mgmt</name>
<description>任务调度管理模块(计划、任务、巡检、参数配置、用户上报、工资)</description>
<dependencies>
<dependency>
<groupId>xiaoqu.home.open</groupId>
<artifactId>xiaoqu-intellectual-public</artifactId>
</dependency>
<!-- Spring Boot Web (provided) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Servlet API (provided) -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- Redis (provided) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Swagger -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<scope>provided</scope>
</dependency>
<!-- MyBatis-Plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<scope>provided</scope>
</dependency>
<!-- XXL-Job -->
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
<scope>provided</scope>
</dependency>
<!-- EasyPOI -->
<dependency>
<groupId>cn.afterturn</groupId>
<artifactId>easypoi-base</artifactId>
<scope>provided</scope>
</dependency>
<!-- POI -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>