pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <groupId>io.seata</groupId>
  59. <artifactId>seata-spring-boot-starter</artifactId>
  60. <version>1.4.2</version>
  61. <!-- <exclusions>-->
  62. <!-- <exclusion>-->
  63. <!-- <artifactId>guava</artifactId>-->
  64. <!-- <groupId>com.google.guava</groupId>-->
  65. <!-- </exclusion>-->
  66. <!-- <exclusion>-->
  67. <!-- <artifactId>druid</artifactId>-->
  68. <!-- <groupId>com.alibaba</groupId>-->
  69. <!-- </exclusion>-->
  70. <!-- </exclusions>-->
  71. </dependency>
  72. </dependencies>
  73. </project>