pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-authority-entity</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>权限服务实体模块</description>
  15. <properties>
  16. <poi.version>4.1.1</poi.version>
  17. <easypoi.version>4.2.0</easypoi.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.github.zuihou</groupId>
  22. <artifactId>imcs-common</artifactId>
  23. <version>${imcs-project.version}</version>
  24. </dependency>
  25. <!-- databases 只有权限服务需要引用, 其他服务放在server模块 -->
  26. <dependency>
  27. <groupId>com.github.zuihou</groupId>
  28. <artifactId>zuihou-databases</artifactId>
  29. <optional>true</optional>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.github.zuihou</groupId>
  34. <artifactId>zuihou-injection-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-annotation</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.afterturn</groupId>
  42. <artifactId>easypoi-annotation</artifactId>
  43. <version>${easypoi.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.afterturn</groupId>
  47. <artifactId>easypoi-base</artifactId>
  48. <version>${easypoi.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.poi</groupId>
  52. <artifactId>poi</artifactId>
  53. <version>${poi.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.poi</groupId>
  57. <artifactId>poi-ooxml</artifactId>
  58. <version>${poi.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.poi</groupId>
  62. <artifactId>poi-ooxml-schemas</artifactId>
  63. <version>${poi.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.poi</groupId>
  67. <artifactId>poi-scratchpad</artifactId>
  68. <version>${poi.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.afterturn</groupId>
  72. <artifactId>easypoi-web</artifactId>
  73. <version>${easypoi.version}</version>
  74. </dependency>
  75. </dependencies>
  76. </project>