mirror of https://github.com/apache/lucene.git
SOLR-3893: fix sheisty class error from smoke test
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1611719 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6b1f32c1eb
commit
a75792bb4c
dev-tools/scripts
|
@ -266,7 +266,7 @@ def checkAllJARs(topDir, project, svnRevision, version, tmpDir, baseURL):
|
|||
for file in files:
|
||||
if file.lower().endswith('.jar'):
|
||||
if project == 'solr':
|
||||
if (normRoot.endswith('/contrib/dataimporthandler-extras/lib') and (file.startswith('mail-') or file.startswith('activation-'))) or (normRoot.endswith('/test-framework/lib') and file.startswith('jersey-')):
|
||||
if (normRoot.endswith('/contrib/dataimporthandler-extras/lib') and (file.startswith('javax.mail-') or file.startswith('activation-'))) or (normRoot.endswith('/test-framework/lib') and file.startswith('jersey-')):
|
||||
print(' **WARNING**: skipping check of %s/%s: it has javax.* classes' % (root, file))
|
||||
continue
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue