| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.hotent</groupId>
- <artifactId>eip</artifactId>
- <version>8.0.6</version>
- </parent>
- <artifactId>activemq</artifactId>
- <name>activemq</name>
- <description>Active MQ</description>
- <dependencies>
- <!-- activemq -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-activemq</artifactId>
- </dependency>
- <!-- 使用springboot2.1+时候,maven配置依赖是 -->
- <dependency>
- <groupId>org.messaginghub</groupId>
- <artifactId>pooled-jms</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-broker</artifactId>
- <exclusions>
- <exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <!-- Spring boot 测试 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!--base -->
- <dependency>
- <groupId>com.hotent</groupId>
- <artifactId>base</artifactId>
- <version>${parent.version}</version>
- </dependency>
- </dependencies>
- </project>
|