Skip to content

Commit

Permalink
Remove mavenLocal()
Browse files Browse the repository at this point in the history
The build failed locally (uses `mavenLocal()`), but passed with
GitHub Actions (uses `mavenCentral()`). [This
discussion](https://slack-chats.kotlinlang.org/t/2153020/is-anyone-else-suddenly-experiencing-failures-like-unable-to)
served as an indicator for me. Apparently, it seems like
`mavenLocal()` generally [should be
avoided](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local).
  • Loading branch information
beatngu13 committed Jan 5, 2023
1 parent 3c5949c commit 1e0bf43
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ java {
}

repositories {
mavenLocal()
mavenCentral()
}

Expand Down

0 comments on commit 1e0bf43

Please sign in to comment.