Java后端V1.0

This commit is contained in:
2025-07-16 15:39:16 +08:00
commit 724747d43b
2036 changed files with 244190 additions and 0 deletions

72
srs-quartz/pom.xml Normal file
View File

@@ -0,0 +1,72 @@
<?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">
<parent>
<artifactId>srs</artifactId>
<groupId>com.srs</groupId>
<version>3.8.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>srs-quartz</artifactId>
<description>
quartz定时任务
</description>
<dependencies>
<!-- 定时任务 -->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<exclusions>
<exclusion>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-common</artifactId>
</dependency>
<!--宿舍管理模块-->
<dependency>
<groupId>com.srs.dormitory</groupId>
<artifactId>dms-dormitory</artifactId>
<version>3.8.5</version>
</dependency>
<!--综合管理模块-->
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-comprehensive</artifactId>
<version>3.8.5</version>
</dependency>
<!--新生报到模块模块-->
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-stureg</artifactId>
<version>3.8.5</version>
</dependency>
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-routine</artifactId>
<version>3.8.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.srs</groupId>
<artifactId>srs-staff</artifactId>
</dependency>
</dependencies>
</project>