pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.4</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-mall-api</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. </dependency>
  17. <!--weixin-java-common-->
  18. <dependency>
  19. <groupId>com.github.binarywang</groupId>
  20. <artifactId>weixin-java-common</artifactId>
  21. </dependency>
  22. <!--weixin-java-miniapp-->
  23. <dependency>
  24. <groupId>com.github.binarywang</groupId>
  25. <artifactId>weixin-java-miniapp</artifactId>
  26. </dependency>
  27. <!--weixin-java-mp-->
  28. <dependency>
  29. <groupId>com.github.binarywang</groupId>
  30. <artifactId>weixin-java-mp</artifactId>
  31. </dependency>
  32. <!--weixin-java-open-->
  33. <dependency>
  34. <groupId>com.github.binarywang</groupId>
  35. <artifactId>weixin-java-open</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>jeecg-system-biz</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.hutool</groupId>
  43. <artifactId>hutool-all</artifactId>
  44. </dependency>
  45. </dependencies>
  46. </project>