Discontinue publishing of Maven archetypes

This project is a non Maven project in second generation: Buck, Bazel.
We discourage usage of Maven and not maintaining the tool chain. To
start writing gerrit plugins there are enough resources:

* more than 100 production ready plugins
* cookbook-plugin
* examples plugins, pending for review: [1].

* https://gerrit-review.googlesource.com/91698

Change-Id: I322e9b77f7daa26ea9927231d57f292919974ffe
This commit is contained in:
David Ostrovsky
2016-12-10 17:53:16 +01:00
parent da1c5443ab
commit a052e52971
60 changed files with 8 additions and 3509 deletions

View File

@@ -46,9 +46,8 @@ def replace_in_file(filename, src_pattern):
src_pattern = re.compile(r'^(\s*<version>)([-.\w]+)(</version>\s*)$',
re.MULTILINE)
for project in ['gerrit-acceptance-framework', 'gerrit-extension-api',
'gerrit-plugin-api', 'gerrit-plugin-archetype',
'gerrit-plugin-gwt-archetype', 'gerrit-plugin-gwtui',
'gerrit-plugin-js-archetype', 'gerrit-war']:
'gerrit-plugin-api', 'gerrit-plugin-gwtui',
'gerrit-war']:
pom = os.path.join(project, 'pom.xml')
replace_in_file(pom, src_pattern)