pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>org.example</groupId>
  7. <artifactId>CrawlerServer</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>Nmc</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. <diboot.version>2.1.2</diboot.version>
  22. <com.github.pagehelper.version>1.2.13</com.github.pagehelper.version>
  23. <redis.version>2.3.0.RELEASE</redis.version>
  24. <fastjson.version>1.2.62</fastjson.version>
  25. <jsonwebtoken.version>0.9.1</jsonwebtoken.version>
  26. <org.apache.commons.version>3.9</org.apache.commons.version>
  27. <poi-ooxml.version>4.1.0</poi-ooxml.version>
  28. <lombok.version>1.18.6</lombok.version>
  29. <cn.afterturn.version>3.0.1</cn.afterturn.version>
  30. <swagger.version>2.6.1</swagger.version>
  31. <commons.io.version>2.11.0</commons.io.version>
  32. <commons.fileupload.version>1.4</commons.fileupload.version>
  33. <org.bouncycastle.version>1.46</org.bouncycastle.version>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-dependencies</artifactId>
  40. <version>${spring-boot.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.pagehelper</groupId>
  46. <artifactId>pagehelper-spring-boot-starter</artifactId>
  47. <version>${com.github.pagehelper.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>${lombok.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>${fastjson.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.jsonwebtoken</groupId>
  61. <artifactId>jjwt</artifactId>
  62. <version>${jsonwebtoken.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.commons</groupId>
  66. <artifactId>commons-lang3</artifactId>
  67. <version>${org.apache.commons.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.afterturn</groupId>
  71. <artifactId>easypoi-annotation</artifactId>
  72. <version>${cn.afterturn.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.springfox</groupId>
  76. <artifactId>springfox-swagger2</artifactId>
  77. <version>${swagger.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.springfox</groupId>
  81. <artifactId>springfox-swagger-ui</artifactId>
  82. <version>${swagger.version}</version>
  83. </dependency>
  84. <!-- io常用工具类 -->
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. <version>${commons.io.version}</version>
  89. </dependency>
  90. <!-- 文件上传工具类 -->
  91. <dependency>
  92. <groupId>commons-fileupload</groupId>
  93. <artifactId>commons-fileupload</artifactId>
  94. <version>${commons.fileupload.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.bouncycastle</groupId>
  98. <artifactId>bcprov-jdk16</artifactId>
  99. <version>${org.bouncycastle.version}</version>
  100. </dependency>
  101. </dependencies>
  102. </dependencyManagement>
  103. <profiles>
  104. <profile>
  105. <id>jdk-1.8</id>
  106. <activation>
  107. <activeByDefault>true</activeByDefault>
  108. <jdk>${java.version}</jdk>
  109. </activation>
  110. <properties>
  111. <maven.compiler.source>1.8</maven.compiler.source>
  112. <maven.compiler.target>1.8</maven.compiler.target>
  113. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  114. </properties>
  115. </profile>
  116. </profiles>
  117. </project>