pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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>sc-visual</artifactId>
  7. <groupId>com.nantian.cloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sc-pay</artifactId>
  12. <packaging>jar</packaging>
  13. <description>支付系统</description>
  14. <dependencies>
  15. <!--注册中心客户端-->
  16. <dependency>
  17. <groupId>com.alibaba.cloud</groupId>
  18. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  19. </dependency>
  20. <!--配置中心客户端-->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  24. </dependency>
  25. <!--mybatis-->
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. </dependency>
  34. <!-- druid 连接池 -->
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>druid-spring-boot-starter</artifactId>
  38. </dependency>
  39. <!--common-->
  40. <dependency>
  41. <groupId>com.nantian.cloud</groupId>
  42. <artifactId>sc-common-data</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.nantian.cloud</groupId>
  46. <artifactId>sc-common-sequence</artifactId>
  47. </dependency>
  48. <!--feign 接口-->
  49. <dependency>
  50. <groupId>com.nantian.cloud</groupId>
  51. <artifactId>sc-upms-api</artifactId>
  52. </dependency>
  53. <!--swagger-->
  54. <dependency>
  55. <groupId>com.nantian.cloud</groupId>
  56. <artifactId>sc-common-swagger</artifactId>
  57. </dependency>
  58. <!--安全模块-->
  59. <dependency>
  60. <groupId>com.nantian.cloud</groupId>
  61. <artifactId>sc-common-security</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.nantian.cloud</groupId>
  65. <artifactId>sc-common-log</artifactId>
  66. </dependency>
  67. <!-- 支付依赖-->
  68. <dependency>
  69. <groupId>com.github.javen205</groupId>
  70. <artifactId>IJPay</artifactId>
  71. <version>1.2.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alipay.sdk</groupId>
  75. <artifactId>alipay-sdk-java</artifactId>
  76. <version>3.0.52.ALL</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.github.binarywang</groupId>
  80. <artifactId>weixin-java-mp</artifactId>
  81. </dependency>
  82. <!--web 模块-->
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter-web</artifactId>
  86. </dependency>
  87. <!--undertow容器-->
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-undertow</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-freemarker</artifactId>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. <plugin>
  104. <groupId>com.spotify</groupId>
  105. <artifactId>docker-maven-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>