Skip to content

Commit 6ebcee8

Browse files
mollyibotcopybara-github
authored andcommitted
Update J2CL opensource doc to use more stable release with bazel 5.4.1
PiperOrigin-RevId: 728460523
1 parent caf4024 commit 6ebcee8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/getting-started-j2wasm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ To setup your first project you can use the sample as template:
9898
```shell
9999
$ cp -R <j2cl-repo>/samples/wasm <my-repo>/<app-name>
100100
$ mv <my-repo>/<app-name>/WORKSPACE.remote <my-repo>/<app-name>/WORKSPACE
101-
$ echo 7.4.1 > <my-repo>/<app-name>/.bazelversion
101+
$ echo 5.4.1 > <my-repo>/<app-name>/.bazelversion
102102
```
103103

104104
and you are done.

docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ To setup your first project you can use the sample as template:
117117
```shell
118118
$ cp -R <j2cl-repo>/samples/helloworld <my-repo>/<app-name>
119119
$ mv <my-repo>/<app-name>/WORKSPACE.remote <my-repo>/<app-name>/WORKSPACE
120-
$ echo 7.4.1 > <my-repo>/<app-name>/.bazelversion
120+
$ echo 5.4.1 > <my-repo>/<app-name>/.bazelversion
121121
```
122122

123123
and you are done.

samples/helloworld/WORKSPACE.remote

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
55
# Load j2cl repository
66
http_archive(
77
name = "com_google_j2cl",
8-
strip_prefix = "j2cl-224899da55639e598f079f65ca5d92a9c34cffe4",
9-
url = "https://github.com/google/j2cl/archive/224899da55639e598f079f65ca5d92a9c34cffe4.zip",
8+
strip_prefix = "j2cl-657f9362d32a2f211722b5ef94a9adfb855fbddd",
9+
url = "https://github.com/google/j2cl/archive/657f9362d32a2f211722b5ef94a9adfb855fbddd.zip",
1010
)
1111

1212
load("@com_google_j2cl//build_defs:repository.bzl", "load_j2cl_repo_deps")

samples/wasm/WORKSPACE.remote

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
66
# Load j2cl repository
77
http_archive(
88
name = "com_google_j2cl",
9-
strip_prefix = "j2cl-224899da55639e598f079f65ca5d92a9c34cffe4",
10-
url = "https://github.com/google/j2cl/archive/224899da55639e598f079f65ca5d92a9c34cffe4.zip",
9+
strip_prefix = "j2cl-657f9362d32a2f211722b5ef94a9adfb855fbddd",
10+
url = "https://github.com/google/j2cl/archive/657f9362d32a2f211722b5ef94a9adfb855fbddd.zip",
1111
)
1212

1313
load("@com_google_j2cl//build_defs:repository.bzl", "load_j2cl_repo_deps")

0 commit comments

Comments
 (0)