pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>mtp3-generator</artifactId>
  7. <groupId>org.muchinfo</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <dependencies>
  10. <!--oracle-->
  11. <dependency>
  12. <groupId>com.oracle.database.jdbc</groupId>
  13. <artifactId>ojdbc6</artifactId>
  14. <version>11.2.0.4</version>
  15. </dependency>
  16. <!--连接池-->
  17. <dependency>
  18. <groupId>com.alibaba</groupId>
  19. <artifactId>druid-spring-boot-starter</artifactId>
  20. <version>1.1.10</version>
  21. </dependency>
  22. <!-- mybatis-plus-generator -->
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-boot-starter</artifactId>
  26. <version>3.4.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-generator</artifactId>
  31. <version>3.4.1</version>
  32. </dependency>
  33. <!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
  34. <dependency>
  35. <groupId>org.apache.velocity</groupId>
  36. <artifactId>velocity-engine-core</artifactId>
  37. <version>2.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. <version>1.18.8</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.swagger</groupId>
  47. <artifactId>swagger-annotations</artifactId>
  48. <version>1.5.13</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. </dependencies>
  52. <properties>
  53. <maven.compiler.source>8</maven.compiler.source>
  54. <maven.compiler.target>8</maven.compiler.target>
  55. </properties>
  56. </project>