pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.2.0.RELEASE</version> <!-- 使用最新的稳定版或其他适用版本 -->
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.malk.kabeiyi</groupId>
  13. <artifactId>mjava-kabeiyi</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <properties>
  16. <maven.compiler.source>8</maven.compiler.source>
  17. <maven.compiler.target>8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.malk</groupId>
  37. <artifactId>base</artifactId>
  38. <version>1.1-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aliyun</groupId>
  42. <artifactId>alibabacloud-ocr_api20210707</artifactId>
  43. <version>3.0.2</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.34</version> <!-- 推荐使用最新稳定版 -->
  49. <scope>provided</scope> <!-- 必须是 provided -->
  50. </dependency>
  51. <dependency>
  52. <groupId>mysql</groupId>
  53. <artifactId>mysql-connector-java</artifactId>
  54. <version>8.0.33</version> <!-- 必须 >= 8.0 -->
  55. </dependency>
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>mybatis-plus-boot-starter</artifactId>
  59. <version>3.5.3.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpclient</artifactId>
  64. <version>4.5.14</version> <!-- 4.x 版本 -->
  65. </dependency>
  66. <dependency>
  67. <groupId>org.json</groupId>
  68. <artifactId>json</artifactId>
  69. <version>20231013</version> <!-- 或最新版本 -->
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>kabeiyi</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <version>3.1</version>
  79. <configuration>
  80. <source>1.8</source>
  81. <target>1.8</target>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <configuration>
  89. <executable>true</executable>
  90. <includeSystemScope>true</includeSystemScope>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>