pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>bjtdba_service</artifactId>
  7. <groupId>com.bjtdba</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>order_service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.bjtdba</groupId>
  15. <artifactId>commons-pojo</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. <version>5.1.21</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mybatis.spring.boot</groupId>
  29. <artifactId>mybatis-spring-boot-starter</artifactId>
  30. <version>2.2.2</version>
  31. </dependency>
  32. <!-- 引入eureka client -->
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  36. </dependency>
  37. <!-- httpclient -->
  38. <dependency>
  39. <groupId>commons-httpclient</groupId>
  40. <artifactId>commons-httpclient</artifactId>
  41. <version>3.1</version>
  42. </dependency>
  43. <!-- httpclient -->
  44. <!--用于分页的插件-->
  45. <dependency>
  46. <groupId>com.github.pagehelper</groupId>
  47. <artifactId>pagehelper-spring-boot-starter</artifactId>
  48. <version>1.3.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. <version>3.8.0</version>
  54. </dependency>
  55. <!--设置日志-->
  56. <dependency>
  57. <groupId>org.apache.logging.log4j</groupId>
  58. <artifactId>log4j-api</artifactId>
  59. <version>2.7</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.logging.log4j</groupId>
  63. <artifactId>log4j-core</artifactId>
  64. <version>2.7</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl -->
  67. <dependency>
  68. <groupId>org.apache.logging.log4j</groupId>
  69. <artifactId>log4j-slf4j-impl</artifactId>
  70. <version>2.7</version>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.data</groupId>
  75. <artifactId>spring-data-redis</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-codec</groupId>
  79. <artifactId>commons-codec</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-lang3</artifactId>
  84. <version>3.6</version>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>