公众号后台的api接口
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.

46 lines
1.7 KiB

1 year ago
  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>han-hai-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-boot-module-demo</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. </dependency>
  17. <!-- <dependency>-->
  18. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  19. <!-- <artifactId>jeecg-boot-starter-cloud</artifactId>-->
  20. <!-- </dependency>-->
  21. <!-- <dependency>-->
  22. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  23. <!-- <artifactId>jeecg-boot-starter-job</artifactId>-->
  24. <!-- </dependency>-->
  25. </dependencies>
  26. <profiles>
  27. <profile>
  28. <id>SpringCloud</id>
  29. <!-- 引入微服务启动 Starter依赖 -->
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.jeecgframework.boot</groupId>
  33. <artifactId>jeecg-boot-starter-cloud</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jeecgframework.boot</groupId>
  37. <artifactId>jeecg-boot-starter-job</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </profile>
  41. </profiles>
  42. </project>