pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>prod-line</artifactId>
  7. <groupId>com.huaxia</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>prod-line-imes</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.huaxia</groupId>
  15. <artifactId>prod-line-comm</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. <scope>compile</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>cmpt</groupId>
  21. <artifactId>cmpt-msg</artifactId>
  22. <version>1.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-tx</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.ruoyi</groupId>
  30. <artifactId>ruoyi-system</artifactId>
  31. <version>${ruoyi.version}</version>
  32. <scope>compile</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.eclipse.paho</groupId>
  36. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  37. <version>1.2.2</version>
  38. </dependency>
  39. </dependencies>
  40. <repositories>
  41. <repository>
  42. <id>Eclipse Paho Repository</id>
  43. <url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
  44. </repository>
  45. </repositories>
  46. </project>