You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
36 lines
1.3 KiB
<?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>blade-example-api</artifactId> |
|
<groupId>org.springblade</groupId> |
|
<version>2.6.0.RELEASE</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blade-dubbo-provider-api</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.apache.dubbo</groupId> |
|
<artifactId>dubbo</artifactId> |
|
<version>${dubbo.version}</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.dubbo</groupId> |
|
<artifactId>dubbo-registry-nacos</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>com.alibaba.nacos</groupId> |
|
<artifactId>nacos-client</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
<version>${dubbo.version}</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
</project>
|
|
|