buildscript { ext { set('appname', "ats") } } group = 'cn.com.taiji' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' dependencies { implementation "${groupname}:common-core:1.0.0-SNAPSHOT" implementation "${groupname}:entity-core:1.0.0-SNAPSHOT" implementation "${groupname}:comm-core:1.0.0-SNAPSHOT" implementation "${groupname}:sample-protocol:1.0.0-SNAPSHOT" implementation "${groupname}:smp-protocol:1.0.0-SNAPSHOT" implementation "${groupname}:ats-protocol:1.0.0-SNAPSHOT" implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery" implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-config" implementation "org.springframework.cloud:spring-cloud-starter-openfeign" implementation "org.apache.skywalking:apm-toolkit-trace:8.8.0" implementation "org.apache.skywalking:apm-toolkit-opentracing:8.8.0" implementation "org.apache.skywalking:apm-toolkit-logback-1.x:8.8.0" // //MYSQL // runtimeOnly 'mysql:mysql-connector-java' implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis' //ORACLE+库编码问题 runtimeOnly 'com.oracle.database.jdbc:ojdbc8:19.10.0.0' runtimeOnly 'cn.easyproject:orai18n:12.1.0.2.0' //二维码 implementation "com.google.zxing:core:3.5.1" // 支付宝SDK implementation 'com.alipay.sdk:alipay-sdk-java-v3:2.9.0.ALL' // 微信SDK implementation 'com.github.binarywang:weixin-java-pay:4.7.4.B' implementation 'com.github.wechatpay-apiv3:wechatpay-java:0.2.12' implementation fileTree(dir: 'lib', include: ['*.jar']) implementation group: 'com.alibaba', name: 'fastjson', version: '2.0.4' implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis' implementation 'com.squareup.okhttp3:okhttp:3.14.9' implementation group: 'net.coobird', name: 'thumbnailator', version: '0.4.20' } bootJar { archiveFileName = "${appname}-boot.jar" mainClassName = "cn.com.taiji.${appname}.Application" } test { useJUnitPlatform() } //gradle会检查一次依赖,设置每次build都进行检查。默认时间为24小时 configurations.all { // check for updates every build resolutionStrategy.cacheChangingModulesFor 0, 'seconds' } apply plugin: "createProject" createProjectParam { sampleAppName "ats" appName "ats" projectType "service" parentProjectName "zhywpt" }