pom.xml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.7.14</version>
  8. <relativePath/>
  9. </parent>
  10. <name>aj-report</name>
  11. <modelVersion>4.0.0</modelVersion>
  12. <groupId>com.anji-plus</groupId>
  13. <artifactId>aj-report</artifactId>
  14. <version>1.5.0.RELEASE</version>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <additionalparam>-Xdoclint:none</additionalparam>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <maven.test.skip>true</maven.test.skip>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  26. <version>3.1.5</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-context</artifactId>
  31. <version>3.1.5</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.apache.logging.log4j</groupId>
  39. <artifactId>log4j-to-slf4j</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <dependency>
  44. <groupId>log4j</groupId>
  45. <artifactId>log4j</artifactId>
  46. <version>1.2.17</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-cache</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-test</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-configuration-processor</artifactId>
  64. <optional>true</optional>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.anji-plus</groupId>
  68. <artifactId>spring-boot-gaea</artifactId>
  69. <version>2.9.4.RELEASE</version>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-data-redis</artifactId>
  74. </exclusion>
  75. <exclusion>
  76. <groupId>com.spring4all</groupId>
  77. <artifactId>swagger-spring-boot-starter</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.anji-plus</groupId>
  83. <artifactId>spring-boot-starter-gaea-oss</artifactId>
  84. <version>2.9.4.RELEASE</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.baomidou</groupId>
  88. <artifactId>mybatis-plus-boot-starter</artifactId>
  89. <version>3.5.2</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-aop</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.aspectj</groupId>
  97. <artifactId>aspectjweaver</artifactId>
  98. <version>1.9.7</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>mysql</groupId>
  102. <artifactId>mysql-connector-java</artifactId>
  103. <version>8.0.28</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid</artifactId>
  108. <version>1.2.4</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.flywaydb</groupId>
  112. <artifactId>flyway-core</artifactId>
  113. <version>5.2.1</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>net.sf.ehcache</groupId>
  117. <artifactId>ehcache</artifactId>
  118. <version>2.10.6</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.httpcomponents</groupId>
  122. <artifactId>httpclient</artifactId>
  123. <version>4.5.13</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. <version>1.18.34</version>
  129. <optional>true</optional>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.itextpdf</groupId>
  133. <artifactId>itextpdf</artifactId>
  134. <version>5.5.13.2</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.itextpdf</groupId>
  138. <artifactId>itext-asian</artifactId>
  139. <version>5.2.0</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.poi</groupId>
  143. <artifactId>poi</artifactId>
  144. <version>4.1.2</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>poi-ooxml</artifactId>
  149. <version>4.1.2</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.poi</groupId>
  153. <artifactId>poi-ooxml-schemas</artifactId>
  154. <version>4.1.2</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.codehaus.groovy</groupId>
  158. <artifactId>groovy</artifactId>
  159. <version>3.0.9</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.xhtmlrenderer</groupId>
  163. <artifactId>core-renderer</artifactId>
  164. <version>R8</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.itextpdf.tool</groupId>
  168. <artifactId>xmlworker</artifactId>
  169. <version>5.5.13</version>
  170. </dependency>
  171. </dependencies>
  172. <developers>
  173. <developer>
  174. <name>develop.anji-plus.com</name>
  175. <email>MS@anji-plus.com</email>
  176. <url>https://github.com/anji-plus</url>
  177. </developer>
  178. </developers>
  179. <profiles>
  180. <profile>
  181. <id>dev</id>
  182. <properties>
  183. <spring.profiles.active>dev</spring.profiles.active>
  184. </properties>
  185. <activation>
  186. <activeByDefault>true</activeByDefault>
  187. </activation>
  188. </profile>
  189. </profiles>
  190. <build>
  191. <resources>
  192. <resource>
  193. <directory>src/main/resources</directory>
  194. <filtering>true</filtering>
  195. </resource>
  196. </resources>
  197. <plugins>
  198. <plugin>
  199. <groupId>org.springframework.boot</groupId>
  200. <artifactId>spring-boot-maven-plugin</artifactId>
  201. <configuration>
  202. <includeSystemScope>true</includeSystemScope>
  203. </configuration>
  204. </plugin>
  205. <plugin>
  206. <groupId>org.apache.maven.plugins</groupId>
  207. <artifactId>maven-resources-plugin</artifactId>
  208. <configuration>
  209. <nonFilteredFileExtensions>
  210. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  211. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  212. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  213. </nonFilteredFileExtensions>
  214. </configuration>
  215. <version>3.1.0</version>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-assembly-plugin</artifactId>
  220. <!--<version>3.3.0</version>-->
  221. <configuration>
  222. <descriptors>
  223. <descriptor>src/main/assembly/assembly.xml</descriptor>
  224. </descriptors>
  225. </configuration>
  226. <executions>
  227. <execution>
  228. <id>make-assembly</id>
  229. <phase>package</phase>
  230. <goals>
  231. <goal>single</goal>
  232. </goals>
  233. </execution>
  234. </executions>
  235. </plugin>
  236. </plugins>
  237. </build>
  238. </project>