pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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>mhfire</artifactId>
  7. <groupId>com.bizmatics</groupId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mhfire-service</artifactId>
  12. <name>mhfire-service</name>
  13. <version>0.0.1</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.commons</groupId>
  17. <artifactId>commons-csv</artifactId>
  18. <version>1.4</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.commons</groupId>
  22. <artifactId>commons-text</artifactId>
  23. <version>1.9</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-cache</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-configuration-processor</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.bizmatics</groupId>
  39. <artifactId>mhfire-mapping</artifactId>
  40. <version>0.0.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>redis.clients</groupId>
  44. <artifactId>jedis</artifactId>
  45. <version>2.9.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-core</artifactId>
  55. <version>3.3.2</version>
  56. </dependency>
  57. <!-- <dependency>-->
  58. <!-- <artifactId>mhfire-provider</artifactId>-->
  59. <!-- <groupId>com.bizmatics</groupId>-->
  60. <!-- <version>0.0.1</version>-->
  61. <!-- </dependency>-->
  62. <dependency>
  63. <groupId>org.bouncycastle</groupId>
  64. <artifactId>bcprov-jdk15on</artifactId>
  65. <version>1.54</version>
  66. </dependency>
  67. <!--MQTT依赖-->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-integration</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.integration</groupId>
  74. <artifactId>spring-integration-mqtt</artifactId>
  75. </dependency>
  76. </dependencies>
  77. </project>