pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>qhiot-link-basic-mqtt</artifactId>
  6. <groupId>com.qhiot</groupId>
  7. <version>1.1.1</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>CodeGenerator_</artifactId>
  11. <name>CodeGenerator_</name>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.11</version>
  17. <scope>test</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.baomidou</groupId>
  21. <artifactId>mybatis-plus-generator</artifactId>
  22. <version>3.4.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.velocity</groupId>
  26. <artifactId>velocity-engine-core</artifactId>
  27. <version>2.3</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-core</artifactId>
  36. <version>3.4.2</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. <!--代码生成模板引擎-->
  40. <dependency>
  41. <groupId>org.apache.velocity</groupId>
  42. <artifactId>velocity</artifactId>
  43. <version>1.7</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.qhiot</groupId>
  47. <artifactId>common</artifactId>
  48. <version>1.1.1</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. </dependencies>
  52. </project>