多租户商城-代码生成器
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.

61 lines
2.0 KiB

2 years 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>${projectPrefix}${serviceName}</artifactId>
  7. <groupId>${groupId}</groupId>
  8. <version>${version}</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <#if isChildModule>
  13. <artifactId>${projectPrefix}${childModuleName}-biz</artifactId>
  14. <#else>
  15. <artifactId>${projectPrefix}${serviceName}-biz</artifactId>
  16. </#if>
  17. <name>${r"${"}project.artifactId${r"}"}</name>
  18. <description>${description}-业务模块</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>${groupId}</groupId>
  22. <artifactId>${projectPrefix}${serviceName}-entity</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>${groupId}</groupId>
  26. <artifactId>${projectPrefix}oauth-api</artifactId>
  27. <version>${r"${"}ceres-project.version${r"}"}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.zkthink</groupId>
  31. <artifactId>ceres-databases</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.zkthink</groupId>
  35. <artifactId>ceres-dozer-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.zkthink</groupId>
  39. <artifactId>ceres-j2cache-starter</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.zkthink</groupId>
  43. <artifactId>ceres-boot</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus</artifactId>
  52. </dependency>
  53. </dependencies>
  54. </project>