upgrade rocksdb

publish cp-1.6.4
publish common-1.5.9
This commit is contained in:
huaqian cai 2022-06-28 20:37:32 +08:00 committed by CaiHQ
parent c51224e24c
commit 4ef2806c20

View File

@ -52,7 +52,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
}
group = "org.bdware.sc"
version = "1.5.8"
version = "1.5.9"
tasks.processResources.setDuplicatesStrategy(DuplicatesStrategy.INCLUDE)
@ -69,6 +69,12 @@ task copyJar(type: Copy) {
//task classJar(type: Jar, dependsOn: classes) {
// classifier = "jar"
//}
tasks.withType(Copy).all {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.withType(Jar).all {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
task sourceJar(type: Jar, dependsOn: classes) {
archiveClassifier = "sources"
classifier = "sources"