pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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.am</groupId>
  7. <artifactId>ai-marking-cet</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>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-boot-starter</artifactId>
  40. <version>3.4.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  45. <version>3.4.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.qmth.boot</groupId>
  49. <artifactId>core-schedule</artifactId>
  50. <version>${qmth-boot-version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.jeffreyning</groupId>
  54. <artifactId>mybatisplus-plus</artifactId>
  55. <version>1.5.1-RELEASE</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qmth.boot</groupId>
  59. <artifactId>core-fss</artifactId>
  60. <version>${qmth-boot-version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.qmth.boot</groupId>
  64. <artifactId>core-cache</artifactId>
  65. <version>${qmth-boot-version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.qmth.boot</groupId>
  69. <artifactId>core-retrofit</artifactId>
  70. <version>${qmth-boot-version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qmth.boot</groupId>
  74. <artifactId>core-concurrent</artifactId>
  75. <version>${qmth-boot-version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.qmth.boot</groupId>
  79. <artifactId>tools-poi</artifactId>
  80. <version>${qmth-boot-version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.qmth.boot</groupId>
  84. <artifactId>tools-freemarker</artifactId>
  85. <version>${qmth-boot-version}</version>
  86. </dependency>
  87. <!-- Swagger jars start -->
  88. <dependency>
  89. <groupId>com.github.xiaoymin</groupId>
  90. <artifactId>knife4j-spring-boot-starter</artifactId>
  91. <version>2.0.9</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.swagger</groupId>
  95. <artifactId>swagger-annotations</artifactId>
  96. <version>1.5.24</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-models</artifactId>
  101. <version>1.5.24</version>
  102. </dependency>
  103. <!-- Swagger jars end -->
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>fastjson</artifactId>
  107. <version>1.2.83</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-collections4</artifactId>
  112. <version>4.4</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-io</groupId>
  116. <artifactId>commons-io</artifactId>
  117. <version>2.8.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-text</artifactId>
  122. <version>1.10.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-math3</artifactId>
  127. <version>3.6.1</version>
  128. </dependency>
  129. </dependencies>
  130. <build>
  131. <finalName>${project.artifactId}</finalName>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.springframework.boot</groupId>
  135. <artifactId>spring-boot-maven-plugin</artifactId>
  136. <configuration>
  137. <includeSystemScope>true</includeSystemScope>
  138. </configuration>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>