pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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</groupId>
  13. <artifactId>mjava-xzkj</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. <repositories>
  21. <repository>
  22. <id>com.e-iceblue</id>
  23. <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.malk</groupId>
  43. <artifactId>base</artifactId>
  44. <version>1.1-SNAPSHOT</version>
  45. </dependency>
  46. <!-- 腾讯云 [go to https://search.maven.org/search?q=tencentcloud-sdk-java and getDefault the latest version.] -->
  47. <!-- <dependency>-->
  48. <!-- <groupId>com.tencentcloudapi</groupId>-->
  49. <!-- <artifactId>tencentcloud-sdk-java</artifactId>-->
  50. <!-- <version>3.1.778</version>-->
  51. <!-- </dependency>-->
  52. <dependency>
  53. <groupId>com.tencentcloudapi</groupId>
  54. <artifactId>tencentcloud-sdk-java-ocr</artifactId>
  55. <version>3.1.1210</version>
  56. </dependency>
  57. <!-- 图片压缩 -->
  58. <dependency>
  59. <groupId>net.coobird</groupId>
  60. <artifactId>thumbnailator</artifactId>
  61. <version>0.4.8</version>
  62. </dependency>
  63. <!-- PDF压缩 -->
  64. <dependency>
  65. <groupId>com.twelvemonkeys.imageio</groupId>
  66. <artifactId>imageio-tiff</artifactId>
  67. <version>3.5</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>e-iceblue</groupId>
  71. <artifactId>spire.pdf.free</artifactId>
  72. <version>5.1.0</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <finalName>server</finalName>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.1</version>
  82. <configuration>
  83. <source>1.8</source>
  84. <target>1.8</target>
  85. <encoding>UTF-8</encoding>
  86. </configuration>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <executable>true</executable>
  93. <includeSystemScope>true</includeSystemScope>
  94. </configuration>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>