| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-plugin</artifactId>
- <version>1.37.0</version>
- </parent>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-dubbo3</artifactId>
- <version>1.37.0</version>
- <name>sa-token-dubbo3</name>
- <description>sa-token-dubbo3</description>
- <licenses>
- <license>
- <name>Apache 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
- <distribution>repo</distribution>
- <comments>A business-friendly OSS license</comments>
- </license>
- </licenses>
- <properties>
- <maven.compiler.target>8</maven.compiler.target>
- <maven.compiler.source>8</maven.compiler.source>
- <dubbo3.version>3.2.2</dubbo3.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.dubbo</groupId>
- <artifactId>dubbo</artifactId>
- <version>${dubbo3.version}</version>
- </dependency>
- </dependencies>
- </project>
|