44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.dromara.dynamictp</groupId>
|
|
<artifactId>dynamic-tp-all</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>dynamic-tp-example</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>example-nacos</module>
|
|
<module>example-nacos-cloud</module>
|
|
<module>example-apollo</module>
|
|
<module>example-zookeeper</module>
|
|
<module>example-zookeeper-cloud</module>
|
|
<module>example-consul-cloud</module>
|
|
<module>example-etcd</module>
|
|
<module>example-adapter</module>
|
|
<module>example-polaris-cloud</module>
|
|
<module>example-huawei-cloud</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|