build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. plugins {
  2. id 'java-library'
  3. }
  4. group 'com.incubator.common'
  5. version '1.0-SNAPSHOT'
  6. dependencies {
  7. testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
  8. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
  9. //系统使用log4j2作为系统日志实现 slf4J作为门面
  10. api 'org.slf4j:slf4j-api:1.7.36'
  11. //声明slf4j转SLF4J的桥接包
  12. // api 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0'
  13. //使用log4j2作为实际的日志实现
  14. api 'org.apache.logging.log4j:log4j-api:2.24.1'
  15. api 'org.apache.logging.log4j:log4j-core:2.24.1'
  16. api 'com.lmax:disruptor:3.4.4'
  17. api 'org.msgpack:msgpack-core:0.9.8'
  18. api 'io.netty:netty-all:4.1.115.Final'
  19. api 'org.apache.commons:commons-lang3:3.17.0'
  20. api 'com.dyuproject.protostuff:protostuff-core:1.3.1'
  21. api 'com.dyuproject.protostuff:protostuff-runtime:1.3.1'
  22. api 'org.bouncycastle:bcprov-jdk18on:1.79'
  23. api 'it.unimi.dsi:dsiutils:2.7.3'
  24. api 'com.alibaba:easyexcel:4.0.3'
  25. api 'org.apache.poi:poi:5.3.0'
  26. api 'org.apache.poi:poi-ooxml:5.3.0'
  27. }
  28. build.dependsOn(copyAllDependencies)