Delete deprecated maven_deploy, maven_install rules

These have been replaced by //tools/maven.

Change-Id: Ia3710b90d29222ea6344a8fbbd4c407b6f9c9731
This commit is contained in:
Shawn Pearce
2013-08-14 16:12:55 -07:00
parent e585fc0449
commit abb43dd89f

View File

@@ -78,23 +78,3 @@ def gerrit_war(name, ui = 'ui_optdbg', context = []):
'//gerrit-gwtui:' + ui + '.zip',
] + context,
)
def maven_deploy(name, deps):
_maven_util(name, 'deploy', deps)
def maven_install(name, deps):
_maven_util(name, 'install', deps)
def _maven_util(name, action, deps):
cmd = [
'$(exe //tools:maven_deploy)',
'-a', action,
'-v', GERRIT_VERSION,
'-d', '"$DEPS"'
]
genrule(
name = name,
cmd = ' '.join(cmd),
deps = deps + ['//tools:maven_deploy'],
out = '__fake.%s__' % name
)