pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <exclusions>
  23. <exclusion>
  24. <groupId>org.apache.tomcat.embed</groupId>
  25. <artifactId>tomcat-embed-core</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.hwrj.cloud.security</groupId>
  31. <artifactId>forest-security</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <!-- nacos discovery-->
  39. <dependency>
  40. <groupId>com.alibaba.cloud</groupId>
  41. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  42. </dependency>
  43. <!-- nacos config -->
  44. <dependency>
  45. <groupId>com.alibaba.cloud</groupId>
  46. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  47. </dependency>
  48. <!--zipkin-->
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-starter-zipkin</artifactId>
  52. </dependency>
  53. <!-- spring boot admin client -->
  54. <dependency>
  55. <groupId>de.codecentric</groupId>
  56. <artifactId>spring-boot-admin-starter-client</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>net.logstash.logback</groupId>
  60. <artifactId>logstash-logback-encoder</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.hwrj.cloud.admin</groupId>
  64. <artifactId>admin-mbg</artifactId>
  65. <version>0.0.1-SNAPSHOT</version>
  66. </dependency>
  67. <!-- xls格式excel依赖包 -->
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi</artifactId>
  71. <version>3.17</version>
  72. </dependency>
  73. <!--xlsx格式excel依赖包-->
  74. <dependency>
  75. <groupId>org.apache.poi</groupId>
  76. <artifactId>poi-ooxml</artifactId>
  77. <version>3.17</version>
  78. </dependency>
  79. <!--easyexcel,推荐使用2.0 以上版本,功能更加完善-->
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>easyexcel</artifactId>
  83. <version>2.2.6</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework</groupId>
  87. <artifactId>spring-test</artifactId>
  88. <version>5.1.7.RELEASE</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.commons</groupId>
  93. <artifactId>commons-io</artifactId>
  94. <version>1.3.2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.qiniu</groupId>
  98. <artifactId>qiniu-java-sdk</artifactId>
  99. <version>7.2.28</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.github.xiaoymin</groupId>
  103. <artifactId>knife4j-micro-spring-boot-starter</artifactId>
  104. <version>2.0.4</version>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. <executions>
  113. <execution>
  114. <goals>
  115. <goal>repackage</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>