pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>cc.iotkit</groupId>
  33. <artifactId>iot-temporal-service</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cc.iotkit</groupId>
  37. <artifactId>iot-data-serviceImpl-cache</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>