gradle支持

This commit is contained in:
陈云志
2020-12-15 20:21:23 +08:00
parent 743e59db7a
commit 53aa2db213
35 changed files with 899 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
import org.codehaus.groovy.runtime.GStringImpl
//共享的非业务功能模块,禁止将其它业务功能模块添加进来
// 该产品 gui 和 appServer都需要的依赖
ext {
gridntBase = "${devVersion}" as GStringImpl
// gridntBase = "2.1.0"
svgshowVersion = "2.1.0"
protectVersion = "2.1.1"
mybatisPlus = "3.2.0"
debugProduct = System.getProperty("debugProduct") ?: false
}
dependencies {
//-------网聪 开发中的模块----------------------------------------------------------------------------------------
implementation "com.gridnt:gridnt-base-pub:${gridntBase}"
//-------网聪正式发布的共享模块-------------------------------------------------------------------------------------
//-------第三依赖 -----------------------------------------------------------------------
implementation "org.springframework.boot:spring-boot-starter-logging:${springBoot}"
}