pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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.3</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. <dependency>
  22. <groupId>cc.iotkit</groupId>
  23. <artifactId>iot-common-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cc.iotkit</groupId>
  27. <artifactId>iot-common-doc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.iotkit</groupId>
  31. <artifactId>iot-common-log</artifactId>
  32. </dependency>
  33. <!--====================第三方库===================-->
  34. <!--常用工具类 -->
  35. <dependency>
  36. <groupId>com.github.yitter</groupId>
  37. <artifactId>yitter-idgenerator</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. <dependency>
  61. <groupId>cc.iotkit</groupId>
  62. <artifactId>iot-common-web</artifactId>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.8.1</version>
  71. <configuration>
  72. <source>${java.version}</source> <!-- depending on your project -->
  73. <target>${java.version}</target> <!-- depending on your project -->
  74. <encoding>utf8</encoding>
  75. <annotationProcessorPaths>
  76. <path>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <version>${lombok.version}</version>
  80. </path>
  81. <path>
  82. <groupId>io.github.linpeilie</groupId>
  83. <artifactId>mapstruct-plus-processor</artifactId>
  84. <version>${mapstruct-plus.version}</version>
  85. </path>
  86. <path>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok-mapstruct-binding</artifactId>
  89. <version>0.2.0</version>
  90. </path>
  91. <!-- other annotation processors -->
  92. </annotationProcessorPaths>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>