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' api 'org.slf4j:slf4j-api:2.0.16' //声明slf4j转SLF4J的桥接包 // api 'org.apache.logging.log4j:log4j-slf4j-impl:2.19.0' testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl:2.24.1' //使用log4j2作为实际的日志实现 api 'org.apache.logging.log4j:log4j-api:2.24.1' api 'org.apache.logging.log4j:log4j-core:2.24.1' api 'org.quartz-scheduler:quartz:2.4.0' api 'com.zaxxer:HikariCP:6.2.0' api 'com.mysql:mysql-connector-j:9.1.0' api 'org.mybatis:mybatis:3.5.16' api 'redis.clients:jedis:5.2.0' api 'org.mongodb:mongo-java-driver:3.12.14' api 'org.dom4j:dom4j:2.1.4' 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 'org.reflections:reflections:0.10.2' 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)