1package(default_visibility = ["//:__subpackages__"]) 2 3licenses(["notice"]) 4 5filegroup( 6 name = "maven_settings", 7 srcs = ["settings.xml"], 8) 9 10sh_binary( 11 name = "maven_deploy_library", 12 srcs = ["maven_deploy_library.sh"], 13 target_compatible_with = [ 14 "@platforms//os:linux", 15 ], 16) 17 18sh_test( 19 name = "maven_deploy_library_test", 20 size = "small", 21 srcs = ["maven_deploy_library_test.sh"], 22 target_compatible_with = [ 23 "@platforms//os:linux", 24 ], 25 args = [ 26 "$(rlocationpath :maven_deploy_library)", 27 "$(rlocationpath //kokoro/testutils:test_utils)", 28 "$(rlocationpath :maven_settings)", 29 ], 30 data = [ 31 ":maven_deploy_library", 32 ":maven_settings", 33 "//kokoro/testutils:test_utils", 34 ], 35) 36