pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.platomix</groupId>
  8. <artifactId>platomix-pom</artifactId>
  9. <version>1.0.7</version>
  10. <relativePath />
  11. </parent>
  12. <artifactId>platomix-gmetry-auth</artifactId>
  13. <version>1.0.30</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.platomix</groupId>
  17. <artifactId>platomix-gmetry-message</artifactId>
  18. <version>1.0.4</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-core</artifactId>
  27. <version>5.8.6</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <!-- JustAuth1.9.4版本后,如果需要使用支付宝登录,需要单独引用该依赖 -->
  40. <dependency>
  41. <groupId>com.alipay.sdk</groupId>
  42. <artifactId>alipay-sdk-java</artifactId>
  43. <version>3.7.4.ALL</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>me.zhyd.oauth</groupId>
  47. <artifactId>JustAuth</artifactId>
  48. <version>1.16.4</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.dom4j</groupId>
  52. <artifactId>dom4j</artifactId>
  53. <version>2.1.1</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.binarywang</groupId>
  58. <artifactId>weixin-java-mp</artifactId>
  59. <version>3.4.0</version>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-source-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>