18 Star 109 Fork 29

Gitee 极速下载 / prettyzoo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/vran-dev/PrettyZoo
克隆/下载
build.gradle 3.17 KB
一键复制 编辑 原始数据 按行查看 历史
vran-dev 提交于 2023-03-03 17:31 . feat: upgrade zookeeper to 3.6.4 (#321)
plugins {
id 'checkstyle'
}
group 'cc.c1234'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://maven.aliyun.com/nexus/content/groups/public/'
}
}
}
subprojects {
apply plugin: 'java-library'
apply plugin: 'idea'
apply plugin: 'checkstyle'
sourceCompatibility = 17
group 'cc.c1234'
version '2.1.1'
checkstyle {
toolVersion = '8.42'
ignoreFailures = false
maxWarnings = 0
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
ext {
slf4jVersion = '1.7.28'
jacksonVersion = '2.12.0'
log4jVersion = '2.20.0'
junitVersion = '4.12'
zookeeperVersion = '3.6.4'
curatorRecipesVersion = '5.4.0'
guavaVersio = '27.0.1-jre'
jfoenixVersion = '9.0.10'
richtextfxVersion = '0.11.0'
sshjVersion = '0.34.0'
antlr4RuntimeVersion = '4.9.2'
commonsIoVersion = '2.10.0'
lombokVersion = '1.18.22'
mapStructVersion = '1.5.3.Final'
}
dependencies {
implementation group: 'org.slf4j', name: 'slf4j-api', version: "${slf4jVersion}"
implementation "org.apache.logging.log4j:log4j-api:${log4jVersion}"
implementation "org.apache.logging.log4j:log4j-core:${log4jVersion}"
implementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}"
testImplementation group: 'junit', name: 'junit', version: "${junitVersion}"
constraints {
implementation group: 'commons-io', name: 'commons-io', version: "${commonsIoVersion}"
implementation group: 'com.hierynomus', name: 'sshj', version: "${sshjVersion}"
implementation group: 'org.fxmisc.richtext', name: 'richtextfx', version: "${richtextfxVersion}"
implementation group: 'com.jfoenix', name: 'jfoenix', version: "${jfoenixVersion}"
implementation "com.google.guava:guava:${guavaVersio}"
implementation group: 'org.antlr', name: 'antlr4-runtime', version: "${antlr4RuntimeVersion}"
implementation('org.slf4j:slf4j-api:2.0.6') {
force = true
}
implementation('org.slf4j:slf4j-log4j12:2.0.6') {
force = true
}
api("org.apache.zookeeper:zookeeper:${zookeeperVersion}") {
force = true
}
implementation "org.apache.curator:curator-recipes:${curatorRecipesVersion}"
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.core', name: 'jackson-databind', version: "${jacksonVersion}"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: "${jacksonVersion}"
compileOnly "org.projectlombok:lombok:${lombokVersion}"
annotationProcessor "org.projectlombok:lombok:${lombokVersion}"
}
}
}
Java
1
https://gitee.com/mirrors/prettyzoo.git
git@gitee.com:mirrors/prettyzoo.git
mirrors
prettyzoo
prettyzoo
master

搜索帮助