Skip to content

Commit

Permalink
Add 4.9 support (#35)
Browse files Browse the repository at this point in the history
* 4.9

* Add sha256 comment
  • Loading branch information
Bencodes authored Oct 3, 2022
1 parent 1f36ad1 commit eee84fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Add the `robolectric` and `rules_jvm_external` repositories in your WORKSPACE fi
```python
http_archive(
name = "robolectric",
urls = ["https://github.com/robolectric/robolectric-bazel/archive/4.9-alpha-1.tar.gz"],
strip_prefix = "robolectric-bazel-4.9-alpha-1",
sha256 = "...",
urls = ["https://github.com/robolectric/robolectric-bazel/archive/4.9.tar.gz"],
strip_prefix = "robolectric-bazel-4.9",
sha256 = "get the sha256 from github releases",
)
load("@robolectric//bazel:robolectric.bzl", "robolectric_repositories")
robolectric_repositories()
Expand All @@ -32,7 +32,7 @@ http_archive(
load("@rules_jvm_external//:defs.bzl", "maven_install")
maven_install(
artifacts = [
"org.robolectric:robolectric:4.9-alpha-1",
"org.robolectric:robolectric:4.9",
],
repositories = [
"https://maven.google.com",
Expand Down

0 comments on commit eee84fb

Please sign in to comment.