pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>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. <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>1.18.24</version>
  54. </path>
  55. <path>
  56. <groupId>org.mapstruct</groupId>
  57. <artifactId>mapstruct-processor</artifactId>
  58. <version>1.4.2.Final</version>
  59. </path>
  60. <!-- other annotation processors -->
  61. </annotationProcessorPaths>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>