Skip to content

Last version containing tut_rule

Pre-release
Pre-release
Compare
Choose a tag to compare
@simuons simuons released this 05 May 06:48
· 210 commits to master since this release
27aaff7

Motivation

tut is no longer supported (even binaries are not available), therefore tut related code was removed from rules_scala.

This release contains a separate workspace (downloadable as http_archive) with removed tut_rule, so you could use that rule with later rule_scala versions (but it won't be supported).

Migration

workspace

http_archive(
    name = "tut_rule",
    url = "https://github.com/bazelbuild/rules_scala/releases/download/tut/tut_rule.zip",
    strip_prefix = "tut_rule",
)

load("@tut_rule//:tut.bzl", "tut_dependencies")

tut_dependencies()

build

Replace load("//tut_rule:tut.bzl", "scala_tut_doc") with load("@tut_rule//:tut.bzl", "scala_tut_doc")