(url)
| 51 | import urllib.error |
| 52 | import urllib.parse |
| 53 | import urllib.request |
| 54 | import xml.etree.ElementTree as ET |
| 55 | import zipfile |
| 56 | from collections import namedtuple |
| 57 | import scriptutil |
| 58 | |
| 59 | # This tool expects to find /solr off the base URL. You |
| 60 | # must have a working gpg, tar in your path. This has been |
| 61 | # tested on Linux and on Cygwin under Windows 7. |
| 62 | |
| 63 | BASE_JAVA_VERSION = "21" |
| 64 | SOLRJ_JAVA_VERSION = "17" |