Do not archive gerrit.war and other auxiliar jars during verification

The Gerrit verifier job has the unique goal of verifying that
a change is working and archiving the resulting release artifact
for further off-line E2E testing. Archiving intermediate jars or
the gerrit.war is redundant and may be responsible of using
most of the disk space available.

Bug: Issue 13115
Change-Id: I521826f6adb0c198f4c33f5020a66bf3dffac25c
diff --git a/jenkins/gerrit-verifier.yaml b/jenkins/gerrit-verifier.yaml
index 909af32..93eaaeb 100644
--- a/jenkins/gerrit-verifier.yaml
+++ b/jenkins/gerrit-verifier.yaml
@@ -135,7 +135,7 @@
     publishers:
       - archive:
           artifacts: >
-            gerrit/bazel-bin/*.war,gerrit/bazel-bin/plugins/*/*.jar,
+            gerrit/bazel-bin/release.war,
             gerrit/bazel-bin/*api/*api.jar,
             gerrit/bazel-bin/gerrit-acceptance-framework/*.jar
           excludes: 'gerrit/bazel-bin/plugins/core*/**/*.jar'