pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. <groupId>more.ssaqms</groupId>
  7. <artifactId>ReportService</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>XiamenPlatform</module>
  12. </modules>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <more.commons.utils.version>1.0-20230307.054445-58</more.commons.utils.version>
  20. <spring-boot.version>2.1.8.RELEASE</spring-boot.version>
  21. <mysql-connector.version>8.0.13</mysql-connector.version>
  22. <com.alibaba.druid.version>1.1.10</com.alibaba.druid.version>
  23. <mybatis-plus.version>3.3.1</mybatis-plus.version>
  24. <diboot.version>2.1.2</diboot.version>
  25. <com.github.pagehelper.version>1.2.13</com.github.pagehelper.version>
  26. <redis.version>2.3.0.RELEASE</redis.version>
  27. <fastjson.version>1.2.62</fastjson.version>
  28. <jsonwebtoken.version>0.9.1</jsonwebtoken.version>
  29. <org.apache.commons.version>3.9</org.apache.commons.version>
  30. <org.apache.poi.version>4.1.0</org.apache.poi.version>
  31. <poi-ooxml.version>4.1.0</poi-ooxml.version>
  32. <lombok.version>1.18.6</lombok.version>
  33. <cn.afterturn.version>3.0.1</cn.afterturn.version>
  34. <swagger.version>2.6.1</swagger.version>
  35. <commons.io.version>2.11.0</commons.io.version>
  36. <commons.fileupload.version>1.4</commons.fileupload.version>
  37. <org.bouncycastle.version>1.46</org.bouncycastle.version>
  38. </properties>
  39. <dependencyManagement>
  40. <dependencies>
  41. <dependency>
  42. <groupId>more.commons</groupId>
  43. <artifactId>utils</artifactId>
  44. <version>${more.commons.utils.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-dependencies</artifactId>
  49. <version>${spring-boot.version}</version>
  50. <type>pom</type>
  51. <scope>import</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. <version>${mysql-connector.version}</version>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>druid-spring-boot-starter</artifactId>
  62. <version>${com.alibaba.druid.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus-boot-starter</artifactId>
  67. <version>${mybatis-plus.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.github.pagehelper</groupId>
  71. <artifactId>pagehelper-spring-boot-starter</artifactId>
  72. <version>${com.github.pagehelper.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-data-redis</artifactId>
  77. <version>${redis.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. <version>${lombok.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>fastjson</artifactId>
  87. <version>${fastjson.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.jsonwebtoken</groupId>
  91. <artifactId>jjwt</artifactId>
  92. <version>${jsonwebtoken.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.commons</groupId>
  96. <artifactId>commons-lang3</artifactId>
  97. <version>${org.apache.commons.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi</artifactId>
  102. <version>${org.apache.poi.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.poi</groupId>
  106. <artifactId>poi-ooxml</artifactId>
  107. <version>${poi-ooxml.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>cn.afterturn</groupId>
  111. <artifactId>easypoi-base</artifactId>
  112. <version>${cn.afterturn.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>cn.afterturn</groupId>
  116. <artifactId>easypoi-web</artifactId>
  117. <version>${cn.afterturn.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>cn.afterturn</groupId>
  121. <artifactId>easypoi-annotation</artifactId>
  122. <version>${cn.afterturn.version}</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>io.springfox</groupId>
  126. <artifactId>springfox-swagger2</artifactId>
  127. <version>${swagger.version}</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>io.springfox</groupId>
  131. <artifactId>springfox-swagger-ui</artifactId>
  132. <version>${swagger.version}</version>
  133. </dependency>
  134. <!-- io常用工具类 -->
  135. <dependency>
  136. <groupId>commons-io</groupId>
  137. <artifactId>commons-io</artifactId>
  138. <version>${commons.io.version}</version>
  139. </dependency>
  140. <!-- 文件上传工具类 -->
  141. <dependency>
  142. <groupId>commons-fileupload</groupId>
  143. <artifactId>commons-fileupload</artifactId>
  144. <version>${commons.fileupload.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.bouncycastle</groupId>
  148. <artifactId>bcprov-jdk16</artifactId>
  149. <version>${org.bouncycastle.version}</version>
  150. </dependency>
  151. </dependencies>
  152. </dependencyManagement>
  153. <profiles>
  154. <profile>
  155. <id>jdk-1.8</id>
  156. <activation>
  157. <activeByDefault>true</activeByDefault>
  158. <jdk>${java.version}</jdk>
  159. </activation>
  160. <properties>
  161. <maven.compiler.source>1.8</maven.compiler.source>
  162. <maven.compiler.target>1.8</maven.compiler.target>
  163. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  164. </properties>
  165. </profile>
  166. </profiles>
  167. </project>