pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation = "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>qiyewechat_parent</artifactId>
  6. <groupId>com.github.binarywang</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <relativePath>../qiyewechat_parent/pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.liangjian11.ymall</groupId>
  12. <artifactId>ymall</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>ymall</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <weixin-java-mp.version>3.7.0</weixin-java-mp.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.github.binarywang</groupId>
  23. <artifactId>weixin-java-mp</artifactId>
  24. <version>${weixin-java-mp.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>com.fasterxml.jackson.core</groupId>
  36. <artifactId>jackson-databind</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <!-- pgsql -->
  55. <dependency>
  56. <groupId>org.postgresql</groupId>
  57. <artifactId>postgresql</artifactId>
  58. <version>42.2.14</version>
  59. </dependency>
  60. <!-- Mybatis-plus -->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>3.0.5</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>druid-spring-boot-starter</artifactId>
  69. <version>1.1.10</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.baomidou</groupId>
  73. <artifactId>mybatis-plus-support</artifactId>
  74. <version>2.1.9</version>
  75. </dependency>
  76. <!-- 工具 -->
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. <version>1.2.68</version>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.hprose/hprose-java -->
  83. <dependency>
  84. <groupId>org.hprose</groupId>
  85. <artifactId>hprose-java</artifactId>
  86. <version>2.0.38</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.junit.jupiter</groupId>
  90. <artifactId>junit-jupiter</artifactId>
  91. <version>RELEASE</version>
  92. <scope>compile</scope>
  93. </dependency>
  94. </dependencies>
  95. </project>