珠宝小程序后端代码
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.

100 lines
2.7 KiB

2 months ago
2 months ago
  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>jewelry-admin</artifactId>
  7. <version>3.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>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>module-pay</artifactId>
  67. <version>3.2.0</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <!-- lzx:公共模块 使用必加-->
  71. <dependency>
  72. <groupId>org.jeecgframework.boot</groupId>
  73. <artifactId>module-common</artifactId>
  74. <version>${jeecgboot.version}</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. <configuration>
  83. <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  84. <skip>${skip.springboot.maven}</skip>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>