123456789101112131415161718192021222324252627282930313233343536 |
- plugins {
- id 'java-library'
- }
- group 'com.incubator.common'
- version '1.0-SNAPSHOT'
- dependencies {
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
- //系统使用log4j2作为系统日志实现 slf4J作为门面
- api 'org.slf4j:slf4j-api:1.7.36'
- //声明slf4j转SLF4J的桥接包
- // api 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0'
- //使用log4j2作为实际的日志实现
- api 'org.apache.logging.log4j:log4j-api:2.24.1'
- api 'org.apache.logging.log4j:log4j-core:2.24.1'
- api 'com.lmax:disruptor:3.4.4'
- api 'org.msgpack:msgpack-core:0.9.8'
- api 'io.netty:netty-all:4.1.115.Final'
- api 'org.apache.commons:commons-lang3:3.17.0'
- api 'com.dyuproject.protostuff:protostuff-core:1.3.1'
- api 'com.dyuproject.protostuff:protostuff-runtime:1.3.1'
- api 'org.bouncycastle:bcprov-jdk18on:1.79'
- api 'it.unimi.dsi:dsiutils:2.7.3'
- api 'com.alibaba:easyexcel:4.0.3'
- api 'org.apache.poi:poi:5.3.0'
- api 'org.apache.poi:poi-ooxml:5.3.0'
- }
- build.dependsOn(copyAllDependencies)
|