铝锭交易小程序后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.5 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>han-hai-parent</artifactId>
  7. <version>3.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>https://maven.aliyun.com/repository/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <!-- 企业微信/钉钉 api -->
  35. <dependency>
  36. <groupId>org.jeecgframework</groupId>
  37. <artifactId>jeewx-api</artifactId>
  38. </dependency>
  39. <!-- 积木报表 -->
  40. <dependency>
  41. <groupId>org.jeecgframework.jimureport</groupId>
  42. <artifactId>jimureport-spring-boot-starter</artifactId>
  43. <version>1.5.0-beta</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. <version>4.5.13</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.liyiorg</groupId>
  52. <artifactId>weixin-popular</artifactId>
  53. <version>2.8.17</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-openfeign-core</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. <version>1.18.24</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.jeecgframework.boot</groupId>
  66. <artifactId>han-hai-module-pay</artifactId>
  67. <version>3.2.0</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. <configuration>
  77. <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  78. <skip>${skip.springboot.maven}</skip>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. </project>