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:
Timothy Potter 2014-07-18 17:10:03 +00:00
parent 6b1f32c1eb
commit a75792bb4c
1 changed files with 1 additions and 1 deletions
dev-tools/scripts

View File

@ -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: