pom.xml 6.7 KB

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