pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>${revision}</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. <dependency>
  26. <groupId>org.anyline</groupId>
  27. <artifactId>anyline-environment-spring-data-jdbc</artifactId>
  28. <version>${anyline.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.anyline</groupId>
  32. <artifactId>anyline-data-jdbc-mysql</artifactId>
  33. <version>${anyline.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fastbee</groupId>
  37. <artifactId>fastbee-framework</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.anyline</groupId>
  41. <artifactId>anyline-data-jdbc-mssql</artifactId>
  42. <version>${anyline.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.anyline</groupId>
  46. <artifactId>anyline-data-jdbc-postgresql</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. <!--sqlserver数据库-->
  61. <!--<dependency>
  62. <groupId>org.anyline</groupId>
  63. <artifactId>anyline-data-jdbc-mssql</artifactId>
  64. <version>${anyline.version}</version>
  65. </dependency>-->
  66. <!--达梦数据库-->
  67. <!--<dependency>
  68. <groupId>org.anyline</groupId>
  69. <artifactId>anyline-data-jdbc-dm</artifactId>
  70. <version>${anyline.version}</version>
  71. </dependency>-->
  72. </dependencies>
  73. </project>