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.
75 lines
2.7 KiB
75 lines
2.7 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</artifactId> |
|
<groupId>org.springblade</groupId> |
|
<version>2.3.0.RELEASE</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>blade-dubbo-consumer</artifactId> |
|
<name>${project.artifactId}</name> |
|
<version>${bladex.project.version}</version> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-core-boot</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-starter-swagger</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springblade</groupId> |
|
<artifactId>blade-dubbo-provider-api</artifactId> |
|
<version>${bladex.project.version}</version> |
|
</dependency> |
|
<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> |
|
|
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-antrun-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>run</goal> |
|
</goals> |
|
<configuration> |
|
<tasks> |
|
<!--suppress UnresolvedMavenProperty --> |
|
<copy overwrite="true" |
|
tofile="${session.executionRootDirectory}/target/${project.artifactId}.jar" |
|
file="${project.build.directory}/${project.artifactId}.jar" /> |
|
</tasks> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
</project>
|
|
|