pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <parent>
  6. <artifactId>iot-dao</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-temporal-serviceImpl-es</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cc.iotkit</groupId>
  15. <artifactId>iot-temporal-service</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cc.iotkit</groupId>
  19. <artifactId>iot-data-serviceImpl-cache</artifactId>
  20. </dependency>
  21. <!--====================第三方库===================-->
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.data</groupId>
  29. <artifactId>spring-data-elasticsearch</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-annotations</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.github.linpeilie</groupId>
  37. <artifactId>mapstruct-plus-spring-boot-starter</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>3.8.1</version>
  46. <configuration>
  47. <source>${java.version}</source> <!-- depending on your project -->
  48. <target>${java.version}</target> <!-- depending on your project -->
  49. <annotationProcessorPaths>
  50. <path>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <version>${lombok.version}</version>
  54. </path>
  55. <path>
  56. <groupId>io.github.linpeilie</groupId>
  57. <artifactId>mapstruct-plus-processor</artifactId>
  58. <version>${mapstruct-plus.version}</version>
  59. </path>
  60. <path>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok-mapstruct-binding</artifactId>
  63. <version>0.2.0</version>
  64. </path>
  65. <!-- other annotation processors -->
  66. </annotationProcessorPaths>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>