12345678910111213141516171819202122 |
- description "帕特智能paas代码生成"
- version "1.0.0"
- /*
- --------------------------------------------------------
- 非所有服务都必须依赖的包请勿添加
- --------------------------------------------------------
- */
- dependencies {
- // 传递依赖
- api('com.baomidou:mybatis-plus-generator:3.5.3.1')
- api("org.apache.velocity:velocity-engine-core:2.3")
- // 为了减少依赖 jar 体量,非公共依赖不要申明为 api 必须遵守在负责人同意允许后在对应项目中添加
- compileOnly project(":aizuda-core")
- compileOnly("com.baomidou:mybatis-plus-boot-starter")
- testImplementation project(":aizuda-core")
- testImplementation("com.baomidou:mybatis-plus-boot-starter")
- testImplementation("org.postgresql:postgresql")
- }
|