build.gradle 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. api 'org.slf4j:slf4j-api:2.0.16'
  12. //声明slf4j转SLF4J的桥接包
  13. // api 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0'
  14. api 'org.apache.logging.log4j:log4j-slf4j2-impl:2.24.1'
  15. //使用log4j2作为实际的日志实现
  16. api 'org.apache.logging.log4j:log4j-api:2.24.1'
  17. api 'org.apache.logging.log4j:log4j-core:2.24.1'
  18. api 'org.quartz-scheduler:quartz:2.4.0'
  19. api 'com.zaxxer:HikariCP:6.2.0'
  20. api 'com.mysql:mysql-connector-j:9.1.0'
  21. api 'org.mybatis:mybatis:3.5.16'
  22. api 'redis.clients:jedis:5.2.0'
  23. api 'org.mongodb:mongo-java-driver:3.12.14'
  24. api 'org.dom4j:dom4j:2.1.4'
  25. api 'com.lmax:disruptor:3.4.4'
  26. api 'org.msgpack:msgpack-core:0.9.8'
  27. api 'io.netty:netty-all:4.1.115.Final'
  28. api 'org.apache.commons:commons-lang3:3.17.0'
  29. api 'com.dyuproject.protostuff:protostuff-core:1.3.1'
  30. api 'com.dyuproject.protostuff:protostuff-runtime:1.3.1'
  31. api 'org.bouncycastle:bcprov-jdk18on:1.79'
  32. api 'it.unimi.dsi:dsiutils:2.7.3'
  33. api 'org.reflections:reflections:0.10.2'
  34. api 'com.alibaba:easyexcel:4.0.3'
  35. api 'org.apache.poi:poi:5.3.0'
  36. api 'org.apache.poi:poi-ooxml:5.3.0'
  37. api 'cn.hutool:hutool-all:5.8.25'
  38. }
  39. build.dependsOn(copyAllDependencies)