Files
continew-admin/continew-extension/continew-extension-schedule-server/pom.xml
Charles7c c1a0eb165f build: continew-starter 2.14.0 => 2.15.0
1.适配 cs Knife4j 替换为 NextDoc4j 1.1.5
2.适配 cs continew-starter-auth-justauth
3.cs DataPermission 注解增加缓存处理,缓存 Mapper 接口方法上携带 DataPermission 的值
4.cs 修复开启 SSL 后,mail.host 不被 JDK 信任的问题
5.cs EnumValue 比较枚举值时,不再区分大小写
6.cs 依赖全面升级 spring-boot 3.3.12 => 3.4.10,snail-job 1.5.0 => 1.8.0
2025-12-28 22:40:45 +08:00

55 lines
1.9 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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>top.continew.admin</groupId>
<artifactId>continew-extension</artifactId>
<version>${revision}</version>
</parent>
<artifactId>continew-extension-schedule-server</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>任务调度服务端</description>
<properties>
<!-- SnailJob 服务端 -->
<snail-job.version>1.8.0</snail-job.version>
</properties>
<dependencies>
<!-- SnailJob灵活可靠和快速的分布式任务重试和分布式任务调度平台 -->
<dependency>
<groupId>com.aizuda</groupId>
<artifactId>snail-job-server-starter</artifactId>
<version>${snail-job.version}</version>
</dependency>
<!-- Liquibase用于管理数据库版本跟踪、管理和应用数据库变化 -->
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
</dependencies>
<build>
<!-- 设置构建的 jar 包名 -->
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>