|
|
@@ -136,11 +136,19 @@ subprojects {
|
|
|
//all dependencies
|
|
|
dependencies {
|
|
|
//for Test and Compile
|
|
|
- testImplementation group: 'junit', name: 'junit', version: "${junitVersion}"
|
|
|
- compileOnly group: 'junit', name: 'junit', version: "${junitVersion}"
|
|
|
- testImplementation group: 'org.mockito', name: 'mockito-all', version: "${mockitoallVersion}"
|
|
|
- testImplementation group: 'org.xmlunit', name: 'xmlunit-legacy', version: "${xmlunitVersion}"
|
|
|
- testImplementation group: 'org.xmlunit', name: 'xmlunit-core', version: "${xmlunitVersion}"
|
|
|
+ testImplementation group: "org.junit.jupiter", name: "junit-jupiter", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.junit.jupiter", name: "junit-jupiter-api", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.junit.jupiter", name: "junit-jupiter-engine", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.junit.jupiter", name: "junit-jupiter-params", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.junit.platform", name: "junit-platform-commons", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.junit.platform", name: "junit-platform-engine", version: "${junitVersion}"
|
|
|
+ testImplementation group: "org.apiguardian", name: "apiguardian-api", version: "1.1.2"
|
|
|
+ testImplementation group: "org.opentest4j", name: "opentest4j", version: "1.3.0"
|
|
|
+
|
|
|
+ testImplementation group: "org.mockito", name: "mockito-all", version: "${mockitoallVersion}"
|
|
|
+ testImplementation group: 'org.xmlunit', name: 'xmlunit-core', version: "${xmlunitVersion}"
|
|
|
+ testImplementation group: "org.xmlunit", name: "xmlunit-legacy", version: "${xmlunitVersion}"
|
|
|
+
|
|
|
//apache
|
|
|
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: "${commonsbeanutilsVersion}"
|
|
|
implementation group: 'commons-codec', name: 'commons-codec', version: "${commonscodecVersion}"
|
|
|
@@ -211,7 +219,7 @@ subprojects {
|
|
|
implementation group: 'org.springframework', name: 'spring-context-support', version: "${springVersion}"
|
|
|
implementation group: 'org.springframework', name: 'spring-expression', version: "${springVersion}"
|
|
|
//implementation group: 'org.springframework', name: 'spring-instrument', version: "${springVersion}"
|
|
|
- implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
|
|
+ //implementation group: 'org.springframework', name: 'spring-jcl', version: "${springVersion}"
|
|
|
implementation group: 'org.springframework', name: 'spring-jdbc', version: "${springVersion}"
|
|
|
//implementation group: 'org.springframework', name: 'spring-jms', version: "${springVersion}"
|
|
|
implementation group: 'org.springframework', name: 'spring-messaging', version: "${springVersion}"
|
|
|
@@ -231,24 +239,41 @@ subprojects {
|
|
|
implementation group: 'org.springframework.security', name: 'spring-security-web', version: "${springSecurityVersion}"
|
|
|
implementation group: 'org.springframework.security', name: 'spring-security-crypto', version: "${springSecurityVersion}"
|
|
|
//srpingboot
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-actuator', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-actuator-autoconfigure', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-autoconfigure', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-freemarker', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-json', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-log4j2', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-tomcat', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-webflux', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-reactor-netty', version: "${springBootVersion}"
|
|
|
- //implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: "${springBootVersion}"
|
|
|
- //implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis-reactive', version: "${springBootVersion}"
|
|
|
- implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: "${springBootVersion}"
|
|
|
- testImplementation group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-actuator", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-actuator-autoconfigure", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-autoconfigure", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-freemarker", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-kafka", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-webflux", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-health", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-http-codec", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-http-converter", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-jackson", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-jdbc", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-persistence", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-quartz", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-security", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-sql", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-servlet", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-tomcat", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-transaction", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-webmvc", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-web-server", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-actuator", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-freemarker", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-jackson", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-jdbc", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-json", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-log4j2", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-reactor-netty", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-security", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-tomcat", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-web", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-webflux", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-test", version: "${springBootVersion}"
|
|
|
+ implementation group: "org.springframework.boot", name: "spring-boot-starter-validation", version: "${springBootVersion}"
|
|
|
//spring-boot-admin
|
|
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-client', version: "${springbootadminVersion}"
|
|
|
implementation group: 'de.codecentric', name: 'spring-boot-admin-starter-client', version: "${springbootadminVersion}"
|
|
|
@@ -264,14 +289,14 @@ subprojects {
|
|
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter', version: "${springcloudVersion}"
|
|
|
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-bootstrap', version: "${springcloudVersion}"
|
|
|
//spring-cloud-alibaba
|
|
|
- implementation group: 'com.alibaba.spring', name: 'spring-context-support', version: "${springcloudalibabaspringVersion}"
|
|
|
- implementation group: 'com.alibaba.cloud', name: 'spring-cloud-alibaba-commons', version: "${springcloudalibabaVersion}"
|
|
|
+ //implementation group: 'com.alibaba.spring', name: 'spring-context-support', version: "${springcloudalibabaspringVersion}"
|
|
|
+ //implementation group: 'com.alibaba.cloud', name: 'spring-cloud-alibaba-commons', version: "${springcloudalibabaVersion}"
|
|
|
//alibaba nacos
|
|
|
- implementation group: 'com.alibaba.nacos', name: 'nacos-client', version: "${alibabanacosclientVersion}"
|
|
|
- implementation group: 'com.alibaba.nacos', name: 'nacos-auth-plugin', version: "${alibabanacosclientVersion}"
|
|
|
- implementation group: 'com.alibaba.nacos', name: 'nacos-encryption-plugin', version: "${alibabanacosclientVersion}"
|
|
|
- implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-discovery', version: "${springcloudalibabaVersion}"
|
|
|
- implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-config', version: "${springcloudalibabaVersion}"
|
|
|
+ //implementation group: 'com.alibaba.nacos', name: 'nacos-client', version: "${alibabanacosclientVersion}"
|
|
|
+ //implementation group: 'com.alibaba.nacos', name: 'nacos-auth-plugin', version: "${alibabanacosclientVersion}"
|
|
|
+ //implementation group: 'com.alibaba.nacos', name: 'nacos-encryption-plugin', version: "${alibabanacosclientVersion}"
|
|
|
+ //implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-discovery', version: "${springcloudalibabaVersion}"
|
|
|
+ //implementation group: 'com.alibaba.cloud', name: 'spring-cloud-starter-alibaba-nacos-config', version: "${springcloudalibabaVersion}"
|
|
|
//saml see maxkey-lib
|
|
|
//implementation group: 'org.opensaml', name: 'opensaml', version: "${opensamlVersion}"
|
|
|
//implementation group: 'org.opensaml', name: 'openws', version: "${openwsVersion}"
|
|
|
@@ -279,7 +304,7 @@ subprojects {
|
|
|
implementation group: 'net.shibboleth.utilities', name: 'java-support', version: "${javasupportVersion}"
|
|
|
//jose-jwt
|
|
|
implementation group: 'com.nimbusds', name: 'nimbus-jose-jwt', version: "${nimbusjosejwtVersion}"
|
|
|
- implementation group: 'com.github.stephenc.jcip', name: 'jcip-annotations', version: "${jcipannotationsVersion}"
|
|
|
+ //implementation group: 'com.github.stephenc.jcip', name: 'jcip-annotations', version: "${jcipannotationsVersion}"
|
|
|
implementation group: 'net.minidev', name: 'json-smart', version: "${minidevjsonsmartVersion}"
|
|
|
implementation group: 'net.minidev', name: 'asm', version: "${minidevasmVersion}"
|
|
|
//oauth third party JustAuth
|
|
|
@@ -306,8 +331,9 @@ subprojects {
|
|
|
implementation group: 'com.sun.xml.bind', name: 'jaxb-impl', version: "${xmlbindjaxbimplVersion}"
|
|
|
implementation group: 'com.sun.xml.bind', name: 'jaxb-xjc', version: "${xmlbindjaxbxjcVersion}"
|
|
|
//crypto
|
|
|
- implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version: "${bouncycastleVersion}"
|
|
|
- implementation group: 'org.bouncycastle', name: 'bcprov-ext-jdk18on', version: "${bouncycastleVersion}"
|
|
|
+ implementation group: "org.bouncycastle", name: "bcpkix-jdk18on", version: "${bouncycastleVersion}"
|
|
|
+ implementation group: "org.bouncycastle", name: "bcprov-jdk18on", version: "${bouncycastleVersion}"
|
|
|
+ implementation group: "org.bouncycastle", name: "bcutil-jdk18on", version: "${bouncycastleVersion}"
|
|
|
//google
|
|
|
implementation group: 'com.google.crypto.tink', name: 'tink', version: "${tinkVersion}"
|
|
|
//kaptcha
|
|
|
@@ -315,19 +341,23 @@ subprojects {
|
|
|
implementation group: 'com.github.penggle', name: 'kaptcha', version: "${kaptchaVersion}"
|
|
|
//json-gson
|
|
|
implementation group: 'com.google.code.gson', name: 'gson', version: "${gsonVersion}"
|
|
|
- //json-jackson
|
|
|
- implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-jaxb-annotations', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-jakarta-xmlbind-annotations', version: "${jacksonVersion}"
|
|
|
- implementation group: 'com.fasterxml', name: 'classmate', version: "${classmateVersion}"
|
|
|
- implementation group: 'com.fasterxml.woodstox', name: 'woodstox-core', version: "${woodstoxVersion}"
|
|
|
+ //json-jackson 3
|
|
|
+ implementation group: "tools.jackson.core", name: "jackson-core", version: "${jackson3Version}"
|
|
|
+ implementation group: "tools.jackson.core", name: "jackson-databind", version: "${jackson3Version}"
|
|
|
+ //jackson2
|
|
|
+ implementation group: "com.fasterxml", name: "classmate", version: "${classmateVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "${jacksonAnnotationsVersion}"
|
|
|
+ implementation group: "com.fasterxml.woodstox", name: "woodstox-core", version: "${woodstoxVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-cbor", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-xml", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.dataformat", name: "jackson-dataformat-yaml", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jdk8", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.module", name: "jackson-module-jakarta-xmlbind-annotations", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.module", name: "jackson-module-jaxb-annotations", version: "${jacksonVersion}"
|
|
|
+ implementation group: "com.fasterxml.jackson.module", name: "jackson-module-parameter-names", version: "${jacksonVersion}"
|
|
|
//json-fastjson
|
|
|
implementation group: 'com.alibaba', name: 'fastjson', version: "${fastjsonVersion}"
|
|
|
//reactive
|
|
|
@@ -338,20 +368,58 @@ subprojects {
|
|
|
implementation group: 'com.mysql', name: 'mysql-connector-j', version: "${mysqlconnectorjVersion}"
|
|
|
//implementation group: 'org.postgresql', name: 'postgresql', version: "${postgresqlVersion}"
|
|
|
implementation group: 'com.alibaba', name: 'druid', version: "${druidVersion}"
|
|
|
- implementation group: 'com.alibaba', name: 'druid-spring-boot-3-starter', version: "${druidspringbootstarterVersion}"
|
|
|
+ implementation group: 'com.alibaba', name: 'druid-spring-boot-4-starter', version: "${druidspringbootstarterVersion}"
|
|
|
implementation group: 'redis.clients', name: 'jedis', version: "${jedisVersion}"
|
|
|
implementation group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: "${caffeineVersion}"
|
|
|
//mybatis
|
|
|
implementation group: 'org.mybatis', name: 'mybatis', version: "${mybatisVersion}"
|
|
|
implementation group: 'org.mybatis', name: 'mybatis-spring', version: "${mybatisspringVersion}"
|
|
|
implementation group: 'org.dromara.mybatis-jpa-extra', name: 'mybatis-jpa-extra', version: "${mybatisjpaextraVersion}"
|
|
|
+ implementation group: 'org.dromara.mybatis-jpa-extra', name: 'mybatis-jpa-extra-spring', version: "${mybatisjpaextraVersion}"
|
|
|
implementation group: 'org.dromara.mybatis-jpa-extra', name: 'mybatis-jpa-extra-spring-boot-starter', version: "${mybatisjpaextraVersion}"
|
|
|
//hibernate
|
|
|
- implementation group: 'org.hibernate.validator', name: 'hibernate-validator', version: "${hibernateVersion}"
|
|
|
- implementation group: 'org.hibernate', name: 'hibernate-validator-cdi', version: "${hibernateVersion}"
|
|
|
- implementation group: 'org.hibernate.validator', name: 'hibernate-validator-annotation-processor', version: "${hibernateVersion}"
|
|
|
+ implementation group: "org.hibernate.validator", name: "hibernate-validator", version: "${hibernateVersion}"
|
|
|
+ implementation group: "org.hibernate.validator", name: "hibernate-validator-annotation-processor", version: "${hibernateVersion}"
|
|
|
+ implementation group: "org.hibernate.validator", name: "hibernate-validator-cdi", version: "${hibernateVersion}"
|
|
|
//usefull
|
|
|
+ //netty
|
|
|
+ implementation group: "io.netty", name: "netty-buffer", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-base", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-dns", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-haproxy", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-compression", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-http", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-http2", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-http3", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-native-unix-common", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-memcache", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-mqtt", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-redis", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-smtp", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-socks", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-stomp", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-xml", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-protobuf", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-marshalling", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-common", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-handler", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-handler-proxy", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-handler-ssl-ocsp", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-resolver", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-resolver-dns", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-rxtx", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-sctp", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-udt", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-classes-epoll", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-classes-kqueue", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-resolver-dns-classes-macos", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-transport-classes-io_uring", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-codec-classes-quic", version: "${nettyVersion}"
|
|
|
+ implementation group: "io.netty", name: "netty-all", version: "${nettyVersion}"
|
|
|
implementation group: 'io.netty', name: 'netty-all', version: "${nettyVersion}"
|
|
|
+ implementation group: 'org.jspecify', name: 'jspecify', version: '1.0.0'
|
|
|
implementation group: 'com.belerweb', name: 'pinyin4j', version: "${pinyin4jVersion}"
|
|
|
implementation group: 'org.jsoup', name: 'jsoup', version: "${jsoupVersion}"
|
|
|
implementation group: 'joda-time', name: 'joda-time', version: "${jodatimeVersion}"
|