Recent Bazel versions support dash character in external repository names. Consistently use them with one exception: javax_inject. This is needed to match the name in the rules_closure. Change-Id: I1e75690fe1ee2ab32fffe07c0c30dbed84753960
		
			
				
	
	
		
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			288 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//lib/jgit:jgit.bzl", "jgit_dep")
 | 
						|
 | 
						|
java_library(
 | 
						|
    name = "junit",
 | 
						|
    testonly = 1,
 | 
						|
    data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
 | 
						|
    visibility = ["//visibility:public"],
 | 
						|
    exports = [jgit_dep("@jgit-junit//jar")],
 | 
						|
    runtime_deps = ["//lib/jgit/org.eclipse.jgit:jgit"],
 | 
						|
)
 |