Files
authorization_code_server/storm-plugin/storm-plugin-cdk/pom.xml
2025-09-30 14:05:28 +08:00

47 lines
1.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin</artifactId>
<version>3.0.0</version>
</parent>
<artifactId>storm-plugin-cdk</artifactId>
<packaging>jar</packaging>
<description>cdk模块</description>
<dependencies>
<dependency>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin-cdk-api</artifactId>
</dependency>
<dependency>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin-inter-api</artifactId>
</dependency>
<!-- 引入登录鉴权接口,用于获取登录用户 -->
<dependency>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin-auth-api</artifactId>
</dependency>
<!-- 引入系统接口,用于授权角色等功能 -->
<dependency>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin-sys-api</artifactId>
</dependency>
<!-- 引入开发工具接口,用于配置信息 -->
<dependency>
<groupId>vip.storm</groupId>
<artifactId>storm-plugin-dev-api</artifactId>
</dependency>
</dependencies>
</project>