pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yaoyicloud</groupId>
  8. <artifactId>easier-render</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.yaoyicloud</groupId>
  12. <artifactId>easier-report-biz</artifactId>
  13. <packaging>jar</packaging>
  14. <description>报告导出</description>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <aws.version>1.11.543</aws.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.yaoyicloud</groupId>
  24. <artifactId>easier-common-oss</artifactId>
  25. <version>1.0.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-expression</artifactId>
  30. <version>5.3.18</version>
  31. </dependency>
  32. <!--server-api-->
  33. <dependency>
  34. <groupId>javax.servlet</groupId>
  35. <artifactId>javax.servlet-api</artifactId>
  36. </dependency>
  37. <!--web 模块-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <!-- mysql -->
  43. <dependency>
  44. <groupId>com.mysql</groupId>
  45. <artifactId>mysql-connector-j</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.yaoyicloud</groupId>
  49. <artifactId>easier-report-api</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <!-- druid 连接池 -->
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid-spring-boot-starter</artifactId>
  56. <version>1.2.20</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.lowagie</groupId>
  60. <artifactId>itext</artifactId>
  61. <version>2.1.7</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.xhtmlrenderer</groupId>
  65. <artifactId>flying-saucer-pdf</artifactId>
  66. <version>9.12.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.pdfbox</groupId>
  70. <artifactId>pdfbox</artifactId>
  71. <version>3.0.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.github.librepdf</groupId>
  75. <artifactId>openpdf</artifactId>
  76. <version>1.3.30</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi</artifactId>
  81. <version>5.4.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.poi</groupId>
  85. <artifactId>poi-ooxml</artifactId>
  86. <version>5.4.1</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.poi</groupId>
  90. <artifactId>poi-scratchpad</artifactId>
  91. <version>5.4.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.yaoyicloud</groupId>
  95. <artifactId>easier-report-api</artifactId>
  96. <version>0.0.1-SNAPSHOT</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.deepoove</groupId>
  100. <artifactId>poi-tl</artifactId>
  101. <version>1.12.2</version>
  102. <exclusions>
  103. <exclusion>
  104. <artifactId>commons-io</artifactId>
  105. <groupId>commons-io</groupId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <!-- Jsoup -->
  110. <dependency>
  111. <groupId>org.jsoup</groupId>
  112. <artifactId>jsoup</artifactId>
  113. <version>1.20.1</version>
  114. </dependency>
  115. <!-- xdocreport(排除冲突) -->
  116. <dependency>
  117. <groupId>fr.opensagres.xdocreport</groupId>
  118. <artifactId>fr.opensagres.poi.xwpf.converter.xhtml</artifactId>
  119. <version>2.1.0</version>
  120. <exclusions>
  121. <exclusion>
  122. <groupId>org.apache.poi</groupId>
  123. <artifactId>poi-ooxml</artifactId>
  124. </exclusion>
  125. </exclusions>
  126. </dependency>
  127. <dependency>
  128. <groupId>fr.opensagres.xdocreport</groupId>
  129. <artifactId>xdocreport</artifactId>
  130. <version>2.1.0</version>
  131. <exclusions>
  132. <exclusion>
  133. <groupId>org.apache.poi</groupId>
  134. <artifactId>poi-ooxml</artifactId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.google.protobuf</groupId>
  140. <artifactId>protobuf-java</artifactId>
  141. <version>4.31.0</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.google.protobuf</groupId>
  145. <artifactId>protobuf-java-util</artifactId>
  146. <version>4.31.0</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.springframework.boot</groupId>
  155. <artifactId>spring-boot-starter-data-redis</artifactId>
  156. <version>2.7.18</version>
  157. </dependency>
  158. </dependencies>
  159. <build>
  160. <plugins>
  161. <plugin>
  162. <groupId>org.springframework.boot</groupId>
  163. <artifactId>spring-boot-maven-plugin</artifactId>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.apache.maven.plugins</groupId>
  167. <artifactId>maven-deploy-plugin</artifactId>
  168. <configuration>
  169. <skip>true</skip>
  170. </configuration>
  171. </plugin>
  172. </plugins>
  173. </build>
  174. </project>