Skip to content

Commit ee5f344

Browse files
authored
1 parent f796e9b commit ee5f344

File tree

4 files changed

+56
-1
lines changed

4 files changed

+56
-1
lines changed

modules/stardoc/0.7.2/MODULE.bazel

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
module(
2+
name = "stardoc",
3+
version = "0.7.2",
4+
bazel_compatibility = [">=7.0.0"],
5+
compatibility_level = 1,
6+
)
7+
8+
bazel_dep(name = "protobuf", version = "29.0-rc3", repo_name = "com_google_protobuf")
9+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
10+
bazel_dep(name = "rules_java", version = "8.5.1")
11+
bazel_dep(name = "rules_jvm_external", version = "6.3")
12+
bazel_dep(name = "rules_license", version = "1.0.0")
13+
14+
# Maven artifacts required by Stardoc; keep consistent with deps.bzl
15+
STARDOC_MAVEN_ARTIFACTS = [
16+
"com.beust:jcommander:1.82",
17+
"com.google.escapevelocity:escapevelocity:1.1",
18+
"com.google.guava:guava:31.1-jre",
19+
"com.google.truth:truth:1.1.3",
20+
"junit:junit:4.13.2",
21+
]
22+
23+
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
24+
maven.install(
25+
name = "stardoc_maven",
26+
artifacts = STARDOC_MAVEN_ARTIFACTS,
27+
fail_if_repin_required = True,
28+
lock_file = "//:maven_install.json",
29+
repositories = [
30+
"https://repo1.maven.org/maven2",
31+
],
32+
strict_visibility = True,
33+
)
34+
use_repo(maven, "stardoc_maven")
35+
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- ubuntu2004
5+
- macos
6+
- windows
7+
bazel:
8+
- 7.x
9+
tasks:
10+
verify_targets:
11+
name: Verify build targets
12+
platform: ${{ platform }}
13+
bazel: ${{ bazel }}
14+
build_targets:
15+
- '@stardoc//stardoc/...'

modules/stardoc/0.7.2/source.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"integrity": "sha256-Dh7UqY8m5xh3a9ZNBT0CuzTZhXLM0D1ro1URKhIFcGs=",
3+
"url": "https://github.com/bazelbuild/stardoc/releases/download/0.7.2/stardoc-0.7.2.tar.gz"
4+
}

modules/stardoc/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"0.6.1",
2020
"0.6.2",
2121
"0.7.0",
22-
"0.7.1"
22+
"0.7.1",
23+
"0.7.2"
2324
],
2425
"yanked_versions": {}
2526
}

0 commit comments

Comments
 (0)