pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-module</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.5.2-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-openapi</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cc.iotkit</groupId>
  15. <artifactId>iot-system</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cc.iotkit</groupId>
  19. <artifactId>iot-manager</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <properties>
  23. <maven.compiler.source>11</maven.compiler.source>
  24. <maven.compiler.target>11</maven.compiler.target>
  25. <mapstruct-plus.version>1.3.4</mapstruct-plus.version>
  26. </properties>
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.8.1</version>
  33. <configuration>
  34. <source>${java.version}</source> <!-- depending on your project -->
  35. <target>${java.version}</target> <!-- depending on your project -->
  36. <encoding>utf8</encoding>
  37. <annotationProcessorPaths>
  38. <path>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <version>${lombok.version}</version>
  42. </path>
  43. <path>
  44. <groupId>io.github.linpeilie</groupId>
  45. <artifactId>mapstruct-plus-processor</artifactId>
  46. <version>${mapstruct-plus.version}</version>
  47. </path>
  48. <path>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok-mapstruct-binding</artifactId>
  51. <version>0.2.0</version>
  52. </path>
  53. <!-- other annotation processors -->
  54. </annotationProcessorPaths>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>