pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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-data</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.4.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-es-temporal-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.projectlombok</groupId>
  15. <artifactId>lombok</artifactId>
  16. <scope>provided</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.data</groupId>
  20. <artifactId>spring-data-elasticsearch</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fasterxml.jackson.core</groupId>
  24. <artifactId>jackson-annotations</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mapstruct</groupId>
  28. <artifactId>mapstruct</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cc.iotkit</groupId>
  32. <artifactId>iot-temporal-service</artifactId>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-compiler-plugin</artifactId>
  40. <version>3.8.1</version>
  41. <configuration>
  42. <source>11</source> <!-- depending on your project -->
  43. <target>11</target> <!-- depending on your project -->
  44. <annotationProcessorPaths>
  45. <path>
  46. <groupId>org.projectlombok</groupId>
  47. <artifactId>lombok</artifactId>
  48. <version>1.18.24</version>
  49. </path>
  50. <path>
  51. <groupId>org.mapstruct</groupId>
  52. <artifactId>mapstruct-processor</artifactId>
  53. <version>1.4.2.Final</version>
  54. </path>
  55. <!-- other annotation processors -->
  56. </annotationProcessorPaths>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>