pom.xml 9.9 KB

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