.flattened-pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-message-bus</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-message-rocketmq</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-autoconfigure</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.rocketmq</groupId>
  20. <artifactId>rocketmq-client</artifactId>
  21. <version>4.9.4</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.iotkit</groupId>
  25. <artifactId>iot-common-model</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cc.iotkit</groupId>
  29. <artifactId>iot-message-core</artifactId>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <artifactId>maven-compiler-plugin</artifactId>
  36. <configuration>
  37. <source>${java.version}</source>
  38. <target>${java.version}</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>