pom.xml 3.0 KB

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