feat: 添加MySQL驱动依赖支持Spring Batch功能 添加了MySQL连接器依赖以支持Spring Batch数据源兼容性,同时排除了Quartz自动配置避免定时任务冲突。```
85 lines
2.9 KiB
XML
85 lines
2.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>com.renkang</groupId>
|
|
<artifactId>health-watch</artifactId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>health-watch-biz</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>health-watch-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>health-emergency-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>jeecg-system-cloud-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>renkang-starter-batch</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>data-center-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>jeecg-boot-starter-job</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>renkang-starter-aspose-word</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>easyexcel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.renkang</groupId>
|
|
<artifactId>font-resources</artifactId>
|
|
</dependency>
|
|
<!-- MySQL 驱动 (用于 Spring Batch 数据源兼容) -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>${maven-source-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|