pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. <groupId>cc.iotkit</groupId>
  7. <artifactId>iot-module</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>8</source>
  17. <target>8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <modelVersion>4.0.0</modelVersion>
  23. <artifactId>iot-generator</artifactId>
  24. <description>
  25. generator 代码生成
  26. </description>
  27. <properties>
  28. <dynamic-ds.version>3.6.1</dynamic-ds.version>
  29. <mapstruct-plus.version>1.2.1</mapstruct-plus.version>
  30. <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
  31. <spring-boot.mybatis>3.0.1</spring-boot.mybatis>
  32. <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
  33. </properties>
  34. <dependencies>
  35. <!-- 通用工具-->
  36. <dependency>
  37. <groupId>cc.iotkit</groupId>
  38. <artifactId>iot-common-core</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cc.iotkit</groupId>
  42. <artifactId>iot-common-doc</artifactId>
  43. </dependency>
  44. <!--常用工具类 -->
  45. <dependency>
  46. <groupId>cc.iotkit</groupId>
  47. <artifactId>iot-common-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>cc.iotkit</groupId>
  51. <artifactId>iot-common-log</artifactId>
  52. </dependency>
  53. <!--velocity代码生成使用模板 -->
  54. <dependency>
  55. <groupId>org.apache.velocity</groupId>
  56. <artifactId>velocity-engine-core</artifactId>
  57. </dependency>
  58. <!-- dynamic-datasource 多数据源-->
  59. <dependency>
  60. <groupId>com.baomidou</groupId>
  61. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  62. <version>${dynamic-ds.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.mybatis.spring.boot</groupId>
  66. <artifactId>mybatis-spring-boot-starter</artifactId>
  67. <version>${spring-boot.mybatis}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.baomidou</groupId>
  71. <artifactId>mybatis-plus-boot-starter</artifactId>
  72. <version>${mybatis-plus.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-annotation</artifactId>
  77. <version>${mybatis-plus.version}</version>
  78. </dependency>
  79. </dependencies>
  80. </project>