Skip to content

Commit

Permalink
BUILD: use absolute load statements
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed May 30, 2018
1 parent 96bc641 commit 8ef105c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion projects/allinone/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_binary(
name = "allinone_main",
Expand Down
2 changes: 1 addition & 1 deletion projects/batfish-client/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_binary(
name = "client_main",
Expand Down
2 changes: 1 addition & 1 deletion projects/batfish-common-protocol/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_library(
name = "common",
Expand Down
2 changes: 1 addition & 1 deletion projects/batfish/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_binary(
name = "batfish_main",
Expand Down
2 changes: 1 addition & 1 deletion projects/coordinator/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_binary(
name = "coordinator_main",
Expand Down
3 changes: 1 addition & 2 deletions projects/question/BUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package(default_visibility = ["//visibility:public"])

load("//skylark:junit.bzl", "junit_tests")
#load("//skylark:cmdfile_test.bzl", "cmdfile_test")
load("@batfish//skylark:junit.bzl", "junit_tests")

java_library(
name = "question",
Expand Down

0 comments on commit 8ef105c

Please sign in to comment.