.flattened-pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-common-dao</artifactId>
  8. <version>0.4.5-SNAPSHOT</version>
  9. </parent>
  10. <groupId>cc.iotkit</groupId>
  11. <artifactId>iot-temporal-serviceImpl-es</artifactId>
  12. <version>0.4.5-SNAPSHOT</version>
  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>org.mapstruct</groupId>
  29. <artifactId>mapstruct</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. <artifactId>maven-compiler-plugin</artifactId>
  44. <version>3.8.1</version>
  45. <configuration>
  46. <source>${java.version}</source>
  47. <target>${java.version}</target>
  48. <annotationProcessorPaths>
  49. <path>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.24</version>
  53. </path>
  54. <path>
  55. <groupId>org.mapstruct</groupId>
  56. <artifactId>mapstruct-processor</artifactId>
  57. <version>1.4.2.Final</version>
  58. </path>
  59. </annotationProcessorPaths>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>