# Conflicts: # .gitignore # .idea/CopilotChatHistory.xml # .idea/compiler.xml # .idea/encodings.xml # .idea/inspectionProfiles/Project_Default.xml # .idea/jarRepositories.xml # .idea/misc.xml # dependencies/pom.xml # framework/spring-boot-starter-biz-tenant/src/main/java/cd/casic/framework/tenant/core/mq/rocketmq/TenantRocketMQConsumeMessageHook.java # framework/spring-boot-starter-biz-tenant/src/main/java/cd/casic/framework/tenant/core/mq/rocketmq/TenantRocketMQSendMessageHook.java # modules/module-ci-commons/pom.xml # modules/module-ci-commons/src/main/java/cd/casic/ci/commons/work/package-info.java # modules/module-ci-engine/pom.xml # modules/module-ci-execute/pom.xml # modules/module-ci-market/pom.xml # modules/module-ci-plugin/pom.xml # modules/module-ci-process-api/pom.xml # modules/module-ci-process-biz/src/main/java/cd/casic/module/process/convert/package-info.java # modules/module-ci-process-biz/src/main/java/cd/casic/module/process/toolkit/beans/model/FieldMapping.java # modules/module-ci-repository/pom.xml # modules/pom.xml # ops-server/pom.xml # ops-server/src/main/java/cd/casic/server/OpsServerApplication.java
103 lines
3.5 KiB
XML
103 lines
3.5 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>
|
|
<artifactId>framework</artifactId>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
<version>${revision}</version>
|
|
<name>${project.artifactId}</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>commons</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring 核心 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Web 相关 -->
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!-- spring boot 配置所需依赖 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-oauth2-client</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.security</groupId>
|
|
<artifactId>spring-security-oauth2-resource-server</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!-- 工具类相关 -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<!-- Spring Boot 通用操作日志组件,基于注解实现 -->
|
|
<!-- 此组件解决的问题是:「谁」在「什么时间」对「什么」做了「什么事」 -->
|
|
<groupId>io.github.mouzt</groupId>
|
|
<artifactId>bizlog-sdk</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 业务组件 -->
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>module-system-api</artifactId> <!-- 需要使用它,进行 Token 的校验 -->
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<!-- Test 测试相关 -->
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-extension</artifactId>
|
|
<version>3.5.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cd.casic.boot</groupId>
|
|
<artifactId>spring-boot-starter-excel</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|