2024-01-29 14:34:38 +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">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>postdischarge</artifactId>
|
|
|
|
|
<groupId>com.xinelu</groupId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>postdischarge-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.xinelu</groupId>
|
|
|
|
|
<artifactId>postdischarge-common</artifactId>
|
|
|
|
|
</dependency>
|
2024-05-24 17:50:23 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xinelu</groupId>
|
|
|
|
|
<artifactId>postdischarge-manage</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.xinelu</groupId>
|
|
|
|
|
<artifactId>postdischarge-mobile</artifactId>
|
|
|
|
|
</dependency>
|
2026-03-20 10:29:48 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
|
|
|
<artifactId>ojdbc8</artifactId>
|
|
|
|
|
<version>19.8.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.database.nls</groupId>
|
|
|
|
|
<artifactId>orai18n</artifactId>
|
|
|
|
|
<version>19.8.0.0</version> <!-- 版本必须与 ojdbc8 一致 -->
|
|
|
|
|
</dependency>
|
2024-01-29 14:34:38 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2026-03-20 10:29:48 +08:00
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>maven.oracle.com</id>
|
|
|
|
|
<name>Oracle Maven Repository</name>
|
|
|
|
|
<url>https://maven.oracle.com</url>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
2024-01-29 14:34:38 +08:00
|
|
|
</project>
|