Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Commit

Permalink
Remove reference to JCenter now that hamkrest-json is available on Ma…
Browse files Browse the repository at this point in the history
…ven Central with slightly different coordinates.

Still need to remove reference in app/build.gradle.
  • Loading branch information
charleskorn committed Aug 1, 2021
1 parent b1c15e9 commit 86c6685
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
implementation project(":libs:os")
implementation project(":libs:telemetry")

testImplementation "org.araqnid:hamkrest-json:$hamkrestJsonVersion"
testImplementation "org.araqnid.hamkrest:hamkrest-json:$hamkrestJsonVersion"
testImplementation "com.google.jimfs:jimfs:$jimfsVersion"
testImplementation project(":libs:test-utils")
testImplementation project(":libs:logging-test-utils")
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/batect.buildtools/KotlinPlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ class KotlinPlugin : Plugin<Project> {
override fun apply(project: Project) {
project.repositories {
mavenCentral()
jcenter() // Required until https://github.com/araqnid/hamkrest-json/issues/1 is resolved.
}

applyKotlin(project)
Expand Down
2 changes: 1 addition & 1 deletion libs/docker-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies {
implementation project(":libs:primitives")

testImplementation "com.google.jimfs:jimfs:$jimfsVersion"
testImplementation "org.araqnid:hamkrest-json:$hamkrestJsonVersion"
testImplementation "org.araqnid.hamkrest:hamkrest-json:$hamkrestJsonVersion"

testImplementation project(":libs:logging-test-utils")
testImplementation project(":libs:test-utils")
Expand Down
2 changes: 1 addition & 1 deletion libs/os/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
implementation project(":libs:primitives")

testImplementation "com.google.jimfs:jimfs:$jimfsVersion"
testImplementation "org.araqnid:hamkrest-json:$hamkrestJsonVersion"
testImplementation "org.araqnid.hamkrest:hamkrest-json:$hamkrestJsonVersion"
testImplementation project(":libs:test-utils")
testImplementation project(":libs:logging-test-utils")
}
2 changes: 1 addition & 1 deletion libs/telemetry/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
implementation project(":libs:os")
implementation project(":libs:primitives")

testImplementation "org.araqnid:hamkrest-json:$hamkrestJsonVersion"
testImplementation "org.araqnid.hamkrest:hamkrest-json:$hamkrestJsonVersion"
testImplementation "com.google.jimfs:jimfs:$jimfsVersion"

testImplementation project(":libs:logging-test-utils")
Expand Down

0 comments on commit 86c6685

Please sign in to comment.