pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.com.qmth.archive</groupId>
  7. <artifactId>examcloud-archive-tool</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath />
  15. </parent>
  16. <properties>
  17. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  18. <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
  19. <maven-compiler-version>3.8.1</maven-compiler-version>
  20. <maven-surefire-version>2.22.2</maven-surefire-version>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. <maven.compiler.target>1.8</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <qmth-boot-version>1.0.5</qmth-boot-version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.qmth.boot</groupId>
  30. <artifactId>starter-api</artifactId>
  31. <version>${qmth-boot-version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.qmth.boot</groupId>
  35. <artifactId>data-mybatis-plus</artifactId>
  36. <version>${qmth-boot-version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.jeffreyning</groupId>
  40. <artifactId>mybatisplus-plus</artifactId>
  41. <version>1.5.1-RELEASE</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.qmth.boot</groupId>
  45. <artifactId>core-concurrent</artifactId>
  46. <version>${qmth-boot-version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.qmth.boot</groupId>
  50. <artifactId>tools-poi</artifactId>
  51. <version>${qmth-boot-version}</version>
  52. </dependency>
  53. <!-- Swagger jars start -->
  54. <dependency>
  55. <groupId>com.github.xiaoymin</groupId>
  56. <artifactId>knife4j-spring-boot-starter</artifactId>
  57. <version>2.0.9</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.swagger</groupId>
  61. <artifactId>swagger-annotations</artifactId>
  62. <version>1.5.24</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.swagger</groupId>
  66. <artifactId>swagger-models</artifactId>
  67. <version>1.5.24</version>
  68. </dependency>
  69. <!-- Swagger jars end -->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>1.2.83</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-collections4</artifactId>
  78. <version>4.4</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-io</groupId>
  82. <artifactId>commons-io</artifactId>
  83. <version>2.8.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-text</artifactId>
  88. <version>1.10.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.commons</groupId>
  92. <artifactId>commons-math3</artifactId>
  93. <version>3.6.1</version>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <finalName>${project.artifactId}</finalName>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. <configuration>
  103. <includeSystemScope>true</includeSystemScope>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>