blob: b2e5b86daeb95cd860c1a72f56320775a85d4668 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(default_testonly = 1)
haskell_test(
name = "java_classpath",
srcs = ["Main.hs"],
visibility = ["//visibility:public"],
deps = [
"//tests/hackage:base",
"//tests/hackage:template-haskell",
"@org_apache_spark_spark_core_2_10//jar",
],
)
|