pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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>merchant_service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>mysql</groupId>
  15. <artifactId>mysql-connector-java</artifactId>
  16. <version>5.1.21</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.bjtdba</groupId>
  20. <artifactId>commons-pojo</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <!-- 用于密码加密 该方法是php内置的一种加密方式 password_hash-->
  24. <dependency>
  25. <groupId>at.favre.lib</groupId>
  26. <artifactId>bcrypt</artifactId>
  27. <version>0.9.0</version>
  28. <scope>compile</scope>
  29. </dependency>
  30. <!-- 引入eureka client -->
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mybatis.spring.boot</groupId>
  41. <artifactId>mybatis-spring-boot-starter</artifactId>
  42. <version>2.2.2</version>
  43. </dependency>
  44. <!--设置日志-->
  45. <dependency>
  46. <groupId>org.apache.logging.log4j</groupId>
  47. <artifactId>log4j-api</artifactId>
  48. <version>2.7</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.logging.log4j</groupId>
  52. <artifactId>log4j-core</artifactId>
  53. <version>2.7</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl -->
  56. <dependency>
  57. <groupId>org.apache.logging.log4j</groupId>
  58. <artifactId>log4j-slf4j-impl</artifactId>
  59. <version>2.7</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.github.pagehelper</groupId>
  64. <artifactId>pagehelper-spring-boot-starter</artifactId>
  65. <version>1.3.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.huifu.adapay</groupId>
  69. <artifactId>adapay-java-sdk</artifactId>
  70. <version>1.2.10</version>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>junit</groupId>
  74. <artifactId>junit</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>2.4</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-fileupload</groupId>
  85. <artifactId>commons-fileupload</artifactId>
  86. <version>1.3.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-web</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-test</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.easemob.im</groupId>
  98. <artifactId>im-sdk-core</artifactId>
  99. <version>0.8.2</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>