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