pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.2-SNAPSHOT</version>
  9. </parent>
  10. <version>0.4.2-SNAPSHOT</version>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>iot-rdb-data-service</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-jpa</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.h2database</groupId>
  20. <artifactId>h2</artifactId>
  21. </dependency>
  22. <!-- <dependency>-->
  23. <!-- <groupId>mysql</groupId>-->
  24. <!-- <artifactId>mysql-connector-java</artifactId>-->
  25. <!-- </dependency>-->
  26. <dependency>
  27. <groupId>commons-io</groupId>
  28. <artifactId>commons-io</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mapstruct</groupId>
  36. <artifactId>mapstruct</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>cc.iotkit</groupId>
  45. <artifactId>iot-data-service</artifactId>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.8.1</version>
  54. <configuration>
  55. <source>11</source> <!-- depending on your project -->
  56. <target>11</target> <!-- depending on your project -->
  57. <annotationProcessorPaths>
  58. <path>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <version>1.18.24</version>
  62. </path>
  63. <path>
  64. <groupId>org.mapstruct</groupId>
  65. <artifactId>mapstruct-processor</artifactId>
  66. <version>1.4.2.Final</version>
  67. </path>
  68. <!-- other annotation processors -->
  69. </annotationProcessorPaths>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>