pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <version>1.0.0</version>
  25. <description>
  26. generator 代码生成
  27. </description>
  28. <properties>
  29. <dynamic-ds.version>3.6.1</dynamic-ds.version>
  30. <mapstruct-plus.version>1.2.1</mapstruct-plus.version>
  31. <mapstruct-plus.lombok.version>0.2.0</mapstruct-plus.lombok.version>
  32. <spring-boot.mybatis>3.0.1</spring-boot.mybatis>
  33. <mybatis-plus.version>3.5.3.1</mybatis-plus.version>
  34. </properties>
  35. <dependencies>
  36. <!-- 通用工具-->
  37. <dependency>
  38. <groupId>cc.iotkit</groupId>
  39. <artifactId>iot-common-core</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>cc.iotkit</groupId>
  43. <artifactId>iot-common-doc</artifactId>
  44. </dependency>
  45. <!--常用工具类 -->
  46. <dependency>
  47. <groupId>cc.iotkit</groupId>
  48. <artifactId>iot-common-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cc.iotkit</groupId>
  52. <artifactId>iot-common-log</artifactId>
  53. </dependency>
  54. <!--velocity代码生成使用模板 -->
  55. <dependency>
  56. <groupId>org.apache.velocity</groupId>
  57. <artifactId>velocity-engine-core</artifactId>
  58. </dependency>
  59. <!-- dynamic-datasource 多数据源-->
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  63. <version>${dynamic-ds.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.mybatis.spring.boot</groupId>
  67. <artifactId>mybatis-spring-boot-starter</artifactId>
  68. <version>${spring-boot.mybatis}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.baomidou</groupId>
  72. <artifactId>mybatis-plus-boot-starter</artifactId>
  73. <version>${mybatis-plus.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.baomidou</groupId>
  77. <artifactId>mybatis-plus-annotation</artifactId>
  78. <version>${mybatis-plus.version}</version>
  79. </dependency>
  80. </dependencies>
  81. </project>