pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>fastbee-plugs</artifactId>
  6. <groupId>com.fastbee</groupId>
  7. <version>${fastbee.version}</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>fastbee-generator</artifactId>
  11. <description>
  12. generator代码生成
  13. </description>
  14. <dependencies>
  15. <!--velocity代码生成使用模板 -->
  16. <dependency>
  17. <groupId>org.apache.velocity</groupId>
  18. <artifactId>velocity-engine-core</artifactId>
  19. </dependency>
  20. <!-- collections工具类 -->
  21. <dependency>
  22. <groupId>commons-collections</groupId>
  23. <artifactId>commons-collections</artifactId>
  24. </dependency>
  25. <!-- 通用工具-->
  26. <dependency>
  27. <groupId>com.fastbee</groupId>
  28. <artifactId>fastbee-common</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.fastbee</groupId>
  32. <artifactId>fastbee-framework</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.anyline</groupId>
  36. <artifactId>anyline-environment-spring-data-jdbc</artifactId>
  37. <version>${anyline.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.anyline</groupId>
  41. <artifactId>anyline-data-jdbc-mysql</artifactId>
  42. <version>${anyline.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.anyline</groupId>
  46. <artifactId>anyline-data-jdbc-dm</artifactId>
  47. <version>${anyline.version}</version>
  48. </dependency>
  49. <!-- anyline支持100+种类型数据库 添加对应的jdbc依赖与anyline对应数据库依赖包即可 -->
  50. <!-- <dependency>-->
  51. <!-- <groupId>org.anyline</groupId>-->
  52. <!-- <artifactId>anyline-data-jdbc-oracle</artifactId>-->
  53. <!-- <version>${anyline.version}</version>-->
  54. <!-- </dependency>-->
  55. <!-- <dependency>-->
  56. <!-- <groupId>org.anyline</groupId>-->
  57. <!-- <artifactId>anyline-data-jdbc-postgresql</artifactId>-->
  58. <!-- <version>${anyline.version}</version>-->
  59. <!-- </dependency>-->
  60. <!-- <dependency>-->
  61. <!-- <groupId>org.anyline</groupId>-->
  62. <!-- <artifactId>anyline-data-jdbc-mssql</artifactId>-->
  63. <!-- <version>${anyline.version}</version>-->
  64. <!-- </dependency>-->
  65. </dependencies>
  66. </project>