1 # Description: 2 # Bazel workspace file for Brotli. 3 4 workspace(name = "org_brotli") 5 6 maven_jar( 7 name = "junit_junit", 8 artifact = "junit:junit:4.12", 9 ) 10 11 git_repository( 12 name = "io_bazel_rules_go", 13 remote = "https://github.com/bazelbuild/rules_go.git", 14 tag = "0.4.1", 15 ) 16 load("@io_bazel_rules_go//go:def.bzl", "go_repositories") 17 18 go_repositories() 19