pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>iot-generator</artifactId>
  12. <description>
  13. generator 代码生成
  14. </description>
  15. <properties>
  16. <dynamic-ds.version>3.5.1</dynamic-ds.version>
  17. <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
  18. <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
  19. </properties>
  20. <dependencies>
  21. <!-- 通用工具-->
  22. <dependency>
  23. <groupId>cc.iotkit</groupId>
  24. <artifactId>iot-common-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cc.iotkit</groupId>
  28. <artifactId>iot-common-doc</artifactId>
  29. </dependency>
  30. <!--常用工具类 -->
  31. <dependency>
  32. <groupId>cc.iotkit</groupId>
  33. <artifactId>iot-common-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cc.iotkit</groupId>
  37. <artifactId>iot-common-log</artifactId>
  38. </dependency>
  39. <!--velocity代码生成使用模板 -->
  40. <dependency>
  41. <groupId>org.apache.velocity</groupId>
  42. <artifactId>velocity-engine-core</artifactId>
  43. </dependency>
  44. <!-- dynamic-datasource 多数据源-->
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  48. <version>${dynamic-ds.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>${mybatis-plus.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-annotation</artifactId>
  58. <version>${mybatis-plus.version}</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.1</version>
  67. <configuration>
  68. <source>${java.version}</source> <!-- depending on your project -->
  69. <target>${java.version}</target> <!-- depending on your project -->
  70. <encoding>utf8</encoding>
  71. <annotationProcessorPaths>
  72. <path>
  73. <groupId>org.projectlombok</groupId>
  74. <artifactId>lombok</artifactId>
  75. <version>${lombok.version}</version>
  76. </path>
  77. <path>
  78. <groupId>io.github.linpeilie</groupId>
  79. <artifactId>mapstruct-plus-processor</artifactId>
  80. <version>${mapstruct-plus.version}</version>
  81. </path>
  82. <path>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok-mapstruct-binding</artifactId>
  85. <version>0.2.0</version>
  86. </path>
  87. <!-- other annotation processors -->
  88. </annotationProcessorPaths>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>