pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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.3.5.RELEASE</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.1.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.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.apache.logging.log4j</groupId>
  29. <artifactId>log4j-to-slf4j</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.logging.log4j</groupId>
  35. <artifactId>log4j-to-slf4j</artifactId>
  36. <version>2.15.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.logging.log4j</groupId>
  40. <artifactId>log4j-api</artifactId>
  41. <version>2.15.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-cache</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework</groupId>
  54. <artifactId>spring-mock</artifactId>
  55. <version>2.0.8</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-context</artifactId>
  60. <version>2.2.6.RELEASE</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-configuration-processor</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.anji-plus</groupId>
  69. <artifactId>spring-boot-gaea</artifactId>
  70. <version>2.0.5.RELEASE</version>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-data-redis</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.anji-plus</groupId>
  80. <artifactId>spring-boot-starter-gaea-oss</artifactId>
  81. <version>2.0.5.RELEASE</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>3.3.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>mysql</groupId>
  90. <artifactId>mysql-connector-java</artifactId>
  91. <version>8.0.28</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.flywaydb</groupId>
  95. <artifactId>flyway-core</artifactId>
  96. <version>5.2.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>net.sf.ehcache</groupId>
  100. <artifactId>ehcache</artifactId>
  101. <version>2.10.6</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.httpcomponents</groupId>
  105. <artifactId>httpclient</artifactId>
  106. <version>4.5.13</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.projectlombok</groupId>
  110. <artifactId>lombok</artifactId>
  111. <version>1.18.10</version>
  112. <optional>true</optional>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.itextpdf</groupId>
  116. <artifactId>itextpdf</artifactId>
  117. <version>5.5.13.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.itextpdf</groupId>
  121. <artifactId>itext-asian</artifactId>
  122. <version>5.2.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.poi</groupId>
  126. <artifactId>poi</artifactId>
  127. <version>4.1.2</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi-ooxml</artifactId>
  132. <version>4.1.2</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.poi</groupId>
  136. <artifactId>poi-ooxml-schemas</artifactId>
  137. <version>4.1.2</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.codehaus.groovy</groupId>
  141. <artifactId>groovy</artifactId>
  142. <version>3.0.9</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.xhtmlrenderer</groupId>
  146. <artifactId>core-renderer</artifactId>
  147. <version>R8</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.itextpdf.tool</groupId>
  151. <artifactId>xmlworker</artifactId>
  152. <version>5.5.13</version>
  153. </dependency>
  154. </dependencies>
  155. <developers>
  156. <developer>
  157. <name>develop.anji-plus.com</name>
  158. <email>MS@anji-plus.com</email>
  159. <url>https://github.com/anji-plus</url>
  160. </developer>
  161. </developers>
  162. <profiles>
  163. <profile>
  164. <id>dev</id>
  165. <properties>
  166. <spring.profiles.active>dev</spring.profiles.active>
  167. </properties>
  168. <activation>
  169. <activeByDefault>true</activeByDefault>
  170. </activation>
  171. </profile>
  172. </profiles>
  173. <build>
  174. <resources>
  175. <resource>
  176. <directory>src/main/resources</directory>
  177. <filtering>true</filtering>
  178. </resource>
  179. </resources>
  180. <plugins>
  181. <plugin>
  182. <groupId>org.springframework.boot</groupId>
  183. <artifactId>spring-boot-maven-plugin</artifactId>
  184. <configuration>
  185. <includeSystemScope>true</includeSystemScope>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-resources-plugin</artifactId>
  191. <configuration>
  192. <nonFilteredFileExtensions>
  193. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  194. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  195. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  196. </nonFilteredFileExtensions>
  197. </configuration>
  198. </plugin>
  199. <plugin>
  200. <groupId>org.apache.maven.plugins</groupId>
  201. <artifactId>maven-assembly-plugin</artifactId>
  202. <version>3.3.0</version>
  203. <configuration>
  204. <descriptors>
  205. <descriptor>src/main/assembly/assembly.xml</descriptor>
  206. </descriptors>
  207. </configuration>
  208. <executions>
  209. <execution>
  210. <id>make-assembly</id>
  211. <phase>package</phase>
  212. <goals>
  213. <goal>single</goal>
  214. </goals>
  215. </execution>
  216. </executions>
  217. </plugin>
  218. </plugins>
  219. </build>
  220. </project>