pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>plugin</artifactId>
  7. <groupId>com.flyhigh</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mybatis-generate-maven-plugin</artifactId>
  12. <name>mybatis-generate</name>
  13. <version>1.0.0</version>
  14. <packaging>maven-plugin</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.flyhigh</groupId>
  18. <artifactId>core</artifactId>
  19. <version>1.0.0</version>
  20. <scope>compile</scope>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/org.mybatis.generator/mybatis-generator-core -->
  23. <dependency>
  24. <groupId>org.mybatis.generator</groupId>
  25. <artifactId>mybatis-generator-core</artifactId>
  26. </dependency>
  27. <!-- 模板生成 -->
  28. <dependency>
  29. <groupId>org.freemarker</groupId>
  30. <artifactId>freemarker</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.maven</groupId>
  34. <artifactId>maven-core</artifactId>
  35. <version>3.8.4</version>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.maven</groupId>
  40. <artifactId>maven-plugin-api</artifactId>
  41. <version>3.8.4</version>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.maven.plugin-tools</groupId>
  46. <artifactId>maven-plugin-annotations</artifactId>
  47. <version>3.6.4</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-plugin-plugin</artifactId>
  56. <version>3.5.2</version>
  57. <configuration>
  58. <encoding>${project.build.sourceEncoding}</encoding>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>