buildscript { repositories { mavenLocal() maven { allowInsecureProtocol = true url "http://maven.aliyun.com/nexus/content/groups/public" } mavenCentral() } dependencies { classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion") } } apply plugin: "$bootGroup" apply plugin: 'io.spring.dependency-management' dependencies { implementation project(":common:utils") implementation project(":protocol:gyfp2") implementation("$bootGroup:spring-boot-starter:$springBootVersion") implementation("com.google.code.gson:gson:$gsonVersion") implementation("org.apache.logging.log4j:log4j-core:$log4jVersion") implementation("org.apache.logging.log4j:log4j-jul:$log4jVersion") implementation("org.apache.logging.log4j:log4j-api:$log4jVersion") implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVersion") implementation("org.apache.rocketmq:rocketmq-client:$rocketMq") implementation("com.google.protobuf:protobuf-java:$protoBuf") implementation("io.github.openfeign:feign-core:$openFeignVersion") implementation("io.github.openfeign:feign-jackson:$openFeignVersion") implementation("org.xerial:sqlite-jdbc:$sqliteJdbc") implementation fileTree(dir: 'src/main/lib', include: '*.jar') }