pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <!-- 图片压缩 -->
  53. <dependency>
  54. <groupId>net.coobird</groupId>
  55. <artifactId>thumbnailator</artifactId>
  56. <version>0.4.8</version>
  57. </dependency>
  58. <!-- PDF压缩 -->
  59. <dependency>
  60. <groupId>com.twelvemonkeys.imageio</groupId>
  61. <artifactId>imageio-tiff</artifactId>
  62. <version>3.5</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>e-iceblue</groupId>
  66. <artifactId>spire.pdf.free</artifactId>
  67. <version>5.1.0</version>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <finalName>server</finalName>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.1</version>
  77. <configuration>
  78. <source>1.8</source>
  79. <target>1.8</target>
  80. <encoding>UTF-8</encoding>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <configuration>
  87. <executable>true</executable>
  88. <includeSystemScope>true</includeSystemScope>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>