pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>org.mapstruct</groupId>
  32. <artifactId>mapstruct</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>cc.iotkit</groupId>
  41. <artifactId>iot-data-service</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.8.1</version>
  50. <configuration>
  51. <source>11</source> <!-- depending on your project -->
  52. <target>11</target> <!-- depending on your project -->
  53. <annotationProcessorPaths>
  54. <path>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <version>1.18.24</version>
  58. </path>
  59. <path>
  60. <groupId>org.mapstruct</groupId>
  61. <artifactId>mapstruct-processor</artifactId>
  62. <version>1.4.2.Final</version>
  63. </path>
  64. <!-- other annotation processors -->
  65. </annotationProcessorPaths>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>