pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>com.middle.platform</groupId>
  8. <artifactId>iot-framework</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>iot-common</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>17</maven.compiler.source>
  15. <maven.compiler.target>17</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>cn.hutool</groupId>
  21. <artifactId>hutool-all</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>fastjson</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.fasterxml.jackson.core</groupId>
  29. <artifactId>jackson-databind</artifactId>
  30. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  31. </dependency>
  32. <dependency>
  33. <groupId>com.fasterxml.jackson.core</groupId>
  34. <artifactId>jackson-core</artifactId>
  35. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  36. </dependency>
  37. <dependency>
  38. <groupId>com.fasterxml.jackson.datatype</groupId>
  39. <artifactId>jackson-datatype-jsr310</artifactId>
  40. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-web</artifactId>
  54. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  55. </dependency>
  56. <dependency>
  57. <groupId>jakarta.servlet</groupId>
  58. <artifactId>jakarta.servlet-api</artifactId>
  59. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.pagehelper</groupId>
  63. <artifactId>pagehelper</artifactId>
  64. <scope>compile</scope>
  65. </dependency>
  66. </dependencies>
  67. </project>