pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>forest-admin</artifactId>
  7. <groupId>com.hwrj.cloud.admin</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>admin-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.hwrj.cloud.common</groupId>
  15. <artifactId>forest-common</artifactId>
  16. <version>${forest.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.hwrj.cloud.admin.common</groupId>
  20. <artifactId>admin-common</artifactId>
  21. <version>${forest.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.hwrj.cloud.security</groupId>
  25. <artifactId>forest-security</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <!-- nacos discovery-->
  33. <dependency>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  36. </dependency>
  37. <!-- nacos config -->
  38. <dependency>
  39. <groupId>com.alibaba.cloud</groupId>
  40. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  41. </dependency>
  42. <!--zipkin-->
  43. <dependency>
  44. <groupId>org.springframework.cloud</groupId>
  45. <artifactId>spring-cloud-starter-zipkin</artifactId>
  46. </dependency>
  47. <!-- spring boot admin client -->
  48. <dependency>
  49. <groupId>de.codecentric</groupId>
  50. <artifactId>spring-boot-admin-starter-client</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>net.logstash.logback</groupId>
  54. <artifactId>logstash-logback-encoder</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.hwrj.cloud.admin</groupId>
  58. <artifactId>admin-mbg</artifactId>
  59. <version>0.0.1-SNAPSHOT</version>
  60. </dependency>
  61. <!-- xls格式excel依赖包 -->
  62. <dependency>
  63. <groupId>org.apache.poi</groupId>
  64. <artifactId>poi</artifactId>
  65. <version>3.17</version>
  66. </dependency>
  67. <!--xlsx格式excel依赖包-->
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi-ooxml</artifactId>
  71. <version>3.17</version>
  72. </dependency>
  73. <!--easyexcel,推荐使用2.0 以上版本,功能更加完善-->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>easyexcel</artifactId>
  77. <version>2.2.6</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-test</artifactId>
  82. <version>5.1.7.RELEASE</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>1.3.2</version>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. </plugins>
  98. </build>
  99. </project>