build.gradle 793 B

12345678910111213141516171819202122
  1. description "帕特智能paas代码生成"
  2. version "1.0.1"
  3. /*
  4. --------------------------------------------------------
  5. 非所有服务都必须依赖的包请勿添加
  6. --------------------------------------------------------
  7. */
  8. dependencies {
  9. // 传递依赖
  10. api('com.baomidou:mybatis-plus-generator:3.5.6')
  11. api("org.apache.velocity:velocity-engine-core:2.3")
  12. // 为了减少依赖 jar 体量,非公共依赖不要申明为 api 必须遵守在负责人同意允许后在对应项目中添加
  13. compileOnly project(":aizuda-core")
  14. compileOnly("com.baomidou:mybatis-plus-boot-starter")
  15. testImplementation project(":aizuda-core")
  16. testImplementation("com.baomidou:mybatis-plus-boot-starter")
  17. testImplementation("org.postgresql:postgresql")
  18. }