Skip to content

Commit

Permalink
Rocksdb to Corfudb version fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chetangudisagar committed Oct 25, 2023
1 parent 45a4f52 commit dc35ec1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {

implementation("org.openjdk.jmh:jmh-core:${jmhSdkVersion}")

implementation("org.rocksdb:rocksdbjni:${rocksdbVersion}")
implementation("org.corfudb:rocksdbjni:${rocksdbVersion}")
implementation("org.ehcache:ehcache:${ehcacheVersion}")

implementation("org.assertj:assertj-core:${assertjVersion}")
Expand Down
7 changes: 6 additions & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ repositories {
password = System.getenv("PUBLISH_TOKEN")
}
}

maven {
name = "ossrh-staging"
url = uri("https://s01.oss.sonatype.org/content/repositories/orgcorfudb-1009")
}
}

configurations.all {
Expand All @@ -38,7 +43,7 @@ ext {
lombokVersion = "1.18.18"

jmhVersion = "1.25"
rocksdbVersion = "6.2.2"
rocksdbVersion = "8.6.7.2"
ehcacheVersion = "3.8.0"

ktorVersion = "1.3.1"
Expand Down
1 change: 1 addition & 0 deletions universe/universe-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ apply(from="${gradleScriptDir}/publishing.gradle.kts")
version = "1.0.0-SNAPSHOT"

val corfuVersion = project.ext["corfuVersion"]
val rocksdbVersion = project.ext["rocksdbVersion"] as String

dependencies {
implementation("com.spotify:docker-client:8.16.0")
Expand Down

0 comments on commit dc35ec1

Please sign in to comment.