1234567891011121314151617181920212223242526272829303132 |
- 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("io.netty:netty-all:$nettyVersion")
- 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("net.sourceforge.javacsv:javacsv:$Javacsv")
- implementation("org.xerial:sqlite-jdbc:$sqliteJdbc")
- }
|