pom.xml 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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>2.0.2.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. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-cache</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-context</artifactId>
  39. <version>2.2.6.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-configuration-processor</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.anji-plus</groupId>
  48. <artifactId>spring-boot-gaea</artifactId>
  49. <version>2.0.3.RELEASE</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-redis</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-boot-starter</artifactId>
  60. <version>3.3.2</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>druid</artifactId>
  69. <version>1.2.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.flywaydb</groupId>
  73. <artifactId>flyway-core</artifactId>
  74. <version>5.2.1</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>net.sf.ehcache</groupId>
  78. <artifactId>ehcache</artifactId>
  79. <version>2.10.6</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.httpcomponents</groupId>
  83. <artifactId>httpclient</artifactId>
  84. <version>4.5.10</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. <version>1.18.10</version>
  90. <optional>true</optional>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.itextpdf</groupId>
  94. <artifactId>itextpdf</artifactId>
  95. <version>5.5.13.2</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.itextpdf</groupId>
  99. <artifactId>itext-asian</artifactId>
  100. <version>5.2.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.poi</groupId>
  104. <artifactId>poi</artifactId>
  105. <version>4.1.2</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi-ooxml</artifactId>
  110. <version>4.1.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml-schemas</artifactId>
  115. <version>4.1.2</version>
  116. </dependency>
  117. </dependencies>
  118. <developers>
  119. <developer>
  120. <name>develop.anji-plus.com</name>
  121. <email>MS@anji-plus.com</email>
  122. <url>https://github.com/anji-plus</url>
  123. </developer>
  124. </developers>
  125. <profiles>
  126. <profile>
  127. <id>dev</id>
  128. <properties>
  129. <spring.profiles.active>dev</spring.profiles.active>
  130. </properties>
  131. <activation>
  132. <activeByDefault>true</activeByDefault>
  133. </activation>
  134. </profile>
  135. </profiles>
  136. <build>
  137. <resources>
  138. <resource>
  139. <directory>src/main/resources</directory>
  140. <filtering>true</filtering>
  141. </resource>
  142. </resources>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. <configuration>
  148. <includeSystemScope>true</includeSystemScope>
  149. </configuration>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.apache.maven.plugins</groupId>
  153. <artifactId>maven-resources-plugin</artifactId>
  154. <configuration>
  155. <nonFilteredFileExtensions>
  156. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  157. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  158. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  159. </nonFilteredFileExtensions>
  160. </configuration>
  161. </plugin>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-assembly-plugin</artifactId>
  165. <version>3.3.0</version>
  166. <configuration>
  167. <descriptors>
  168. <descriptor>src/main/assembly/assembly.xml</descriptor>
  169. </descriptors>
  170. </configuration>
  171. <executions>
  172. <execution>
  173. <id>make-assembly</id>
  174. <phase>package</phase>
  175. <goals>
  176. <goal>single</goal>
  177. </goals>
  178. </execution>
  179. </executions>
  180. </plugin>
  181. </plugins>
  182. </build>
  183. </project>