| 12345678910111213141516171819202122232425262728293031323334 |
- <?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>jnpf-common</artifactId>
- <groupId>com.jnpf</groupId>
- <version>6.0.0-RELEASE</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>jnpf-cloud-common</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>jnpf-common-dubbo</module>
- <module>jnpf-common-feign</module>
- <module>jnpf-common-seata</module>
- <module>jnpf-common-cloudshardingsphere</module>
- <module>jnpf-common-mq</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <!--<dependency>
- <groupId>com.jnpf</groupId>
- <artifactId>jnpf-boot-common</artifactId>
- <type>pom</type>
- <scope>import</scope>
- </dependency>-->
- </dependencies>
- </dependencyManagement>
- </project>
|