| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | <?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>shenyu-plugin-security</artifactId>        <groupId>org.apache.shenyu</groupId>        <version>2.6.0-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>shenyu-plugin-maxkey</artifactId>    <dependencies>        <dependency>            <groupId>org.apache.shenyu</groupId>            <artifactId>shenyu-plugin-base</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>org.apache.oltu.oauth2</groupId>            <artifactId>org.apache.oltu.oauth2.client</artifactId>            <version>1.0.2</version>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-all</artifactId>            <version>5.8.16</version>        </dependency>        <!-- Spring Security Test -->        <dependency>            <groupId>org.springframework.security</groupId>            <artifactId>spring-security-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>io.projectreactor</groupId>            <artifactId>reactor-test</artifactId>            <scope>test</scope>        </dependency>    </dependencies></project>
 |