Releases: jflex-de/bazel_rules
Releases · jflex-de/bazel_rules
JFlex 1.9.1
JFlex 1.9.0
- Update to JFlex 1.9.0
JFlex 1.8.2
- Update to use JFlex 1.8.2
- The repository also doesn't contain java_cup.jar anymore, and uses the maven artifact instead.
- The rule now uses quiet output
See milestone 1.8.2 for more details.
Update to JFlex 1.8.1
Update to bazel-2.0
Add attributes
Add sha256 checksum on deps
- Add sha256 on the dependencies
- Internally, upgrade to
maven_install
instead ofmaven_jar
.
The conveniency macrojflex_deps()
still usesnative.maven_jar()
because the setup ofmaven_install
is more complex.
See changelog of milestone v6
Update for bazel-1.0
- #13 Replace
single_file
byallow_single_file
See all changes in milestone v4
CUP Rule
Replace the CUP macro by a real Skylark rule. You can now override the cup_bin
used.
See all changes in milestone v3
Add macro for CUP
-
- see documentation at cup
- see example calculator
-
Improved documentation
See all changes in milestone v2
N.B. This macro forces you to define //third_party/cup:cup_bin
You can add a BUILD file third_party/cup/BUILD
with content
alias(
name = "cup_bin",
actual = "@jflex_rules//third_party/cup:cup_bin",
)