12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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">
- <packaging>jar</packaging>
- <parent>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-parent</artifactId>
- <version>2.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.fdkankan</groupId>
- <artifactId>4dkankan-common-mq</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.google.protobuf</groupId>
- <artifactId>protobuf-java</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.rocketmq</groupId>
- <artifactId>rocketmq-common</artifactId>
- <version>3.6.2.Final</version>
- </dependency>
- <dependency>
- <groupId>org.apache.rocketmq</groupId>
- <artifactId>rocketmq-client</artifactId>
- <version>4.5.1</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- <distributionManagement>
- <repository>
- <!-- 这里的ID要和setting的id一致 -->
- <id>releases</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/releases/</url>
- </repository>
- <!--这是打成快照版本的配置 -->
- <snapshotRepository>
- <id>snapshots</id>
- <url>http://192.168.0.115:8081/nexus-2.14.2-01/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- </project>
|