pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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.7.18</version> <!-- 使用最新的稳定版或其他适用版本 -->
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.malk</groupId>
  13. <artifactId>pro</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>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-aop</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.malk</groupId>
  47. <artifactId>base</artifactId>
  48. <version>1.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>8.0.32</version>
  54. <scope>runtime</scope>
  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. <!-- 腾讯云 [go to https://search.maven.org/search?q=tencentcloud-sdk-java and getDefault the latest version.] -->
  62. <!-- <dependency>-->
  63. <!-- <groupId>com.tencentcloudapi</groupId>-->
  64. <!-- <artifactId>tencentcloud-sdk-java</artifactId>-->
  65. <!-- <version>3.1.778</version>-->
  66. <!-- </dependency>-->
  67. <dependency>
  68. <groupId>com.tencentcloudapi</groupId>
  69. <artifactId>tencentcloud-sdk-java-ocr</artifactId>
  70. <version>3.1.1210</version>
  71. </dependency>
  72. <!-- 图片压缩 -->
  73. <dependency>
  74. <groupId>net.coobird</groupId>
  75. <artifactId>thumbnailator</artifactId>
  76. <version>0.4.8</version>
  77. </dependency>
  78. <!-- PDF压缩 -->
  79. <dependency>
  80. <groupId>com.twelvemonkeys.imageio</groupId>
  81. <artifactId>imageio-tiff</artifactId>
  82. <version>3.5</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>e-iceblue</groupId>
  86. <artifactId>spire.pdf.free</artifactId>
  87. <version>5.1.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. <scope>provided</scope>
  93. </dependency>
  94. <!--钉钉相关-->
  95. <dependency>
  96. <groupId>com.aliyun</groupId>
  97. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  98. <version>2.0.0</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.aliyun</groupId>
  102. <artifactId>dingtalk</artifactId>
  103. <version>1.4.35</version>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <finalName>pro</finalName>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <version>3.1</version>
  113. <configuration>
  114. <source>1.8</source>
  115. <target>1.8</target>
  116. <encoding>UTF-8</encoding>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <configuration>
  123. <executable>true</executable>
  124. <includeSystemScope>true</includeSystemScope>
  125. </configuration>
  126. </plugin>
  127. </plugins>
  128. </build>
  129. </project>