| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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>wuye-permissions</artifactId>
- <groupId>com.cyzh</groupId>
- <version>1.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>wuye-permissions-api</artifactId>
- <packaging>jar</packaging>
- <description>权限接口模块</description>
- <dependencies>
- <!-- ===================================== Modular JAR ===================================== -->
- <dependency>
- <groupId>com.cyzh</groupId>
- <artifactId>wuye-common-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- ===================================== Or JAR ===================================== -->
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.4.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>me.zhyd.oauth</groupId>
- <artifactId>JustAuth</artifactId>
- <version>1.16.5</version>
- </dependency>
- </dependencies>
- </project>
|