pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. <artifactId>iot-common</artifactId>
  8. <groupId>cc.iotkit</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>iot-common-core</artifactId>
  12. <description>
  13. 此模块为通用业务逻辑或工具类
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>commons-codec</groupId>
  18. <artifactId>commons-codec</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>commons-io</groupId>
  22. <artifactId>commons-io</artifactId>
  23. </dependency>
  24. <!-- JSON工具类 -->
  25. <dependency>
  26. <groupId>com.fasterxml.jackson.core</groupId>
  27. <artifactId>jackson-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fasterxml.jackson.core</groupId>
  31. <artifactId>jackson-databind</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-beanutils</groupId>
  35. <artifactId>commons-beanutils</artifactId>
  36. </dependency>
  37. <!-- Spring框架基本的核心工具 -->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-context-support</artifactId>
  41. </dependency>
  42. <!--常用工具类 -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-lang3</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.hutool</groupId>
  49. <artifactId>hutool-core</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-http</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.hutool</groupId>
  57. <artifactId>hutool-extra</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.hutool</groupId>
  61. <artifactId>hutool-json</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.github.linpeilie</groupId>
  66. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>jakarta.validation</groupId>
  70. <artifactId>jakarta.validation-api</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.slf4j</groupId>
  74. <artifactId>slf4j-api</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.lionsoul</groupId>
  78. <artifactId>ip2region</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.projectlombok</groupId>
  82. <artifactId>lombok</artifactId>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-compiler-plugin</artifactId>
  90. <configuration>
  91. <source>${java.version}</source>
  92. <target>${java.version}</target>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>