Skip to content

Commit 7dfffcc

Browse files
authored
1 parent dbfa1b7 commit 7dfffcc

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

modules/stardoc/0.6.2/MODULE.bazel

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module(
2+
name = "stardoc",
3+
version = "0.6.2",
4+
compatibility_level = 1,
5+
)
6+
7+
bazel_dep(name = "bazel_skylib", version = "1.4.2")
8+
bazel_dep(name = "rules_java", version = "6.3.0")
9+
bazel_dep(name = "rules_jvm_external", version = "5.2")
10+
bazel_dep(name = "rules_license", version = "0.0.7")
11+
bazel_dep(name = "protobuf", version = "21.7", repo_name = "com_google_protobuf")
12+
13+
# Maven artifacts required by Stardoc; keep consistent with deps.bzl
14+
STARDOC_MAVEN_ARTIFACTS = [
15+
"com.beust:jcommander:1.82",
16+
"com.google.escapevelocity:escapevelocity:1.1",
17+
"com.google.guava:guava:31.1-jre",
18+
"com.google.truth:truth:1.1.3",
19+
"junit:junit:4.13.2",
20+
]
21+
22+
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
23+
maven.install(
24+
name = "stardoc_maven",
25+
artifacts = STARDOC_MAVEN_ARTIFACTS,
26+
fail_if_repin_required = True,
27+
lock_file = "//:maven_install.json",
28+
repositories = [
29+
"https://repo1.maven.org/maven2",
30+
],
31+
strict_visibility = True,
32+
)
33+
use_repo(maven, "stardoc_maven")

modules/stardoc/0.6.2/presubmit.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- ubuntu2004
5+
- macos
6+
- windows
7+
tasks:
8+
verify_targets:
9+
name: Verify build targets
10+
platform: ${{ platform }}
11+
build_targets:
12+
- '@stardoc//stardoc/...'

modules/stardoc/0.6.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-Yr0uYCFrem/sOseTQaogHglWR358j2zMKG8nmtHZZDI=",
3+
"url": "https://github.com/bazelbuild/stardoc/releases/download/0.6.2/stardoc-0.6.2.tar.gz"
4+
}

modules/stardoc/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"0.5.4",
1212
"0.5.6",
1313
"0.6.0",
14-
"0.6.1"
14+
"0.6.1",
15+
"0.6.2"
1516
],
1617
"yanked_versions": {}
1718
}

0 commit comments

Comments
 (0)