pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.message</groupId>
  6. <artifactId>ibps-message-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-message-consumer-rabbit</artifactId>
  12. <properties>
  13. <spring-rabbit.version>2.0.5.RELEASE</spring-rabbit.version>
  14. <spring-retry.version>1.2.2.RELEASE</spring-retry.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.lc.ibps.message</groupId>
  19. <artifactId>ibps-message-consumer-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-amqp</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-all</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.slf4j</groupId>
  31. <artifactId>slf4j-api</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.3</version>
  40. <configuration>
  41. <source>1.8</source>
  42. <target>1.8</target>
  43. <encoding>UTF-8</encoding>
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>