pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.github.zuihou</groupId>
  7. <artifactId>imcs-admin-boot</artifactId>
  8. <version>b.2.5-SNAPSHOT</version>
  9. <relativePath>../</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>imcs-tenant-entity</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>租户实体模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.github.zuihou</groupId>
  18. <artifactId>imcs-common</artifactId>
  19. <version>${imcs-project.version}</version>
  20. </dependency>
  21. <!-- databases 只有权限服务需要引用, 其他服务放在server模块 -->
  22. <!-- <dependency>-->
  23. <!-- <groupId>com.github.zuihou</groupId>-->
  24. <!-- <artifactId>zuihou-databases</artifactId>-->
  25. <!-- <optional>true</optional>-->
  26. <!-- <scope>compile</scope>-->
  27. <!-- </dependency>-->
  28. <dependency>
  29. <groupId>com.github.zuihou</groupId>
  30. <artifactId>zuihou-injection-starter</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.baomidou</groupId>
  34. <artifactId>mybatis-plus-annotation</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.afterturn</groupId>
  38. <artifactId>easypoi-annotation</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.afterturn</groupId>
  42. <artifactId>easypoi-base</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.zuihou</groupId>
  46. <artifactId>zuihou-databases</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.zuihou</groupId>
  50. <artifactId>zuihou-databases</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.zuihou</groupId>
  54. <artifactId>zuihou-databases</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.zuihou</groupId>
  58. <artifactId>imcs-authority-entity</artifactId>
  59. <version>b.2.5-SNAPSHOT</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>