diff --git a/common/pyproject.toml b/common/pyproject.toml index 8da53f11..700b26bc 100644 --- a/common/pyproject.toml +++ b/common/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ "langchain-openai~=0.3.2", "langfuse ~= 2.59.2", "langchain ~= 0.3.18", - "clusterfuzz==2.6.0", + "six>=1.17.0", ] [project.scripts] @@ -33,4 +33,5 @@ dev = ["pytest>=8.3.4", "ruff>=0.9.2"] [tool.ruff] line-length = 120 -exclude = ["./src/buttercup/common/datastructures"] +exclude = ["./src/buttercup/common/datastructures", "./src/buttercup/common/clusterfuzz_env", "./src/buttercup/common/clusterfuzz_parser", "src/buttercup/common/clusterfuzz_utils.py"] + diff --git a/common/src/buttercup/common/clusterfuzz_env/__init__.py b/common/src/buttercup/common/clusterfuzz_env/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/common/src/buttercup/common/clusterfuzz_env/environment.py b/common/src/buttercup/common/clusterfuzz_env/environment.py new file mode 100644 index 00000000..8a701e70 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_env/environment.py @@ -0,0 +1,869 @@ +# Copyright 2019 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Environment functions.""" + +import ast +import functools +import os +import re +import socket +import subprocess +import sys + +import six +import yaml + +from buttercup.common.clusterfuzz_env import fuzzing + +# Tools supporting customization of options via ADDITIONAL_{TOOL_NAME}_OPTIONS. +# FIXME: Support ADDITIONAL_UBSAN_OPTIONS and ADDITIONAL_LSAN_OPTIONS in an +# ASAN instrumented build. +SUPPORTED_MEMORY_TOOLS_FOR_OPTIONS = [ + 'HWASAN', 'ASAN', 'KASAN', 'CFI', 'MSAN', 'TSAN', 'UBSAN', 'NOSANITIZER' +] + +SANITIZER_NAME_MAP = { + 'ASAN': 'address', + 'CFI': 'cfi', + 'MSAN': 'memory', + 'TSAN': 'thread', + 'UBSAN': 'undefined', + 'NOSANITIZER': 'nosanitizer', +} + +COMMON_SANITIZER_OPTIONS = { + 'handle_abort': 1, + 'handle_segv': 1, + 'handle_sigbus': 1, + 'handle_sigfpe': 1, + 'handle_sigill': 1, + 'print_summary': 1, + 'use_sigaltstack': 1, +} + + +def _eval_value(value_string): + """Returns evaluated value.""" + try: + return ast.literal_eval(value_string) + except: + # String fallback. + return value_string + + +def join_memory_tool_options(options): + """Joins a dict holding memory tool options into a string that can be set in + the environment.""" + return ':'.join('%s=%s' % (key, str(value)) + for key, value in sorted(six.iteritems(options))) + + +def _maybe_convert_to_int(value): + """Returns the int representation contained by string |value| if it contains + one. Otherwise returns |value|.""" + try: + return int(value) + except ValueError: + return value + + +# Matches anything that isn't an unquoted (ie: not between two single or two +# double quotes) colon. +UNQUOTED_COLON_REGEX = re.compile('((?:[^\'":]|\'[^\']*\'|"[^"]*")+)') + + +def _parse_memory_tool_options(options_str): + """Parses memory tool options into a dict.""" + parsed = {} + + for item in UNQUOTED_COLON_REGEX.split(options_str): + # Regex split can give us empty strings at the beginning and the end. Skip + # these. + if not item: + continue + # Regex split gives us each ':'. Skip these. + if item == ':': + continue + values = item.split('=', 1) + if len(values) != 2: + # TODO(mbarbella): Factor this out of environment, and switch to logging + # an error and continuing. This error should be recoverable. + raise ValueError('Invalid memory tool option "%s"' % item) + + option_name = values[0] + option_value = _maybe_convert_to_int(values[1]) + parsed[option_name] = option_value + + return parsed + + +def _quote_value_if_needed(value): + """Quote environment value as needed for certain platforms like Windows.""" + result = value + if ' ' in result or ':' in result: + result = '"%s"' % result + + return result + + +def copy(): + """Return a safe copy of the environment.""" + environment_copy = os.environ.copy() + return environment_copy + + +def disable_lsan(): + """Disable leak detection (if enabled).""" + if get_current_memory_tool_var() != 'ASAN_OPTIONS': + return + + sanitizer_options = get_memory_tool_options('ASAN_OPTIONS', {}) + sanitizer_options['detect_leaks'] = 0 + set_memory_tool_options('ASAN_OPTIONS', sanitizer_options) + + +def get_asan_options(redzone_size, malloc_context_size, quarantine_size_mb, + bot_platform, leaks, disable_ubsan): + """Generates default ASAN options.""" + asan_options = {} + + # Default options needed for all cases. + asan_options['alloc_dealloc_mismatch'] = 0 + asan_options['print_scariness'] = 1 + asan_options['strict_memcmp'] = 0 + + # Set provided redzone size. + if redzone_size: + asan_options['redzone'] = redzone_size + + # This value is used in determining whether to report OOM crashes or not. + set_value('REDZONE', redzone_size) + + # Set maximum number of stack frames to report. + if malloc_context_size: + asan_options['malloc_context_size'] = malloc_context_size + + # Set quarantine size. + if quarantine_size_mb: + asan_options['quarantine_size_mb'] = quarantine_size_mb + + # Test for leaks if this is an LSan-enabled job type. + if get_value('LSAN') and leaks and not get_value('USE_EXTRA_SANITIZERS'): + lsan_options = join_memory_tool_options(get_lsan_options()) + set_value('LSAN_OPTIONS', lsan_options) + asan_options['detect_leaks'] = 1 + else: + remove_key('LSAN_OPTIONS') + asan_options['detect_leaks'] = 0 + + # FIXME: Support container overflow on Android. + if is_android(bot_platform): + asan_options['detect_container_overflow'] = 0 + + # Enable stack use-after-return. + asan_options['detect_stack_use_after_return'] = 1 + asan_options['max_uar_stack_size_log'] = 16 + + # Other less important default options for all cases. + asan_options.update({ + 'allocator_may_return_null': 1, + 'allow_user_segv_handler': 0, + 'check_malloc_usable_size': 0, + 'detect_odr_violation': 0, + 'fast_unwind_on_fatal': 1, + 'print_suppressions': 0, + }) + + # Add common sanitizer options. + asan_options.update(COMMON_SANITIZER_OPTIONS) + + # FIXME: For Windows, rely on online symbolization since llvm-symbolizer.exe + # in build archive does not work. + asan_options['symbolize'] = int(bot_platform == 'WINDOWS') + + # For Android, allow user defined segv handler to work. + if is_android(bot_platform): + asan_options['allow_user_segv_handler'] = 1 + + # Check if UBSAN is enabled as well for this ASAN build. + # If yes, set UBSAN_OPTIONS and enable suppressions. + if get_value('UBSAN'): + if disable_ubsan: + ubsan_options = get_ubsan_disabled_options() + else: + ubsan_options = get_ubsan_options() + + # Remove |symbolize| explicitly to avoid overridding ASan defaults. + ubsan_options.pop('symbolize', None) + + set_value('UBSAN_OPTIONS', join_memory_tool_options(ubsan_options)) + + return asan_options + + +def get_current_memory_tool_var(): + """Get the environment variable name for the current job type's sanitizer.""" + memory_tool_name = get_memory_tool_name(get_value('JOB_NAME')) + if not memory_tool_name: + return None + + return memory_tool_name + '_OPTIONS' + + +def get_memory_tool_options(env_var, default_value=None): + """Get the current memory tool options as a dict. Returns |default_value| if + |env_var| isn't set. Otherwise returns a dictionary containing the memory tool + options and their values.""" + env_value = get_value(env_var) + if env_value is not None: + return _parse_memory_tool_options(env_value) + + return default_value + + +def get_instrumented_libraries_paths(): + """Get the instrumented libraries path for the current sanitizer.""" + memory_tool_name = get_memory_tool_name(get_value('JOB_NAME')) + if not memory_tool_name: + return None + + if memory_tool_name == 'MSAN': + if 'no-origins' in get_value('BUILD_URL', ''): + memory_tool_name += '_NO_ORIGINS' + else: + memory_tool_name += '_CHAINED' + + paths = get_value('INSTRUMENTED_LIBRARIES_PATHS_' + memory_tool_name) + if not paths: + return None + + return paths.split(':') + + +def get_default_tool_path(tool_name): + """Get the default tool for this platform (from scripts/ dir).""" + if is_android(): + # For android devices, we do symbolization on the host machine, which is + # linux. So, we use the linux version of llvm-symbolizer. + platform_override = 'linux' + else: + # No override needed, use default. + platform_override = None + + tool_filename = get_executable_filename(tool_name) + tool_path = os.path.join( + get_platform_resources_directory(platform_override), tool_filename) + return tool_path + +def get_sanitizer_options_for_display(): + """Return a list of sanitizer options with quoted values.""" + result = [] + for tool in SUPPORTED_MEMORY_TOOLS_FOR_OPTIONS: + options_variable = tool + '_OPTIONS' + options_value = os.getenv(options_variable) + if not options_value: + continue + result.append('{options_variable}={options_value}'.format( + options_variable=options_variable, options_value=options_value)) + + return result + + +def get_llvm_symbolizer_path(): + """Get the path of the llvm-symbolizer binary.""" + llvm_symbolizer_path = get_value('LLVM_SYMBOLIZER_PATH') + + if llvm_symbolizer_path and os.path.exists(llvm_symbolizer_path): + # Make sure that llvm symbolizer binary is executable. + os.chmod(llvm_symbolizer_path, 0o750) + + return_code = subprocess.call( + [llvm_symbolizer_path, '--help'], + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL) + if return_code == 0: + # llvm-symbolize works, return it. + return llvm_symbolizer_path + + # Either + # 1. llvm-symbolizer was not found in build archive. OR + # 2. llvm-symbolizer fails due to dependency issue, clang regression, etc. + # So, use our own version of llvm-symbolizer. + llvm_symbolizer_path = get_default_tool_path('llvm-symbolizer') + + # Make sure that we have a default llvm-symbolizer for this platform. + if not os.path.exists(llvm_symbolizer_path): + return None + + # Make sure that llvm symbolizer binary is executable. + os.chmod(llvm_symbolizer_path, 0o750) + return llvm_symbolizer_path + + +def get_root_directory(): + """Return root directory.""" + return get_value('ROOT_DIR') + + +def get_startup_scripts_directory(): + """Return path to startup scripts.""" + return os.path.join(get_value('ROOT_DIR'), 'src', 'python', 'bot', 'startup') + + +def get_config_directory(): + """Return the path to the configs directory.""" + config_dir = get_value('CONFIG_DIR_OVERRIDE') + if config_dir: + return config_dir + + if is_running_on_app_engine(): + # Root is already src/appengine. + return 'config' + + # Running on bot, give path to config folder inside appengine dir. + return os.path.join(get_root_directory(), 'src', 'appengine', 'config') + + +def get_gae_config_directory(): + """Return the path to the google appengine configs directory.""" + return os.path.join(get_config_directory(), 'gae') + + +def get_gce_config_directory(): + """Return the path to the google compute engine configs directory.""" + return os.path.join(get_config_directory(), 'gce') + + +def get_resources_directory(): + """Return the path to the resources directory.""" + return os.path.join(get_root_directory(), 'resources') + + +def get_platform_resources_directory(platform_override=None): + """Return the path to platform-specific resources directory.""" + plt = platform_override or platform() + + # Android resources share the same android directory. + if is_android(plt): + plt = 'ANDROID' + + return os.path.join(get_resources_directory(), 'platform', plt.lower()) + + +def get_suppressions_directory(): + """Return the path to the suppressions directory.""" + return os.path.join(get_config_directory(), 'suppressions') + + +def get_suppressions_file(sanitizer, suffix='suppressions'): + """Return the path to sanitizer suppressions file, if exists.""" + sanitizer_suppressions_filename = '{sanitizer}_{suffix}.txt'.format( + sanitizer=sanitizer, suffix=suffix) + sanitizer_suppressions_file_path = os.path.join( + get_suppressions_directory(), sanitizer_suppressions_filename) + + if not os.path.exists(sanitizer_suppressions_file_path): + return None + + if not os.path.getsize(sanitizer_suppressions_file_path): + return None + + return sanitizer_suppressions_file_path + + +def get_lsan_options(): + """Generates default LSAN options.""" + lsan_suppressions_path = get_suppressions_file('lsan') + lsan_options = { + 'print_suppressions': 0, + } + + # Add common sanitizer options. + lsan_options.update(COMMON_SANITIZER_OPTIONS) + + if lsan_suppressions_path: + lsan_options['suppressions'] = lsan_suppressions_path + + return lsan_options + + +def get_kasan_options(): + """Generates default KASAN options.""" + kasan_options = {'symbolize': 0} + + # Add common sanitizer options. + kasan_options.update(COMMON_SANITIZER_OPTIONS) + + return kasan_options + + +def get_msan_options(): + """Generates default MSAN options.""" + msan_options = {'symbolize': 0} + + # Add common sanitizer options. + msan_options.update(COMMON_SANITIZER_OPTIONS) + + return msan_options + + +def get_platform_group(): + """Return the platform group (specified via QUEUE_OVERRIDE) if it + exists, otherwise platform().""" + platform_group = get_value('QUEUE_OVERRIDE') + if platform_group: + return platform_group + + return platform() + + +def get_memory_tool_name(job_name): + """Figures out name of memory debugging tool.""" + for tool in SUPPORTED_MEMORY_TOOLS_FOR_OPTIONS: + if tool_matches(tool, job_name): + return tool + + # If no tool specified, assume it is ASAN. Also takes care of LSAN job type. + return 'ASAN' + + +def get_memory_tool_display_string(job_name): + """Return memory tool string for a testcase.""" + memory_tool_name = get_memory_tool_name(job_name) + sanitizer_name = SANITIZER_NAME_MAP.get(memory_tool_name) + if not sanitizer_name: + return 'Memory Tool: %s' % memory_tool_name + + return 'Sanitizer: %s (%s)' % (sanitizer_name, memory_tool_name) + + +def get_executable_filename(executable_name): + """Return the filename for the given executable.""" + if platform() != 'WINDOWS': + return executable_name + + extension = '.exe' + if executable_name.endswith(extension): + return executable_name + + return executable_name + extension + + +def get_tsan_options(): + """Generates default TSAN options.""" + tsan_suppressions_path = get_suppressions_file('tsan') + + tsan_options = { + 'atexit_sleep_ms': 200, + 'flush_memory_ms': 2000, + 'history_size': 3, + 'print_suppressions': 0, + 'report_thread_leaks': 0, + 'report_signal_unsafe': 0, + 'stack_trace_format': 'DEFAULT', + 'symbolize': 1, + } + + # Add common sanitizer options. + tsan_options.update(COMMON_SANITIZER_OPTIONS) + + if tsan_suppressions_path: + tsan_options['suppressions'] = tsan_suppressions_path + + return tsan_options + + +def get_ubsan_options(): + """Generates default UBSAN options.""" + # Note that UBSAN can work together with ASAN as well. + ubsan_suppressions_path = get_suppressions_file('ubsan') + + ubsan_options = { + 'halt_on_error': 1, + 'print_stacktrace': 1, + 'print_suppressions': 0, + + # We use -fsanitize=unsigned-integer-overflow as an additional coverage + # signal and do not want those errors to be reported by UBSan as bugs. + # See https://github.com/google/oss-fuzz/issues/910 for additional info. + 'silence_unsigned_overflow': 1, + 'symbolize': 1, + } + + # Add common sanitizer options. + ubsan_options.update(COMMON_SANITIZER_OPTIONS) + + # TODO(crbug.com/877070): Make this code configurable on a per job basis. + if ubsan_suppressions_path and not is_chromeos_system_job(): + ubsan_options['suppressions'] = ubsan_suppressions_path + + return ubsan_options + + +def get_ubsan_disabled_options(): + """Generates ubsan options """ + return { + 'halt_on_error': 0, + 'print_stacktrace': 0, + 'print_suppressions': 0, + } + + +def get_value_string(environment_variable, default_value=None): + """Get environment variable (as a string).""" + return os.getenv(environment_variable, default_value) + + +def get_value(environment_variable, default_value=None): + """Return an environment variable value.""" + value_string = os.getenv(environment_variable) + + # value_string will be None if the variable is not defined. + if value_string is None: + return default_value + + # Exception for ANDROID_SERIAL. Sometimes serial can be just numbers, + # so we don't want to it eval it. + if environment_variable == 'ANDROID_SERIAL': + return value_string + + # Evaluate the value of the environment variable with string fallback. + return _eval_value(value_string) + + +def _job_substring_match(search_string, job_name): + """Return a bool on whether a string exists in a provided job name or + use from environment if available (case insensitive).""" + job_name = job_name or get_value('JOB_NAME') + if not job_name: + return False + + return search_string in job_name.lower() + + +def is_afl_job(job_name=None): + """Return True if the current job uses AFL.""" + return get_engine_for_job(job_name) == 'afl' + + +def is_ios_job(job_name=None): + """Return True if the current job is for iOS.""" + return _job_substring_match('ios_', job_name) + + +def is_chromeos_job(job_name=None): + """Return True if the current job is for ChromeOS.""" + return _job_substring_match('chromeos', job_name) + + +def is_lkl_job(job_name=None): + """Return True if the current job is for ChromeOS.""" + return _job_substring_match('lkl', job_name) + + +def is_chromeos_system_job(job_name=None): + """Return True if the current job is for ChromeOS system (i.e. not libFuzzer + or entire Chrome browser for Chrome on ChromeOS).""" + return is_chromeos_job(job_name) and get_value('CHROMEOS_SYSTEM') + + +def is_libfuzzer_job(job_name=None): + """Return True if the current job uses libFuzzer.""" + return get_engine_for_job(job_name) == 'libFuzzer' + + +def is_honggfuzz_job(job_name=None): + """Return True if the current job uses honggfuzz.""" + return get_engine_for_job(job_name) == 'honggfuzz' + + +def is_kernel_fuzzer_job(job_name=None): + """Return True if the current job uses syzkaller.""" + return get_engine_for_job(job_name) == 'syzkaller' + + +def is_centipede_fuzzer_job(job_name=None): + """Return True if the current job uses Centipede.""" + return get_engine_for_job(job_name) == 'centipede' + + +def is_engine_fuzzer_job(job_name=None): + """Return True if this is an engine fuzzer.""" + return bool(get_engine_for_job(job_name)) + + +def get_engine_for_job(job_name=None): + """Get the engine for the given job.""" + if not job_name: + job_name = get_value('JOB_NAME') + + for engine in fuzzing.ENGINES: + if engine.lower() in job_name: + return engine + + return None + + +def is_posix(): + """Return True if we are on a posix platform (linux/unix and mac os).""" + return os.name == 'posix' + + +def is_trusted_host(ensure_connected=True): + """Return whether or not the current bot is a trusted host.""" + return get_value('TRUSTED_HOST') and (not ensure_connected or + get_value('WORKER_BOT_NAME')) + + +def is_untrusted_worker(): + """Return whether or not the current bot is an untrusted worker.""" + return get_value('UNTRUSTED_WORKER') + + +def is_running_on_app_engine(): + """Return True if we are running on appengine (local or production).""" + return (os.getenv('GAE_ENV') or is_running_on_app_engine_development() or + os.getenv('SERVER_SOFTWARE', '').startswith('Google App Engine/')) + + +def is_running_on_app_engine_development(): + """Return True if running on the local development appengine server.""" + return (os.getenv('GAE_ENV') == 'dev' or + os.getenv('SERVER_SOFTWARE', '').startswith('Development/')) + + +def parse_environment_definition(environment_string): + """Parses a job's environment definition.""" + if not environment_string: + return {} + + definitions = [environment_string.splitlines()] + values = {} + for definition in definitions: + for line in definition: + if line.startswith('#') or not line.strip(): + continue + + m = re.match('([^ =]+)[ ]*=[ ]*(.*)', line) + if m: + key = m.group(1).strip() + value = m.group(2).strip() + values[key] = value + + return values + + +def platform(): + """Return the operating system type, unless an override is provided.""" + environment_override = get_value('OS_OVERRIDE') + if environment_override: + return environment_override.upper() + + if sys.platform.startswith('win'): + return 'WINDOWS' + if sys.platform.startswith('linux'): + return 'LINUX' + if sys.platform == 'darwin': + return 'MAC' + + raise ValueError('Unsupported platform "%s".' % sys.platform) + + +def remove_key(key_name): + """Remove environment |key| and its associated value.""" + if not key_name: + return + + if key_name not in os.environ: + return + + del os.environ[key_name] + + +# Used by reset_environment to store the initial environment. +_initial_environment = None + + +def set_common_environment_variables(): + """Sets environment variables common for different memory debugging tools.""" + # G_SLICE = always-malloc: make glib use system malloc. + # NSS_DISABLE_UNLOAD = 1: make nss skip dlclosing dynamically loaded modules, + # which would result in "obj:*" in backtraces. + # NSS_DISABLE_ARENA_FREE_LIST = 1: make nss use system malloc. + set_value('G_SLICE', 'always-malloc') + set_value('NSS_DISABLE_UNLOAD', 1) + set_value('NSS_DISABLE_ARENA_FREE_LIST', 1) + set_value('NACL_DANGEROUS_SKIP_QUALIFICATION_TEST', 1) + + +def set_memory_tool_options(env_var, options_dict): + """Set current memory tool options.""" + set_value(env_var, join_memory_tool_options(options_dict)) + + +def set_environment_parameters_from_file(file_path): + """Set environment variables from a file.""" + if not os.path.exists(file_path): + return + + with open(file_path, 'r') as f: + file_data = f.read() + + for line in file_data.splitlines(): + if line.startswith('#') or not line.strip(): + continue + + m = re.match('([^ =]+)[ ]*=[ ]*(.*)', line) + if m: + environment_variable = m.group(1) + environment_variable_value = m.group(2) + set_value(environment_variable, environment_variable_value) + + +def update_symbolizer_options(tool_options, symbolize_inline_frames=False): + """Checks and updates the necessary symbolizer options such as + `external_symbolizer_path` and `symbolize_inline_frames`.""" + if 'external_symbolizer_path' not in tool_options: + llvm_symbolizer_path = get_llvm_symbolizer_path() + if llvm_symbolizer_path: + tool_options.update({ + 'external_symbolizer_path': + _quote_value_if_needed(llvm_symbolizer_path) + }) + if 'symbolize_inline_frames' not in tool_options: + tool_options.update({ + 'symbolize_inline_frames': str(symbolize_inline_frames).lower() + }) + +def set_default_vars(): + """Set default environment vars and values.""" + env_file_path = os.path.join(get_value('ROOT_DIR'), 'bot', 'env.yaml') + with open(env_file_path) as file_handle: + env_file_contents = file_handle.read() + + env_vars_and_values = yaml.safe_load(env_file_contents) + for variable, value in six.iteritems(env_vars_and_values): + # We cannot call set_value here. + os.environ[variable] = str(value) + + +def set_tsan_max_history_size(): + """Sets maximum history size for TSAN tool.""" + tsan_options = get_value('TSAN_OPTIONS') + if not tsan_options: + return + + tsan_max_history_size = 7 + for i in range(tsan_max_history_size): + tsan_options = ( + tsan_options.replace('history_size=%d' % i, + 'history_size=%d' % tsan_max_history_size)) + + set_value('TSAN_OPTIONS', tsan_options) + + +def set_value(environment_variable, value): + """Set an environment variable.""" + value_str = str(value) + environment_variable_str = str(environment_variable) + value_str = value_str.replace('%ROOT_DIR%', os.getenv('ROOT_DIR', '')) + os.environ[environment_variable_str] = value_str + + +def tool_matches(tool_name, job_name): + """Return if the memory debugging tool is used in this job.""" + match_prefix = '(.*[^a-zA-Z]|^)%s' + matches_tool = re.match(match_prefix % tool_name.lower(), job_name.lower()) + return bool(matches_tool) + + +def appengine_noop(func): + """Wrap a function into no-op and return None if running on App Engine.""" + + @functools.wraps(func) + def wrapper(*args, **kwargs): + if is_running_on_app_engine(): + return None + + return func(*args, **kwargs) + + return wrapper + + +def bot_noop(func): + """Wrap a function into no-op and return None if running on bot.""" + + @functools.wraps(func) + def wrapper(*args, **kwargs): + is_bot = not is_running_on_app_engine() + if is_bot: + return None + + return func(*args, **kwargs) + + return wrapper + + +def is_local_development(): + """Return True if running in local development environment (e.g. running + a bot locally, excludes tests).""" + return bool(get_value('LOCAL_DEVELOPMENT') and not get_value('PY_UNITTESTS')) + + +def local_noop(func): + """Wrap a function into no-op and return None if running in local + development environment.""" + + @functools.wraps(func) + def wrapper(*args, **kwargs): + if (is_local_development() or is_running_on_app_engine_development()): + return None + + return func(*args, **kwargs) + + return wrapper + + +def is_ephemeral(): + """Return whether or not we are an ephemeral bot.""" + return get_value('EPHEMERAL') + + +def is_android(plt=None): + """Return True if we are on android platform.""" + return 'ANDROID' in (plt or platform()) + + +def is_android_cuttlefish(plt=None): + """Return True if we are on android cuttlefish platform.""" + return 'ANDROID_X86' in (plt or platform()) + + +def is_android_kernel(plt=None): + """Return True if we are on android kernel platform groups.""" + return 'ANDROID_KERNEL' in (plt or get_platform_group()) + + +def is_android_real_device(): + """Return True if we are on a real android device.""" + return platform() == 'ANDROID' + + +def is_lib(): + """Whether or not we're in libClusterFuzz.""" + return get_value('LIB_CF') + + +def is_i386(job_type): + return '_i386' in job_type diff --git a/common/src/buttercup/common/clusterfuzz_env/fuzzing.py b/common/src/buttercup/common/clusterfuzz_env/fuzzing.py new file mode 100644 index 00000000..d0841cb2 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_env/fuzzing.py @@ -0,0 +1,13 @@ +"""Fuzzing module.""" + +PUBLIC_ENGINES = ( + 'libFuzzer', + 'afl', + 'honggfuzz', + 'googlefuzztest', + 'centipede', +) + +PRIVATE_ENGINES = ('syzkaller',) + +ENGINES = PUBLIC_ENGINES + PRIVATE_ENGINES diff --git a/common/src/buttercup/common/clusterfuzz_parser/__init__.py b/common/src/buttercup/common/clusterfuzz_parser/__init__.py new file mode 100644 index 00000000..a05e0248 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_parser/__init__.py @@ -0,0 +1,1518 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Clusterfuzz commit 46968a275474422db32530a2126dfa30dc7f3d15 +"""Stack parsing module.""" +import os +import re +import string +import subprocess +from buttercup.common.clusterfuzz_parser.slice import * +from buttercup.common.clusterfuzz_parser import utils +from buttercup.common.clusterfuzz_parser import crash_analyzer + +class CrashInfo: + """Parsed crash information.""" + + def __init__(self): + self.crash_type = '' + self.crash_address = '' + self.crash_state = '' + self.crash_stacktrace = '' + self.frame_count = 0 + self.process_name = 'NULL' + self.process_died = False + + # Following fields are for internal use only and subject to change. Do not + # rely on these. + self.frames = [] + self.last_frame_id = -1 + self.raw_frames = [] + + # Additional tracking for Java bugs. + self.found_java_exception = False + + # Additional tracking for bad casts. + self.found_bad_cast_crash_end_marker = False + + # Additional tracking for check failures. + self.check_failure_source_file = '' + + # Additional tracking for fatal errors. + self.fatal_error_occurred = False + + # Additional tracking for lkl bugs. + self.lkl_kernel_build_id = None + + self.is_kasan = False + self.is_lkl = False + self.is_golang = False + self.is_python = False + self.found_python_crash = False + self.found_golang_crash = False + self.found_android_kernel_crash = False + + +def _filter_stack_frame(stack_frame): + """Filter stack frame.""" + # Filter out anonymous namespaces. + anonymous_namespaces = [ + 'non-virtual thunk to ', + '(anonymous namespace)::', + '`anonymous namespace\'::', + ] + for ns in anonymous_namespaces: + stack_frame = stack_frame.replace(ns, '') + + # Rsplit around '!'. + stack_frame = stack_frame.split('!')[-1] + + # Lsplit around '(', '['. + m = re.match(r'(.*?)[\(\[].*', stack_frame) + if m and m.group(1): + return m.group(1).strip() + + # Lsplit around ' '. + stack_frame = stack_frame.strip().split(' ')[0] + + return stack_frame + + +class StackParser: + """Stack parser.""" + + def __init__(self, + symbolized=True, + detect_ooms_and_hangs=True, + detect_v8_runtime_errors=False, + custom_stack_frame_ignore_regexes=None, + fuzz_target=None, + include_ubsan=True): + + if not custom_stack_frame_ignore_regexes: + custom_stack_frame_ignore_regexes = [] + + self.stack_frame_ignore_regex = re.compile( + r'(%s)' % '|'.join(STACK_FRAME_IGNORE_REGEXES + + custom_stack_frame_ignore_regexes)) + + self.stack_frame_ignore_regex_if_symbolized = re.compile( + r'(%s)' % '|'.join(STACK_FRAME_IGNORE_REGEXES_IF_SYMBOLIZED)) + + self.detect_ooms_and_hangs = detect_ooms_and_hangs + self.detect_v8_runtime_errors = detect_v8_runtime_errors + self.symbolized = symbolized + self.fuzz_target = fuzz_target + self.include_ubsan = include_ubsan + + def ignore_stack_frame(self, stack_frame): + """Return true if stack frame should not used in determining the + crash state.""" + # No data, should ignore. + if not stack_frame: + return True + + # Too short of a stack frame, nothing to do. + if len(stack_frame) < 3: + return True + + # Normalize path separator in stack frame, this allows to ignore strings + # properly cross-platform. + normalized_stack_frame = stack_frame.replace('\\', '/') + + # Check if the stack frame matches one of the ignore list regexes. + if self.stack_frame_ignore_regex.match(normalized_stack_frame): + return True + + if self.symbolized and self.stack_frame_ignore_regex_if_symbolized.match( + normalized_stack_frame): + return True + + return False + + def update_state_on_match(self, + compiled_regex: re.Pattern, + line: str, + state: CrashInfo, + new_type=None, + new_state=None, + new_frame_count=None, + new_address=None, + address_from_group=None, + type_from_group=None, + state_from_group=None, + address_filter=lambda s: s, + type_filter=lambda s: s, + reset=False) -> re.Match or None: + """Update the specified parts of the state if we have a match.""" + + match = compiled_regex.match(line) + if not match: + return None + + if reset: + state.crash_address = '' + state.crash_state = '' + state.frame_count = 0 + + # Direct updates. + if new_type is not None: + state.crash_type = new_type + + if new_state is not None: + state.crash_state = new_state + + if new_frame_count is not None: + state.frame_count = new_frame_count + + if new_address is not None: + state.crash_address = new_address + + # Updates from match groups. + if type_from_group is not None: + state.crash_type = type_filter(match.group(type_from_group)).strip() + + if address_from_group is not None: + state.crash_address = address_filter( + match.group(address_from_group)).strip() + + if state_from_group is not None: + state.crash_state = match.group(state_from_group) + + return match + + def add_frame_on_match(self, + compiled_regex: re.Pattern, + line: str, + state: CrashInfo, + group=0, + frame_filter=_filter_stack_frame, + demangle=False, + can_ignore=True, + frame_spec=None, + frame_override_func=None): + """Add a frame to the crash state if we have a match on this line.""" + match = compiled_regex.match(line) + if not match: + return None + + frame = match.group(group).strip() + + # Strip out unneeded structure. Remove this hack after modularizing tools. + for regex in STRIP_STRUCTURE_REGEXES: + structure_match = regex.match(frame) + if structure_match: + frame = structure_match.group(1) + break + + if demangle and environment.is_posix(): + pipe = subprocess.Popen( + ['c++filt', '-n', frame], + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + frame, _ = pipe.communicate() + frame = frame.decode('utf-8') + + # Try to parse the frame with the various stackframes. + frame_struct = None + if frame_spec is not None: + frame_struct = frame_spec.parse_stack_frame(match) + + # Account for case when we have no symbols and hence don't want to strip + # anonymous namespaces in the crash state. + if (frame_struct and frame_struct.module_offset and + not frame_struct.function_name): + frame_filter = lambda s: s + + # Update stacktrace frames list with frame struct. + new_thread = state.last_frame_id < 0 + try: + # We have a 'frame_id' group, so pull the ID and check if we need to + # start a new thread. Also update last_frame_id accordingly. + frame_id = int(match.group('frame_id').strip()) + if frame_id < state.last_frame_id: + new_thread = True + state.last_frame_id = frame_id + except IndexError: + # If there is not 'frame_id' group, just stick everything into one + # thread. + state.last_frame_id += 1 + + if new_thread: + state.frames.append([]) + state.frames[-1].append(frame_struct) + + if frame_override_func: + frame = frame_override_func(frame, frame_struct) + + # If we are ignoring a frame, we still have a match. Don't add it to the + # state, but notify the caller that we found something. + if can_ignore and self.ignore_stack_frame(frame): + return match + + # Filter the frame and add to a list. + filtered_frame = frame_filter(frame) + state.raw_frames.append(filtered_frame) + + # Update the crash state only if we need more frames. + if state.frame_count < MAX_CRASH_STATE_FRAMES: + state.crash_state += filtered_frame + '\n' + state.frame_count += 1 + + return match + + def update_state_on_check_failure(self, state, line, regex, crash_type): + """Update the state if the crash is a CHECK failure.""" + check_match = self.update_state_on_match( + regex, line, state, new_type=crash_type, reset=True, new_frame_count=1) + if check_match: + failure_string = fix_check_failure_string(check_match.group(2)) + source_file = fix_filename_string(check_match.group(1)) + state.crash_state = '%s in %s\n' % (failure_string, source_file) + + def match_assert(self, line, state, regex, group=1): + """Match an assert.""" + assert_match = self.update_state_on_match( + regex, line, state, new_type='ASSERT', new_frame_count=1) + if assert_match and assert_match.group(group): + # For asserts, we want to actually use the match as the crash state. + state.crash_state = assert_match.group(group) + '\n' + + def filter_crash_parameters(self, state): + """Normalize crash parameters into generic format regardless of the tool + used.""" + # Filter crash state represented in |state|. + # Remove non-printable chars from crash state. + state.crash_state = ''.join( + s for s in state.crash_state if s in string.printable) + + # Shorten JNI messages. + if JNI_ERROR_STRING in state.crash_state: + state.crash_state = state.crash_state.replace(JNI_ERROR_STRING, 'JNI:') + + if self.symbolized: + # Normalize addresses and numbers in crash_state. + # Skip normalization for V8 correctness failures, which use the crash + # state to store metadata containing numbers. + if state.crash_type not in ['V8 correctness failure']: + state.crash_state = filter_addresses_and_numbers(state.crash_state) + + # Truncate each line in the crash state to avoid excessive length. + original_crash_state = state.crash_state + state.crash_state = '' + for line in original_crash_state.splitlines(): + # Exclude bad-cast line for bad cast testcases. + # FIXME: Find a way to make bad-cast lines shorter and then remove this. + if line.startswith('Bad-cast'): + state.crash_state += line + '\n' + else: + state.crash_state += line[:LINE_LENGTH_CAP] + '\n' + + # Don't return an empty crash state if we have a crash type. Either set + # to NULL or use the crashing process name if available. + if state.crash_type and not state.crash_state.strip(): + state.crash_state = state.process_name + + # For timeout, OOMs, const-input-overwrites in fuzz targets, force use of + # fuzz target name since stack itself is not usable for deduplication. + if self.fuzz_target and state.crash_type in [ + 'Out-of-memory', 'Timeout', 'Overwrites-const-input' + ]: + state.crash_state = self.fuzz_target + + # Add a trailing \n if it does not exist in crash state. + if (state.crash_state and state.crash_state != 'NULL' and + state.crash_state[-1] != '\n'): + state.crash_state += '\n' + + # Normalize access size parameter if greater than 16 bytes. + m = re.match('([^0-9]+)([0-9]+)', state.crash_type, re.DOTALL) + if m: + num = int(m.group(2)) + if num > 16: + num = '{*}' + + state.crash_type = ( + state.crash_type[:len(m.group(1))] + str(num) + + state.crash_type[m.end():]) + + # On some platforms crash address is unnecessarily long. We can truncate it. + if (state.crash_address.startswith('0x0000') and + len(state.crash_address) == 18): + state.crash_address = '0x%s' % state.crash_address[len('0x0000'):] + + # Report null dereferences as such. + if state.crash_address and state.crash_type.startswith('UNKNOWN'): + int_crash_address = crash_analyzer.address_to_integer(state.crash_address) + if crash_analyzer.is_null_dereference(int_crash_address): + state.crash_type = state.crash_type.replace('UNKNOWN', + 'Null-dereference') + + return state + + def remove_lkl_kernel_times_and_set_params(self, state, crash_data): + """Filter kernel time from crash_data if LKL.""" + result = '' + for line in crash_data.splitlines(): + clean_line = ANDROID_KERNEL_TIME_REGEX.sub('', line) + result += clean_line + '\n' + if not state.lkl_kernel_build_id: + match = LINUX_VERSION_REGEX_LKL.match(clean_line) + if match: + state.lkl_kernel_build_id = match.group(2) + return result + + @staticmethod + def split_stacktrace(stacktrace: str): + """Split stacktrace by line, and handle special cases.""" + # Fix a known malformed traceback pattern: + # A newline character is missing between the important crash info line and + # an ignorable sanitizer output line. + # Insert the newline char back between them so that the crash info can be + # preserved for parsing later. + stacktrace = re.sub(CONCATENATED_SAN_DEADLYSIGNAL_REGEX, + SPLIT_CONCATENATED_SAN_DEADLYSIGNAL_REGEX, stacktrace) + return stacktrace.splitlines() + + def parse(self, stacktrace: str) -> CrashInfo: + """Parse a stacktrace.""" + state = CrashInfo() + state.crash_stacktrace = stacktrace + state.is_kasan = 'KASAN' in stacktrace + state.is_lkl = LINUX_KERNEL_MODULE_STACK_TRACE in stacktrace + state.is_golang = '.go:' in stacktrace + state.is_python = '.py", line' in stacktrace + + # For Android LKL (and potentially kernel output), the KASAN crash may start + # with the time since boot. We need to remove this so that our regexes + # match. + # We also want to set the kernel build id here since we are already walking + # line by line. + if state.is_lkl: + stacktrace = self.remove_lkl_kernel_times_and_set_params( + state, stacktrace) + + split_crash_stacktrace = StackParser.split_stacktrace(stacktrace) + + if state.is_python: + split_crash_stacktrace = reverse_python_stacktrace(split_crash_stacktrace) + + for line in split_crash_stacktrace: + if should_ignore_line_for_crash_processing(line, state): + continue + + # Bail out from crash paramater parsing if we detect this is a + # out-of-memory signature. + if not self.detect_ooms_and_hangs and OUT_OF_MEMORY_REGEX.match(line): + return CrashInfo() + + # Ignore aborts, breakpoints, ills and traps for asserts, check and + # dcheck failures. These are intended, retain their original state. + if (SAN_ABRT_REGEX.match(line) or SAN_BREAKPOINT_REGEX.match(line) or + SAN_ILL_REGEX.match(line) or SAN_TRAP_REGEX.match(line)): + if state.crash_type in IGNORE_CRASH_TYPES_FOR_ABRT_BREAKPOINT_AND_ILLS: + continue + + # Assertions always come first, before the actual crash stacktrace. + # However if we already have a kernel crash, we don't want to + # replace it with the ASSERT. + if not state.crash_type.startswith('Kernel failure'): + self.match_assert(line, state, ASSERT_REGEX) + self.match_assert(line, state, ASSERT_REGEX_GOOGLE, group=2) + self.match_assert(line, state, ASSERT_REGEX_GLIBC) + self.match_assert(line, state, ASSERT_REGEX_GLIBC_SUFFIXED) + self.match_assert(line, state, RUST_ASSERT_REGEX) + + # ASSERT_NOT_REACHED prints a single line error then triggers a crash. We + # set the crash state here, but look for the stack after a crash on an + # unknown address. + self.update_state_on_match( + ASSERT_NOT_REACHED_REGEX, + line, + state, + new_type='ASSERT_NOT_REACHED', + reset=True) + + # Platform specific: Linux gdb crash type format. + self.update_state_on_match( + LINUX_GDB_CRASH_TYPE_REGEX, + line, + state, + type_from_group=1, + type_filter=lambda s: s.upper()) + + # Platform specific: Linux gdb crash address format. + self.update_state_on_match( + LINUX_GDB_CRASH_ADDRESS_REGEX, line, state, address_from_group=1) + + # Platform specific: Linux gdb crash address format no registers + self.update_state_on_match( + LINUX_GDB_CRASH_ADDRESS_NO_REGISTERS_REGEX, + line, + state, + address_from_group=1) + + # Platform specific: Mac gdb style crash address format. + self.update_state_on_match( + MAC_GDB_CRASH_ADDRESS_REGEX, line, state, address_from_group=1) + + # Platform specific: Windows cdb style crash type and address format. + if self.update_state_on_match( + WINDOWS_CDB_CRASH_TYPE_ADDRESS_REGEX, + line, + state, + type_from_group=1, + address_from_group=2, + type_filter=lambda s: s.upper()): + # Use a consistent format for CDB stacks. + state.crash_address = '0x%s' % state.crash_address + + # MemorySanitizer / ThreadSanitizer crashes. + # Make sure to skip the end marker |SUMMARY:|. + if ' suppressions' not in line and ' warnings' not in line: + self.update_state_on_match( + MSAN_TSAN_REGEX, + line, + state, + reset=True, + type_from_group=2, + type_filter=lambda s: s.capitalize()) + + # LSan can report multiple stacks, so do not clear existing state unless + # this is a report for an indirect leak. Direct leaks are higher priority. + if not state.crash_type or state.crash_type == 'Indirect-leak': + self.update_state_on_match( + LSAN_DIRECT_LEAK_REGEX, + line, + state, + new_type='Direct-leak', + reset=True) + + # It's possible that we have a cycle that causes us to only detect + # indirect leaks, and LSan reports them after any direct leaks. If an + # indirect leak accompanies a direct leak, we don't care about it. + if not state.crash_type: + self.update_state_on_match( + LSAN_INDIRECT_LEAK_REGEX, + line, + state, + new_type='Indirect-leak', + reset=True) + + # UndefinedBehavior Sanitizer VPTR (bad-cast) crash. + if not state.crash_type and self.include_ubsan: + ubsan_vptr_match = self.update_state_on_match( + UBSAN_VPTR_REGEX, + line, + state, + new_type='Bad-cast', + new_frame_count=0, + address_from_group=3) + if ubsan_vptr_match: + state.crash_state = 'Bad-cast to %s' % ( + ubsan_vptr_match.group(4)).strip("'") + state.found_bad_cast_crash_end_marker = False + + # Get source type information for bad-cast. + if (state.crash_type == 'Bad-cast' and + not state.found_bad_cast_crash_end_marker): + downcast_match = UBSAN_VPTR_INVALID_DOWNCAST_REGEX.match(line) + if not downcast_match: + downcast_match = CFI_INVALID_DOWNCAST_REGEX.match(line) + if downcast_match: + state.crash_state += ' from %s' % (downcast_match.group(1)).strip("'") + state.found_bad_cast_crash_end_marker = True + + if (UBSAN_VPTR_INVALID_VPTR_REGEX.match(line) or + CFI_INVALID_VPTR_REGEX.match(line)): + state.crash_state += ' from invalid vptr' + state.found_bad_cast_crash_end_marker = True + + if CFI_FUNC_DEFINED_HERE_REGEX.match(line): + state.found_bad_cast_crash_end_marker = True + + # Ubsan's -fsanitize=vptr crash extra info for member access. + invalid_offset_match = UBSAN_VPTR_INVALID_OFFSET_REGEX.match(line) + if invalid_offset_match: + state.crash_state += (' from base class subobject at offset %s' % + invalid_offset_match.group(1)) + state.found_bad_cast_crash_end_marker = True + + if state.found_bad_cast_crash_end_marker: + state.crash_state += '\n' + state.frame_count += 1 + + # CFI bad-cast crash. + if not state.crash_type: + cfi_bad_cast_match = self.update_state_on_match( + CFI_ERROR_REGEX, + line, + state, + new_type='Bad-cast', + new_frame_count=0) + if cfi_bad_cast_match: + state.crash_state = 'Bad-cast to %s' % ( + cfi_bad_cast_match.group(2).strip("'")) + if cfi_bad_cast_match.group(4): + state.crash_address = cfi_bad_cast_match.group(4) + state.found_bad_cast_crash_end_marker = False + + # CFI bad-cast crash without extra debugging information. + if not state.crash_type: + self.update_state_on_match( + CFI_NODEBUG_ERROR_MARKER_REGEX, + line, + state, + new_type='Bad-cast', + new_frame_count=0) + + # Other UndefinedBehavior Sanitizer crash. + ubsan_runtime_match = UBSAN_RUNTIME_ERROR_REGEX.match(line) + if ubsan_runtime_match and not state.crash_type and self.include_ubsan: + reason = ubsan_runtime_match.group(2) + state.crash_type = 'UNKNOWN' + + for ubsan_crash_regex, ubsan_crash_type in UBSAN_CRASH_TYPES_MAP: + if self.update_state_on_match( + ubsan_crash_regex, reason, state, new_type=ubsan_crash_type): + break + + if state.crash_type == 'UNKNOWN': + logs.log_error( + 'Unknown UBSan crash type: {reason}'.format(reason=reason)) + + state.crash_address = '' + state.crash_state = '' + state.frame_count = 0 + + # AddressSanitizer for memory overlap crash. + self.update_state_on_match( + ASAN_MEMCPY_OVERLAP_REGEX, + line, + state, + new_type='Memcpy-param-overlap', + reset=True, + address_from_group=2) + + # Golang stacktraces. + if state.is_golang: + for golang_crash_regex, golang_crash_type in GOLANG_CRASH_TYPES_MAP: + if self.update_state_on_match( + golang_crash_regex, line, state, new_type=golang_crash_type): + state.found_golang_crash = True + state.crash_state = '' + state.frame_count = 0 + continue + + # Python stacktraces. + if state.is_python: + for python_crash_regex, python_crash_type in PYTHON_CRASH_TYPES_MAP: + if self.update_state_on_match( + python_crash_regex, line, state, new_type=python_crash_type): + state.found_python_crash = True + state.crash_state = '' + state.frame_count = 0 + continue + + # Sanitizer SEGV crashes. + segv_match = SAN_SEGV_REGEX.match(line) + if segv_match: + temp_crash_address = segv_match.group(3) + if 'ASSERT' in state.crash_type: + # We usually use the last crash from the stacktrace for the crash + # state, but when we see an UNKNOWN crash triggered by an ASSERT, we + # don't want to overwrite the type, state, and address. + int_crash_address = crash_analyzer.address_to_integer( + temp_crash_address) + if (crash_analyzer.is_assert_crash_address(int_crash_address) or + SAN_SIGNAL_REGEX.match(stacktrace)): + continue + + state.crash_type = 'UNKNOWN' + state.crash_address = temp_crash_address + state.crash_state = '' + state.frame_count = 0 + continue + + # AddressSanitizer free on non malloc()-ed address. + if self.update_state_on_match( + ASAN_INVALID_FREE_REGEX, + line, + state, + new_type='Invalid-free', + reset=True, + address_from_group=1): + continue + + # AddressSanitizer double free crash. + if self.update_state_on_match( + ASAN_DOUBLE_FREE_REGEX, + line, + state, + new_type='Heap-double-free', + reset=True, + address_from_group=3): + continue + + # Sanitizer floating point exception. + if self.update_state_on_match( + SAN_FPE_REGEX, + line, + state, + new_type='Floating-point-exception', + reset=True): + continue + + # Sanitizer regular crash (includes ills, abrt, etc). + # However if we have a Go, Python, or Kernel crash, don't replace + # this with sanitizer signal handler failure. + if (not state.crash_type.startswith('Kernel failure') and + not state.found_golang_crash and not state.found_python_crash): + self.update_state_on_match( + SAN_ADDR_REGEX, + line, + state, + type_from_group=2, + address_from_group=4, + reset=True, + type_filter=fix_sanitizer_crash_type) + + # Windows formats and surfaces ILL differently from Linux/Posix + # Update crash type for consistency. + self.update_state_on_match( + WINDOWS_SAN_ILL_REGEX, line, state, new_type='Ill', reset=False) + + # Overwrite Unknown-crash type with more generic UNKNOWN type. + if state.crash_type == 'Unknown-crash': + state.crash_type = 'UNKNOWN' + + # Sanitizer SEGV type for unknown crashes. + segv_type_match = SAN_SEGV_CRASH_TYPE_REGEX.match(line) + if segv_type_match and state.crash_type == 'UNKNOWN': + segv_type = segv_type_match.group(1) + if segv_type != 'UNKNOWN': + state.crash_type += ' ' + segv_type + + # Sanitizer crash type and address format. + if not state.is_kasan: + crash_type_and_address_match = self.update_state_on_match( + SAN_CRASH_TYPE_ADDRESS_REGEX, line, state, address_from_group=3) + if crash_type_and_address_match and not state.crash_type.startswith( + 'UNKNOWN'): + state.crash_type += '\n%s %s' % (crash_type_and_address_match.group( + 1).upper(), crash_type_and_address_match.group(2)) + + # Android SEGVs. + # Exclude fatal signal lines from resetting state when we already have + # one. Fatal signal lines can often follow the same stack we already + # processed before. If we process these, we will lose the crash state. + state_needs_change = (not state.crash_type.startswith('UNKNOWN') or + 'Fatal signal' not in line) + if state_needs_change: + android_segv_match = self.update_state_on_match( + ANDROID_SEGV_REGEX, line, state, new_type='UNKNOWN', reset=True) + if android_segv_match: + state.found_java_exception = False + + # Set the crash address for SEGVs. + if 'SIGSEGV' in line: + state.crash_address = android_segv_match.group(1) + if not state.crash_address.startswith('0x'): + state.crash_address = '0x%s' % state.crash_address + + # Set process name (if available). + process_name_match = ANDROID_PROCESS_NAME_REGEX.match( + android_segv_match.group(2)) + if process_name_match: + state.process_name = process_name_match.group(1).capitalize() + + # Android SIGABRT handling. + android_abort_match = self.update_state_on_match( + ANDROID_ABORT_REGEX, + line, + state, + new_type='CHECK failure', + new_address='') + if android_abort_match: + state.found_java_exception = True + abort_string = android_abort_match.group(1) + parts = abort_string.split(' ', 1) + if len(parts) == 2: + check_failure_string = parts[1] + filename_without_fatal = parts[0].replace('FATAL:', '') + stack_frame = '%s in %s' % ( + fix_check_failure_string(check_failure_string), + fix_filename_string(filename_without_fatal)) + else: + stack_frame = fix_check_failure_string(abort_string) + state.crash_state = stack_frame + '\n' + state.frame_count = 1 + + # Android kernel errors are only checked if this is not a KASan build. + # Otherwise, we might overwrite the KASan report which contains more + # useful information. + if not state.is_kasan: + self.update_state_on_match( + ANDROID_KERNEL_ERROR_REGEX, + line, + state, + new_type='Kernel failure', + reset=True, + type_from_group=3, + type_filter=get_fault_description_for_android_kernel) + + # Kernel Panic + self.update_state_on_match( + KERNEL_PANIC, + line, + state, + new_type='Kernel failure', + reset=True, + type_from_group=1, + type_filter=filter_kernel_panic_crash_type) + + self.update_state_on_match( + KERNEL_BUG, + line, + state, + new_type='Kernel failure', + type_from_group=1, + type_filter=filter_kasan_crash_type) + + # Generic KASan errors. + if self.update_state_on_match( + KASAN_CRASH_TYPE_ADDRESS_REGEX, + line, + state, + new_type='Kernel failure', + type_from_group=1, + address_from_group=4, + type_filter=filter_kasan_crash_type): + state.crash_address = f'0x{state.crash_address}' + + # Generic KASan errors with an address range. + if self.update_state_on_match( + KASAN_CRASH_TYPE_ADDRESS_RANGE_REGEX, + line, + state, + new_type='Kernel failure', + type_from_group=1, + address_from_group=3, + type_filter=filter_kasan_crash_type): + state.crash_address = state.crash_address + + # Generic KASan errors without an address. + self.update_state_on_match( + KASAN_CRASH_TYPE_FUNCTION_REGEX, + line, + state, + new_type='Kernel failure', + type_from_group=1, + type_filter=filter_kasan_crash_type) + + # KASan GPFs. + self.update_state_on_match( + KASAN_GPF_REGEX, + line, + state, + new_type='Kernel failure\nGeneral-protection-fault') + + # GPU Failure. + self.update_state_on_match( + GPU_PROCESS_FAILURE, + line, + state, + new_type='GPU failure', + new_state='', + reset=True) + + # Command injection bugs detected by extra sanitizers. + self.update_state_on_match( + EXTRA_SANITIZERS_COMMAND_INJECTION_REGEX, + line, + state, + new_type='Command injection') + + # Arbitrary file open detected by extra sanitizers. + self.update_state_on_match( + EXTRA_SANITIZERS_ARBITRARY_FILE_OPEN_REGEX, + line, + state, + new_type='Arbitrary file open') + + # Arbitrary DNS resolution detected by extra sanitizers. + self.update_state_on_match( + EXTRA_SANITIZERS_ARBITRARY_DNS, + line, + state, + new_type='Arbitrary DNS resolution') + + # Issue detected by PySecSan + self.update_state_on_match( + EXTRA_SANITIZERS_PYSECSAN, line, state, new_type='PySecSan') + + # For KASan crashes, additional information about a bad access may come + # from a later line. Update the type and address if this happens. + update_kasan_crash_details(state, line) + + # Sanitizer tool check failure. + san_check_match = self.update_state_on_match( + SAN_CHECK_FAILURE_REGEX, + line, + state, + new_type='Sanitizer CHECK failure', + new_address='', + new_frame_count=MAX_CRASH_STATE_FRAMES) + if san_check_match: + state.crash_state = '%s\n' % san_check_match.group(1) + state.process_died = True + continue + + # Security check failures. + self.update_state_on_check_failure( + state, line, SECURITY_CHECK_FAILURE_REGEX, 'Security CHECK failure') + self.update_state_on_check_failure( + state, line, SECURITY_DCHECK_FAILURE_REGEX, 'Security DCHECK failure') + + # Timeout/OOM detected by libFuzzer and Centipede. + if self.detect_ooms_and_hangs: + for timeout_regex in [LIBFUZZER_TIMEOUT_REGEX, CENTIPEDE_TIMEOUT_REGEX]: + self.update_state_on_match( + timeout_regex, line, state, new_type='Timeout', reset=True) + self.update_state_on_match( + OUT_OF_MEMORY_REGEX, + line, + state, + new_type='Out-of-memory', + reset=True) + + # The following parsing signatures don't lead to crash state overwrites. + if not state.crash_type: + # Windows cdb stack overflow. + self.update_state_on_match( + WINDOWS_CDB_STACK_OVERFLOW_REGEX, + line, + state, + new_type='Stack-overflow') + + # Windows cdb generic type regex. + self.update_state_on_match( + WINDOWS_CDB_CRASH_TYPE_REGEX, + line, + state, + type_from_group=1, + type_filter=fix_win_cdb_crash_type) + + # Generic ASan regex. + self.update_state_on_match( + ASAN_REGEX, + line, + state, + reset=True, + type_from_group=2, + type_filter=fix_sanitizer_crash_type) + + # HWASan object address for allocation tail overwritten is on same line + # as crash type, so add it here. + self.update_state_on_match( + HWASAN_ALLOCATION_TAIL_OVERWRITTEN_ADDRESS_REGEX, + line, + state, + address_from_group=1) + + if self.update_state_on_match( + JAZZER_JAVA_SECURITY_EXCEPTION_REGEX, + line, + state, + new_type='Security exception'): + state.found_java_exception = True + elif self.update_state_on_match( + JAZZER_JAVA_EXCEPTION_REGEX, + line, + state, + new_type='Uncaught exception'): + state.found_java_exception = True + + if self.update_state_on_match( + WYCHEPROOF_JAVA_EXCEPTION, + line, + state, + new_type='Wycheproof error', + state_from_group=1): + state.found_java_exception = True + + # Android fatal exceptions. + if self.update_state_on_match( + ANDROID_FATAL_EXCEPTION_REGEX, + line, + state, + new_type='Fatal Exception', + reset=True): + state.found_java_exception = True + + # Check failures. + self.update_state_on_check_failure(state, line, GOOGLE_LOG_FATAL_REGEX, + 'Fatal error') + self.update_state_on_check_failure( + state, line, CHROME_CHECK_FAILURE_REGEX, 'CHECK failure') + self.update_state_on_check_failure( + state, line, GOOGLE_CHECK_FAILURE_REGEX, 'CHECK failure') + + # V8 and Golang fatal errors. + fatal_error_match = self.update_state_on_match( + FATAL_ERROR_REGEX, line, state, new_type='Fatal error', reset=True) + if fatal_error_match: + state.fatal_error_occurred = True + state.crash_state = _filter_stack_frame(fatal_error_match.group(1)) + + if state.is_golang: + golang_fatal_error_match = self.update_state_on_match( + GOLANG_FATAL_ERROR_REGEX, + line, + state, + new_type='Fatal error', + reset=True) + if golang_fatal_error_match: + state.crash_state = golang_fatal_error_match.group(1) + '\n' + + # V8 runtime errors. + if self.detect_v8_runtime_errors: + runtime_error_match = ( + self.update_state_on_match( + RUNTIME_ERROR_REGEX, + line, + state, + new_type='RUNTIME_ASSERT', + reset=True)) + if runtime_error_match: + state.crash_state = _filter_stack_frame( + runtime_error_match.group(1)) + state.fatal_error_occurred = True + + # V8 abort errors. + abort_error_match = self.update_state_on_match( + V8_ABORT_FAILURE_REGEX, line, state, new_type='ASSERT', reset=True) + if abort_error_match: + abort_error = abort_error_match.group(1) + match = V8_ABORT_METADATA_REGEX.match(abort_error) + if match: + abort_error = match.group(1) + abort_filename = fix_filename_string(match.group(2)) + state.crash_state = '%s\n%s' % (abort_error, abort_filename) + else: + state.crash_state = abort_error + state.frame_count = MAX_CRASH_STATE_FRAMES + + # V8 API errors. + v8_error_match = self.update_state_on_match( + V8_ERROR_REGEX, line, state, new_type='V8 API error', reset=True) + if v8_error_match: + state.crash_state = v8_error_match.group(1) + '\n' + + # V8 correctness failure errors. + self.update_state_on_match( + V8_CORRECTNESS_FAILURE_REGEX, + line, + state, + new_type='V8 correctness failure', + reset=True) + + # Generic SEGV handler errors. + self.update_state_on_match( + GENERIC_SEGV_HANDLER_REGEX, + line, + state, + new_type='UNKNOWN', + address_from_group=1, + address_filter=lambda s: '0x' + s, + reset=True) + + # Libfuzzer fatal signal errors. + self.update_state_on_match( + LIBFUZZER_DEADLY_SIGNAL_REGEX, + line, + state, + new_type='Fatal-signal', + reset=True) + + # Libfuzzer fuzz target exited errors. + self.update_state_on_match( + LIBFUZZER_FUZZ_TARGET_EXITED_REGEX, + line, + state, + new_type='Unexpected-exit', + reset=True) + + # Libfuzzer fuzz target overwrites const input errors. + self.update_state_on_match( + LIBFUZZER_OVERWRITES_CONST_INPUT_REGEX, + line, + state, + new_type='Overwrites-const-input', + reset=True) + + # Missing library (e.g. a shared library missing in build archive). + self.update_state_on_match( + LIBRARY_NOT_FOUND_ANDROID_REGEX, + line, + state, + new_type='Missing-library', + state_from_group=2, + reset=True) + self.update_state_on_match( + LIBRARY_NOT_FOUND_LINUX_REGEX, + line, + state, + new_type='Missing-library', + state_from_group=1, + reset=True) + + if state.fatal_error_occurred: + error_line_match = self.update_state_on_match( + FATAL_ERROR_LINE_REGEX, line, state, new_type='Fatal error') + if not error_line_match and self.detect_v8_runtime_errors: + error_line_match = self.update_state_on_match( + RUNTIME_ERROR_LINE_REGEX, line, state, new_type='RUNTIME_ASSERT') + + if error_line_match: + state.check_failure_source_file = fix_filename_string( + error_line_match.group(1)) + state.crash_state = '%s\n' % state.check_failure_source_file + continue + + # Generic fatal errors should be replaced by (D)CHECK failures. + check_failure_match = self.update_state_on_match( + FATAL_ERROR_DCHECK_FAILURE, + line, + state, + new_type='DCHECK failure', + reset=True) + + if not check_failure_match: + check_failure_match = self.update_state_on_match( + FATAL_ERROR_CHECK_FAILURE, + line, + state, + new_type='CHECK failure', + reset=True) + + if not check_failure_match: + check_failure_match = self.update_state_on_match( + FATAL_ERROR_GENERIC_FAILURE, line, state, reset=True) + + if check_failure_match and check_failure_match.group(2).strip(): + failure_string = fix_check_failure_string( + check_failure_match.group(2)) + if state.check_failure_source_file: + state.crash_state = '%s in %s\n' % (failure_string, + state.check_failure_source_file) + else: + state.crash_state = '%s\n' % failure_string + state.frame_count = 1 + + new_state = None + if state.check_failure_source_file: + new_state = '%s\n' % state.check_failure_source_file + self.update_state_on_match( + FATAL_ERROR_UNREACHABLE, + line, + state, + new_state=new_state, + new_type='Unreachable code', + reset=True) + + # Check cases with unusual stack start markers. + self.update_state_on_match( + WINDOWS_CDB_STACK_START_REGEX, + line, + state, + new_state='', + new_frame_count=0) + + # Stack frame parsing signatures. + # Don't allow more stack frames if a certain stop marker is seen. + if (state.crash_state and + utils.sub_string_exists_in(STATE_STOP_MARKERS, line)): + state.frame_count = MAX_CRASH_STATE_FRAMES + continue + + # No stack frame parsing required until we get a crash type. + if not state.crash_type: + continue + + # For JNI errors, don't use stack frames for crash state from art/runtime, + # since it helps to do testcase de-duplication. + if JNI_ERROR_STRING in state.crash_state and '/art/runtime/' in line: + continue + + # Platform specific: Windows cdb style stack frame. + if self.add_frame_on_match( + WINDOWS_CDB_STACK_FRAME_REGEX, + line, + state, + group=4, + frame_spec=WINDOWS_CDB_STACK_FRAME_SPEC): + continue + + # Platform specific: Linux and mac gdb, ASAN, MSAN, UBSAN style + # stack frame. Try the regex with symbols first i.e. with + # addresses and function names. + if self.add_frame_on_match( + SAN_STACK_FRAME_REGEX, + line, + state, + group=3, + frame_spec=SAN_STACK_FRAME_SPEC, + frame_override_func=llvm_test_one_input_override): + continue + + # Chrome symbolized stack frame regex. + if self.add_frame_on_match( + CHROME_STACK_FRAME_REGEX, + line, + state, + group=4, + frame_spec=CHROME_STACK_FRAME_SPEC): + continue + + # Chrome symbolized stack frame regex (Mac only). + if self.add_frame_on_match( + CHROME_MAC_STACK_FRAME_REGEX, + line, + state, + group=6, + demangle=True, + frame_spec=CHROME_MAC_STACK_FRAME_SPEC): + continue + + # Chrome symbolized stack frame regex (Windows only). + if self.add_frame_on_match( + CHROME_WIN_STACK_FRAME_REGEX, + line, + state, + group=1, + frame_spec=CHROME_WIN_STACK_FRAME_SPEC): + continue + + if state.found_java_exception: + if (state.crash_type in [ + 'CHECK failure', + 'Fatal Exception', + 'Uncaught exception', + 'Security exception', + ]): + self.add_frame_on_match( + JAVA_EXCEPTION_CRASH_STATE_REGEX, line, state, group=1) + continue + + # Android kernel stack frame. + android_kernel_match = self.add_frame_on_match( + ANDROID_KERNEL_STACK_FRAME_REGEX, line, state, group=3) + if android_kernel_match: + state.found_android_kernel_crash = True + + # Update address from the first stack frame unless we already have + # more detailed information from KASan. + if state.frame_count == 1 and not state.is_kasan: + state.crash_address = '0x%s' % android_kernel_match.group(1) + continue + + # Android kernel stack frame without address + if self.add_frame_on_match( + ANDROID_KERNEL_STACK_FRAME_NO_ADDRESS_REGEX, line, state, group=2): + state.found_android_kernel_crash = True + continue + + # V8 correctness fuzzer metadata. + if self.add_frame_on_match( + V8_CORRECTNESS_METADATA_REGEX, + line, + state, + group=1, + frame_filter=lambda s: s): + continue + + # Golang stack frames. + if state.is_golang and self.add_frame_on_match( + GOLANG_STACK_FRAME_FUNCTION_REGEX, + line, + state, + group=1, + frame_filter=lambda s: s.split('/')[-1]): + continue + + # Python stack frames. + if state.is_python and self.add_frame_on_match( + PYTHON_STACK_FRAME_FUNCTION_REGEX, line, state, group=3): + continue + + # Detect cycles in stack overflow bugs and update crash state. + update_crash_state_for_stack_overflow_if_needed(state) + + # Convert crash parameters into a generic format regardless of the tool + # used. + self.filter_crash_parameters(state) + + return state + + +def filter_addresses_and_numbers(stack_frame): + """Return a normalized string without unique addresses and numbers.""" + # Remove offset part from end of every line. + result = re.sub(r'\+0x[0-9a-fA-F]+\n', '\n', stack_frame, re.DOTALL) + + # Replace sections that appear to be addresses with the string "ADDRESS". + address_expression = r'0x[a-fA-F0-9]{4,}[U]*' + address_replacement = r'ADDRESS' + result = re.sub(address_expression, address_replacement, result) + + # Replace sections that appear to be numbers with the string "NUMBER". + # Cases that we are avoiding: + # - source.cc:1234 + # - libsomething-1.0.so (to avoid things like NUMBERso in replacements) + number_expression = r'(^|[^:0-9.])[0-9.]{4,}($|[^A-Za-z0-9.])' + number_replacement = r'\1NUMBER\2' + return re.sub(number_expression, number_replacement, result) + + +def should_ignore_line_for_crash_processing(line, state): + """Check to see if a line should be displayed in a report, but ignored when + processing crashes.""" + # If we detected that the process had died, we won't use any further stack + # frames to make decision on crash parameters. + if state.process_died: + return True + + # Ignore console information messages, as they are not relevant to crash + # parameters parsing. + if ':INFO:CONSOLE' in line: + return True + + # Ignore summary lines. + if 'SUMMARY:' in line: + return True + + # Ignore warnings from ASan, but not other sanitizer tools. + if 'WARNING: AddressSanitizer' in line: + return True + + # Exclusion for mprotect warning on address 0x00010000. This is a harmless + # coverage buffer size warning, and is fixed in clang r234602. + if 'failed to mprotect 0x00010000' in line: + return True + + # Ignore certain lines printed by dump render tree. + if 'text run at (' in line: + return True + + # Ignore this unneeded JNI abort error message since it will be followed by + # the needed stacktrace later. + if 'Please include Java exception stack in crash report' in line: + return True + + # Ignore DEADLYSIGNAL lines from sanitizers. + if SAN_DEADLYSIGNAL_REGEX.match(line): + return True + + return False + + +def fix_sanitizer_crash_type(crash_type): + """Ensure that Sanitizer crashes use generic formats.""" + # General normalization. + crash_type = crash_type.lower().replace('_', '-').capitalize() + + # Use more generic types for certain Sanitizer ones. + crash_type = crash_type.replace('Int-divide-by-zero', 'Divide-by-zero') + + return crash_type + + +def fix_win_cdb_crash_type(crash_type): + """Convert a Windows CDB crash type into ASAN like format.""" + # Strip application verifier string from crash type suffix. + crash_type = utils.strip_from_right(crash_type, '_AVRF') + + # Standardize crash type with lowercase, hyphens and capitalization. + crash_type = crash_type.replace('_', '-').lower().capitalize() + + # Change crash type to other common types. + crash_type = crash_type.replace('Status-integer-overflow', 'Integer-overflow') + crash_type = crash_type.replace('Status-integer-divide-by-zero', + 'Divide-by-zero') + return crash_type + + +def fix_check_failure_string(failure_string): + """Cleanup values that should not be included in CHECK failure strings.""" + # Remove |CHECK_FAILURE_PATTERN| from start of failure string. + failure_string = utils.strip_from_left(failure_string, CHECK_FAILURE_PATTERN) + + # Handle cases like "CHECK_EQ( (unsigned)ptr[0],1u) failed: 25 vs. 1". + # This only happens on Android, where we cannot strip the + # CHECK_FAILURE_PATTERN, so we looked for "failed:" as preceding string. + failure_string = re.sub(r'(?<=failed): .*\svs\.\s.*$', r'', failure_string) + + # Handle cases like "len > 0 (-1 vs. 0)". + failure_string = re.sub(r' \(.*\s+vs\.\s+.*', r'', failure_string) + + # Handle cases like ": '....'", '= "..."', etc. + failure_string = re.sub(r'\s*[:=]\s*([\'"]).*\1$', r'', failure_string) + + # Strip unneeded chars at end. + return failure_string.strip(' .\'"[]') + + +def fix_filename_string(filename_string): + """Fix filename string to remove line number, path and other invalid chars.""" + # Remove invalid chars at ends first. + filename_string = filename_string.strip(' .\'"[]') + + # Remove the source line number information. + filename_string = filename_string.split(':')[0].split('(')[0] + + # Replace backslashes with forward slashes for platform consistency. + filename_string = filename_string.replace('\\', '/') + + # Remove the path information. + filename_string = os.path.basename(filename_string) + + return filename_string + + +def get_fault_description_for_android_kernel(code): + """Return human readable fault description based on numeric FSR value.""" + # Convert code from string to number. + try: + code = int(code, 16) + except: + return 'BUG' + + # Figure out where is out-of-bounds read or write. + if code & 0x800 == 0: + fault = 'READ' + else: + fault = 'WRITE' + fault += ' ' + + # The full status code is bits 12, 10, and 0-3, but we're ignoring 12 and 10. + status = code & 0b1111 + try: + fault += ANDROID_KERNEL_STATUS_TO_STRING[status] + except KeyError: + fault += 'Unknown' + + fault += ' (%s)' % str(code) + return 'Kernel failure\n' + fault + + +def filter_kasan_crash_type(crash_type): + """Filter a KASan crash type.""" + return 'Kernel failure\n%s' % crash_type.replace(' ', '-').capitalize() + + +def filter_kernel_panic_crash_type(crash_type): + """Filter a kernel panic crash type.""" + return 'Kernel failure\n%s' % crash_type.replace(' ', '-') + + +def update_crash_state_for_stack_overflow_if_needed(state): + """For stack-overflow bugs, updates crash state based on cycle detected.""" + if state.crash_type != 'Stack-overflow': + return + + num_frames = len(state.raw_frames) + for frame_index in range(num_frames): + for cycle_length in range(1, MAX_CYCLE_LENGTH + 1): + # Create frame potential cycles of a given length starting from + # |frame_index|. + frame_potential_cycles = [] + end_reached = False + for i in range(0, REPEATED_CYCLE_COUNT): + start_index = frame_index + i * cycle_length + end_index = frame_index + (i + 1) * cycle_length + if end_index >= num_frames: + end_reached = True + break + + frame_potential_cycles.append(state.raw_frames[start_index:end_index]) + + if end_reached: + # Reached end while trying to find cycle, skip iteration. + continue + + # Check if all the potential_cycles are equal. If yes, we found a cycle. + potential_cycles_are_equal = all( + frame_potential_cycle == frame_potential_cycles[0] + for frame_potential_cycle in frame_potential_cycles) + + # Update crash state based on cycle detected. + if potential_cycles_are_equal: + state.crash_state = '\n'.join( + frame_potential_cycles[0][:MAX_CRASH_STATE_FRAMES]) + '\n' + return + + +def llvm_test_one_input_override(frame, frame_struct): + """Override frame matching for LLVMFuzzerTestOneInput frames.""" + if not frame.startswith('LLVMFuzzerTestOneInput'): + return frame + + if frame_struct and frame_struct.filename: + # Use the filename as the frame instead. + return frame.replace( + 'LLVMFuzzerTestOneInput', + os.path.basename(frame_struct.filename.replace('\\', '/'))) + + return frame + + +def reverse_python_stacktrace(stacktrace): + """Extract a Python stacktrace. + Python stacktraces are a bit special: they are reversed, + and followed by a sanitizer one, so we need to extract them, reverse them, + and put their "title" back on top.""" + python_stacktrace_split = [] + in_python_stacktrace = False + + for line in stacktrace: + # Locate the beginning of the python stacktrace. + if in_python_stacktrace is False: + for regex, _ in PYTHON_CRASH_TYPES_MAP: + if regex.match(line): + in_python_stacktrace = True + python_stacktrace_split = [line] # Add the "title" of the stacktrace + break + else: + # Locate beginning of the sanitizer stacktrace. + if '=========' in line or '== ERROR: ' in line: + break + python_stacktrace_split.insert(1, line) + + return python_stacktrace_split + + +def update_kasan_crash_details(state, line): + """For KASan crashes, additional information about a bad access may exist.""" + if state.crash_type.startswith('Kernel failure'): + kasan_access_match = KASAN_ACCESS_TYPE_ADDRESS_REGEX.match(line) + if kasan_access_match: + if not state.crash_address: + state.crash_address = '0x%s' % kasan_access_match.group(4) + else: + kasan_access_match = KASAN_ACCESS_TYPE_REGEX.match(line) + + if kasan_access_match: + state.crash_type += '\n%s %s' % (kasan_access_match.group(1).upper(), + kasan_access_match.group(2)) diff --git a/common/src/buttercup/common/clusterfuzz_parser/crash_analyzer.py b/common/src/buttercup/common/clusterfuzz_parser/crash_analyzer.py new file mode 100644 index 00000000..06fd45a6 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_parser/crash_analyzer.py @@ -0,0 +1,27 @@ +# Default page size of 4KB. +NULL_DEREFERENCE_BOUNDARY = 0x1000 + +ASSERT_CRASH_ADDRESSES = [ + 0x0000bbadbeef, + 0x0000fbadbeef, + 0x00001f75b7dd, + 0x0000977537dd, + 0x00009f7537dd, +] + +def address_to_integer(address): + """Attempt to convert an address from a string (hex) to an integer.""" + try: + return int(address, 16) + except: + return 0 + + +def is_null_dereference(int_address): + """Check to see if this is a null dereference crash address.""" + return int_address < NULL_DEREFERENCE_BOUNDARY + + +def is_assert_crash_address(int_address): + """Check to see if this is an ASSERT crash based on the address.""" + return int_address in ASSERT_CRASH_ADDRESSES \ No newline at end of file diff --git a/common/src/buttercup/common/clusterfuzz_parser/inspect.py b/common/src/buttercup/common/clusterfuzz_parser/inspect.py new file mode 100644 index 00000000..819ce940 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_parser/inspect.py @@ -0,0 +1,3395 @@ +"""Get useful information from live Python objects. + +This module encapsulates the interface provided by the internal special +attributes (co_*, im_*, tb_*, etc.) in a friendlier fashion. +It also provides some help for examining source code and class layout. + +Here are some of the useful functions provided by this module: + + ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(), + isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(), + isroutine() - check object types + getmembers() - get members of an object that satisfy a given condition + + getfile(), getsourcefile(), getsource() - find an object's source code + getdoc(), getcomments() - get documentation on an object + getmodule() - determine the module that an object came from + getclasstree() - arrange classes so as to represent their hierarchy + + getargvalues(), getcallargs() - get info about function arguments + getfullargspec() - same, with support for Python 3 features + formatargvalues() - format an argument spec + getouterframes(), getinnerframes() - get info about frames + currentframe() - get the current stack frame + stack(), trace() - get info about frames on the stack or in a traceback + + signature() - get a Signature object for the callable + + get_annotations() - safely compute an object's annotations +""" + +# This module is in the public domain. No warranties. + +__author__ = ('Ka-Ping Yee ', + 'Yury Selivanov ') + +__all__ = [ + "AGEN_CLOSED", + "AGEN_CREATED", + "AGEN_RUNNING", + "AGEN_SUSPENDED", + "ArgInfo", + "Arguments", + "Attribute", + "BlockFinder", + "BoundArguments", + "BufferFlags", + "CORO_CLOSED", + "CORO_CREATED", + "CORO_RUNNING", + "CORO_SUSPENDED", + "CO_ASYNC_GENERATOR", + "CO_COROUTINE", + "CO_GENERATOR", + "CO_ITERABLE_COROUTINE", + "CO_NESTED", + "CO_NEWLOCALS", + "CO_NOFREE", + "CO_OPTIMIZED", + "CO_VARARGS", + "CO_VARKEYWORDS", + "ClassFoundException", + "ClosureVars", + "EndOfBlock", + "FrameInfo", + "FullArgSpec", + "GEN_CLOSED", + "GEN_CREATED", + "GEN_RUNNING", + "GEN_SUSPENDED", + "Parameter", + "Signature", + "TPFLAGS_IS_ABSTRACT", + "Traceback", + "classify_class_attrs", + "cleandoc", + "currentframe", + "findsource", + "formatannotation", + "formatannotationrelativeto", + "formatargvalues", + "get_annotations", + "getabsfile", + "getargs", + "getargvalues", + "getasyncgenlocals", + "getasyncgenstate", + "getattr_static", + "getblock", + "getcallargs", + "getclasstree", + "getclosurevars", + "getcomments", + "getcoroutinelocals", + "getcoroutinestate", + "getdoc", + "getfile", + "getframeinfo", + "getfullargspec", + "getgeneratorlocals", + "getgeneratorstate", + "getinnerframes", + "getlineno", + "getmembers", + "getmembers_static", + "getmodule", + "getmodulename", + "getmro", + "getouterframes", + "getsource", + "getsourcefile", + "getsourcelines", + "indentsize", + "isabstract", + "isasyncgen", + "isasyncgenfunction", + "isawaitable", + "isbuiltin", + "isclass", + "iscode", + "iscoroutine", + "iscoroutinefunction", + "isdatadescriptor", + "isframe", + "isfunction", + "isgenerator", + "isgeneratorfunction", + "isgetsetdescriptor", + "ismemberdescriptor", + "ismethod", + "ismethoddescriptor", + "ismethodwrapper", + "ismodule", + "isroutine", + "istraceback", + "markcoroutinefunction", + "signature", + "stack", + "trace", + "unwrap", + "walktree", +] + + +import abc +import ast +import dis +import collections.abc +import enum +import importlib.machinery +import itertools +import linecache +import os +import re +import sys +import tokenize +import token +import types +import functools +import builtins +from keyword import iskeyword +from operator import attrgetter +from collections import namedtuple, OrderedDict + +# Create constants for the compiler flags in Include/code.h +# We try to get them from dis to avoid duplication +mod_dict = globals() +for k, v in dis.COMPILER_FLAG_NAMES.items(): + mod_dict["CO_" + v] = k +del k, v, mod_dict + +# See Include/object.h +TPFLAGS_IS_ABSTRACT = 1 << 20 + + +def get_annotations(obj, *, globals=None, locals=None, eval_str=False): + """Compute the annotations dict for an object. + + obj may be a callable, class, or module. + Passing in an object of any other type raises TypeError. + + Returns a dict. get_annotations() returns a new dict every time + it's called; calling it twice on the same object will return two + different but equivalent dicts. + + This function handles several details for you: + + * If eval_str is true, values of type str will + be un-stringized using eval(). This is intended + for use with stringized annotations + ("from __future__ import annotations"). + * If obj doesn't have an annotations dict, returns an + empty dict. (Functions and methods always have an + annotations dict; classes, modules, and other types of + callables may not.) + * Ignores inherited annotations on classes. If a class + doesn't have its own annotations dict, returns an empty dict. + * All accesses to object members and dict values are done + using getattr() and dict.get() for safety. + * Always, always, always returns a freshly-created dict. + + eval_str controls whether or not values of type str are replaced + with the result of calling eval() on those values: + + * If eval_str is true, eval() is called on values of type str. + * If eval_str is false (the default), values of type str are unchanged. + + globals and locals are passed in to eval(); see the documentation + for eval() for more information. If either globals or locals is + None, this function may replace that value with a context-specific + default, contingent on type(obj): + + * If obj is a module, globals defaults to obj.__dict__. + * If obj is a class, globals defaults to + sys.modules[obj.__module__].__dict__ and locals + defaults to the obj class namespace. + * If obj is a callable, globals defaults to obj.__globals__, + although if obj is a wrapped function (using + functools.update_wrapper()) it is first unwrapped. + """ + if isinstance(obj, type): + # class + obj_dict = getattr(obj, '__dict__', None) + if obj_dict and hasattr(obj_dict, 'get'): + ann = obj_dict.get('__annotations__', None) + if isinstance(ann, types.GetSetDescriptorType): + ann = None + else: + ann = None + + obj_globals = None + module_name = getattr(obj, '__module__', None) + if module_name: + module = sys.modules.get(module_name, None) + if module: + obj_globals = getattr(module, '__dict__', None) + obj_locals = dict(vars(obj)) + unwrap = obj + elif isinstance(obj, types.ModuleType): + # module + ann = getattr(obj, '__annotations__', None) + obj_globals = getattr(obj, '__dict__') + obj_locals = None + unwrap = None + elif callable(obj): + # this includes types.Function, types.BuiltinFunctionType, + # types.BuiltinMethodType, functools.partial, functools.singledispatch, + # "class funclike" from Lib/test/test_inspect... on and on it goes. + ann = getattr(obj, '__annotations__', None) + obj_globals = getattr(obj, '__globals__', None) + obj_locals = None + unwrap = obj + else: + raise TypeError(f"{obj!r} is not a module, class, or callable.") + + if ann is None: + return {} + + if not isinstance(ann, dict): + raise ValueError(f"{obj!r}.__annotations__ is neither a dict nor None") + + if not ann: + return {} + + if not eval_str: + return dict(ann) + + if unwrap is not None: + while True: + if hasattr(unwrap, '__wrapped__'): + unwrap = unwrap.__wrapped__ + continue + if isinstance(unwrap, functools.partial): + unwrap = unwrap.func + continue + break + if hasattr(unwrap, "__globals__"): + obj_globals = unwrap.__globals__ + + if globals is None: + globals = obj_globals + if locals is None: + locals = obj_locals + + return_value = {key: + value if not isinstance(value, str) else eval(value, globals, locals) + for key, value in ann.items() } + return return_value + + +# ----------------------------------------------------------- type-checking +def ismodule(object): + """Return true if the object is a module.""" + return isinstance(object, types.ModuleType) + +def isclass(object): + """Return true if the object is a class.""" + return isinstance(object, type) + +def ismethod(object): + """Return true if the object is an instance method.""" + return isinstance(object, types.MethodType) + +def ismethoddescriptor(object): + """Return true if the object is a method descriptor. + + But not if ismethod() or isclass() or isfunction() are true. + + This is new in Python 2.2, and, for example, is true of int.__add__. + An object passing this test has a __get__ attribute but not a __set__ + attribute, but beyond that the set of attributes varies. __name__ is + usually sensible, and __doc__ often is. + + Methods implemented via descriptors that also pass one of the other + tests return false from the ismethoddescriptor() test, simply because + the other tests promise more -- you can, e.g., count on having the + __func__ attribute (etc) when an object passes ismethod().""" + if isclass(object) or ismethod(object) or isfunction(object): + # mutual exclusion + return False + tp = type(object) + return hasattr(tp, "__get__") and not hasattr(tp, "__set__") + +def isdatadescriptor(object): + """Return true if the object is a data descriptor. + + Data descriptors have a __set__ or a __delete__ attribute. Examples are + properties (defined in Python) and getsets and members (defined in C). + Typically, data descriptors will also have __name__ and __doc__ attributes + (properties, getsets, and members have both of these attributes), but this + is not guaranteed.""" + if isclass(object) or ismethod(object) or isfunction(object): + # mutual exclusion + return False + tp = type(object) + return hasattr(tp, "__set__") or hasattr(tp, "__delete__") + +if hasattr(types, 'MemberDescriptorType'): + # CPython and equivalent + def ismemberdescriptor(object): + """Return true if the object is a member descriptor. + + Member descriptors are specialized descriptors defined in extension + modules.""" + return isinstance(object, types.MemberDescriptorType) +else: + # Other implementations + def ismemberdescriptor(object): + """Return true if the object is a member descriptor. + + Member descriptors are specialized descriptors defined in extension + modules.""" + return False + +if hasattr(types, 'GetSetDescriptorType'): + # CPython and equivalent + def isgetsetdescriptor(object): + """Return true if the object is a getset descriptor. + + getset descriptors are specialized descriptors defined in extension + modules.""" + return isinstance(object, types.GetSetDescriptorType) +else: + # Other implementations + def isgetsetdescriptor(object): + """Return true if the object is a getset descriptor. + + getset descriptors are specialized descriptors defined in extension + modules.""" + return False + +def isfunction(object): + """Return true if the object is a user-defined function. + + Function objects provide these attributes: + __doc__ documentation string + __name__ name with which this function was defined + __code__ code object containing compiled function bytecode + __defaults__ tuple of any default values for arguments + __globals__ global namespace in which this function was defined + __annotations__ dict of parameter annotations + __kwdefaults__ dict of keyword only parameters with defaults""" + return isinstance(object, types.FunctionType) + +def _has_code_flag(f, flag): + """Return true if ``f`` is a function (or a method or functools.partial + wrapper wrapping a function) whose code object has the given ``flag`` + set in its flags.""" + while ismethod(f): + f = f.__func__ + f = functools._unwrap_partial(f) + if not (isfunction(f) or _signature_is_functionlike(f)): + return False + return bool(f.__code__.co_flags & flag) + +def isgeneratorfunction(obj): + """Return true if the object is a user-defined generator function. + + Generator function objects provide the same attributes as functions. + See help(isfunction) for a list of attributes.""" + return _has_code_flag(obj, CO_GENERATOR) + +# A marker for markcoroutinefunction and iscoroutinefunction. +_is_coroutine_marker = object() + +def _has_coroutine_mark(f): + while ismethod(f): + f = f.__func__ + f = functools._unwrap_partial(f) + return getattr(f, "_is_coroutine_marker", None) is _is_coroutine_marker + +def markcoroutinefunction(func): + """ + Decorator to ensure callable is recognised as a coroutine function. + """ + if hasattr(func, '__func__'): + func = func.__func__ + func._is_coroutine_marker = _is_coroutine_marker + return func + +def iscoroutinefunction(obj): + """Return true if the object is a coroutine function. + + Coroutine functions are normally defined with "async def" syntax, but may + be marked via markcoroutinefunction. + """ + return _has_code_flag(obj, CO_COROUTINE) or _has_coroutine_mark(obj) + +def isasyncgenfunction(obj): + """Return true if the object is an asynchronous generator function. + + Asynchronous generator functions are defined with "async def" + syntax and have "yield" expressions in their body. + """ + return _has_code_flag(obj, CO_ASYNC_GENERATOR) + +def isasyncgen(object): + """Return true if the object is an asynchronous generator.""" + return isinstance(object, types.AsyncGeneratorType) + +def isgenerator(object): + """Return true if the object is a generator. + + Generator objects provide these attributes: + __iter__ defined to support iteration over container + close raises a new GeneratorExit exception inside the + generator to terminate the iteration + gi_code code object + gi_frame frame object or possibly None once the generator has + been exhausted + gi_running set to 1 when generator is executing, 0 otherwise + next return the next item from the container + send resumes the generator and "sends" a value that becomes + the result of the current yield-expression + throw used to raise an exception inside the generator""" + return isinstance(object, types.GeneratorType) + +def iscoroutine(object): + """Return true if the object is a coroutine.""" + return isinstance(object, types.CoroutineType) + +def isawaitable(object): + """Return true if object can be passed to an ``await`` expression.""" + return (isinstance(object, types.CoroutineType) or + isinstance(object, types.GeneratorType) and + bool(object.gi_code.co_flags & CO_ITERABLE_COROUTINE) or + isinstance(object, collections.abc.Awaitable)) + +def istraceback(object): + """Return true if the object is a traceback. + + Traceback objects provide these attributes: + tb_frame frame object at this level + tb_lasti index of last attempted instruction in bytecode + tb_lineno current line number in Python source code + tb_next next inner traceback object (called by this level)""" + return isinstance(object, types.TracebackType) + +def isframe(object): + """Return true if the object is a frame object. + + Frame objects provide these attributes: + f_back next outer frame object (this frame's caller) + f_builtins built-in namespace seen by this frame + f_code code object being executed in this frame + f_globals global namespace seen by this frame + f_lasti index of last attempted instruction in bytecode + f_lineno current line number in Python source code + f_locals local namespace seen by this frame + f_trace tracing function for this frame, or None""" + return isinstance(object, types.FrameType) + +def iscode(object): + """Return true if the object is a code object. + + Code objects provide these attributes: + co_argcount number of arguments (not including *, ** args + or keyword only arguments) + co_code string of raw compiled bytecode + co_cellvars tuple of names of cell variables + co_consts tuple of constants used in the bytecode + co_filename name of file in which this code object was created + co_firstlineno number of first line in Python source code + co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg + | 16=nested | 32=generator | 64=nofree | 128=coroutine + | 256=iterable_coroutine | 512=async_generator + co_freevars tuple of names of free variables + co_posonlyargcount number of positional only arguments + co_kwonlyargcount number of keyword only arguments (not including ** arg) + co_lnotab encoded mapping of line numbers to bytecode indices + co_name name with which this code object was defined + co_names tuple of names other than arguments and function locals + co_nlocals number of local variables + co_stacksize virtual machine stack space required + co_varnames tuple of names of arguments and local variables""" + return isinstance(object, types.CodeType) + +def isbuiltin(object): + """Return true if the object is a built-in function or method. + + Built-in functions and methods provide these attributes: + __doc__ documentation string + __name__ original name of this function or method + __self__ instance to which a method is bound, or None""" + return isinstance(object, types.BuiltinFunctionType) + +def ismethodwrapper(object): + """Return true if the object is a method wrapper.""" + return isinstance(object, types.MethodWrapperType) + +def isroutine(object): + """Return true if the object is any kind of function or method.""" + return (isbuiltin(object) + or isfunction(object) + or ismethod(object) + or ismethoddescriptor(object) + or ismethodwrapper(object)) + +def isabstract(object): + """Return true if the object is an abstract base class (ABC).""" + if not isinstance(object, type): + return False + if object.__flags__ & TPFLAGS_IS_ABSTRACT: + return True + if not issubclass(type(object), abc.ABCMeta): + return False + if hasattr(object, '__abstractmethods__'): + # It looks like ABCMeta.__new__ has finished running; + # TPFLAGS_IS_ABSTRACT should have been accurate. + return False + # It looks like ABCMeta.__new__ has not finished running yet; we're + # probably in __init_subclass__. We'll look for abstractmethods manually. + for name, value in object.__dict__.items(): + if getattr(value, "__isabstractmethod__", False): + return True + for base in object.__bases__: + for name in getattr(base, "__abstractmethods__", ()): + value = getattr(object, name, None) + if getattr(value, "__isabstractmethod__", False): + return True + return False + +def _getmembers(object, predicate, getter): + results = [] + processed = set() + names = dir(object) + if isclass(object): + mro = getmro(object) + # add any DynamicClassAttributes to the list of names if object is a class; + # this may result in duplicate entries if, for example, a virtual + # attribute with the same name as a DynamicClassAttribute exists + try: + for base in object.__bases__: + for k, v in base.__dict__.items(): + if isinstance(v, types.DynamicClassAttribute): + names.append(k) + except AttributeError: + pass + else: + mro = () + for key in names: + # First try to get the value via getattr. Some descriptors don't + # like calling their __get__ (see bug #1785), so fall back to + # looking in the __dict__. + try: + value = getter(object, key) + # handle the duplicate key + if key in processed: + raise AttributeError + except AttributeError: + for base in mro: + if key in base.__dict__: + value = base.__dict__[key] + break + else: + # could be a (currently) missing slot member, or a buggy + # __dir__; discard and move on + continue + if not predicate or predicate(value): + results.append((key, value)) + processed.add(key) + results.sort(key=lambda pair: pair[0]) + return results + +def getmembers(object, predicate=None): + """Return all members of an object as (name, value) pairs sorted by name. + Optionally, only return members that satisfy a given predicate.""" + return _getmembers(object, predicate, getattr) + +def getmembers_static(object, predicate=None): + """Return all members of an object as (name, value) pairs sorted by name + without triggering dynamic lookup via the descriptor protocol, + __getattr__ or __getattribute__. Optionally, only return members that + satisfy a given predicate. + + Note: this function may not be able to retrieve all members + that getmembers can fetch (like dynamically created attributes) + and may find members that getmembers can't (like descriptors + that raise AttributeError). It can also return descriptor objects + instead of instance members in some cases. + """ + return _getmembers(object, predicate, getattr_static) + +Attribute = namedtuple('Attribute', 'name kind defining_class object') + +def classify_class_attrs(cls): + """Return list of attribute-descriptor tuples. + + For each name in dir(cls), the return list contains a 4-tuple + with these elements: + + 0. The name (a string). + + 1. The kind of attribute this is, one of these strings: + 'class method' created via classmethod() + 'static method' created via staticmethod() + 'property' created via property() + 'method' any other flavor of method or descriptor + 'data' not a method + + 2. The class which defined this attribute (a class). + + 3. The object as obtained by calling getattr; if this fails, or if the + resulting object does not live anywhere in the class' mro (including + metaclasses) then the object is looked up in the defining class's + dict (found by walking the mro). + + If one of the items in dir(cls) is stored in the metaclass it will now + be discovered and not have None be listed as the class in which it was + defined. Any items whose home class cannot be discovered are skipped. + """ + + mro = getmro(cls) + metamro = getmro(type(cls)) # for attributes stored in the metaclass + metamro = tuple(cls for cls in metamro if cls not in (type, object)) + class_bases = (cls,) + mro + all_bases = class_bases + metamro + names = dir(cls) + # :dd any DynamicClassAttributes to the list of names; + # this may result in duplicate entries if, for example, a virtual + # attribute with the same name as a DynamicClassAttribute exists. + for base in mro: + for k, v in base.__dict__.items(): + if isinstance(v, types.DynamicClassAttribute) and v.fget is not None: + names.append(k) + result = [] + processed = set() + + for name in names: + # Get the object associated with the name, and where it was defined. + # Normal objects will be looked up with both getattr and directly in + # its class' dict (in case getattr fails [bug #1785], and also to look + # for a docstring). + # For DynamicClassAttributes on the second pass we only look in the + # class's dict. + # + # Getting an obj from the __dict__ sometimes reveals more than + # using getattr. Static and class methods are dramatic examples. + homecls = None + get_obj = None + dict_obj = None + if name not in processed: + try: + if name == '__dict__': + raise Exception("__dict__ is special, don't want the proxy") + get_obj = getattr(cls, name) + except Exception: + pass + else: + homecls = getattr(get_obj, "__objclass__", homecls) + if homecls not in class_bases: + # if the resulting object does not live somewhere in the + # mro, drop it and search the mro manually + homecls = None + last_cls = None + # first look in the classes + for srch_cls in class_bases: + srch_obj = getattr(srch_cls, name, None) + if srch_obj is get_obj: + last_cls = srch_cls + # then check the metaclasses + for srch_cls in metamro: + try: + srch_obj = srch_cls.__getattr__(cls, name) + except AttributeError: + continue + if srch_obj is get_obj: + last_cls = srch_cls + if last_cls is not None: + homecls = last_cls + for base in all_bases: + if name in base.__dict__: + dict_obj = base.__dict__[name] + if homecls not in metamro: + homecls = base + break + if homecls is None: + # unable to locate the attribute anywhere, most likely due to + # buggy custom __dir__; discard and move on + continue + obj = get_obj if get_obj is not None else dict_obj + # Classify the object or its descriptor. + if isinstance(dict_obj, (staticmethod, types.BuiltinMethodType)): + kind = "static method" + obj = dict_obj + elif isinstance(dict_obj, (classmethod, types.ClassMethodDescriptorType)): + kind = "class method" + obj = dict_obj + elif isinstance(dict_obj, property): + kind = "property" + obj = dict_obj + elif isroutine(obj): + kind = "method" + else: + kind = "data" + result.append(Attribute(name, kind, homecls, obj)) + processed.add(name) + return result + +# ----------------------------------------------------------- class helpers + +def getmro(cls): + "Return tuple of base classes (including cls) in method resolution order." + return cls.__mro__ + +# -------------------------------------------------------- function helpers + +def unwrap(func, *, stop=None): + """Get the object wrapped by *func*. + + Follows the chain of :attr:`__wrapped__` attributes returning the last + object in the chain. + + *stop* is an optional callback accepting an object in the wrapper chain + as its sole argument that allows the unwrapping to be terminated early if + the callback returns a true value. If the callback never returns a true + value, the last object in the chain is returned as usual. For example, + :func:`signature` uses this to stop unwrapping if any object in the + chain has a ``__signature__`` attribute defined. + + :exc:`ValueError` is raised if a cycle is encountered. + + """ + f = func # remember the original func for error reporting + # Memoise by id to tolerate non-hashable objects, but store objects to + # ensure they aren't destroyed, which would allow their IDs to be reused. + memo = {id(f): f} + recursion_limit = sys.getrecursionlimit() + while not isinstance(func, type) and hasattr(func, '__wrapped__'): + if stop is not None and stop(func): + break + func = func.__wrapped__ + id_func = id(func) + if (id_func in memo) or (len(memo) >= recursion_limit): + raise ValueError('wrapper loop when unwrapping {!r}'.format(f)) + memo[id_func] = func + return func + +# -------------------------------------------------- source code extraction +def indentsize(line): + """Return the indent size, in spaces, at the start of a line of text.""" + expline = line.expandtabs() + return len(expline) - len(expline.lstrip()) + +def _findclass(func): + cls = sys.modules.get(func.__module__) + if cls is None: + return None + for name in func.__qualname__.split('.')[:-1]: + cls = getattr(cls, name) + if not isclass(cls): + return None + return cls + +def _finddoc(obj): + if isclass(obj): + for base in obj.__mro__: + if base is not object: + try: + doc = base.__doc__ + except AttributeError: + continue + if doc is not None: + return doc + return None + + if ismethod(obj): + name = obj.__func__.__name__ + self = obj.__self__ + if (isclass(self) and + getattr(getattr(self, name, None), '__func__') is obj.__func__): + # classmethod + cls = self + else: + cls = self.__class__ + elif isfunction(obj): + name = obj.__name__ + cls = _findclass(obj) + if cls is None or getattr(cls, name) is not obj: + return None + elif isbuiltin(obj): + name = obj.__name__ + self = obj.__self__ + if (isclass(self) and + self.__qualname__ + '.' + name == obj.__qualname__): + # classmethod + cls = self + else: + cls = self.__class__ + # Should be tested before isdatadescriptor(). + elif isinstance(obj, property): + func = obj.fget + name = func.__name__ + cls = _findclass(func) + if cls is None or getattr(cls, name) is not obj: + return None + elif ismethoddescriptor(obj) or isdatadescriptor(obj): + name = obj.__name__ + cls = obj.__objclass__ + if getattr(cls, name) is not obj: + return None + if ismemberdescriptor(obj): + slots = getattr(cls, '__slots__', None) + if isinstance(slots, dict) and name in slots: + return slots[name] + else: + return None + for base in cls.__mro__: + try: + doc = getattr(base, name).__doc__ + except AttributeError: + continue + if doc is not None: + return doc + return None + +def getdoc(object): + """Get the documentation string for an object. + + All tabs are expanded to spaces. To clean up docstrings that are + indented to line up with blocks of code, any whitespace than can be + uniformly removed from the second line onwards is removed.""" + try: + doc = object.__doc__ + except AttributeError: + return None + if doc is None: + try: + doc = _finddoc(object) + except (AttributeError, TypeError): + return None + if not isinstance(doc, str): + return None + return cleandoc(doc) + +def cleandoc(doc): + """Clean up indentation from docstrings. + + Any whitespace that can be uniformly removed from the second line + onwards is removed.""" + try: + lines = doc.expandtabs().split('\n') + except UnicodeError: + return None + else: + # Find minimum indentation of any non-blank lines after first line. + margin = sys.maxsize + for line in lines[1:]: + content = len(line.lstrip()) + if content: + indent = len(line) - content + margin = min(margin, indent) + # Remove indentation. + if lines: + lines[0] = lines[0].lstrip() + if margin < sys.maxsize: + for i in range(1, len(lines)): lines[i] = lines[i][margin:] + # Remove any trailing or leading blank lines. + while lines and not lines[-1]: + lines.pop() + while lines and not lines[0]: + lines.pop(0) + return '\n'.join(lines) + +def getfile(object): + """Work out which source or compiled file an object was defined in.""" + if ismodule(object): + if getattr(object, '__file__', None): + return object.__file__ + raise TypeError('{!r} is a built-in module'.format(object)) + if isclass(object): + if hasattr(object, '__module__'): + module = sys.modules.get(object.__module__) + if getattr(module, '__file__', None): + return module.__file__ + if object.__module__ == '__main__': + raise OSError('source code not available') + raise TypeError('{!r} is a built-in class'.format(object)) + if ismethod(object): + object = object.__func__ + if isfunction(object): + object = object.__code__ + if istraceback(object): + object = object.tb_frame + if isframe(object): + object = object.f_code + if iscode(object): + return object.co_filename + raise TypeError('module, class, method, function, traceback, frame, or ' + 'code object was expected, got {}'.format( + type(object).__name__)) + +def getmodulename(path): + """Return the module name for a given file, or None.""" + fname = os.path.basename(path) + # Check for paths that look like an actual module file + suffixes = [(-len(suffix), suffix) + for suffix in importlib.machinery.all_suffixes()] + suffixes.sort() # try longest suffixes first, in case they overlap + for neglen, suffix in suffixes: + if fname.endswith(suffix): + return fname[:neglen] + return None + +def getsourcefile(object): + """Return the filename that can be used to locate an object's source. + Return None if no way can be identified to get the source. + """ + filename = getfile(object) + all_bytecode_suffixes = importlib.machinery.DEBUG_BYTECODE_SUFFIXES[:] + all_bytecode_suffixes += importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES[:] + if any(filename.endswith(s) for s in all_bytecode_suffixes): + filename = (os.path.splitext(filename)[0] + + importlib.machinery.SOURCE_SUFFIXES[0]) + elif any(filename.endswith(s) for s in + importlib.machinery.EXTENSION_SUFFIXES): + return None + # return a filename found in the linecache even if it doesn't exist on disk + if filename in linecache.cache: + return filename + if os.path.exists(filename): + return filename + # only return a non-existent filename if the module has a PEP 302 loader + module = getmodule(object, filename) + if getattr(module, '__loader__', None) is not None: + return filename + elif getattr(getattr(module, "__spec__", None), "loader", None) is not None: + return filename + +def getabsfile(object, _filename=None): + """Return an absolute path to the source or compiled file for an object. + + The idea is for each object to have a unique origin, so this routine + normalizes the result as much as possible.""" + if _filename is None: + _filename = getsourcefile(object) or getfile(object) + return os.path.normcase(os.path.abspath(_filename)) + +modulesbyfile = {} +_filesbymodname = {} + +def getmodule(object, _filename=None): + """Return the module an object was defined in, or None if not found.""" + if ismodule(object): + return object + if hasattr(object, '__module__'): + return sys.modules.get(object.__module__) + # Try the filename to modulename cache + if _filename is not None and _filename in modulesbyfile: + return sys.modules.get(modulesbyfile[_filename]) + # Try the cache again with the absolute file name + try: + file = getabsfile(object, _filename) + except (TypeError, FileNotFoundError): + return None + if file in modulesbyfile: + return sys.modules.get(modulesbyfile[file]) + # Update the filename to module name cache and check yet again + # Copy sys.modules in order to cope with changes while iterating + for modname, module in sys.modules.copy().items(): + if ismodule(module) and hasattr(module, '__file__'): + f = module.__file__ + if f == _filesbymodname.get(modname, None): + # Have already mapped this module, so skip it + continue + _filesbymodname[modname] = f + f = getabsfile(module) + # Always map to the name the module knows itself by + modulesbyfile[f] = modulesbyfile[ + os.path.realpath(f)] = module.__name__ + if file in modulesbyfile: + return sys.modules.get(modulesbyfile[file]) + # Check the main module + main = sys.modules['__main__'] + if not hasattr(object, '__name__'): + return None + if hasattr(main, object.__name__): + mainobject = getattr(main, object.__name__) + if mainobject is object: + return main + # Check builtins + builtin = sys.modules['builtins'] + if hasattr(builtin, object.__name__): + builtinobject = getattr(builtin, object.__name__) + if builtinobject is object: + return builtin + + +class ClassFoundException(Exception): + pass + + +class _ClassFinder(ast.NodeVisitor): + + def __init__(self, qualname): + self.stack = [] + self.qualname = qualname + + def visit_FunctionDef(self, node): + self.stack.append(node.name) + self.stack.append('') + self.generic_visit(node) + self.stack.pop() + self.stack.pop() + + visit_AsyncFunctionDef = visit_FunctionDef + + def visit_ClassDef(self, node): + self.stack.append(node.name) + if self.qualname == '.'.join(self.stack): + # Return the decorator for the class if present + if node.decorator_list: + line_number = node.decorator_list[0].lineno + else: + line_number = node.lineno + + # decrement by one since lines starts with indexing by zero + line_number -= 1 + raise ClassFoundException(line_number) + self.generic_visit(node) + self.stack.pop() + + +def findsource(object): + """Return the entire source file and starting line number for an object. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a list of all the lines + in the file and the line number indexes a line in that list. An OSError + is raised if the source code cannot be retrieved.""" + + file = getsourcefile(object) + if file: + # Invalidate cache if needed. + linecache.checkcache(file) + else: + file = getfile(object) + # Allow filenames in form of "" to pass through. + # `doctest` monkeypatches `linecache` module to enable + # inspection, so let `linecache.getlines` to be called. + if not (file.startswith('<') and file.endswith('>')): + raise OSError('source code not available') + + module = getmodule(object, file) + if module: + lines = linecache.getlines(file, module.__dict__) + else: + lines = linecache.getlines(file) + if not lines: + raise OSError('could not get source code') + + if ismodule(object): + return lines, 0 + + if isclass(object): + qualname = object.__qualname__ + source = ''.join(lines) + tree = ast.parse(source) + class_finder = _ClassFinder(qualname) + try: + class_finder.visit(tree) + except ClassFoundException as e: + line_number = e.args[0] + return lines, line_number + else: + raise OSError('could not find class definition') + + if ismethod(object): + object = object.__func__ + if isfunction(object): + object = object.__code__ + if istraceback(object): + object = object.tb_frame + if isframe(object): + object = object.f_code + if iscode(object): + if not hasattr(object, 'co_firstlineno'): + raise OSError('could not find function definition') + lnum = object.co_firstlineno - 1 + pat = re.compile(r'^(\s*def\s)|(\s*async\s+def\s)|(.*(? 0: + try: + line = lines[lnum] + except IndexError: + raise OSError('lineno is out of bounds') + if pat.match(line): + break + lnum = lnum - 1 + return lines, lnum + raise OSError('could not find code object') + +def getcomments(object): + """Get lines of comments immediately preceding an object's source code. + + Returns None when source can't be found. + """ + try: + lines, lnum = findsource(object) + except (OSError, TypeError): + return None + + if ismodule(object): + # Look for a comment block at the top of the file. + start = 0 + if lines and lines[0][:2] == '#!': start = 1 + while start < len(lines) and lines[start].strip() in ('', '#'): + start = start + 1 + if start < len(lines) and lines[start][:1] == '#': + comments = [] + end = start + while end < len(lines) and lines[end][:1] == '#': + comments.append(lines[end].expandtabs()) + end = end + 1 + return ''.join(comments) + + # Look for a preceding block of comments at the same indentation. + elif lnum > 0: + indent = indentsize(lines[lnum]) + end = lnum - 1 + if end >= 0 and lines[end].lstrip()[:1] == '#' and \ + indentsize(lines[end]) == indent: + comments = [lines[end].expandtabs().lstrip()] + if end > 0: + end = end - 1 + comment = lines[end].expandtabs().lstrip() + while comment[:1] == '#' and indentsize(lines[end]) == indent: + comments[:0] = [comment] + end = end - 1 + if end < 0: break + comment = lines[end].expandtabs().lstrip() + while comments and comments[0].strip() == '#': + comments[:1] = [] + while comments and comments[-1].strip() == '#': + comments[-1:] = [] + return ''.join(comments) + +class EndOfBlock(Exception): pass + +class BlockFinder: + """Provide a tokeneater() method to detect the end of a code block.""" + def __init__(self): + self.indent = 0 + self.islambda = False + self.started = False + self.passline = False + self.indecorator = False + self.last = 1 + self.body_col0 = None + + def tokeneater(self, type, token, srowcol, erowcol, line): + if not self.started and not self.indecorator: + # skip any decorators + if token == "@": + self.indecorator = True + # look for the first "def", "class" or "lambda" + elif token in ("def", "class", "lambda"): + if token == "lambda": + self.islambda = True + self.started = True + self.passline = True # skip to the end of the line + elif type == tokenize.NEWLINE: + self.passline = False # stop skipping when a NEWLINE is seen + self.last = srowcol[0] + if self.islambda: # lambdas always end at the first NEWLINE + raise EndOfBlock + # hitting a NEWLINE when in a decorator without args + # ends the decorator + if self.indecorator: + self.indecorator = False + elif self.passline: + pass + elif type == tokenize.INDENT: + if self.body_col0 is None and self.started: + self.body_col0 = erowcol[1] + self.indent = self.indent + 1 + self.passline = True + elif type == tokenize.DEDENT: + self.indent = self.indent - 1 + # the end of matching indent/dedent pairs end a block + # (note that this only works for "def"/"class" blocks, + # not e.g. for "if: else:" or "try: finally:" blocks) + if self.indent <= 0: + raise EndOfBlock + elif type == tokenize.COMMENT: + if self.body_col0 is not None and srowcol[1] >= self.body_col0: + # Include comments if indented at least as much as the block + self.last = srowcol[0] + elif self.indent == 0 and type not in (tokenize.COMMENT, tokenize.NL): + # any other token on the same indentation level end the previous + # block as well, except the pseudo-tokens COMMENT and NL. + raise EndOfBlock + +def getblock(lines): + """Extract the block of code at the top of the given list of lines.""" + blockfinder = BlockFinder() + try: + tokens = tokenize.generate_tokens(iter(lines).__next__) + for _token in tokens: + blockfinder.tokeneater(*_token) + except (EndOfBlock, IndentationError): + pass + except SyntaxError as e: + if "unmatched" not in e.msg: + raise e from None + _, *_token_info = _token + try: + blockfinder.tokeneater(tokenize.NEWLINE, *_token_info) + except (EndOfBlock, IndentationError): + pass + return lines[:blockfinder.last] + +def getsourcelines(object): + """Return a list of source lines and starting line number for an object. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a list of the lines + corresponding to the object and the line number indicates where in the + original source file the first line of code was found. An OSError is + raised if the source code cannot be retrieved.""" + object = unwrap(object) + lines, lnum = findsource(object) + + if istraceback(object): + object = object.tb_frame + + # for module or frame that corresponds to module, return all source lines + if (ismodule(object) or + (isframe(object) and object.f_code.co_name == "")): + return lines, 0 + else: + return getblock(lines[lnum:]), lnum + 1 + +def getsource(object): + """Return the text of the source code for an object. + + The argument may be a module, class, method, function, traceback, frame, + or code object. The source code is returned as a single string. An + OSError is raised if the source code cannot be retrieved.""" + lines, lnum = getsourcelines(object) + return ''.join(lines) + +# --------------------------------------------------- class tree extraction +def walktree(classes, children, parent): + """Recursive helper function for getclasstree().""" + results = [] + classes.sort(key=attrgetter('__module__', '__name__')) + for c in classes: + results.append((c, c.__bases__)) + if c in children: + results.append(walktree(children[c], children, c)) + return results + +def getclasstree(classes, unique=False): + """Arrange the given list of classes into a hierarchy of nested lists. + + Where a nested list appears, it contains classes derived from the class + whose entry immediately precedes the list. Each entry is a 2-tuple + containing a class and a tuple of its base classes. If the 'unique' + argument is true, exactly one entry appears in the returned structure + for each class in the given list. Otherwise, classes using multiple + inheritance and their descendants will appear multiple times.""" + children = {} + roots = [] + for c in classes: + if c.__bases__: + for parent in c.__bases__: + if parent not in children: + children[parent] = [] + if c not in children[parent]: + children[parent].append(c) + if unique and parent in classes: break + elif c not in roots: + roots.append(c) + for parent in children: + if parent not in classes: + roots.append(parent) + return walktree(roots, children, None) + +# ------------------------------------------------ argument list extraction +Arguments = namedtuple('Arguments', 'args, varargs, varkw') + +def getargs(co): + """Get information about the arguments accepted by a code object. + + Three things are returned: (args, varargs, varkw), where + 'args' is the list of argument names. Keyword-only arguments are + appended. 'varargs' and 'varkw' are the names of the * and ** + arguments or None.""" + if not iscode(co): + raise TypeError('{!r} is not a code object'.format(co)) + + names = co.co_varnames + nargs = co.co_argcount + nkwargs = co.co_kwonlyargcount + args = list(names[:nargs]) + kwonlyargs = list(names[nargs:nargs+nkwargs]) + + nargs += nkwargs + varargs = None + if co.co_flags & CO_VARARGS: + varargs = co.co_varnames[nargs] + nargs = nargs + 1 + varkw = None + if co.co_flags & CO_VARKEYWORDS: + varkw = co.co_varnames[nargs] + return Arguments(args + kwonlyargs, varargs, varkw) + + +FullArgSpec = namedtuple('FullArgSpec', + 'args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations') + +def getfullargspec(func): + """Get the names and default values of a callable object's parameters. + + A tuple of seven things is returned: + (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations). + 'args' is a list of the parameter names. + 'varargs' and 'varkw' are the names of the * and ** parameters or None. + 'defaults' is an n-tuple of the default values of the last n parameters. + 'kwonlyargs' is a list of keyword-only parameter names. + 'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults. + 'annotations' is a dictionary mapping parameter names to annotations. + + Notable differences from inspect.signature(): + - the "self" parameter is always reported, even for bound methods + - wrapper chains defined by __wrapped__ *not* unwrapped automatically + """ + try: + # Re: `skip_bound_arg=False` + # + # There is a notable difference in behaviour between getfullargspec + # and Signature: the former always returns 'self' parameter for bound + # methods, whereas the Signature always shows the actual calling + # signature of the passed object. + # + # To simulate this behaviour, we "unbind" bound methods, to trick + # inspect.signature to always return their first parameter ("self", + # usually) + + # Re: `follow_wrapper_chains=False` + # + # getfullargspec() historically ignored __wrapped__ attributes, + # so we ensure that remains the case in 3.3+ + + sig = _signature_from_callable(func, + follow_wrapper_chains=False, + skip_bound_arg=False, + sigcls=Signature, + eval_str=False) + except Exception as ex: + # Most of the times 'signature' will raise ValueError. + # But, it can also raise AttributeError, and, maybe something + # else. So to be fully backwards compatible, we catch all + # possible exceptions here, and reraise a TypeError. + raise TypeError('unsupported callable') from ex + + args = [] + varargs = None + varkw = None + posonlyargs = [] + kwonlyargs = [] + annotations = {} + defaults = () + kwdefaults = {} + + if sig.return_annotation is not sig.empty: + annotations['return'] = sig.return_annotation + + for param in sig.parameters.values(): + kind = param.kind + name = param.name + + if kind is _POSITIONAL_ONLY: + posonlyargs.append(name) + if param.default is not param.empty: + defaults += (param.default,) + elif kind is _POSITIONAL_OR_KEYWORD: + args.append(name) + if param.default is not param.empty: + defaults += (param.default,) + elif kind is _VAR_POSITIONAL: + varargs = name + elif kind is _KEYWORD_ONLY: + kwonlyargs.append(name) + if param.default is not param.empty: + kwdefaults[name] = param.default + elif kind is _VAR_KEYWORD: + varkw = name + + if param.annotation is not param.empty: + annotations[name] = param.annotation + + if not kwdefaults: + # compatibility with 'func.__kwdefaults__' + kwdefaults = None + + if not defaults: + # compatibility with 'func.__defaults__' + defaults = None + + return FullArgSpec(posonlyargs + args, varargs, varkw, defaults, + kwonlyargs, kwdefaults, annotations) + + +ArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals') + +def getargvalues(frame): + """Get information about arguments passed into a particular frame. + + A tuple of four things is returned: (args, varargs, varkw, locals). + 'args' is a list of the argument names. + 'varargs' and 'varkw' are the names of the * and ** arguments or None. + 'locals' is the locals dictionary of the given frame.""" + args, varargs, varkw = getargs(frame.f_code) + return ArgInfo(args, varargs, varkw, frame.f_locals) + +def formatannotation(annotation, base_module=None): + if getattr(annotation, '__module__', None) == 'typing': + def repl(match): + text = match.group() + return text.removeprefix('typing.') + return re.sub(r'[\w\.]+', repl, repr(annotation)) + if isinstance(annotation, types.GenericAlias): + return str(annotation) + if isinstance(annotation, type): + if annotation.__module__ in ('builtins', base_module): + return annotation.__qualname__ + return annotation.__module__+'.'+annotation.__qualname__ + return repr(annotation) + +def formatannotationrelativeto(object): + module = getattr(object, '__module__', None) + def _formatannotation(annotation): + return formatannotation(annotation, module) + return _formatannotation + + +def formatargvalues(args, varargs, varkw, locals, + formatarg=str, + formatvarargs=lambda name: '*' + name, + formatvarkw=lambda name: '**' + name, + formatvalue=lambda value: '=' + repr(value)): + """Format an argument spec from the 4 values returned by getargvalues. + + The first four arguments are (args, varargs, varkw, locals). The + next four arguments are the corresponding optional formatting functions + that are called to turn names and values into strings. The ninth + argument is an optional function to format the sequence of arguments.""" + def convert(name, locals=locals, + formatarg=formatarg, formatvalue=formatvalue): + return formatarg(name) + formatvalue(locals[name]) + specs = [] + for i in range(len(args)): + specs.append(convert(args[i])) + if varargs: + specs.append(formatvarargs(varargs) + formatvalue(locals[varargs])) + if varkw: + specs.append(formatvarkw(varkw) + formatvalue(locals[varkw])) + return '(' + ', '.join(specs) + ')' + +def _missing_arguments(f_name, argnames, pos, values): + names = [repr(name) for name in argnames if name not in values] + missing = len(names) + if missing == 1: + s = names[0] + elif missing == 2: + s = "{} and {}".format(*names) + else: + tail = ", {} and {}".format(*names[-2:]) + del names[-2:] + s = ", ".join(names) + tail + raise TypeError("%s() missing %i required %s argument%s: %s" % + (f_name, missing, + "positional" if pos else "keyword-only", + "" if missing == 1 else "s", s)) + +def _too_many(f_name, args, kwonly, varargs, defcount, given, values): + atleast = len(args) - defcount + kwonly_given = len([arg for arg in kwonly if arg in values]) + if varargs: + plural = atleast != 1 + sig = "at least %d" % (atleast,) + elif defcount: + plural = True + sig = "from %d to %d" % (atleast, len(args)) + else: + plural = len(args) != 1 + sig = str(len(args)) + kwonly_sig = "" + if kwonly_given: + msg = " positional argument%s (and %d keyword-only argument%s)" + kwonly_sig = (msg % ("s" if given != 1 else "", kwonly_given, + "s" if kwonly_given != 1 else "")) + raise TypeError("%s() takes %s positional argument%s but %d%s %s given" % + (f_name, sig, "s" if plural else "", given, kwonly_sig, + "was" if given == 1 and not kwonly_given else "were")) + +def getcallargs(func, /, *positional, **named): + """Get the mapping of arguments to values. + + A dict is returned, with keys the function argument names (including the + names of the * and ** arguments, if any), and values the respective bound + values from 'positional' and 'named'.""" + spec = getfullargspec(func) + args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = spec + f_name = func.__name__ + arg2value = {} + + + if ismethod(func) and func.__self__ is not None: + # implicit 'self' (or 'cls' for classmethods) argument + positional = (func.__self__,) + positional + num_pos = len(positional) + num_args = len(args) + num_defaults = len(defaults) if defaults else 0 + + n = min(num_pos, num_args) + for i in range(n): + arg2value[args[i]] = positional[i] + if varargs: + arg2value[varargs] = tuple(positional[n:]) + possible_kwargs = set(args + kwonlyargs) + if varkw: + arg2value[varkw] = {} + for kw, value in named.items(): + if kw not in possible_kwargs: + if not varkw: + raise TypeError("%s() got an unexpected keyword argument %r" % + (f_name, kw)) + arg2value[varkw][kw] = value + continue + if kw in arg2value: + raise TypeError("%s() got multiple values for argument %r" % + (f_name, kw)) + arg2value[kw] = value + if num_pos > num_args and not varargs: + _too_many(f_name, args, kwonlyargs, varargs, num_defaults, + num_pos, arg2value) + if num_pos < num_args: + req = args[:num_args - num_defaults] + for arg in req: + if arg not in arg2value: + _missing_arguments(f_name, req, True, arg2value) + for i, arg in enumerate(args[num_args - num_defaults:]): + if arg not in arg2value: + arg2value[arg] = defaults[i] + missing = 0 + for kwarg in kwonlyargs: + if kwarg not in arg2value: + if kwonlydefaults and kwarg in kwonlydefaults: + arg2value[kwarg] = kwonlydefaults[kwarg] + else: + missing += 1 + if missing: + _missing_arguments(f_name, kwonlyargs, False, arg2value) + return arg2value + +ClosureVars = namedtuple('ClosureVars', 'nonlocals globals builtins unbound') + +def getclosurevars(func): + """ + Get the mapping of free variables to their current values. + + Returns a named tuple of dicts mapping the current nonlocal, global + and builtin references as seen by the body of the function. A final + set of unbound names that could not be resolved is also provided. + """ + + if ismethod(func): + func = func.__func__ + + if not isfunction(func): + raise TypeError("{!r} is not a Python function".format(func)) + + code = func.__code__ + # Nonlocal references are named in co_freevars and resolved + # by looking them up in __closure__ by positional index + if func.__closure__ is None: + nonlocal_vars = {} + else: + nonlocal_vars = { + var : cell.cell_contents + for var, cell in zip(code.co_freevars, func.__closure__) + } + + # Global and builtin references are named in co_names and resolved + # by looking them up in __globals__ or __builtins__ + global_ns = func.__globals__ + builtin_ns = global_ns.get("__builtins__", builtins.__dict__) + if ismodule(builtin_ns): + builtin_ns = builtin_ns.__dict__ + global_vars = {} + builtin_vars = {} + unbound_names = set() + for name in code.co_names: + if name in ("None", "True", "False"): + # Because these used to be builtins instead of keywords, they + # may still show up as name references. We ignore them. + continue + try: + global_vars[name] = global_ns[name] + except KeyError: + try: + builtin_vars[name] = builtin_ns[name] + except KeyError: + unbound_names.add(name) + + return ClosureVars(nonlocal_vars, global_vars, + builtin_vars, unbound_names) + +# -------------------------------------------------- stack frame extraction + +_Traceback = namedtuple('_Traceback', 'filename lineno function code_context index') + +class Traceback(_Traceback): + def __new__(cls, filename, lineno, function, code_context, index, *, positions=None): + instance = super().__new__(cls, filename, lineno, function, code_context, index) + instance.positions = positions + return instance + + def __repr__(self): + return ('Traceback(filename={!r}, lineno={!r}, function={!r}, ' + 'code_context={!r}, index={!r}, positions={!r})'.format( + self.filename, self.lineno, self.function, self.code_context, + self.index, self.positions)) + +def _get_code_position_from_tb(tb): + code, instruction_index = tb.tb_frame.f_code, tb.tb_lasti + return _get_code_position(code, instruction_index) + +def _get_code_position(code, instruction_index): + if instruction_index < 0: + return (None, None, None, None) + positions_gen = code.co_positions() + # The nth entry in code.co_positions() corresponds to instruction (2*n)th since Python 3.10+ + return next(itertools.islice(positions_gen, instruction_index // 2, None)) + +def getframeinfo(frame, context=1): + """Get information about a frame or traceback object. + + A tuple of five things is returned: the filename, the line number of + the current line, the function name, a list of lines of context from + the source code, and the index of the current line within that list. + The optional second argument specifies the number of lines of context + to return, which are centered around the current line.""" + if istraceback(frame): + positions = _get_code_position_from_tb(frame) + lineno = frame.tb_lineno + frame = frame.tb_frame + else: + lineno = frame.f_lineno + positions = _get_code_position(frame.f_code, frame.f_lasti) + + if positions[0] is None: + frame, *positions = (frame, lineno, *positions[1:]) + else: + frame, *positions = (frame, *positions) + + lineno = positions[0] + + if not isframe(frame): + raise TypeError('{!r} is not a frame or traceback object'.format(frame)) + + filename = getsourcefile(frame) or getfile(frame) + if context > 0: + start = lineno - 1 - context//2 + try: + lines, lnum = findsource(frame) + except OSError: + lines = index = None + else: + start = max(0, min(start, len(lines) - context)) + lines = lines[start:start+context] + index = lineno - 1 - start + else: + lines = index = None + + return Traceback(filename, lineno, frame.f_code.co_name, lines, + index, positions=dis.Positions(*positions)) + +def getlineno(frame): + """Get the line number from a frame object, allowing for optimization.""" + # FrameType.f_lineno is now a descriptor that grovels co_lnotab + return frame.f_lineno + +_FrameInfo = namedtuple('_FrameInfo', ('frame',) + Traceback._fields) +class FrameInfo(_FrameInfo): + def __new__(cls, frame, filename, lineno, function, code_context, index, *, positions=None): + instance = super().__new__(cls, frame, filename, lineno, function, code_context, index) + instance.positions = positions + return instance + + def __repr__(self): + return ('FrameInfo(frame={!r}, filename={!r}, lineno={!r}, function={!r}, ' + 'code_context={!r}, index={!r}, positions={!r})'.format( + self.frame, self.filename, self.lineno, self.function, + self.code_context, self.index, self.positions)) + +def getouterframes(frame, context=1): + """Get a list of records for a frame and all higher (calling) frames. + + Each record contains a frame object, filename, line number, function + name, a list of lines of context, and index within the context.""" + framelist = [] + while frame: + traceback_info = getframeinfo(frame, context) + frameinfo = (frame,) + traceback_info + framelist.append(FrameInfo(*frameinfo, positions=traceback_info.positions)) + frame = frame.f_back + return framelist + +def getinnerframes(tb, context=1): + """Get a list of records for a traceback's frame and all lower frames. + + Each record contains a frame object, filename, line number, function + name, a list of lines of context, and index within the context.""" + framelist = [] + while tb: + traceback_info = getframeinfo(tb, context) + frameinfo = (tb.tb_frame,) + traceback_info + framelist.append(FrameInfo(*frameinfo, positions=traceback_info.positions)) + tb = tb.tb_next + return framelist + +def currentframe(): + """Return the frame of the caller or None if this is not possible.""" + return sys._getframe(1) if hasattr(sys, "_getframe") else None + +def stack(context=1): + """Return a list of records for the stack above the caller's frame.""" + return getouterframes(sys._getframe(1), context) + +def trace(context=1): + """Return a list of records for the stack below the current exception.""" + exc = sys.exception() + tb = None if exc is None else exc.__traceback__ + return getinnerframes(tb, context) + + +# ------------------------------------------------ static version of getattr + +_sentinel = object() +_static_getmro = type.__dict__['__mro__'].__get__ +_get_dunder_dict_of_class = type.__dict__["__dict__"].__get__ + + +def _check_instance(obj, attr): + instance_dict = {} + try: + instance_dict = object.__getattribute__(obj, "__dict__") + except AttributeError: + pass + return dict.get(instance_dict, attr, _sentinel) + + +def _check_class(klass, attr): + for entry in _static_getmro(klass): + if _shadowed_dict(type(entry)) is _sentinel and attr in entry.__dict__: + return entry.__dict__[attr] + return _sentinel + +@functools.lru_cache() +def _shadowed_dict_from_mro_tuple(mro): + for entry in mro: + dunder_dict = _get_dunder_dict_of_class(entry) + if '__dict__' in dunder_dict: + class_dict = dunder_dict['__dict__'] + if not (type(class_dict) is types.GetSetDescriptorType and + class_dict.__name__ == "__dict__" and + class_dict.__objclass__ is entry): + return class_dict + return _sentinel + +def _shadowed_dict(klass): + return _shadowed_dict_from_mro_tuple(_static_getmro(klass)) + +def getattr_static(obj, attr, default=_sentinel): + """Retrieve attributes without triggering dynamic lookup via the + descriptor protocol, __getattr__ or __getattribute__. + + Note: this function may not be able to retrieve all attributes + that getattr can fetch (like dynamically created attributes) + and may find attributes that getattr can't (like descriptors + that raise AttributeError). It can also return descriptor objects + instead of instance members in some cases. See the + documentation for details. + """ + instance_result = _sentinel + + objtype = type(obj) + if type not in _static_getmro(objtype): + klass = objtype + dict_attr = _shadowed_dict(klass) + if (dict_attr is _sentinel or + type(dict_attr) is types.MemberDescriptorType): + instance_result = _check_instance(obj, attr) + else: + klass = obj + + klass_result = _check_class(klass, attr) + + if instance_result is not _sentinel and klass_result is not _sentinel: + if _check_class(type(klass_result), "__get__") is not _sentinel and ( + _check_class(type(klass_result), "__set__") is not _sentinel + or _check_class(type(klass_result), "__delete__") is not _sentinel + ): + return klass_result + + if instance_result is not _sentinel: + return instance_result + if klass_result is not _sentinel: + return klass_result + + if obj is klass: + # for types we check the metaclass too + for entry in _static_getmro(type(klass)): + if ( + _shadowed_dict(type(entry)) is _sentinel + and attr in entry.__dict__ + ): + return entry.__dict__[attr] + if default is not _sentinel: + return default + raise AttributeError(attr) + + +# ------------------------------------------------ generator introspection + +GEN_CREATED = 'GEN_CREATED' +GEN_RUNNING = 'GEN_RUNNING' +GEN_SUSPENDED = 'GEN_SUSPENDED' +GEN_CLOSED = 'GEN_CLOSED' + +def getgeneratorstate(generator): + """Get current state of a generator-iterator. + + Possible states are: + GEN_CREATED: Waiting to start execution. + GEN_RUNNING: Currently being executed by the interpreter. + GEN_SUSPENDED: Currently suspended at a yield expression. + GEN_CLOSED: Execution has completed. + """ + if generator.gi_running: + return GEN_RUNNING + if generator.gi_suspended: + return GEN_SUSPENDED + if generator.gi_frame is None: + return GEN_CLOSED + return GEN_CREATED + + +def getgeneratorlocals(generator): + """ + Get the mapping of generator local variables to their current values. + + A dict is returned, with the keys the local variable names and values the + bound values.""" + + if not isgenerator(generator): + raise TypeError("{!r} is not a Python generator".format(generator)) + + frame = getattr(generator, "gi_frame", None) + if frame is not None: + return generator.gi_frame.f_locals + else: + return {} + + +# ------------------------------------------------ coroutine introspection + +CORO_CREATED = 'CORO_CREATED' +CORO_RUNNING = 'CORO_RUNNING' +CORO_SUSPENDED = 'CORO_SUSPENDED' +CORO_CLOSED = 'CORO_CLOSED' + +def getcoroutinestate(coroutine): + """Get current state of a coroutine object. + + Possible states are: + CORO_CREATED: Waiting to start execution. + CORO_RUNNING: Currently being executed by the interpreter. + CORO_SUSPENDED: Currently suspended at an await expression. + CORO_CLOSED: Execution has completed. + """ + if coroutine.cr_running: + return CORO_RUNNING + if coroutine.cr_suspended: + return CORO_SUSPENDED + if coroutine.cr_frame is None: + return CORO_CLOSED + return CORO_CREATED + + +def getcoroutinelocals(coroutine): + """ + Get the mapping of coroutine local variables to their current values. + + A dict is returned, with the keys the local variable names and values the + bound values.""" + frame = getattr(coroutine, "cr_frame", None) + if frame is not None: + return frame.f_locals + else: + return {} + + +# ----------------------------------- asynchronous generator introspection + +AGEN_CREATED = 'AGEN_CREATED' +AGEN_RUNNING = 'AGEN_RUNNING' +AGEN_SUSPENDED = 'AGEN_SUSPENDED' +AGEN_CLOSED = 'AGEN_CLOSED' + + +def getasyncgenstate(agen): + """Get current state of an asynchronous generator object. + + Possible states are: + AGEN_CREATED: Waiting to start execution. + AGEN_RUNNING: Currently being executed by the interpreter. + AGEN_SUSPENDED: Currently suspended at a yield expression. + AGEN_CLOSED: Execution has completed. + """ + if agen.ag_running: + return AGEN_RUNNING + if agen.ag_suspended: + return AGEN_SUSPENDED + if agen.ag_frame is None: + return AGEN_CLOSED + return AGEN_CREATED + + +def getasyncgenlocals(agen): + """ + Get the mapping of asynchronous generator local variables to their current + values. + + A dict is returned, with the keys the local variable names and values the + bound values.""" + + if not isasyncgen(agen): + raise TypeError(f"{agen!r} is not a Python async generator") + + frame = getattr(agen, "ag_frame", None) + if frame is not None: + return agen.ag_frame.f_locals + else: + return {} + + +############################################################################### +### Function Signature Object (PEP 362) +############################################################################### + + +_NonUserDefinedCallables = (types.WrapperDescriptorType, + types.MethodWrapperType, + types.ClassMethodDescriptorType, + types.BuiltinFunctionType) + + +def _signature_get_user_defined_method(cls, method_name): + """Private helper. Checks if ``cls`` has an attribute + named ``method_name`` and returns it only if it is a + pure python function. + """ + if method_name == '__new__': + meth = getattr(cls, method_name, None) + else: + meth = getattr_static(cls, method_name, None) + if meth is None or isinstance(meth, _NonUserDefinedCallables): + # Once '__signature__' will be added to 'C'-level + # callables, this check won't be necessary + return None + if method_name != '__new__': + meth = _descriptor_get(meth, cls) + return meth + + +def _signature_get_partial(wrapped_sig, partial, extra_args=()): + """Private helper to calculate how 'wrapped_sig' signature will + look like after applying a 'functools.partial' object (or alike) + on it. + """ + + old_params = wrapped_sig.parameters + new_params = OrderedDict(old_params.items()) + + partial_args = partial.args or () + partial_keywords = partial.keywords or {} + + if extra_args: + partial_args = extra_args + partial_args + + try: + ba = wrapped_sig.bind_partial(*partial_args, **partial_keywords) + except TypeError as ex: + msg = 'partial object {!r} has incorrect arguments'.format(partial) + raise ValueError(msg) from ex + + + transform_to_kwonly = False + for param_name, param in old_params.items(): + try: + arg_value = ba.arguments[param_name] + except KeyError: + pass + else: + if param.kind is _POSITIONAL_ONLY: + # If positional-only parameter is bound by partial, + # it effectively disappears from the signature + new_params.pop(param_name) + continue + + if param.kind is _POSITIONAL_OR_KEYWORD: + if param_name in partial_keywords: + # This means that this parameter, and all parameters + # after it should be keyword-only (and var-positional + # should be removed). Here's why. Consider the following + # function: + # foo(a, b, *args, c): + # pass + # + # "partial(foo, a='spam')" will have the following + # signature: "(*, a='spam', b, c)". Because attempting + # to call that partial with "(10, 20)" arguments will + # raise a TypeError, saying that "a" argument received + # multiple values. + transform_to_kwonly = True + # Set the new default value + new_params[param_name] = param.replace(default=arg_value) + else: + # was passed as a positional argument + new_params.pop(param.name) + continue + + if param.kind is _KEYWORD_ONLY: + # Set the new default value + new_params[param_name] = param.replace(default=arg_value) + + if transform_to_kwonly: + assert param.kind is not _POSITIONAL_ONLY + + if param.kind is _POSITIONAL_OR_KEYWORD: + new_param = new_params[param_name].replace(kind=_KEYWORD_ONLY) + new_params[param_name] = new_param + new_params.move_to_end(param_name) + elif param.kind in (_KEYWORD_ONLY, _VAR_KEYWORD): + new_params.move_to_end(param_name) + elif param.kind is _VAR_POSITIONAL: + new_params.pop(param.name) + + return wrapped_sig.replace(parameters=new_params.values()) + + +def _signature_bound_method(sig): + """Private helper to transform signatures for unbound + functions to bound methods. + """ + + params = tuple(sig.parameters.values()) + + if not params or params[0].kind in (_VAR_KEYWORD, _KEYWORD_ONLY): + raise ValueError('invalid method signature') + + kind = params[0].kind + if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY): + # Drop first parameter: + # '(p1, p2[, ...])' -> '(p2[, ...])' + params = params[1:] + else: + if kind is not _VAR_POSITIONAL: + # Unless we add a new parameter type we never + # get here + raise ValueError('invalid argument type') + # It's a var-positional parameter. + # Do nothing. '(*args[, ...])' -> '(*args[, ...])' + + return sig.replace(parameters=params) + + +def _signature_is_builtin(obj): + """Private helper to test if `obj` is a callable that might + support Argument Clinic's __text_signature__ protocol. + """ + return (isbuiltin(obj) or + ismethoddescriptor(obj) or + isinstance(obj, _NonUserDefinedCallables) or + # Can't test 'isinstance(type)' here, as it would + # also be True for regular python classes + obj in (type, object)) + + +def _signature_is_functionlike(obj): + """Private helper to test if `obj` is a duck type of FunctionType. + A good example of such objects are functions compiled with + Cython, which have all attributes that a pure Python function + would have, but have their code statically compiled. + """ + + if not callable(obj) or isclass(obj): + # All function-like objects are obviously callables, + # and not classes. + return False + + name = getattr(obj, '__name__', None) + code = getattr(obj, '__code__', None) + defaults = getattr(obj, '__defaults__', _void) # Important to use _void ... + kwdefaults = getattr(obj, '__kwdefaults__', _void) # ... and not None here + annotations = getattr(obj, '__annotations__', None) + + return (isinstance(code, types.CodeType) and + isinstance(name, str) and + (defaults is None or isinstance(defaults, tuple)) and + (kwdefaults is None or isinstance(kwdefaults, dict)) and + (isinstance(annotations, (dict)) or annotations is None) ) + + +def _signature_strip_non_python_syntax(signature): + """ + Private helper function. Takes a signature in Argument Clinic's + extended signature format. + + Returns a tuple of two things: + * that signature re-rendered in standard Python syntax, and + * the index of the "self" parameter (generally 0), or None if + the function does not have a "self" parameter. + """ + + if not signature: + return signature, None + + self_parameter = None + + lines = [l.encode('ascii') for l in signature.split('\n') if l] + generator = iter(lines).__next__ + token_stream = tokenize.tokenize(generator) + + text = [] + add = text.append + + current_parameter = 0 + OP = token.OP + ERRORTOKEN = token.ERRORTOKEN + + # token stream always starts with ENCODING token, skip it + t = next(token_stream) + assert t.type == tokenize.ENCODING + + for t in token_stream: + type, string = t.type, t.string + + if type == OP: + if string == ',': + current_parameter += 1 + + if (type == OP) and (string == '$'): + assert self_parameter is None + self_parameter = current_parameter + continue + + add(string) + if (string == ','): + add(' ') + clean_signature = ''.join(text).strip().replace("\n", "") + return clean_signature, self_parameter + + +def _signature_fromstr(cls, obj, s, skip_bound_arg=True): + """Private helper to parse content of '__text_signature__' + and return a Signature based on it. + """ + Parameter = cls._parameter_cls + + clean_signature, self_parameter = _signature_strip_non_python_syntax(s) + + program = "def foo" + clean_signature + ": pass" + + try: + module = ast.parse(program) + except SyntaxError: + module = None + + if not isinstance(module, ast.Module): + raise ValueError("{!r} builtin has invalid signature".format(obj)) + + f = module.body[0] + + parameters = [] + empty = Parameter.empty + + module = None + module_dict = {} + module_name = getattr(obj, '__module__', None) + if module_name: + module = sys.modules.get(module_name, None) + if module: + module_dict = module.__dict__ + sys_module_dict = sys.modules.copy() + + def parse_name(node): + assert isinstance(node, ast.arg) + if node.annotation is not None: + raise ValueError("Annotations are not currently supported") + return node.arg + + def wrap_value(s): + try: + value = eval(s, module_dict) + except NameError: + try: + value = eval(s, sys_module_dict) + except NameError: + raise ValueError + + if isinstance(value, (str, int, float, bytes, bool, type(None))): + return ast.Constant(value) + raise ValueError + + class RewriteSymbolics(ast.NodeTransformer): + def visit_Attribute(self, node): + a = [] + n = node + while isinstance(n, ast.Attribute): + a.append(n.attr) + n = n.value + if not isinstance(n, ast.Name): + raise ValueError + a.append(n.id) + value = ".".join(reversed(a)) + return wrap_value(value) + + def visit_Name(self, node): + if not isinstance(node.ctx, ast.Load): + raise ValueError() + return wrap_value(node.id) + + def visit_BinOp(self, node): + # Support constant folding of a couple simple binary operations + # commonly used to define default values in text signatures + left = self.visit(node.left) + right = self.visit(node.right) + if not isinstance(left, ast.Constant) or not isinstance(right, ast.Constant): + raise ValueError + if isinstance(node.op, ast.Add): + return ast.Constant(left.value + right.value) + elif isinstance(node.op, ast.Sub): + return ast.Constant(left.value - right.value) + elif isinstance(node.op, ast.BitOr): + return ast.Constant(left.value | right.value) + raise ValueError + + def p(name_node, default_node, default=empty): + name = parse_name(name_node) + if default_node and default_node is not _empty: + try: + default_node = RewriteSymbolics().visit(default_node) + default = ast.literal_eval(default_node) + except ValueError: + raise ValueError("{!r} builtin has invalid signature".format(obj)) from None + parameters.append(Parameter(name, kind, default=default, annotation=empty)) + + # non-keyword-only parameters + total_non_kw_args = len(f.args.posonlyargs) + len(f.args.args) + required_non_kw_args = total_non_kw_args - len(f.args.defaults) + defaults = itertools.chain(itertools.repeat(None, required_non_kw_args), f.args.defaults) + + kind = Parameter.POSITIONAL_ONLY + for (name, default) in zip(f.args.posonlyargs, defaults): + p(name, default) + + kind = Parameter.POSITIONAL_OR_KEYWORD + for (name, default) in zip(f.args.args, defaults): + p(name, default) + + # *args + if f.args.vararg: + kind = Parameter.VAR_POSITIONAL + p(f.args.vararg, empty) + + # keyword-only arguments + kind = Parameter.KEYWORD_ONLY + for name, default in zip(f.args.kwonlyargs, f.args.kw_defaults): + p(name, default) + + # **kwargs + if f.args.kwarg: + kind = Parameter.VAR_KEYWORD + p(f.args.kwarg, empty) + + if self_parameter is not None: + # Possibly strip the bound argument: + # - We *always* strip first bound argument if + # it is a module. + # - We don't strip first bound argument if + # skip_bound_arg is False. + assert parameters + _self = getattr(obj, '__self__', None) + self_isbound = _self is not None + self_ismodule = ismodule(_self) + if self_isbound and (self_ismodule or skip_bound_arg): + parameters.pop(0) + else: + # for builtins, self parameter is always positional-only! + p = parameters[0].replace(kind=Parameter.POSITIONAL_ONLY) + parameters[0] = p + + return cls(parameters, return_annotation=cls.empty) + + +def _signature_from_builtin(cls, func, skip_bound_arg=True): + """Private helper function to get signature for + builtin callables. + """ + + if not _signature_is_builtin(func): + raise TypeError("{!r} is not a Python builtin " + "function".format(func)) + + s = getattr(func, "__text_signature__", None) + if not s: + raise ValueError("no signature found for builtin {!r}".format(func)) + + return _signature_fromstr(cls, func, s, skip_bound_arg) + + +def _signature_from_function(cls, func, skip_bound_arg=True, + globals=None, locals=None, eval_str=False): + """Private helper: constructs Signature for the given python function.""" + + is_duck_function = False + if not isfunction(func): + if _signature_is_functionlike(func): + is_duck_function = True + else: + # If it's not a pure Python function, and not a duck type + # of pure function: + raise TypeError('{!r} is not a Python function'.format(func)) + + s = getattr(func, "__text_signature__", None) + if s: + return _signature_fromstr(cls, func, s, skip_bound_arg) + + Parameter = cls._parameter_cls + + # Parameter information. + func_code = func.__code__ + pos_count = func_code.co_argcount + arg_names = func_code.co_varnames + posonly_count = func_code.co_posonlyargcount + positional = arg_names[:pos_count] + keyword_only_count = func_code.co_kwonlyargcount + keyword_only = arg_names[pos_count:pos_count + keyword_only_count] + annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str) + defaults = func.__defaults__ + kwdefaults = func.__kwdefaults__ + + if defaults: + pos_default_count = len(defaults) + else: + pos_default_count = 0 + + parameters = [] + + non_default_count = pos_count - pos_default_count + posonly_left = posonly_count + + # Non-keyword-only parameters w/o defaults. + for name in positional[:non_default_count]: + kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD + annotation = annotations.get(name, _empty) + parameters.append(Parameter(name, annotation=annotation, + kind=kind)) + if posonly_left: + posonly_left -= 1 + + # ... w/ defaults. + for offset, name in enumerate(positional[non_default_count:]): + kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD + annotation = annotations.get(name, _empty) + parameters.append(Parameter(name, annotation=annotation, + kind=kind, + default=defaults[offset])) + if posonly_left: + posonly_left -= 1 + + # *args + if func_code.co_flags & CO_VARARGS: + name = arg_names[pos_count + keyword_only_count] + annotation = annotations.get(name, _empty) + parameters.append(Parameter(name, annotation=annotation, + kind=_VAR_POSITIONAL)) + + # Keyword-only parameters. + for name in keyword_only: + default = _empty + if kwdefaults is not None: + default = kwdefaults.get(name, _empty) + + annotation = annotations.get(name, _empty) + parameters.append(Parameter(name, annotation=annotation, + kind=_KEYWORD_ONLY, + default=default)) + # **kwargs + if func_code.co_flags & CO_VARKEYWORDS: + index = pos_count + keyword_only_count + if func_code.co_flags & CO_VARARGS: + index += 1 + + name = arg_names[index] + annotation = annotations.get(name, _empty) + parameters.append(Parameter(name, annotation=annotation, + kind=_VAR_KEYWORD)) + + # Is 'func' is a pure Python function - don't validate the + # parameters list (for correct order and defaults), it should be OK. + return cls(parameters, + return_annotation=annotations.get('return', _empty), + __validate_parameters__=is_duck_function) + + +def _descriptor_get(descriptor, obj): + if isclass(descriptor): + return descriptor + get = getattr(type(descriptor), '__get__', _sentinel) + if get is _sentinel: + return descriptor + return get(descriptor, obj, type(obj)) + + +def _signature_from_callable(obj, *, + follow_wrapper_chains=True, + skip_bound_arg=True, + globals=None, + locals=None, + eval_str=False, + sigcls): + + """Private helper function to get signature for arbitrary + callable objects. + """ + + _get_signature_of = functools.partial(_signature_from_callable, + follow_wrapper_chains=follow_wrapper_chains, + skip_bound_arg=skip_bound_arg, + globals=globals, + locals=locals, + sigcls=sigcls, + eval_str=eval_str) + + if not callable(obj): + raise TypeError('{!r} is not a callable object'.format(obj)) + + if isinstance(obj, types.MethodType): + # In this case we skip the first parameter of the underlying + # function (usually `self` or `cls`). + sig = _get_signature_of(obj.__func__) + + if skip_bound_arg: + return _signature_bound_method(sig) + else: + return sig + + # Was this function wrapped by a decorator? + if follow_wrapper_chains: + # Unwrap until we find an explicit signature or a MethodType (which will be + # handled explicitly below). + obj = unwrap(obj, stop=(lambda f: hasattr(f, "__signature__") + or isinstance(f, types.MethodType))) + if isinstance(obj, types.MethodType): + # If the unwrapped object is a *method*, we might want to + # skip its first parameter (self). + # See test_signature_wrapped_bound_method for details. + return _get_signature_of(obj) + + try: + sig = obj.__signature__ + except AttributeError: + pass + else: + if sig is not None: + # since __text_signature__ is not writable on classes, __signature__ + # may contain text (or be a callable that returns text); + # if so, convert it + o_sig = sig + if not isinstance(sig, (Signature, str)) and callable(sig): + sig = sig() + if isinstance(sig, str): + sig = _signature_fromstr(sigcls, obj, sig) + if not isinstance(sig, Signature): + raise TypeError( + 'unexpected object {!r} in __signature__ ' + 'attribute'.format(o_sig)) + return sig + + try: + partialmethod = obj._partialmethod + except AttributeError: + pass + else: + if isinstance(partialmethod, functools.partialmethod): + # Unbound partialmethod (see functools.partialmethod) + # This means, that we need to calculate the signature + # as if it's a regular partial object, but taking into + # account that the first positional argument + # (usually `self`, or `cls`) will not be passed + # automatically (as for boundmethods) + + wrapped_sig = _get_signature_of(partialmethod.func) + + sig = _signature_get_partial(wrapped_sig, partialmethod, (None,)) + first_wrapped_param = tuple(wrapped_sig.parameters.values())[0] + if first_wrapped_param.kind is Parameter.VAR_POSITIONAL: + # First argument of the wrapped callable is `*args`, as in + # `partialmethod(lambda *args)`. + return sig + else: + sig_params = tuple(sig.parameters.values()) + assert (not sig_params or + first_wrapped_param is not sig_params[0]) + new_params = (first_wrapped_param,) + sig_params + return sig.replace(parameters=new_params) + + if isfunction(obj) or _signature_is_functionlike(obj): + # If it's a pure Python function, or an object that is duck type + # of a Python function (Cython functions, for instance), then: + return _signature_from_function(sigcls, obj, + skip_bound_arg=skip_bound_arg, + globals=globals, locals=locals, eval_str=eval_str) + + if _signature_is_builtin(obj): + return _signature_from_builtin(sigcls, obj, + skip_bound_arg=skip_bound_arg) + + if isinstance(obj, functools.partial): + wrapped_sig = _get_signature_of(obj.func) + return _signature_get_partial(wrapped_sig, obj) + + if isinstance(obj, type): + # obj is a class or a metaclass + + # First, let's see if it has an overloaded __call__ defined + # in its metaclass + call = _signature_get_user_defined_method(type(obj), '__call__') + if call is not None: + return _get_signature_of(call) + + new = _signature_get_user_defined_method(obj, '__new__') + init = _signature_get_user_defined_method(obj, '__init__') + + # Go through the MRO and see if any class has user-defined + # pure Python __new__ or __init__ method + for base in obj.__mro__: + # Now we check if the 'obj' class has an own '__new__' method + if new is not None and '__new__' in base.__dict__: + sig = _get_signature_of(new) + if skip_bound_arg: + sig = _signature_bound_method(sig) + return sig + # or an own '__init__' method + elif init is not None and '__init__' in base.__dict__: + return _get_signature_of(init) + + # At this point we know, that `obj` is a class, with no user- + # defined '__init__', '__new__', or class-level '__call__' + + for base in obj.__mro__[:-1]: + # Since '__text_signature__' is implemented as a + # descriptor that extracts text signature from the + # class docstring, if 'obj' is derived from a builtin + # class, its own '__text_signature__' may be 'None'. + # Therefore, we go through the MRO (except the last + # class in there, which is 'object') to find the first + # class with non-empty text signature. + try: + text_sig = base.__text_signature__ + except AttributeError: + pass + else: + if text_sig: + # If 'base' class has a __text_signature__ attribute: + # return a signature based on it + return _signature_fromstr(sigcls, base, text_sig) + + # No '__text_signature__' was found for the 'obj' class. + # Last option is to check if its '__init__' is + # object.__init__ or type.__init__. + if type not in obj.__mro__: + # We have a class (not metaclass), but no user-defined + # __init__ or __new__ for it + if (obj.__init__ is object.__init__ and + obj.__new__ is object.__new__): + # Return a signature of 'object' builtin. + return sigcls.from_callable(object) + else: + raise ValueError( + 'no signature found for builtin type {!r}'.format(obj)) + + else: + # An object with __call__ + call = getattr_static(type(obj), '__call__', None) + if call is not None: + call = _descriptor_get(call, obj) + return _get_signature_of(call) + + raise ValueError('callable {!r} is not supported by signature'.format(obj)) + + +class _void: + """A private marker - used in Parameter & Signature.""" + + +class _empty: + """Marker object for Signature.empty and Parameter.empty.""" + + +class _ParameterKind(enum.IntEnum): + POSITIONAL_ONLY = 'positional-only' + POSITIONAL_OR_KEYWORD = 'positional or keyword' + VAR_POSITIONAL = 'variadic positional' + KEYWORD_ONLY = 'keyword-only' + VAR_KEYWORD = 'variadic keyword' + + def __new__(cls, description): + value = len(cls.__members__) + member = int.__new__(cls, value) + member._value_ = value + member.description = description + return member + + def __str__(self): + return self.name + +_POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY +_POSITIONAL_OR_KEYWORD = _ParameterKind.POSITIONAL_OR_KEYWORD +_VAR_POSITIONAL = _ParameterKind.VAR_POSITIONAL +_KEYWORD_ONLY = _ParameterKind.KEYWORD_ONLY +_VAR_KEYWORD = _ParameterKind.VAR_KEYWORD + + +class Parameter: + """Represents a parameter in a function signature. + + Has the following public attributes: + + * name : str + The name of the parameter as a string. + * default : object + The default value for the parameter if specified. If the + parameter has no default value, this attribute is set to + `Parameter.empty`. + * annotation + The annotation for the parameter if specified. If the + parameter has no annotation, this attribute is set to + `Parameter.empty`. + * kind : str + Describes how argument values are bound to the parameter. + Possible values: `Parameter.POSITIONAL_ONLY`, + `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`, + `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`. + """ + + __slots__ = ('_name', '_kind', '_default', '_annotation') + + POSITIONAL_ONLY = _POSITIONAL_ONLY + POSITIONAL_OR_KEYWORD = _POSITIONAL_OR_KEYWORD + VAR_POSITIONAL = _VAR_POSITIONAL + KEYWORD_ONLY = _KEYWORD_ONLY + VAR_KEYWORD = _VAR_KEYWORD + + empty = _empty + + def __init__(self, name, kind, *, default=_empty, annotation=_empty): + try: + self._kind = _ParameterKind(kind) + except ValueError: + raise ValueError(f'value {kind!r} is not a valid Parameter.kind') + if default is not _empty: + if self._kind in (_VAR_POSITIONAL, _VAR_KEYWORD): + msg = '{} parameters cannot have default values' + msg = msg.format(self._kind.description) + raise ValueError(msg) + self._default = default + self._annotation = annotation + + if name is _empty: + raise ValueError('name is a required attribute for Parameter') + + if not isinstance(name, str): + msg = 'name must be a str, not a {}'.format(type(name).__name__) + raise TypeError(msg) + + if name[0] == '.' and name[1:].isdigit(): + # These are implicit arguments generated by comprehensions. In + # order to provide a friendlier interface to users, we recast + # their name as "implicitN" and treat them as positional-only. + # See issue 19611. + if self._kind != _POSITIONAL_OR_KEYWORD: + msg = ( + 'implicit arguments must be passed as ' + 'positional or keyword arguments, not {}' + ) + msg = msg.format(self._kind.description) + raise ValueError(msg) + self._kind = _POSITIONAL_ONLY + name = 'implicit{}'.format(name[1:]) + + # It's possible for C functions to have a positional-only parameter + # where the name is a keyword, so for compatibility we'll allow it. + is_keyword = iskeyword(name) and self._kind is not _POSITIONAL_ONLY + if is_keyword or not name.isidentifier(): + raise ValueError('{!r} is not a valid parameter name'.format(name)) + + self._name = name + + def __reduce__(self): + return (type(self), + (self._name, self._kind), + {'_default': self._default, + '_annotation': self._annotation}) + + def __setstate__(self, state): + self._default = state['_default'] + self._annotation = state['_annotation'] + + @property + def name(self): + return self._name + + @property + def default(self): + return self._default + + @property + def annotation(self): + return self._annotation + + @property + def kind(self): + return self._kind + + def replace(self, *, name=_void, kind=_void, + annotation=_void, default=_void): + """Creates a customized copy of the Parameter.""" + + if name is _void: + name = self._name + + if kind is _void: + kind = self._kind + + if annotation is _void: + annotation = self._annotation + + if default is _void: + default = self._default + + return type(self)(name, kind, default=default, annotation=annotation) + + def __str__(self): + kind = self.kind + formatted = self._name + + # Add annotation and default value + if self._annotation is not _empty: + formatted = '{}: {}'.format(formatted, + formatannotation(self._annotation)) + + if self._default is not _empty: + if self._annotation is not _empty: + formatted = '{} = {}'.format(formatted, repr(self._default)) + else: + formatted = '{}={}'.format(formatted, repr(self._default)) + + if kind == _VAR_POSITIONAL: + formatted = '*' + formatted + elif kind == _VAR_KEYWORD: + formatted = '**' + formatted + + return formatted + + def __repr__(self): + return '<{} "{}">'.format(self.__class__.__name__, self) + + def __hash__(self): + return hash((self._name, self._kind, self._annotation, self._default)) + + def __eq__(self, other): + if self is other: + return True + if not isinstance(other, Parameter): + return NotImplemented + return (self._name == other._name and + self._kind == other._kind and + self._default == other._default and + self._annotation == other._annotation) + + +class BoundArguments: + """Result of `Signature.bind` call. Holds the mapping of arguments + to the function's parameters. + + Has the following public attributes: + + * arguments : dict + An ordered mutable mapping of parameters' names to arguments' values. + Does not contain arguments' default values. + * signature : Signature + The Signature object that created this instance. + * args : tuple + Tuple of positional arguments values. + * kwargs : dict + Dict of keyword arguments values. + """ + + __slots__ = ('arguments', '_signature', '__weakref__') + + def __init__(self, signature, arguments): + self.arguments = arguments + self._signature = signature + + @property + def signature(self): + return self._signature + + @property + def args(self): + args = [] + for param_name, param in self._signature.parameters.items(): + if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY): + break + + try: + arg = self.arguments[param_name] + except KeyError: + # We're done here. Other arguments + # will be mapped in 'BoundArguments.kwargs' + break + else: + if param.kind == _VAR_POSITIONAL: + # *args + args.extend(arg) + else: + # plain argument + args.append(arg) + + return tuple(args) + + @property + def kwargs(self): + kwargs = {} + kwargs_started = False + for param_name, param in self._signature.parameters.items(): + if not kwargs_started: + if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY): + kwargs_started = True + else: + if param_name not in self.arguments: + kwargs_started = True + continue + + if not kwargs_started: + continue + + try: + arg = self.arguments[param_name] + except KeyError: + pass + else: + if param.kind == _VAR_KEYWORD: + # **kwargs + kwargs.update(arg) + else: + # plain keyword argument + kwargs[param_name] = arg + + return kwargs + + def apply_defaults(self): + """Set default values for missing arguments. + + For variable-positional arguments (*args) the default is an + empty tuple. + + For variable-keyword arguments (**kwargs) the default is an + empty dict. + """ + arguments = self.arguments + new_arguments = [] + for name, param in self._signature.parameters.items(): + try: + new_arguments.append((name, arguments[name])) + except KeyError: + if param.default is not _empty: + val = param.default + elif param.kind is _VAR_POSITIONAL: + val = () + elif param.kind is _VAR_KEYWORD: + val = {} + else: + # This BoundArguments was likely produced by + # Signature.bind_partial(). + continue + new_arguments.append((name, val)) + self.arguments = dict(new_arguments) + + def __eq__(self, other): + if self is other: + return True + if not isinstance(other, BoundArguments): + return NotImplemented + return (self.signature == other.signature and + self.arguments == other.arguments) + + def __setstate__(self, state): + self._signature = state['_signature'] + self.arguments = state['arguments'] + + def __getstate__(self): + return {'_signature': self._signature, 'arguments': self.arguments} + + def __repr__(self): + args = [] + for arg, value in self.arguments.items(): + args.append('{}={!r}'.format(arg, value)) + return '<{} ({})>'.format(self.__class__.__name__, ', '.join(args)) + + +class Signature: + """A Signature object represents the overall signature of a function. + It stores a Parameter object for each parameter accepted by the + function, as well as information specific to the function itself. + + A Signature object has the following public attributes and methods: + + * parameters : OrderedDict + An ordered mapping of parameters' names to the corresponding + Parameter objects (keyword-only arguments are in the same order + as listed in `code.co_varnames`). + * return_annotation : object + The annotation for the return type of the function if specified. + If the function has no annotation for its return type, this + attribute is set to `Signature.empty`. + * bind(*args, **kwargs) -> BoundArguments + Creates a mapping from positional and keyword arguments to + parameters. + * bind_partial(*args, **kwargs) -> BoundArguments + Creates a partial mapping from positional and keyword arguments + to parameters (simulating 'functools.partial' behavior.) + """ + + __slots__ = ('_return_annotation', '_parameters') + + _parameter_cls = Parameter + _bound_arguments_cls = BoundArguments + + empty = _empty + + def __init__(self, parameters=None, *, return_annotation=_empty, + __validate_parameters__=True): + """Constructs Signature from the given list of Parameter + objects and 'return_annotation'. All arguments are optional. + """ + + if parameters is None: + params = OrderedDict() + else: + if __validate_parameters__: + params = OrderedDict() + top_kind = _POSITIONAL_ONLY + seen_default = False + + for param in parameters: + kind = param.kind + name = param.name + + if kind < top_kind: + msg = ( + 'wrong parameter order: {} parameter before {} ' + 'parameter' + ) + msg = msg.format(top_kind.description, + kind.description) + raise ValueError(msg) + elif kind > top_kind: + top_kind = kind + + if kind in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD): + if param.default is _empty: + if seen_default: + # No default for this parameter, but the + # previous parameter of had a default + msg = 'non-default argument follows default ' \ + 'argument' + raise ValueError(msg) + else: + # There is a default for this parameter. + seen_default = True + + if name in params: + msg = 'duplicate parameter name: {!r}'.format(name) + raise ValueError(msg) + + params[name] = param + else: + params = OrderedDict((param.name, param) for param in parameters) + + self._parameters = types.MappingProxyType(params) + self._return_annotation = return_annotation + + @classmethod + def from_callable(cls, obj, *, + follow_wrapped=True, globals=None, locals=None, eval_str=False): + """Constructs Signature for the given callable object.""" + return _signature_from_callable(obj, sigcls=cls, + follow_wrapper_chains=follow_wrapped, + globals=globals, locals=locals, eval_str=eval_str) + + @property + def parameters(self): + return self._parameters + + @property + def return_annotation(self): + return self._return_annotation + + def replace(self, *, parameters=_void, return_annotation=_void): + """Creates a customized copy of the Signature. + Pass 'parameters' and/or 'return_annotation' arguments + to override them in the new copy. + """ + + if parameters is _void: + parameters = self.parameters.values() + + if return_annotation is _void: + return_annotation = self._return_annotation + + return type(self)(parameters, + return_annotation=return_annotation) + + def _hash_basis(self): + params = tuple(param for param in self.parameters.values() + if param.kind != _KEYWORD_ONLY) + + kwo_params = {param.name: param for param in self.parameters.values() + if param.kind == _KEYWORD_ONLY} + + return params, kwo_params, self.return_annotation + + def __hash__(self): + params, kwo_params, return_annotation = self._hash_basis() + kwo_params = frozenset(kwo_params.values()) + return hash((params, kwo_params, return_annotation)) + + def __eq__(self, other): + if self is other: + return True + if not isinstance(other, Signature): + return NotImplemented + return self._hash_basis() == other._hash_basis() + + def _bind(self, args, kwargs, *, partial=False): + """Private method. Don't use directly.""" + + arguments = {} + + parameters = iter(self.parameters.values()) + parameters_ex = () + arg_vals = iter(args) + + while True: + # Let's iterate through the positional arguments and corresponding + # parameters + try: + arg_val = next(arg_vals) + except StopIteration: + # No more positional arguments + try: + param = next(parameters) + except StopIteration: + # No more parameters. That's it. Just need to check that + # we have no `kwargs` after this while loop + break + else: + if param.kind == _VAR_POSITIONAL: + # That's OK, just empty *args. Let's start parsing + # kwargs + break + elif param.name in kwargs: + if param.kind == _POSITIONAL_ONLY: + msg = '{arg!r} parameter is positional only, ' \ + 'but was passed as a keyword' + msg = msg.format(arg=param.name) + raise TypeError(msg) from None + parameters_ex = (param,) + break + elif (param.kind == _VAR_KEYWORD or + param.default is not _empty): + # That's fine too - we have a default value for this + # parameter. So, lets start parsing `kwargs`, starting + # with the current parameter + parameters_ex = (param,) + break + else: + # No default, not VAR_KEYWORD, not VAR_POSITIONAL, + # not in `kwargs` + if partial: + parameters_ex = (param,) + break + else: + if param.kind == _KEYWORD_ONLY: + argtype = ' keyword-only' + else: + argtype = '' + msg = 'missing a required{argtype} argument: {arg!r}' + msg = msg.format(arg=param.name, argtype=argtype) + raise TypeError(msg) from None + else: + # We have a positional argument to process + try: + param = next(parameters) + except StopIteration: + raise TypeError('too many positional arguments') from None + else: + if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY): + # Looks like we have no parameter for this positional + # argument + raise TypeError( + 'too many positional arguments') from None + + if param.kind == _VAR_POSITIONAL: + # We have an '*args'-like argument, let's fill it with + # all positional arguments we have left and move on to + # the next phase + values = [arg_val] + values.extend(arg_vals) + arguments[param.name] = tuple(values) + break + + if param.name in kwargs and param.kind != _POSITIONAL_ONLY: + raise TypeError( + 'multiple values for argument {arg!r}'.format( + arg=param.name)) from None + + arguments[param.name] = arg_val + + # Now, we iterate through the remaining parameters to process + # keyword arguments + kwargs_param = None + for param in itertools.chain(parameters_ex, parameters): + if param.kind == _VAR_KEYWORD: + # Memorize that we have a '**kwargs'-like parameter + kwargs_param = param + continue + + if param.kind == _VAR_POSITIONAL: + # Named arguments don't refer to '*args'-like parameters. + # We only arrive here if the positional arguments ended + # before reaching the last parameter before *args. + continue + + param_name = param.name + try: + arg_val = kwargs.pop(param_name) + except KeyError: + # We have no value for this parameter. It's fine though, + # if it has a default value, or it is an '*args'-like + # parameter, left alone by the processing of positional + # arguments. + if (not partial and param.kind != _VAR_POSITIONAL and + param.default is _empty): + raise TypeError('missing a required argument: {arg!r}'. \ + format(arg=param_name)) from None + + else: + if param.kind == _POSITIONAL_ONLY: + # This should never happen in case of a properly built + # Signature object (but let's have this check here + # to ensure correct behaviour just in case) + raise TypeError('{arg!r} parameter is positional only, ' + 'but was passed as a keyword'. \ + format(arg=param.name)) + + arguments[param_name] = arg_val + + if kwargs: + if kwargs_param is not None: + # Process our '**kwargs'-like parameter + arguments[kwargs_param.name] = kwargs + else: + raise TypeError( + 'got an unexpected keyword argument {arg!r}'.format( + arg=next(iter(kwargs)))) + + return self._bound_arguments_cls(self, arguments) + + def bind(self, /, *args, **kwargs): + """Get a BoundArguments object, that maps the passed `args` + and `kwargs` to the function's signature. Raises `TypeError` + if the passed arguments can not be bound. + """ + return self._bind(args, kwargs) + + def bind_partial(self, /, *args, **kwargs): + """Get a BoundArguments object, that partially maps the + passed `args` and `kwargs` to the function's signature. + Raises `TypeError` if the passed arguments can not be bound. + """ + return self._bind(args, kwargs, partial=True) + + def __reduce__(self): + return (type(self), + (tuple(self._parameters.values()),), + {'_return_annotation': self._return_annotation}) + + def __setstate__(self, state): + self._return_annotation = state['_return_annotation'] + + def __repr__(self): + return '<{} {}>'.format(self.__class__.__name__, self) + + def __str__(self): + result = [] + render_pos_only_separator = False + render_kw_only_separator = True + for param in self.parameters.values(): + formatted = str(param) + + kind = param.kind + + if kind == _POSITIONAL_ONLY: + render_pos_only_separator = True + elif render_pos_only_separator: + # It's not a positional-only parameter, and the flag + # is set to 'True' (there were pos-only params before.) + result.append('/') + render_pos_only_separator = False + + if kind == _VAR_POSITIONAL: + # OK, we have an '*args'-like parameter, so we won't need + # a '*' to separate keyword-only arguments + render_kw_only_separator = False + elif kind == _KEYWORD_ONLY and render_kw_only_separator: + # We have a keyword-only parameter to render and we haven't + # rendered an '*args'-like parameter before, so add a '*' + # separator to the parameters list ("foo(arg1, *, arg2)" case) + result.append('*') + # This condition should be only triggered once, so + # reset the flag + render_kw_only_separator = False + + result.append(formatted) + + if render_pos_only_separator: + # There were only positional-only parameters, hence the + # flag was not reset to 'False' + result.append('/') + + rendered = '({})'.format(', '.join(result)) + + if self.return_annotation is not _empty: + anno = formatannotation(self.return_annotation) + rendered += ' -> {}'.format(anno) + + return rendered + + +def signature(obj, *, follow_wrapped=True, globals=None, locals=None, eval_str=False): + """Get a signature object for the passed callable.""" + return Signature.from_callable(obj, follow_wrapped=follow_wrapped, + globals=globals, locals=locals, eval_str=eval_str) + + +class BufferFlags(enum.IntFlag): + SIMPLE = 0x0 + WRITABLE = 0x1 + FORMAT = 0x4 + ND = 0x8 + STRIDES = 0x10 | ND + C_CONTIGUOUS = 0x20 | STRIDES + F_CONTIGUOUS = 0x40 | STRIDES + ANY_CONTIGUOUS = 0x80 | STRIDES + INDIRECT = 0x100 | STRIDES + CONTIG = ND | WRITABLE + CONTIG_RO = ND + STRIDED = STRIDES | WRITABLE + STRIDED_RO = STRIDES + RECORDS = STRIDES | WRITABLE | FORMAT + RECORDS_RO = STRIDES | FORMAT + FULL = INDIRECT | WRITABLE | FORMAT + FULL_RO = INDIRECT | FORMAT + READ = 0x100 + WRITE = 0x200 + + +def _main(): + """ Logic for inspecting an object given at command line """ + import argparse + import importlib + + parser = argparse.ArgumentParser() + parser.add_argument( + 'object', + help="The object to be analysed. " + "It supports the 'module:qualname' syntax") + parser.add_argument( + '-d', '--details', action='store_true', + help='Display info about the module rather than its source code') + + args = parser.parse_args() + + target = args.object + mod_name, has_attrs, attrs = target.partition(":") + try: + obj = module = importlib.import_module(mod_name) + except Exception as exc: + msg = "Failed to import {} ({}: {})".format(mod_name, + type(exc).__name__, + exc) + print(msg, file=sys.stderr) + sys.exit(2) + + if has_attrs: + parts = attrs.split(".") + obj = module + for part in parts: + obj = getattr(obj, part) + + if module.__name__ in sys.builtin_module_names: + print("Can't get info for builtin modules.", file=sys.stderr) + sys.exit(1) + + if args.details: + print('Target: {}'.format(target)) + print('Origin: {}'.format(getsourcefile(module))) + print('Cached: {}'.format(module.__cached__)) + if obj is module: + print('Loader: {}'.format(repr(module.__loader__))) + if hasattr(module, '__path__'): + print('Submodule search path: {}'.format(module.__path__)) + else: + try: + __, lineno = findsource(obj) + except Exception: + pass + else: + print('Line: {}'.format(lineno)) + + print('\n') + else: + print(getsource(obj)) + + +if __name__ == "__main__": + _main() diff --git a/common/src/buttercup/common/clusterfuzz_parser/slice.py b/common/src/buttercup/common/clusterfuzz_parser/slice.py new file mode 100644 index 00000000..78c1bc1e --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_parser/slice.py @@ -0,0 +1,955 @@ +# Clusterfuzz commit 46968a275474422db32530a2126dfa30dc7f3d15 + +from buttercup.common.clusterfuzz_parser import inspect +import re +import logging + +logs = logging.getLogger(__name__) + +C_CPP_EXTENSIONS = ['c', 'cc', 'cpp', 'cxx', 'h', 'hh', 'hpp', 'hxx'] + +# Patterns which cannot be compiled directly, or which are used for direct +# comparison. +CHECK_FAILURE_PATTERN = r'Check failed: ' +JNI_ERROR_STRING = r'JNI DETECTED ERROR IN APPLICATION:' + +# Common log prefix format for Google fatal logs. +GOOGLE_LOG_FATAL_PREFIX = r'^F\d{4}\s+\d{2}:\d{2}:\d{2}\.\d+\s+\d+\s+(.*):\d+\]' + +# Compiled regular expressions. +ANDROID_ABORT_REGEX = re.compile(r'^Abort message: (.*)') +ANDROID_FATAL_EXCEPTION_REGEX = re.compile(r'.*FATAL EXCEPTION.*:') +ANDROID_KERNEL_ERROR_REGEX = re.compile( + r'.*Internal error: (Oops)?( -|:) (BUG|[0-9a-fA-F]+)') +ANDROID_KERNEL_STACK_FRAME_REGEX = re.compile( + # e.g. "[ 1998.156940] [] " + r'[^(]*\[\<([x0-9a-fA-F]+)\>\]\s+' + # e.g. "(msm_vidc_prepare_buf+0xa0/0x124)"; function (3), offset (4) + r'\(?(([\w]+)\+([\w]+)/[\w]+)\)?') +ANDROID_KERNEL_STACK_FRAME_NO_ADDRESS_REGEX = re.compile( + # e.g. "(msm_vidc_prepare_buf+0xa0/0x124)"; function (2), offset (3) + r'\(?(([\w]+)\+([\w]+)/[\w]+)\)?') +ANDROID_KERNEL_TIME_REGEX = re.compile(r'^\[\s*\d+\.\d+\]\s') +# Parentheses are optional. +ANDROID_PROCESS_NAME_REGEX = re.compile(r'.*[(](.*)[)]$') +ANDROID_SEGV_REGEX = re.compile(r'.*signal.*\(SIG.*fault addr ([^ ]*)(.*)') +ASAN_INVALID_FREE_REGEX = re.compile( + r'.*AddressSanitizer: ' + r'attempting free on address which was not malloc\(\)-ed: ' + r'([xX0-9a-fA-F]+)') +ASAN_DOUBLE_FREE_REGEX = re.compile( + r'.*(AddressSanitizer).*double-free' + r' on (unknown address |address |)([xX0-9a-fA-F]+)') +ASAN_MEMCPY_OVERLAP_REGEX = re.compile( + r'.*(AddressSanitizer).*memcpy-param-overlap' + r'[^\[]*([\[].*[)])') +ASAN_REGEX = re.compile( + r'.*ERROR: (HWAddressSanitizer|AddressSanitizer)[: ]*[ ]*([^(:;]+)') +ASSERT_REGEX = re.compile( + r'(?:\[.*?\]|.*\.(?:%s):.*)?' % ('|'.join(C_CPP_EXTENSIONS)) + + r'\s*(?:ASSERT(?:ION)? FAIL(?:URE|ED)|panic): (.*)', re.IGNORECASE) +ASSERT_REGEX_GOOGLE = re.compile(GOOGLE_LOG_FATAL_PREFIX + + r'.*assertion failed at\s.*\sin\s*.*: (.*)') +ASSERT_REGEX_GLIBC = re.compile( + r'.*:\s*assertion [`\'"]?(.*?)[`\'"]? failed\.?$', re.IGNORECASE) +# The 'assertion .* failed' is suffixed with the failure reason. E.g., +# 'assertion __dest < len() failed: sample_array[] index out of bounds', +# 'assertion !full() failed: sample_function() called on an empty vector' +ASSERT_REGEX_GLIBC_SUFFIXED = re.compile( + r'.*\S.*\/.*:\d+:\s*assertion .* failed:\s*(\S.*)') +ASSERT_NOT_REACHED_REGEX = re.compile(r'^\s*SHOULD NEVER BE REACHED\s*$') +CENTIPEDE_TIMEOUT_REGEX = re.compile( + r'^========= Timeout of \d+ seconds exceeded; exiting') +CFI_ERROR_REGEX = re.compile( + r'(.*): runtime error: control flow integrity check for type (.*) ' + r'failed during (.*vtable address ([xX0-9a-fA-F]+)|.*)') +CFI_INVALID_DOWNCAST_REGEX = re.compile(r'.*note: vtable is of type (.*)') +CFI_INVALID_VPTR_REGEX = re.compile(r'.*note: invalid vtable$') +CFI_FUNC_DEFINED_HERE_REGEX = re.compile(r'.*note: .* defined here$') +CFI_NODEBUG_ERROR_MARKER_REGEX = re.compile( + r'CFI: Most likely a control flow integrity violation;.*') +CHROME_CHECK_FAILURE_REGEX = re.compile( + r'\s*\[[^\]]*[:]([^\](]*).*\].*Check failed[:]\s*(.*)') +CHROME_STACK_FRAME_REGEX = re.compile( + r'[ ]*(#(?P[0-9]+)[ ]' # frame id (2) + r'([xX0-9a-fA-F]+)[ ])' # addr (3) + r'([^/\\]+)$') # rest, usually fun (4); may have off +CHROME_WIN_STACK_FRAME_REGEX = re.compile( + r'[ ]*([^/\\]+) ' # fun (1) + r'\[([xX0-9a-fA-F]+)\+' # fun_base (2) + r'(\d+)\]' # off[dec] (3) + r'( \((.*):(\d+)\))?') # if available, file (5) and line (6) +CHROME_MAC_STACK_FRAME_REGEX = re.compile( + r'(?P\d+)\s+' # frame id (1) + r'(([\w ]+)|(\?\?\?))\s+' # image (2) + r'([xX0-9a-fA-F]+)\s+' # addr[hex] (5) + r'([^/\\]+)\s*\+\s*' # fun (6) + r'(\d+)') # off[dec] (7) +MSAN_TSAN_REGEX = re.compile( + r'.*(ThreadSanitizer|MemorySanitizer):\s+(?!ABRT)(?!ILL)([^(:]+)') +EXTRA_SANITIZERS_COMMAND_INJECTION_REGEX = re.compile( + r'===BUG DETECTED: Shell (corruption|injection)===') +EXTRA_SANITIZERS_ARBITRARY_FILE_OPEN_REGEX = re.compile( + r'===BUG DETECTED: Arbitrary file open===') +EXTRA_SANITIZERS_ARBITRARY_DNS = re.compile( + r'===BUG DETECTED: Arbitrary domain name resolution===') +EXTRA_SANITIZERS_PYSECSAN = re.compile(r'===BUG DETECTED: PySecSan:') +FATAL_ERROR_GENERIC_FAILURE = re.compile(r'#\s+()(.*)') +FATAL_ERROR_CHECK_FAILURE = re.compile( + r'#\s+(Check failed: |RepresentationChangerError: node #\d+:)(.*)') +FATAL_ERROR_DCHECK_FAILURE = re.compile(r'#\s+(Debug check failed: )(.*)') +FATAL_ERROR_REGEX = re.compile(r'#\s*Fatal error in (.*)') +FATAL_ERROR_LINE_REGEX = re.compile(r'#\s*Fatal error in (.*), line [0-9]+') +FATAL_ERROR_UNREACHABLE = re.compile(r'# un(reachable|implemented) code') +GENERIC_SEGV_HANDLER_REGEX = re.compile( + 'Received signal 11 SEGV_[A-Z]+ ([0-9a-f]*)') +GOOGLE_CHECK_FAILURE_REGEX = re.compile(GOOGLE_LOG_FATAL_PREFIX + + r'\s*Check failed[:]\s*(.*)') +GOOGLE_LOG_FATAL_REGEX = re.compile(GOOGLE_LOG_FATAL_PREFIX + r'\s*(.*)') +GPU_PROCESS_FAILURE = re.compile(r'.*GPU process exited unexpectedly.*') +HWASAN_ALLOCATION_TAIL_OVERWRITTEN_ADDRESS_REGEX = re.compile( + r'.*ERROR: HWAddressSanitizer: allocation-tail-overwritten; ' + r'heap object \[([xX0-9a-fA-F]+),.*of size') +JAZZER_JAVA_SECURITY_EXCEPTION_REGEX = re.compile( + '== Java Exception: .*FuzzerSecurityIssue') +JAZZER_JAVA_EXCEPTION_REGEX = re.compile('== Java Exception: .*') +JAVA_EXCEPTION_CRASH_STATE_REGEX = re.compile(r'\s*at (.*)\(.*\)') +KERNEL_BUG = re.compile(r'kernel BUG at (.*)') +KASAN_ACCESS_TYPE_REGEX = re.compile(r'(Read|Write) of size ([0-9]+)') +KASAN_ACCESS_TYPE_ADDRESS_REGEX = re.compile( + r'(Read|Write) of size ([0-9]+) at (addr|address) ([a-f0-9]+)') +KASAN_CRASH_TYPE_ADDRESS_REGEX = re.compile( + r'BUG: KASAN: (.*) (in|on).*(addr|address) ([a-f0-9]+)') +KASAN_CRASH_TYPE_ADDRESS_RANGE_REGEX = re.compile( + r'KASAN: (.*?) (in|on) range \[([a-z0-9]+)-([a-z0-9]+)\]') +KASAN_CRASH_TYPE_FUNCTION_REGEX = re.compile( + r'BUG: KASAN: (.*) (in|on).* ([\w]+)\+([\w]+)\/([\w]+)') +KASAN_GPF_REGEX = re.compile(r'general protection fault:.*KASAN') +KERNEL_PANIC = re.compile(r'Kernel panic - not syncing: (.*)') +LIBFUZZER_DEADLY_SIGNAL_REGEX = re.compile( + r'.*ERROR:\s*libFuzzer:\s*deadly signal') +LIBFUZZER_FUZZ_TARGET_EXITED_REGEX = re.compile( + r'.*ERROR:\s*libFuzzer:\s*fuzz target exited') +LIBFUZZER_OVERWRITES_CONST_INPUT_REGEX = re.compile( + r'.*ERROR:\s*libFuzzer:\s*fuzz target overwrites its const input') +LIBFUZZER_TIMEOUT_REGEX = re.compile(r'.*ERROR:\s*libFuzzer:\s*timeout') +LIBRARY_NOT_FOUND_ANDROID_REGEX = re.compile( + r'.*: library ([`\'"])(.*)\1 not found') +LIBRARY_NOT_FOUND_LINUX_REGEX = re.compile( + r'.*error while loading shared libraries: ([^:]*): ' + r'cannot open shared object file') +LINUX_GDB_CRASH_TYPE_REGEX = re.compile(r'Program received signal ([a-zA-Z]+),') +LINUX_GDB_CRASH_ADDRESS_REGEX = re.compile(r'rip[ ]+([xX0-9a-fA-F]+)') +LINUX_GDB_CRASH_ADDRESS_NO_REGISTERS_REGEX = re.compile( + r'^(0[xX][0-9a-fA-F]+)\s+in\s+') +LSAN_DIRECT_LEAK_REGEX = re.compile(r'Direct leak of ') +LSAN_INDIRECT_LEAK_REGEX = re.compile(r'Indirect leak of ') +MAC_GDB_CRASH_ADDRESS_REGEX = re.compile( + r'Reason:.*at address[^0-9]*([0-9a-zA-Z]+)') +OUT_OF_MEMORY_REGEX = re.compile(r'.*(?:%s).*' % '|'.join([ + r'# Allocation failed.*out of memory', + r'::OnNoMemory', + r'ERROR.*Sanitizer failed to allocate', + r'FatalProcessOutOfMemory', # V8 + r'Fatal (?:process|JavaScript) out of memory:', # V8 + r'Fatal JavaScript invalid size error', # V8 + r'FX_OutOfMemoryTerminate', + r'Out of memory\. Dying.', + r'Out of memory\. size=', + r'Sanitizer: allocation-size-too-big', + r'Sanitizer: calloc-overflow', + r'Sanitizer: calloc parameters overflow', + r'Sanitizer: requested allocation size.*exceeds maximum supported size', + r'Sanitizer: out of memory', + r'TerminateBecauseOutOfMemory', + r'allocator is out of memory trying to allocate', + r'blinkGCOutOfMemory', + r'couldnt allocate.*Out of memory', + r'libFuzzer: out-of-memory \(', + r'rss limit exhausted', + r'in rust_oom', + r'Failure description: out-of-memory', # Centipede. +])) +RUNTIME_ERROR_REGEX = re.compile(r'#\s*Runtime error in (.*)') +RUNTIME_ERROR_LINE_REGEX = re.compile(r'#\s*Runtime error in (.*), line [0-9]+') +RUST_ASSERT_REGEX = re.compile(r'thread\s.*\spanicked at \'([^\']*)', + re.IGNORECASE) +SAN_ABRT_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: ABRT ') +SAN_BREAKPOINT_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: breakpoint ') +SAN_CHECK_FAILURE_REGEX = re.compile( + r'.*Sanitizer CHECK failed[:]\s*[^ ]*\s*(.*)') +SAN_CRASH_TYPE_ADDRESS_REGEX = re.compile( + r'[ ]*([^ ]*|Atomic [^ ]*) of size ([^ ]*) at ([^ ]*)') +SAN_DEADLYSIGNAL_REGEX = re.compile( + r'(Address|Leak|Memory|UndefinedBehavior|Thread)Sanitizer:DEADLYSIGNAL') +CONCATENATED_SAN_DEADLYSIGNAL_REGEX = re.compile( + r'\n([^\n]*\S[^\n]*)(' + SAN_DEADLYSIGNAL_REGEX.pattern + r')\n') +SPLIT_CONCATENATED_SAN_DEADLYSIGNAL_REGEX = r'\n\1\n\2\n' +SAN_FPE_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: FPE ') +SAN_ILL_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: ILL ') +SAN_TRAP_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: TRAP ') +SAN_SEGV_CRASH_TYPE_REGEX = re.compile( + r'.*The signal is caused by a ([A-Z]+) memory access.') +# FIXME: Replace when better ways to check signal crashes are available. +SAN_SIGNAL_REGEX = re.compile(r'.*SCARINESS: (\d+) \(signal\)', re.DOTALL) +SAN_STACK_FRAME_REGEX = re.compile( + # frame id (1) + r'\s*#(?P\d+)\s+' + # addr (2) + r'([xX0-9a-fA-F]+)\s+' + # Format is [in {fun}[+{off}]] [{file}[:{line}[:{char}]]] [({mod}[+{off}])] + # If there is fun and mod/file info, extract + # fun+off, where fun (7, 5, 23), off (8) + r'((in\s*(((.*)\+([xX0-9a-fA-F]+))|(.*)) ' + r'(' + # file:line:char, where file (12, 16), line (13, 17), char (14) + r'(([^ ]+):(\d+):(\d+))|(([^ ]+):(\d+))' + # or mod+off, where mod (19, 31), off (21, 32) + r'|' + r'(\(([^+]+)(\+([xX0-9a-fA-F]+))?\)))' + r')' + # If there is only fun info, extract + r'|' + r'(in\s*(((.*)\+([xX0-9a-fA-F]+))|(.*)))' + # If there is only mod info, extract + r'|' + r'(\((((.*)\+([xX0-9a-fA-F]+))|(.*))\))' + r')') +SAN_ADDR_REGEX = re.compile(r'.*(ERROR: [a-zA-Z]+Sanitizer)[: ]*(.*) on ' + r'(unknown address |address |)([xX0-9a-fA-F]+)') +SAN_SEGV_REGEX = re.compile(r'.*([a-zA-Z]+Sanitizer).*(SEGV|access-violation) ' + r'on unknown address ([xX0-9a-fA-F]+)') +SECURITY_CHECK_FAILURE_REGEX = re.compile( + r'.*\[[^\]]*[:]([^\](]*).*\].*Security CHECK failed[:]\s*(.*)\.\s*') +SECURITY_DCHECK_FAILURE_REGEX = re.compile( + r'.*\[[^\]]*[:]([^\](]*).*\].*Security DCHECK failed[:]\s*(.*)\.\s*') +UBSAN_DIVISION_BY_ZERO_REGEX = re.compile(r'.*division by zero.*') +UBSAN_FLOAT_CAST_OVERFLOW_REGEX = re.compile(r'.*outside the range of ' + r'representable values.*') +UBSAN_INCORRECT_FUNCTION_POINTER_REGEX = re.compile( + r'.*call to function [^\s]+ through pointer to incorrect function type.*') +UBSAN_INDEX_OOB_REGEX = re.compile(r'.*out of bounds for type.*') +UBSAN_UNSIGNED_INTEGER_OVERFLOW_REGEX = re.compile( + r'.*unsigned integer overflow.*') +UBSAN_INTEGER_OVERFLOW_REGEX = re.compile( + r'.*(integer overflow|' + r'(negation|division) of.*cannot be represented in type).*') +UBSAN_INVALID_BOOL_VALUE_REGEX = re.compile( + r'.*not a valid value for type \'(bool|BOOL)\'.*') +UBSAN_INVALID_BUILTIN_REGEX = re.compile(r'.*, which is not a valid argument.*') +UBSAN_INVALID_ENUM_VALUE_REGEX = re.compile(r'.*not a valid value for type.*') +UBSAN_MISALIGNED_ADDRESS_REGEX = re.compile(r'.*misaligned address.*') +UBSAN_NO_RETURN_VALUE_REGEX = re.compile( + r'.*reached the end of a value-returning function.*') +UBSAN_NULL_ARGUMENT_REGEX = re.compile( + r'.*null pointer passed as .*, which is declared to never be null.*') +UBSAN_NULL_POINTER_READ_REGEX = re.compile(r'.*load of null pointer.*') +UBSAN_NULL_POINTER_REFERENCE_REGEX = re.compile( + r'.*(binding to|access within|call on) null pointer.*') +UBSAN_NULL_POINTER_WRITE_REGEX = re.compile(r'.*store to null pointer.*') +UBSAN_OBJECT_SIZE_REGEX = re.compile( + r'.*address .* with insufficient space for an object of type.*') +UBSAN_POINTER_OVERFLOW_REGEX = re.compile( + r'.*((addition|subtraction) of unsigned offset |' + r'pointer index expression with base |' + r'applying non-zero offset [0-9]+ to null pointer|' + r'applying zero offset to null pointer).*') +UBSAN_RETURNS_NONNULL_ATTRIBUTE_REGEX = re.compile( + r'.*null pointer returned from function declared to never return null.*') +UBSAN_RUNTIME_ERROR_REGEX = re.compile(r'(.*): runtime error: (.*)') +UBSAN_SHIFT_ERROR_REGEX = re.compile(r'.*shift.*') +UBSAN_UNREACHABLE_REGEX = re.compile( + r'.*execution reached an unreachable program point.*') +UBSAN_VLA_BOUND_REGEX = re.compile( + r'.*variable length array bound evaluates to non-positive value.*') +UBSAN_VPTR_REGEX = re.compile( + r'(.*): runtime error: ' + r'(member access within|member call on|downcast of)' + r' address ([xX0-9a-fA-F]+) .* of type (.*)') +UBSAN_VPTR_INVALID_DOWNCAST_REGEX = re.compile( + r'.*note: object is of type (.*)') +UBSAN_VPTR_INVALID_OFFSET_REGEX = re.compile( + r'.*at offset (\d+) within object of type (.*)') +UBSAN_VPTR_INVALID_VPTR_REGEX = re.compile(r'.*note: object has invalid vptr') +V8_ABORT_FAILURE_REGEX = re.compile(r'^abort: (CSA_ASSERT failed:.*)') +V8_ABORT_METADATA_REGEX = re.compile(r'(.*) \[(.*):\d+\]$') +V8_CORRECTNESS_FAILURE_REGEX = re.compile(r'#\s*V8 correctness failure') +V8_CORRECTNESS_METADATA_REGEX = re.compile( + r'#\s*V8 correctness ((configs|sources|suppression): .*)') +V8_ERROR_REGEX = re.compile(r'\s*\[[^\]]*\] V8 error: (.+)\.$') +WINDOWS_CDB_STACK_FRAME_REGEX = re.compile( + r'([0-9a-zA-Z`]+) ' # Child EBP or SP; remove ` if needed (1) + r'([0-9a-zA-Z`]+) ' # RetAddr; remove ` if needed (2) + r'([0-9a-zA-Z_]+)' # mod (3) + r'!(.*)\+' # fun (4) + r'([xX0-9a-fA-F]+)') # off (5) +WINDOWS_CDB_STACK_START_REGEX = re.compile(r'ChildEBP RetAddr') +WINDOWS_CDB_CRASH_TYPE_ADDRESS_REGEX = re.compile( + r'Attempt to (.*) [^ ]* address (.*)') +WINDOWS_CDB_CRASH_TYPE_REGEX = re.compile( + r'.*DEFAULT_BUCKET_ID[ ]*[:][ ]*([a-zA-Z_]+)') +WINDOWS_CDB_STACK_OVERFLOW_REGEX = re.compile( + r'.*ExceptionCode: .*\(Stack overflow\).*') +WINDOWS_SAN_ILL_REGEX = re.compile(r'.*[a-zA-Z]+Sanitizer: illegal-instruction') + +WYCHEPROOF_JAVA_EXCEPTION = re.compile( + r'.*\) (.*\(com\.google\.security\.wycheproof\.[a-zA-z0-9]*\))') + +# Golang specific regular expressions. +GOLANG_DIVISION_BY_ZERO_REGEX = re.compile( + r'^panic: runtime error: integer divide by zero.*') +GOLANG_INDEX_OUT_OF_RANGE_REGEX = re.compile( + r'^panic: runtime error: index out of range.*') +GOLANG_INVALID_MEMORY_ADDRESS_REGEX = re.compile( + r'^panic: runtime error: invalid memory address.*') +GOLANG_MAKESLICE_LEN_OUT_OF_RANGE_REGEX = re.compile( + r'^panic: runtime error: makeslice: len out of range.*') +GOLANG_SLICE_BOUNDS_OUT_OF_RANGE_REGEX = re.compile( + r'^panic: runtime error: slice bounds out of range.*') +GOLANG_STACK_OVERFLOW_REGEX = re.compile(r'^fatal error: stack overflow.*') + +GOLANG_CRASH_TYPES_MAP = [ + (GOLANG_DIVISION_BY_ZERO_REGEX, 'Integer divide by zero'), + (GOLANG_INDEX_OUT_OF_RANGE_REGEX, 'Index out of range'), + (GOLANG_INVALID_MEMORY_ADDRESS_REGEX, 'Invalid memory address'), + (GOLANG_MAKESLICE_LEN_OUT_OF_RANGE_REGEX, 'Makeslice: len out of range'), + (GOLANG_SLICE_BOUNDS_OUT_OF_RANGE_REGEX, 'Slice bounds out of range'), + (GOLANG_STACK_OVERFLOW_REGEX, 'Stack overflow'), +] + +GOLANG_FATAL_ERROR_REGEX = re.compile(r'^fatal error: (.*)') + +GOLANG_STACK_FRAME_FUNCTION_REGEX = re.compile( + r'^([0-9a-zA-Z\.\-\_\\\/\(\)\*]+)\([x0-9a-f\s,\.{}]*\)$') + +# Python specific regular expressions. +PYTHON_UNHANDLED_EXCEPTION = re.compile( + r'^\s*=== Uncaught Python exception: ===$') + +PYTHON_CRASH_TYPES_MAP = [ + (PYTHON_UNHANDLED_EXCEPTION, 'Uncaught exception'), + (EXTRA_SANITIZERS_PYSECSAN, 'PySecSan'), +] + +PYTHON_STACK_FRAME_FUNCTION_REGEX = re.compile( + # File "/gzip.py", line 421, in _read_gzip_header + r'^\s*File "([^"]+)", line (\d+), in (.+)$') + +# Mappings of Android kernel error status codes to strings. +ANDROID_KERNEL_STATUS_TO_STRING = { + 0b0001: 'Alignment Fault', + 0b0100: 'Instruction Cache Maintenance Fault', + 0b1100: 'L1 Translation', + 0b1110: 'L2 Translation', + 0b0101: 'Translation Fault, Section', + 0b0111: 'Translation Fault, Page', + 0b0011: 'Access Flag Fault, Section', + 0b0110: 'Access Flag Fault, Page', + 0b1001: 'Domain Fault, Section', + 0b1011: 'Domain Fault, Page', + 0b1101: 'Permission Fault, Section', + 0b1111: 'Permissions Fault, Page', +} + +# Ignore lists. +STACK_FRAME_IGNORE_REGEXES = [ + # Function names (exact match). + r'^abort$', + r'^exit$', + r'^pthread_create$', + r'^pthread_kill$', + r'^raise$', + r'^tgkill$', + r'^__chk_fail$', + r'^__fortify_fail$', + + # Function names (startswith). + r'^(|__)aeabi_', + r'^(|__)memcmp', + r'^(|__)memcpy', + r'^(|__)memmove', + r'^(|__)memset', + r'^(|__)strcmp', + r'^(|__)strcpy', + r'^(|__)strdup', + r'^(|__)strlen', + r'^(|__)strncpy', + r'^', + r'^Abort\(', + r'^CFCrash', + r'^ExitCallback', + r'^IsSandboxedProcess', + r'^LLVMFuzzerTestOneInput', + r'^MSanAtExitWrapper', + r'^New', + r'^RaiseException', + r'^SbSystemBreakIntoDebugger', + r'^SignalAction', + r'^SignalHandler', + r'^TestOneProtoInput', + r'^WTF::', + r'^WTFCrash', + r'^X11Error', + r'^_L_unlock_', + r'^_\$LT\$', + r'^__GI_', + r'^__asan::', + r'^__asan_', + r'^__assert_', + r'^__cxa_atexit', + r'^__cxa_rethrow', + r'^__cxa_throw', + r'^__dump_stack', + r'^__hwasan::', + r'^__hwasan_', + r'^__interceptor_', + r'^__kasan_', + r'^__libc_', + r'^__lsan::', + r'^__lsan_', + r'^__msan::', + r'^__msan_', + r'^__pthread_kill', + r'^__run_exit_handlers', + r'^__rust_try', + r'^__sanitizer::', + r'^__sanitizer_', + r'^__tsan::', + r'^__tsan_', + r'^__ubsan::', + r'^__ubsan_', + r'^_asan_', + r'^_hwasan_', + r'^_lsan_', + r'^_msan_', + r'^_objc_terminate', + r'^_sanitizer_', + r'^_start', + r'^_tsan_', + r'^_ubsan_', + r'^abort', + r'^alloc::', + r'^android\.app\.ActivityManagerProxy\.', + r'^android\.os\.Parcel\.', + r'^art::Thread::CreateNativeThread', + r'^asan_', + r'^asan\.module_ctor', + r'^asan\.module_dtor', + r'^calloc', + r'^check_memory_region', + r'^common_exit', + r'^core::fmt::write', + r'^delete', + r'^demangling_terminate_handler', + r'^dump_backtrace', + r'^dump_stack', + r'^exit_or_terminate_process', + r'^fpehandler\(', + r'^free', + r'^fuzzer::', + r'^g_log', + r'^generic_cpp_', + r'^gsignal', + r'^kasan_', + r'^libfuzzer_sys::initialize', + r'^main', + r'^malloc', + r'^mozalloc_', + r'^new', + r'^object_err', + r'^operator', + r'^panic_abort::', + r'^print_trailer', + r'^realloc', + r'^rust_begin_unwind', + r'^rust_fuzzer_test_input', + r'^rust_oom', + r'^rust_panic', + r'^scanf', + r'^show_stack', + r'^std::__terminate', + r'^std::io::Write::write_fmt', + r'^std::panic', + r'^std::process::abort', + r'^std::sys::unix::abort', + r'^std::sys_common::backtrace', + r'^__rust_start_panic', + r'^__scrt_common_main_seh', + r'^libgcc_s.so.*', + + # Functions names (contains). + r'.*ASAN_OnSIGSEGV', + r'.*BaseThreadInitThunk', + r'.*DebugBreak', + r'.*DefaultDcheckHandler', + r'.*ForceCrashOnSigAbort', + r'.*MemoryProtection::CMemoryProtector', + r'.*PartitionAlloc', + r'.*RtlFreeHeap', + r'.*RtlInitializeExceptionChain', + r'.*RtlReportCriticalFailure', + r'.*RtlUserThreadStart', + r'.*RtlpHeapHandleError', + r'.*RtlpLogHeapFailure', + r'.*SkDebugf', + r'.*StackDumpSignalHandler', + r'.*__android_log_assert', + r'.*__tmainCRTStartup', + r'.*_asan_rtl_', + r'.*agent::asan::', + r'.*allocator_shim', + r'.*asan_Heap', + r'.*asan_check_access', + r'.*asan_osx_dynamic\.dylib', + r'.*assert', + r'.*base::FuzzedDataProvider', + r'.*base::allocator', + r'.*base::android::CheckException', + r'.*base::debug::BreakDebugger', + r'.*base::debug::CollectStackTrace', + r'.*base::debug::StackTrace::StackTrace', + r'.*ieee754\-', + r'.*libpthread', + r'.*logger', + r'.*logging::CheckError', + r'.*logging::ErrnoLogMessage', + r'.*logging::LogMessage', + r'.*stdext::exception::what', + r'.*v8::base::OS::Abort', + + # File paths. + r'.* base/callback', + r'.* /rust(|c)/', + r'.*/AOSP\-toolchain/', + r'.*/bindings/ToV8\.h', + r'.*/crosstool/', + r'.*/gcc/', + r'.*/glibc\-', + r'.*/jemalloc/', + r'.*/libc\+\+', + r'.*/libc/', + r'.*/llvm\-build/', + r'.*/minkernel/crts/', + r'.*/sanitizer_common/', + r'.*/tcmalloc/', + r'.*/vc/include/', + r'.*/vctools/crt/', + r'.*/win_toolchain/', + r'.*libc\+\+/', + # Clusterfuzz file paths on Windows to ignore. + r'c:/clusterfuzz/bot/build', + + # Wrappers from honggfuzz/libhfuzz/memorycmp.c. + r'.*/memorycmp\.c', + + # Others (uncategorized). + r'.*\+Unknown', + r'.*', + r'.*Inline Function @', + r'^$', + r'^\[vdso\]$', + r'^linux-gate.so.*$', + + # Golang specific frames to ignore. + r'^panic$', + r'^runtime\.', + + # Fuchsia specific. + r'^CrashTrampolineAsm', + r'^libc_io_functions_not_implemented_use_fdio_instead', + r'^', + r'^__zx_panic', + r'^syslog::LogMessage', + + # Android kernel stack frame ignores. + r'^print_address_description', + r'^_etext', + + # Swift specific. + r'^_swift_stdlib_', + + # googlefuzztest specific. + r'.*fuzztest::internal::', + + # V8 specific. + r'^V8_Fatal', + # Ignore error-throwing frames, the bug is in the caller. + r'^blink::ReportV8FatalError', + r'^v8::api_internal::ToLocalEmpty', + + # google3 specific stack frame ignores. + r'^absl::log_internal::', +] + +STACK_FRAME_IGNORE_REGEXES_IF_SYMBOLIZED = [ + r'.*libc\.so', + r'.*libc\+\+\.so', + r'.*libc\+\+_shared\.so', + r'.*libstdc\+\+\.so', + r'.*libc-.*\.so', +] + +IGNORE_CRASH_TYPES_FOR_ABRT_BREAKPOINT_AND_ILLS = [ + 'Arbitrary file open', + 'ASSERT', + 'CHECK failure', + 'Command injection', + 'DCHECK failure', + 'Fatal error', + 'Security CHECK failure', + 'Security DCHECK failure', + 'V8 API error', +] + +STATE_STOP_MARKERS = [ + 'Direct leak of', + 'Uninitialized value was stored to memory at', + 'allocated by thread', + 'created by main thread at', + 'located in stack of thread', + 'previously allocated by', +] + +UBSAN_CRASH_TYPES_MAP = [ + (UBSAN_DIVISION_BY_ZERO_REGEX, 'Divide-by-zero'), + (UBSAN_FLOAT_CAST_OVERFLOW_REGEX, 'Float-cast-overflow'), + (UBSAN_INCORRECT_FUNCTION_POINTER_REGEX, 'Incorrect-function-pointer-type'), + (UBSAN_INDEX_OOB_REGEX, 'Index-out-of-bounds'), + (UBSAN_INVALID_BOOL_VALUE_REGEX, 'Invalid-bool-value'), + (UBSAN_INVALID_BUILTIN_REGEX, 'Invalid-builtin-use'), + (UBSAN_MISALIGNED_ADDRESS_REGEX, 'Misaligned-address'), + (UBSAN_NO_RETURN_VALUE_REGEX, 'No-return-value'), + (UBSAN_NULL_ARGUMENT_REGEX, 'Invalid-null-argument'), + (UBSAN_NULL_POINTER_READ_REGEX, 'Null-dereference READ'), + (UBSAN_NULL_POINTER_REFERENCE_REGEX, 'Null-dereference'), + (UBSAN_NULL_POINTER_WRITE_REGEX, 'Null-dereference WRITE'), + (UBSAN_OBJECT_SIZE_REGEX, 'Object-size'), + (UBSAN_POINTER_OVERFLOW_REGEX, 'Pointer-overflow'), + (UBSAN_RETURNS_NONNULL_ATTRIBUTE_REGEX, 'Invalid-null-return'), + (UBSAN_SHIFT_ERROR_REGEX, 'Undefined-shift'), + (UBSAN_UNREACHABLE_REGEX, 'Unreachable code'), + (UBSAN_UNSIGNED_INTEGER_OVERFLOW_REGEX, 'Unsigned-integer-overflow'), + (UBSAN_VLA_BOUND_REGEX, 'Non-positive-vla-bound-value'), + + # The following types are supersets of other types, and should be placed + # at the end to avoid subsuming crashes from the more specialized types. + (UBSAN_INVALID_ENUM_VALUE_REGEX, 'Invalid-enum-value'), + (UBSAN_INTEGER_OVERFLOW_REGEX, 'Integer-overflow'), +] + +# Additional regexes for cleaning up format. +STRIP_STRUCTURE_REGEXES = [ + re.compile(r'^in (.*)'), # sanitizers have prefix for function if present + re.compile(r'^\((.*)\)$'), # sanitizers wrap module if no function +] + +# Other constants. +LINE_LENGTH_CAP = 80 +MAX_CRASH_STATE_FRAMES = 3 +MAX_CYCLE_LENGTH = 10 +REPEATED_CYCLE_COUNT = 3 + + + + +def unsigned_to_signed(address): + """Convert unsigned address to signed int64 (as defined in the proto).""" + return (address - 2**64) if address >= 2**63 else address + + +def format_address_to_dec(address, base=16): + """Addresses may be formatted as decimal, hex string with 0x or 0X prefix, + or without any prefix. Convert to decimal int.""" + if address is None: + return None + + address = str(address).replace('`', '').strip() + if not address: + return None + + # This is required for Chrome Win and Mac stacks, which mix decimal and hex. + try_bases = [base, 16] if base != 16 else [base] + for base_try in try_bases: + try: + address = int(address, base_try) + return address + except Exception: + continue + + logs.warn('Error formatting address %s to decimal int64 in bases %s.' % + (str(address), str(try_bases))) + return None + + +class StackFrameStructure(object): + """IR for fields a stackframe may contain/expect.""" + + def __init__(self, + address=None, + function_name=None, + function_base=None, + function_offset=None, + filename=None, + fileline=None, + module_name=None, + module_base=None, + module_offset=None): + self._address = address + self._function_name = function_name + self._function_base = function_base + self._function_offset = function_offset + self._filename = filename + self._fileline = fileline + self._module_name = module_name + self._module_base = module_base + self._module_offset = module_offset + + @property + def address(self): + return self._address + + @address.setter + def address(self, address): + self._address = address + + @property + def function_name(self): + return self._function_name + + @function_name.setter + def function_name(self, function_name): + self._function_name = function_name + + @property + def function_base(self): + return self._function_base + + @function_base.setter + def function_base(self, function_base): + self._function_base = function_base + + @property + def function_offset(self): + return self._function_offset + + @function_offset.setter + def function_offset(self, function_offset): + self._function_offset = function_offset + + @property + def filename(self): + return self._filename + + @filename.setter + def filename(self, filename): + self._filename = filename + + @property + def fileline(self): + return self._fileline + + @fileline.setter + def fileline(self, fileline): + self._fileline = fileline + + @property + def module_name(self): + return self._module_name + + @module_name.setter + def module_name(self, module_name): + self._module_name = module_name + + @property + def module_base(self): + return self._module_base + + @module_base.setter + def module_base(self, module_base): + self._module_base = module_base + + @property + def module_offset(self): + return self._module_offset + + @module_offset.setter + def module_offset(self, module_offset): + self._module_offset = module_offset + + +class StackFrame(StackFrameStructure): + """IR for canonicalizing stackframe strings.""" + + def __init__(self, + address=None, + function_name=None, + function_base=None, + function_offset=None, + filename=None, + fileline=None, + module_name=None, + module_base=None, + module_offset=None, + base=16): + super(StackFrame, self).__init__( + address=format_address_to_dec(address), + function_name=function_name, + function_base=format_address_to_dec(function_base), + function_offset=format_address_to_dec(function_offset), + filename=filename, + fileline=fileline, + module_name=module_name, + module_base=format_address_to_dec(module_base), + module_offset=format_address_to_dec(module_offset)) + + # Base for converting addresses set in frame. Most will be in hex. + self._base = base + + def __setattr__(self, field_name, field_value): + """Set attributes, performing conversions as needed for address fields.""" + if field_name == 'base': + self._base = field_value + return + + address_fields = [ + 'address', + 'function_base', + 'function_offset', + 'module_base', + 'module_offset', + ] + if field_name in address_fields: + address = format_address_to_dec(field_value, self._base) + super(StackFrame, self).__setattr__(field_name, address) + return + + super(StackFrame, self).__setattr__(field_name, field_value) + + def __str__(self): + s = [] + for name, member in inspect.getmembers(StackFrame): + if not isinstance(member, property): + continue + s += ['%s: %s' % (name, str(getattr(self, name)))] + return ', '.join(s) + + +class StackFrameSpec(StackFrameStructure): + """Representation paralleling that of StackFrames for pulling out the correct + groups in a *_STACK_FRAME_REGEX match.""" + + def __init__(self, + address=None, + function_name=None, + function_base=None, + function_offset=None, + filename=None, + fileline=None, + module_name=None, + module_base=None, + module_offset=None, + base=16): + """Specify a stackframe format. Each field should be an index into a match. + See comments inline *_STACK_FRAME_REGEX for appropriate indices.""" + address = address if address is not None else [] + function_name = function_name if function_name is not None else [] + function_base = function_base if function_base is not None else [] + function_offset = function_offset if function_offset is not None else [] + filename = filename if filename is not None else [] + fileline = fileline if fileline is not None else [] + module_name = module_name if module_name is not None else [] + module_base = module_base if module_base is not None else [] + module_offset = module_offset if module_offset is not None else [] + super(StackFrameSpec, self).__init__( + address=address, + function_name=function_name, + function_base=function_base, + function_offset=function_offset, + filename=filename, + fileline=fileline, + module_name=module_name, + module_base=module_base, + module_offset=module_offset) + + # Base for converting addresses processed by this spec. Most will be in hex. + self._base = base + + @property + def base(self): + return self._base + + @base.setter + def base(self, base): + self._base = base + + def parse_stack_frame(self, frame_match): + """Given a match and stackframe specification, populate a stackframe with + information from the match.""" + if frame_match is None: + return None + + frame = StackFrame() + + # Set base to use for address translation. + frame.base = self.base + for name, member in inspect.getmembers(StackFrameSpec): + # Pull out only the property fields; we don't care about methods etc. + if not isinstance(member, property): + continue + + # We've already set the base (which we need to do first); skip. + if name == 'base': + continue + + # Populate the stackframe field. Try all provided lookup groups. + indices = getattr(self, name) + if not isinstance(indices, list): + indices = [indices] + setattr(self, name, indices) + for ind in indices: + frame_field = frame_match.group(ind) + if frame_field is not None and frame_field: + setattr(frame, name, frame_field.strip()) + break + + return frame + + +# Stackframe format specifications. +CHROME_STACK_FRAME_SPEC = StackFrameSpec( + address=3, function_name=4) +CHROME_WIN_STACK_FRAME_SPEC = StackFrameSpec( + function_name=1, + function_base=2, + function_offset=3, + filename=5, + fileline=6, + base=10) +CHROME_MAC_STACK_FRAME_SPEC = StackFrameSpec( + address=5, function_name=6, function_offset=7, module_name=2, base=10) +SAN_STACK_FRAME_SPEC = StackFrameSpec( + address=2, + function_name=[7, 5, 23], + function_offset=8, + filename=[12, 16], + fileline=[13, 17], + module_name=[19, 31], + module_offset=[21, 32]) +WINDOWS_CDB_STACK_FRAME_SPEC = StackFrameSpec( + address=1, function_name=4, function_offset=5, module_name=3) + + +LINUX_KERNEL_MODULE_STACK_TRACE = 'Linux Kernel Library Stack Trace:' + +#hid-fuzzer: lib/posix-host.c:401: void panic(void): Assertion `0' failed. +LINUX_KERNEL_LIBRARY_ASSERT_REGEX = re.compile( + r'([^:]+): lib/posix-host\.c:\d+: void panic\(void\): Assertion .*') + +# Linux version 5.4.58+-ab6926695 where 6926695 is the build id. +# Unlike in a normal linux version string, we do not know the build hash. +LINUX_VERSION_REGEX_LKL = re.compile(r'Linux version .+-(ab([0-9a-f]+)\s)') + +# This is the prefix in the repo.prop for the kernel for all +# lkl fuzzers. +LKL_REPO_KERNEL_PREFIX = 'kernel/private/lkl' +LKL_BUILD_TARGET = 'kernel_kasan.lkl_fuzzers' diff --git a/common/src/buttercup/common/clusterfuzz_parser/utils.py b/common/src/buttercup/common/clusterfuzz_parser/utils.py new file mode 100644 index 00000000..0e1163e4 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_parser/utils.py @@ -0,0 +1,36 @@ +# Clusterfuzz commit 46968a275474422db32530a2126dfa30dc7f3d15 + +def search_bytes_in_file(search_bytes, file_handle): + """Helper to search for bytes in a large binary file without memory + issues. + """ + # TODO(aarya): This is too brittle and will fail if we have a very large + # line. + for line in file_handle: + if search_bytes in line: + return True + + return False + + +def strip_from_left(string, prefix): + """Strip a prefix from start from string.""" + if not string.startswith(prefix): + return string + return string[len(prefix):] + + +def strip_from_right(string, suffix): + """Strip a suffix from end of string.""" + if not string.endswith(suffix): + return string + return string[:len(string) - len(suffix)] + + +def sub_string_exists_in(substring_list, string): + """Return true if one of the substring in the list is found in |string|.""" + for substring in substring_list: + if substring in string: + return True + + return False diff --git a/common/src/buttercup/common/clusterfuzz_utils.py b/common/src/buttercup/common/clusterfuzz_utils.py new file mode 100644 index 00000000..0bc73d82 --- /dev/null +++ b/common/src/buttercup/common/clusterfuzz_utils.py @@ -0,0 +1,101 @@ +# Clusterfuzz commit 46968a275474422db32530a2126dfa30dc7f3d15 + +import os +import re +import stat +import tempfile +import logging +from buttercup.common.clusterfuzz_parser import utils +from buttercup.common.clusterfuzz_env import environment + +logs = logging.getLogger(__name__) + +EXTRA_BUILD_DIR = '__extra_build' + +ALLOWED_FUZZ_TARGET_EXTENSIONS = ['', '.exe', '.par'] +FUZZ_TARGET_SEARCH_BYTES = b'LLVMFuzzerTestOneInput' +VALID_TARGET_NAME_REGEX = re.compile(r'^[a-zA-Z0-9@_.-]+$') +BLOCKLISTED_TARGET_NAME_REGEX = re.compile(r'^(jazzer_driver.*)$') +EXTRA_BUILD_DIR = '__extra_build' + + + +def is_fuzz_target_local(file_path, file_handle=None): + """Returns whether |file_path| is a fuzz target binary (local path).""" + # TODO(hzawawy): Handle syzkaller case. + if '@' in file_path: + # GFT targets often have periods in the name that get misinterpreted as an + # extension. + filename = os.path.basename(file_path) + file_extension = '' + else: + filename, file_extension = os.path.splitext(os.path.basename(file_path)) + + if not VALID_TARGET_NAME_REGEX.match(filename): + # Check fuzz target has a valid name (without any special chars). + return False + + if BLOCKLISTED_TARGET_NAME_REGEX.match(filename): + # Check fuzz target an explicitly disallowed name (e.g. binaries used for + # jazzer-based targets). + return False + + if file_extension not in ALLOWED_FUZZ_TARGET_EXTENSIONS: + # Ignore files with disallowed extensions (to prevent opening e.g. .zips). + return False + + if not file_handle and not os.path.exists(file_path): + # Ignore non-existent files for cases when we don't have a file handle. + return False + + if filename.endswith('_fuzzer'): + return True + + # TODO(aarya): Remove this optimization if it does not show up significant + # savings in profiling results. + fuzz_target_name_regex = environment.get_value('FUZZER_NAME_REGEX') + if fuzz_target_name_regex: + return bool(re.match(fuzz_target_name_regex, filename)) + + if os.path.exists(file_path) and not stat.S_ISREG(os.stat(file_path).st_mode): + # Don't read special files (eg: /dev/urandom). + logs.warn('Tried to read from non-regular file: %s.' % file_path) + return False + + # Use already provided file handle or open the file. + local_file_handle = file_handle or open(file_path, 'rb') + + # TODO(metzman): Bound this call so we don't read forever if something went + # wrong. + result = utils.search_bytes_in_file(FUZZ_TARGET_SEARCH_BYTES, + local_file_handle) + + if not file_handle: + # If this local file handle is owned by our function, close it now. + # Otherwise, it is caller's responsibility. + local_file_handle.close() + + return result + + + +def walk(directory, **kwargs): + """Wrapper around walk to resolve compatibility issues.""" + return os.walk(directory, **kwargs) + + +def get_fuzz_targets(path): + """Get list of fuzz targets paths (local).""" + fuzz_target_paths = [] + + for root, _, files in walk(path): + for filename in files: + if os.path.basename(root) == EXTRA_BUILD_DIR: + # Ignore extra binaries. + continue + + file_path = os.path.join(root, filename) + if is_fuzz_target_local(file_path): + fuzz_target_paths.append(file_path) + + return fuzz_target_paths diff --git a/common/src/buttercup/common/stack_parsing.py b/common/src/buttercup/common/stack_parsing.py index 68c21f42..625ea093 100644 --- a/common/src/buttercup/common/stack_parsing.py +++ b/common/src/buttercup/common/stack_parsing.py @@ -1,4 +1,4 @@ -from clusterfuzz.stacktraces import StackParser +from buttercup.common.clusterfuzz_parser import StackParser import logging from buttercup.common.sets import RedisSet from redis import Redis diff --git a/common/src/buttercup/common/util_cli.py b/common/src/buttercup/common/util_cli.py index bbcf6935..d2deca45 100644 --- a/common/src/buttercup/common/util_cli.py +++ b/common/src/buttercup/common/util_cli.py @@ -145,7 +145,7 @@ def main(): logger.info("Done") elif isinstance(command, ListSettings): print("Available queues:") - print("\n".join([f"- {name.value}" for name in get_queue_names()])) + print("\n".join([f"- {name}" for name in get_queue_names()])) if __name__ == "__main__": diff --git a/common/tests/data/fake_proj1_layout/blah b/common/tests/data/fake_proj1_layout/blah new file mode 100644 index 00000000..e69de29b diff --git a/common/tests/data/fake_proj1_layout/tst.txt b/common/tests/data/fake_proj1_layout/tst.txt new file mode 100644 index 00000000..e69de29b diff --git a/common/tests/data/stacktrace_corpus/c_stacktrace.txt b/common/tests/data/stacktrace_corpus/c_stacktrace.txt new file mode 100644 index 00000000..e137149a --- /dev/null +++ b/common/tests/data/stacktrace_corpus/c_stacktrace.txt @@ -0,0 +1,3886 @@ +/tmp/tmph1ht1j27$ git clone https://github.com/google/oss-fuzz.git /tmp/tmph1ht1j27/oss-fuzz +Cloning into '/tmp/tmph1ht1j27/oss-fuzz'... +/tmp/tmph1ht1j27/oss-fuzz$ git checkout master +Already on 'master' +Your branch is up to date with 'origin/master'. +/tmp/tmph1ht1j27$ git clone https://github.com/SELinuxProject/selinux selinux +Cloning into 'selinux'... +/tmp/tmph1ht1j27/selinux$ git checkout 1048f8d329a0e34a2529b3376fb085c5e6b3db0d +Note: switching to '1048f8d329a0e34a2529b3376fb085c5e6b3db0d'. + +You are in 'detached HEAD' state. You can look around, make experimental +changes and commit them, and you can discard any commits you make in this +state without impacting any branches by switching back to a branch. + +If you want to create a new branch to retain commits you create, you may +do so (now or later) by using -c with the switch command. Example: + + git switch -c + +Or undo this operation with: + + git switch - + +Turn off this advice by setting config variable advice.detachedHead to false + +HEAD is now at 1048f8d3 libsepol/cil: unlink blockinherit->block link when destroying a block +/tmp/tmph1ht1j27/selinux$ git log -1 --format=%ad --date=iso 1048f8d329a0e34a2529b3376fb085c5e6b3db0d +2021-02-01 23:17:58 +0100 +/tmp/tmph1ht1j27/oss-fuzz$ git log --format=%H -- projects/selinux +7e664533834b558a859b0f8eb1f2c2caf676c12a +d34472a79460a1e9dd63d503822cdab8a1061f8c +c36bc0272c85c37404fa29cb6b1deeca9ec5bf36 +7ea0f5f91d87a68422142091345e1fa06c1e4ada +20d69570fe06f137f874d904825b86ef147b73a9 +ef2f42b3b10af381d3d55cc901fde0729e54573b +897bce8614a62611ad05c6aef4f12b07ae75166b +cb2e58cd2c7a124c0a7930cf265fa864d68b2765 +1d5a2cd84eb828e1c3303c4053e5590f382516a6 +45be5bd6f6bbaf6e23dbfeb062b318f5f6458c22 +3c4c0fe6ddf05fef005324a98f03323168c3cb8b +/tmp/tmph1ht1j27/oss-fuzz$ git log -1 --format=%H --before 2021-02-01 23:17:58 +0100 -- projects/selinux +897bce8614a62611ad05c6aef4f12b07ae75166b +/home/bradswain$ wget https://oss-fuzz.com/download?testcase_id=5008737565802496 -O testcases/selinux/OSV-2021-270 +--2025-01-24 09:40:02-- https://oss-fuzz.com/download?testcase_id=5008737565802496 +Resolving oss-fuzz.com (oss-fuzz.com)... 216.239.32.21, 216.239.34.21, 216.239.36.21, ... +Connecting to oss-fuzz.com (oss-fuzz.com)|216.239.32.21|:443... connected. +HTTP request sent, awaiting response... 302 Found +Location: https://storage.googleapis.com/clusterfuzz-external-blobs/414fa55c-c3c8-4e4a-8da3-0e39626aa02e?GoogleAccessId=clusterfuzz-external%40appspot.gserviceaccount.com&Expires=1737713402&Signature=IoKbfrvuKc0ZEl0GvKupT9W8W521QmbqVYeZRnrFkd57k%2FGe9qa51fKYPkpkESWebsGe%2BU%2BMwKnJDj00%2Fx83T5Omyce3plLu3ak6GmSlgqIejByt8e%2Ffp5jPVlhdGJW7DjMlHTggZR3PzdkUuH4rOTBctzNF4%2FwvwtzH1%2B8lmzEb4iPwdUpG0Vk9%2F%2FmV3xGoF%2B5f350sR6RntY%2FaV1zMwuJ28YYoOIDUt2b6A8RqWGSVIIjJDb0sVT2oJD6ZPofw%2FbqD%2FZnm6NxF1yhnFAhle4rMMXY6DAyPXRj3jiXHXDAQHNh3OVyrRZ53fM0ecRcSBaljgAHmxirjfmkY%2BSVaWA%3D%3D&response-content-disposition=attachment%3B+filename%3Dclusterfuzz-testcase-minimized-secilc-fuzzer-5008737565802496 [following] +--2025-01-24 09:40:02-- https://storage.googleapis.com/clusterfuzz-external-blobs/414fa55c-c3c8-4e4a-8da3-0e39626aa02e?GoogleAccessId=clusterfuzz-external%40appspot.gserviceaccount.com&Expires=1737713402&Signature=IoKbfrvuKc0ZEl0GvKupT9W8W521QmbqVYeZRnrFkd57k%2FGe9qa51fKYPkpkESWebsGe%2BU%2BMwKnJDj00%2Fx83T5Omyce3plLu3ak6GmSlgqIejByt8e%2Ffp5jPVlhdGJW7DjMlHTggZR3PzdkUuH4rOTBctzNF4%2FwvwtzH1%2B8lmzEb4iPwdUpG0Vk9%2F%2FmV3xGoF%2B5f350sR6RntY%2FaV1zMwuJ28YYoOIDUt2b6A8RqWGSVIIjJDb0sVT2oJD6ZPofw%2FbqD%2FZnm6NxF1yhnFAhle4rMMXY6DAyPXRj3jiXHXDAQHNh3OVyrRZ53fM0ecRcSBaljgAHmxirjfmkY%2BSVaWA%3D%3D&response-content-disposition=attachment%3B+filename%3Dclusterfuzz-testcase-minimized-secilc-fuzzer-5008737565802496 +Resolving storage.googleapis.com (storage.googleapis.com)... 209.85.200.207, 142.251.183.207, 64.233.179.207, ... +Connecting to storage.googleapis.com (storage.googleapis.com)|209.85.200.207|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 25 [application/octet-stream] +Saving to: ‘testcases/selinux/OSV-2021-270’ + + 0K 100% 11.5M=0s + +2025-01-24 09:40:03 (11.5 MB/s) - ‘testcases/selinux/OSV-2021-270’ saved [25/25] + +/tmp/tmph1ht1j27/oss-fuzz$ git checkout 897bce8614a62611ad05c6aef4f12b07ae75166b +Note: switching to '897bce8614a62611ad05c6aef4f12b07ae75166b'. + +You are in 'detached HEAD' state. You can look around, make experimental +changes and commit them, and you can discard any commits you make in this +state without impacting any branches by switching back to a branch. + +If you want to create a new branch to retain commits you create, you may +do so (now or later) by using -c with the switch command. Example: + + git switch -c + +Or undo this operation with: + + git switch - + +Turn off this advice by setting config variable advice.detachedHead to false + +HEAD is now at 897bce861 [selinux] add James Carter's email (#4934) +/tmp/tmph1ht1j27/oss-fuzz$ /usr/bin/python3 infra/helper.py build_image --no-pull selinux +/tmp/tmph1ht1j27/oss-fuzz/infra/helper.py:27: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 + import pipes +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.04kB done +#1 WARN: WorkdirRelativePath: Relative workdir "selinux" can have unexpected results if the base image changes (line 32) +#1 DONE 0.0s + +#2 [internal] load metadata for gcr.io/oss-fuzz-base/base-builder:latest +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [1/5] FROM gcr.io/oss-fuzz-base/base-builder:latest@sha256:35a7e82a227062d56e171abbfd7d5434e01fb0e57a9e4f5e4c881bc319cbe9be +#4 CACHED + +#5 [internal] load build context +#5 transferring context: 3.50kB done +#5 DONE 0.0s + +#6 [2/5] RUN apt-get update && apt-get install -y bison flex gawk gettext make libaudit-dev libbz2-dev libcap-dev libcap-ng-dev libglib2.0-dev libpcre3-dev xmlto +#6 0.338 Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] +#6 0.378 Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease +#6 0.397 Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] +#6 0.524 Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] +#6 0.712 Get:5 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [4663 kB] +#6 0.907 Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [1321 kB] +#6 1.183 Fetched 6368 kB in 1s (6990 kB/s) +#6 1.183 Reading package lists... +#6 2.944 Reading package lists... +#6 4.383 Building dependency tree... +#6 4.645 Reading state information... +#6 4.879 make is already the newest version (4.2.1-1.2). +#6 4.879 make set to manually installed. +#6 4.879 The following additional packages will be installed: +#6 4.879 bzip2-doc dblatex dblatex-doc dbus distro-info-data docbook-xml docbook-xsl +#6 4.880 dvisvgm file fontconfig-config fonts-dejavu-core fonts-droid-fallback +#6 4.880 fonts-gfs-baskerville fonts-gfs-porson fonts-lato fonts-lmodern +#6 4.880 fonts-noto-mono fonts-texgyre fonts-urw-base35 gettext-base ghostscript +#6 4.880 iso-codes javascript-common libalgorithm-c3-perl libapache-pom-java +#6 4.880 libapparmor1 libauthen-sasl-perl libavahi-client3 libavahi-common-data +#6 4.880 libavahi-common3 libb-hooks-endofscope-perl libb-hooks-op-check-perl +#6 4.880 libblkid-dev libcairo2 libcap2 libclass-c3-perl libclass-c3-xs-perl +#6 4.880 libclass-data-inheritable-perl libclass-method-modifiers-perl +#6 4.880 libclass-xsaccessor-perl libcommons-logging-java libcommons-parent-java +#6 4.880 libcroco3 libcups2 libdata-dump-perl libdata-optlist-perl libdatrie1 +#6 4.880 libdbus-1-3 libdevel-callchecker-perl libdevel-caller-perl +#6 4.880 libdevel-globaldestruction-perl libdevel-lexalias-perl +#6 4.880 libdevel-stacktrace-perl libdist-checkconflicts-perl libdrm-amdgpu1 +#6 4.880 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 +#6 4.880 libdynaloader-functions-perl libelf1 libemail-date-format-perl +#6 4.880 libencode-locale-perl libeval-closure-perl libexception-class-perl +#6 4.880 libffi-dev libfile-basedir-perl libfile-desktopentry-perl +#6 4.880 libfile-homedir-perl libfile-listing-perl libfile-mimeinfo-perl +#6 4.880 libfile-which-perl libfl-dev libfl2 libfont-afm-perl libfontbox-java +#6 4.880 libfontconfig1 libfontenc1 libfreetype6 libgl1 libgl1-mesa-dri libglapi-mesa +#6 4.880 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev-bin libglvnd0 +#6 4.880 libglx-mesa0 libglx0 libgraphite2-3 libgs9 libgs9-common libharfbuzz-icu0 +#6 4.880 libharfbuzz0b libhtml-form-perl libhtml-format-perl libhtml-parser-perl +#6 4.880 libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl +#6 4.880 libhttp-daemon-perl libhttp-date-perl libhttp-message-perl +#6 4.880 libhttp-negotiate-perl libice6 libicu66 libidn11 libijs-0.35 libio-html-perl +#6 4.880 libio-socket-ssl-perl libio-stringy-perl libipc-shareable-perl +#6 4.880 libipc-system-simple-perl libjbig0 libjbig2dec0 libjpeg-turbo8 libjpeg8 +#6 4.880 libjs-jquery libkpathsea6 liblcms2-2 libllvm12 liblog-dispatch-perl +#6 4.880 liblog-log4perl-perl liblwp-mediatypes-perl liblwp-protocol-https-perl +#6 4.880 libmagic-mgc libmagic1 libmail-sendmail-perl libmailtools-perl +#6 4.880 libmime-charset-perl libmime-lite-perl libmime-types-perl +#6 4.880 libmodule-implementation-perl libmodule-runtime-perl libmount-dev libmpdec2 +#6 4.880 libmro-compat-perl libnamespace-autoclean-perl libnamespace-clean-perl +#6 4.880 libnet-dbus-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl +#6 4.880 libopenjp2-7 libpackage-stash-perl libpackage-stash-xs-perl +#6 4.880 libpadwalker-perl libpaper-utils libpaper1 libparams-classify-perl +#6 4.880 libparams-util-perl libparams-validationcompiler-perl libpciaccess0 +#6 4.880 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix2 +#6 4.880 libpcre32-3 libpcrecpp0v5 libpdfbox-java libpixman-1-0 libpng16-16 +#6 4.880 libptexenc1 libpython3-stdlib libpython3.8-minimal libpython3.8-stdlib +#6 4.880 libreadonly-perl libref-util-perl libref-util-xs-perl librole-tiny-perl +#6 4.880 libruby2.7 libselinux1-dev libsensors-config libsensors5 libsepol1-dev +#6 4.880 libsigsegv2 libsm6 libsombok3 libspecio-perl libsub-exporter-perl +#6 4.880 libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl +#6 4.880 libsub-name-perl libsub-quote-perl libsynctex2 libsys-hostname-long-perl +#6 4.880 libtcl8.6 libteckit0 libtexlua53 libtexluajit2 libtext-iconv-perl +#6 4.880 libthai-data libthai0 libtie-ixhash-perl libtiff5 libtimedate-perl libtk8.6 +#6 4.880 libtry-tiny-perl libunicode-linebreak-perl liburi-perl libutempter0 +#6 4.880 libvariable-magic-perl libvulkan1 libwayland-client0 libwebp6 libwoff1 +#6 4.880 libwww-perl libwww-robotrules-perl libx11-protocol-perl libx11-xcb1 libxaw7 +#6 4.880 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 +#6 4.880 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 +#6 4.880 libxcomposite1 libxcursor1 libxfixes3 libxft2 libxi6 libxinerama1 +#6 4.880 libxkbfile1 libxml-parser-perl libxml-twig-perl libxml-xpathengine-perl +#6 4.880 libxml2 libxml2-utils libxmu6 libxpm4 libxrandr2 libxrender1 libxshmfence1 +#6 4.880 libxslt1.1 libxss1 libxstring-perl libxt6 libxtst6 libxv1 libxxf86dga1 +#6 4.880 libxxf86vm1 libyaml-0-2 libyaml-tiny-perl libzzip-0-13 lmodern lsb-release +#6 4.880 m4 mesa-vulkan-drivers mime-support perl-openssl-defaults pkg-config +#6 4.881 poppler-data preview-latex-style python-apt-common python3 python3-apt +#6 4.881 python3-distutils python3-lib2to3 python3-minimal python3.8 +#6 4.881 python3.8-minimal rake ruby ruby-minitest ruby-net-telnet ruby-power-assert +#6 4.881 ruby-test-unit ruby-xmlrpc ruby2.7 rubygems-integration sgml-base sgml-data +#6 4.881 shared-mime-info t1utils tcl tcl8.6 tex-common tex-gyre texlive texlive-base +#6 4.881 texlive-bibtex-extra texlive-binaries texlive-extra-utils +#6 4.881 texlive-fonts-recommended texlive-lang-greek texlive-latex-base +#6 4.881 texlive-latex-extra texlive-latex-recommended texlive-pictures +#6 4.881 texlive-plain-generic texlive-science tipa tk tk8.6 ucf uuid-dev x11-common +#6 4.881 x11-utils x11-xserver-utils xbitmaps xdg-user-dirs xdg-utils +#6 4.881 xfonts-encodings xfonts-utils xml-core xsltproc xterm zlib1g-dev +#6 4.882 Suggested packages: +#6 4.882 bison-doc docbook graphicsmagick-imagemagick-compat | imagemagick inkscape +#6 4.882 latex-cjk-all opensp pdf-viewer texlive-lang-all texlive-lang-cyrillic +#6 4.882 texlive-xetex transfig xindy default-dbus-session-bus | dbus-session-bus +#6 4.882 docbook-dsssl docbook-defguide dbtoepub docbook-xsl-doc-html +#6 4.882 | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc +#6 4.882 docbook-xsl-saxon fop libsaxon-java libxalan2-java libxslthl-java xalan +#6 4.882 flex-doc fonts-noto fonts-freefont-otf | fonts-freefont-ttf gawk-doc +#6 4.882 gettext-doc autopoint libasprintf-dev libgettextpo-dev ghostscript-x +#6 4.882 isoquery apache2 | lighttpd | httpd libdigest-hmac-perl libgssapi-perl +#6 4.882 libavalon-framework-java libcommons-logging-java-doc +#6 4.882 libexcalibur-logkit-java liblog4j1.2-java cups-common libgirepository1.0-dev +#6 4.882 libglib2.0-doc libgdk-pixbuf2.0-bin | libgdk-pixbuf2.0-dev liblcms2-utils +#6 4.882 libdbd-csv-perl liblog-dispatch-filerotate-perl librrds-perl libxml-dom-perl +#6 4.882 libcrypt-ssleay-perl libencode-hanextra-perl libpod2-base-perl default-mta +#6 4.882 | mail-transport-agent libmojolicious-perl libscalar-number-perl pciutils +#6 4.882 lm-sensors libtest-fatal-perl libauthen-ntlm-perl libunicode-map8-perl +#6 4.882 libunicode-string-perl xml-twig-tools m4-doc poppler-utils +#6 4.882 fonts-japanese-mincho | fonts-ipafont-mincho fonts-japanese-gothic +#6 4.882 | fonts-ipafont-gothic fonts-arphic-ukai fonts-arphic-uming fonts-nanum +#6 4.882 python3-doc python3-tk python3-venv python3-apt-dbg python-apt-doc +#6 4.882 python3.8-venv python3.8-doc binfmt-support ri ruby-dev bundler +#6 4.882 sgml-base-doc perlsgml w3-recs tcl-tclreadline debhelper perl-tk xpdf +#6 4.883 | pdf-viewer xzdec chktex dvidvi dvipng fragmaster lacheck latexdiff latexmk +#6 4.883 purifyeps texlive-fonts-recommended-doc texlive-latex-base-doc +#6 4.883 python3-pygments icc-profiles libspreadsheet-parseexcel-perl +#6 4.883 texlive-latex-extra-doc texlive-latex-recommended-doc texlive-luatex +#6 4.883 texlive-pstricks dot2tex prerex ruby-tcltk | libtcltk-ruby +#6 4.883 texlive-pictures-doc vprerex default-jre-headless texlive-science-doc +#6 4.883 mesa-utils nickle cairo-5c xorg-docs-core w3m | lynx-cur | links +#6 4.883 texlive-htmlxml xfonts-cyrillic +#6 5.701 The following NEW packages will be installed: +#6 5.702 bison bzip2-doc dblatex dblatex-doc dbus distro-info-data docbook-xml +#6 5.702 docbook-xsl dvisvgm file flex fontconfig-config fonts-dejavu-core +#6 5.702 fonts-droid-fallback fonts-gfs-baskerville fonts-gfs-porson fonts-lato +#6 5.702 fonts-lmodern fonts-noto-mono fonts-texgyre fonts-urw-base35 gawk gettext +#6 5.702 gettext-base ghostscript iso-codes javascript-common libalgorithm-c3-perl +#6 5.702 libapache-pom-java libapparmor1 libaudit-dev libauthen-sasl-perl +#6 5.702 libavahi-client3 libavahi-common-data libavahi-common3 +#6 5.702 libb-hooks-endofscope-perl libb-hooks-op-check-perl libblkid-dev libbz2-dev +#6 5.702 libcairo2 libcap-dev libcap-ng-dev libcap2 libclass-c3-perl +#6 5.702 libclass-c3-xs-perl libclass-data-inheritable-perl +#6 5.702 libclass-method-modifiers-perl libclass-xsaccessor-perl +#6 5.702 libcommons-logging-java libcommons-parent-java libcroco3 libcups2 +#6 5.702 libdata-dump-perl libdata-optlist-perl libdatrie1 libdbus-1-3 +#6 5.702 libdevel-callchecker-perl libdevel-caller-perl +#6 5.702 libdevel-globaldestruction-perl libdevel-lexalias-perl +#6 5.702 libdevel-stacktrace-perl libdist-checkconflicts-perl libdrm-amdgpu1 +#6 5.702 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 +#6 5.702 libdynaloader-functions-perl libelf1 libemail-date-format-perl +#6 5.702 libencode-locale-perl libeval-closure-perl libexception-class-perl +#6 5.702 libffi-dev libfile-basedir-perl libfile-desktopentry-perl +#6 5.702 libfile-homedir-perl libfile-listing-perl libfile-mimeinfo-perl +#6 5.702 libfile-which-perl libfl-dev libfl2 libfont-afm-perl libfontbox-java +#6 5.703 libfontconfig1 libfontenc1 libfreetype6 libgl1 libgl1-mesa-dri libglapi-mesa +#6 5.703 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev +#6 5.703 libglib2.0-dev-bin libglvnd0 libglx-mesa0 libglx0 libgraphite2-3 libgs9 +#6 5.703 libgs9-common libharfbuzz-icu0 libharfbuzz0b libhtml-form-perl +#6 5.703 libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl +#6 5.703 libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl +#6 5.703 libhttp-message-perl libhttp-negotiate-perl libice6 libicu66 libidn11 +#6 5.703 libijs-0.35 libio-html-perl libio-socket-ssl-perl libio-stringy-perl +#6 5.703 libipc-shareable-perl libipc-system-simple-perl libjbig0 libjbig2dec0 +#6 5.703 libjpeg-turbo8 libjpeg8 libjs-jquery libkpathsea6 liblcms2-2 libllvm12 +#6 5.703 liblog-dispatch-perl liblog-log4perl-perl liblwp-mediatypes-perl +#6 5.703 liblwp-protocol-https-perl libmagic-mgc libmagic1 libmail-sendmail-perl +#6 5.703 libmailtools-perl libmime-charset-perl libmime-lite-perl libmime-types-perl +#6 5.703 libmodule-implementation-perl libmodule-runtime-perl libmount-dev libmpdec2 +#6 5.703 libmro-compat-perl libnamespace-autoclean-perl libnamespace-clean-perl +#6 5.703 libnet-dbus-perl libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl +#6 5.703 libopenjp2-7 libpackage-stash-perl libpackage-stash-xs-perl +#6 5.703 libpadwalker-perl libpaper-utils libpaper1 libparams-classify-perl +#6 5.703 libparams-util-perl libparams-validationcompiler-perl libpciaccess0 +#6 5.703 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix2 +#6 5.703 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpdfbox-java libpixman-1-0 +#6 5.703 libpng16-16 libptexenc1 libpython3-stdlib libpython3.8-minimal +#6 5.703 libpython3.8-stdlib libreadonly-perl libref-util-perl libref-util-xs-perl +#6 5.703 librole-tiny-perl libruby2.7 libselinux1-dev libsensors-config libsensors5 +#6 5.703 libsepol1-dev libsigsegv2 libsm6 libsombok3 libspecio-perl +#6 5.703 libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl +#6 5.703 libsub-install-perl libsub-name-perl libsub-quote-perl libsynctex2 +#6 5.703 libsys-hostname-long-perl libtcl8.6 libteckit0 libtexlua53 libtexluajit2 +#6 5.703 libtext-iconv-perl libthai-data libthai0 libtie-ixhash-perl libtiff5 +#6 5.703 libtimedate-perl libtk8.6 libtry-tiny-perl libunicode-linebreak-perl +#6 5.704 liburi-perl libutempter0 libvariable-magic-perl libvulkan1 +#6 5.704 libwayland-client0 libwebp6 libwoff1 libwww-perl libwww-robotrules-perl +#6 5.704 libx11-protocol-perl libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 +#6 5.704 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 +#6 5.704 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 +#6 5.704 libxfixes3 libxft2 libxi6 libxinerama1 libxkbfile1 libxml-parser-perl +#6 5.704 libxml-twig-perl libxml-xpathengine-perl libxml2 libxml2-utils libxmu6 +#6 5.704 libxpm4 libxrandr2 libxrender1 libxshmfence1 libxslt1.1 libxss1 +#6 5.704 libxstring-perl libxt6 libxtst6 libxv1 libxxf86dga1 libxxf86vm1 libyaml-0-2 +#6 5.704 libyaml-tiny-perl libzzip-0-13 lmodern lsb-release m4 mesa-vulkan-drivers +#6 5.705 mime-support perl-openssl-defaults pkg-config poppler-data +#6 5.705 preview-latex-style python-apt-common python3 python3-apt python3-distutils +#6 5.705 python3-lib2to3 python3-minimal python3.8 python3.8-minimal rake ruby +#6 5.705 ruby-minitest ruby-net-telnet ruby-power-assert ruby-test-unit ruby-xmlrpc +#6 5.705 ruby2.7 rubygems-integration sgml-base sgml-data shared-mime-info t1utils +#6 5.705 tcl tcl8.6 tex-common tex-gyre texlive texlive-base texlive-bibtex-extra +#6 5.705 texlive-binaries texlive-extra-utils texlive-fonts-recommended +#6 5.705 texlive-lang-greek texlive-latex-base texlive-latex-extra +#6 5.705 texlive-latex-recommended texlive-pictures texlive-plain-generic +#6 5.706 texlive-science tipa tk tk8.6 ucf uuid-dev x11-common x11-utils +#6 5.706 x11-xserver-utils xbitmaps xdg-user-dirs xdg-utils xfonts-encodings +#6 5.706 xfonts-utils xml-core xmlto xsltproc xterm zlib1g-dev +#6 5.805 0 upgraded, 327 newly installed, 0 to remove and 0 not upgraded. +#6 5.805 Need to get 422 MB of archives. +#6 5.805 After this operation, 1503 MB of additional disk space will be used. +#6 5.805 Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-minimal amd64 3.8.10-0ubuntu1~20.04.14 [720 kB] +#6 6.023 Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8-minimal amd64 3.8.10-0ubuntu1~20.04.14 [1899 kB] +#6 6.087 Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-minimal amd64 3.8.2-0ubuntu2 [23.6 kB] +#6 6.090 Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 mime-support all 3.64ubuntu1 [30.6 kB] +#6 6.091 Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libmpdec2 amd64 2.4.2-3 [81.1 kB] +#6 6.092 Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpython3.8-stdlib amd64 3.8.10-0ubuntu1~20.04.14 [1675 kB] +#6 6.113 Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3.8 amd64 3.8.10-0ubuntu1~20.04.14 [387 kB] +#6 6.118 Get:8 http://archive.ubuntu.com/ubuntu focal/main amd64 libpython3-stdlib amd64 3.8.2-0ubuntu2 [7068 B] +#6 6.119 Get:9 http://archive.ubuntu.com/ubuntu focal/main amd64 python3 amd64 3.8.2-0ubuntu2 [47.6 kB] +#6 6.120 Get:10 http://archive.ubuntu.com/ubuntu focal/main amd64 libsigsegv2 amd64 2.12-2 [13.9 kB] +#6 6.120 Get:11 http://archive.ubuntu.com/ubuntu focal/main amd64 m4 amd64 1.4.18-4 [199 kB] +#6 6.122 Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 flex amd64 2.6.4-6.2 [317 kB] +#6 6.152 Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 fonts-droid-fallback all 1:6.0.1r16-1.1 [1805 kB] +#6 6.166 Get:14 http://archive.ubuntu.com/ubuntu focal/main amd64 fonts-lato all 2.0-2 [2698 kB] +#6 6.188 Get:15 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 gawk amd64 1:5.0.1+dfsg-1ubuntu0.1 [415 kB] +#6 6.193 Get:16 http://archive.ubuntu.com/ubuntu focal/main amd64 poppler-data all 0.4.9-2 [1475 kB] +#6 6.204 Get:17 http://archive.ubuntu.com/ubuntu focal/main amd64 sgml-base all 1.29.1 [12.4 kB] +#6 6.205 Get:18 http://archive.ubuntu.com/ubuntu focal/main amd64 ucf all 3.0038+nmu1 [51.6 kB] +#6 6.205 Get:19 http://archive.ubuntu.com/ubuntu focal/universe amd64 tex-common all 6.13 [32.7 kB] +#6 6.206 Get:20 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libapparmor1 amd64 2.13.3-7ubuntu5.4 [36.0 kB] +#6 6.206 Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-3 amd64 1.12.16-2ubuntu2.3 [179 kB] +#6 6.208 Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus amd64 1.12.16-2ubuntu2.3 [151 kB] +#6 6.214 Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 distro-info-data all 0.43ubuntu1.17 [5040 B] +#6 6.245 Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 libmagic-mgc amd64 1:5.38-4 [218 kB] +#6 6.247 Get:25 http://archive.ubuntu.com/ubuntu focal/main amd64 libmagic1 amd64 1:5.38-4 [75.9 kB] +#6 6.249 Get:26 http://archive.ubuntu.com/ubuntu focal/main amd64 file amd64 1:5.38-4 [23.3 kB] +#6 6.250 Get:27 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcap2 amd64 1:2.32-1ubuntu0.1 [15.8 kB] +#6 6.251 Get:28 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libelf1 amd64 0.176-1.1ubuntu0.1 [44.2 kB] +#6 6.252 Get:29 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-0 amd64 2.64.6-1~ubuntu20.04.8 [1289 kB] +#6 6.265 Get:30 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-data all 2.64.6-1~ubuntu20.04.8 [5848 B] +#6 6.265 Get:31 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libicu66 amd64 66.1-2ubuntu2.1 [8515 kB] +#6 6.351 Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 libtext-iconv-perl amd64 1.7-7 [13.8 kB] +#6 6.352 Get:33 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libxml2 amd64 2.9.10+dfsg-5ubuntu0.20.04.7 [640 kB] +#6 6.357 Get:34 http://archive.ubuntu.com/ubuntu focal/main amd64 libyaml-0-2 amd64 0.2.2-1 [48.9 kB] +#6 6.358 Get:35 http://archive.ubuntu.com/ubuntu focal/main amd64 lsb-release all 11.1.0ubuntu2 [10.6 kB] +#6 6.359 Get:36 http://archive.ubuntu.com/ubuntu focal/main amd64 shared-mime-info amd64 1.15-1 [430 kB] +#6 6.362 Get:37 http://archive.ubuntu.com/ubuntu focal/main amd64 xdg-user-dirs amd64 0.17-2ubuntu1 [48.3 kB] +#6 6.362 Get:38 http://archive.ubuntu.com/ubuntu focal/main amd64 gettext-base amd64 0.19.8.1-10build1 [50.2 kB] +#6 6.363 Get:39 http://archive.ubuntu.com/ubuntu focal/main amd64 iso-codes all 4.4-1 [2695 kB] +#6 6.385 Get:40 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm-common all 2.4.107-8ubuntu1~20.04.2 [5396 B] +#6 6.385 Get:41 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm2 amd64 2.4.107-8ubuntu1~20.04.2 [34.1 kB] +#6 6.413 Get:42 http://archive.ubuntu.com/ubuntu focal/main amd64 libpng16-16 amd64 1.6.37-2 [179 kB] +#6 6.416 Get:43 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python-apt-common all 2.0.1ubuntu0.20.04.1 [16.5 kB] +#6 6.417 Get:44 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-apt amd64 2.0.1ubuntu0.20.04.1 [154 kB] +#6 6.418 Get:45 http://archive.ubuntu.com/ubuntu focal/main amd64 bison amd64 2:3.5.1+dfsg-1 [657 kB] +#6 6.424 Get:46 http://archive.ubuntu.com/ubuntu focal/main amd64 bzip2-doc all 1.0.8-2 [501 kB] +#6 6.428 Get:47 http://archive.ubuntu.com/ubuntu focal/main amd64 xml-core all 0.18+nmu1 [21.6 kB] +#6 6.429 Get:48 http://archive.ubuntu.com/ubuntu focal/main amd64 sgml-data all 2.0.11 [171 kB] +#6 6.444 Get:49 http://archive.ubuntu.com/ubuntu focal/main amd64 docbook-xml all 4.5-9 [71.2 kB] +#6 6.445 Get:50 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper1 amd64 1.1.28 [13.0 kB] +#6 6.445 Get:51 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper-utils amd64 1.1.28 [8400 B] +#6 6.475 Get:52 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libkpathsea6 amd64 2019.20190605.51237-3ubuntu0.2 [57.2 kB] +#6 6.476 Get:53 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libptexenc1 amd64 2019.20190605.51237-3ubuntu0.2 [35.5 kB] +#6 6.477 Get:54 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libsynctex2 amd64 2019.20190605.51237-3ubuntu0.2 [55.2 kB] +#6 6.478 Get:55 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libtexlua53 amd64 2019.20190605.51237-3ubuntu0.2 [105 kB] +#6 6.480 Get:56 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libtexluajit2 amd64 2019.20190605.51237-3ubuntu0.2 [235 kB] +#6 6.482 Get:57 http://archive.ubuntu.com/ubuntu focal/main amd64 t1utils amd64 1.41-3 [56.1 kB] +#6 6.483 Get:58 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libfreetype6 amd64 2.10.1-2ubuntu0.3 [341 kB] +#6 6.506 Get:59 http://archive.ubuntu.com/ubuntu focal/main amd64 fonts-dejavu-core all 2.37-1 [1041 kB] +#6 6.514 Get:60 http://archive.ubuntu.com/ubuntu focal/main amd64 fontconfig-config all 2.13.1-2ubuntu3 [28.8 kB] +#6 6.515 Get:61 http://archive.ubuntu.com/ubuntu focal/main amd64 libfontconfig1 amd64 2.13.1-2ubuntu3 [114 kB] +#6 6.537 Get:62 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpixman-1-0 amd64 0.38.4-0ubuntu2.1 [227 kB] +#6 6.540 Get:63 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-render0 amd64 1.14-2 [14.8 kB] +#6 6.544 Get:64 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-shm0 amd64 1.14-2 [5584 B] +#6 6.544 Get:65 http://archive.ubuntu.com/ubuntu focal/main amd64 libxrender1 amd64 1:0.9.10-1 [18.7 kB] +#6 6.544 Get:66 http://archive.ubuntu.com/ubuntu focal/main amd64 libcairo2 amd64 1.16.0-4ubuntu1 [583 kB] +#6 6.550 Get:67 http://archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-3 amd64 1.3.13-11build1 [73.5 kB] +#6 6.551 Get:68 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libharfbuzz0b amd64 2.6.4-1ubuntu4.2 [391 kB] +#6 6.567 Get:69 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4.2 [5580 B] +#6 6.570 Get:70 http://archive.ubuntu.com/ubuntu focal/universe amd64 libteckit0 amd64 2.5.8+ds2-5ubuntu2 [320 kB] +#6 6.573 Get:71 http://archive.ubuntu.com/ubuntu focal/main amd64 x11-common all 1:7.7+19ubuntu14 [22.3 kB] +#6 6.600 Get:72 http://archive.ubuntu.com/ubuntu focal/main amd64 libice6 amd64 2:1.0.10-0ubuntu1 [41.0 kB] +#6 6.603 Get:73 http://archive.ubuntu.com/ubuntu focal/main amd64 libsm6 amd64 2:1.2.3-1 [16.1 kB] +#6 6.605 Get:74 http://archive.ubuntu.com/ubuntu focal/main amd64 libxt6 amd64 1:1.1.5-1 [160 kB] +#6 6.605 Get:75 http://archive.ubuntu.com/ubuntu focal/main amd64 libxmu6 amd64 2:1.1.3-0ubuntu1 [45.8 kB] +#6 6.609 Get:76 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libxpm4 amd64 1:3.5.12-1ubuntu0.20.04.2 [34.9 kB] +#6 6.609 Get:77 http://archive.ubuntu.com/ubuntu focal/main amd64 libxaw7 amd64 2:1.0.13-1 [173 kB] +#6 6.611 Get:78 http://archive.ubuntu.com/ubuntu focal/main amd64 libxi6 amd64 2:1.7.10-0ubuntu1 [29.9 kB] +#6 6.630 Get:79 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libzzip-0-13 amd64 0.13.62-3.2ubuntu1.1 [26.2 kB] +#6 6.662 Get:80 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 texlive-binaries amd64 2019.20190605.51237-3ubuntu0.2 [8038 kB] +#6 6.735 Get:81 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 xdg-utils all 1.1.3-2ubuntu1.20.04.2 [61.4 kB] +#6 6.737 Get:82 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-base all 2019.20200218-1 [20.8 MB] +#6 6.911 Get:83 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-fonts-recommended all 2019.20200218-1 [4972 kB] +#6 6.950 Get:84 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-lmodern all 2.004.5-6 [4532 kB] +#6 6.986 Get:85 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-latex-base all 2019.20200218-1 [990 kB] +#6 6.995 Get:86 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-latex-recommended all 2019.20200218-1 [15.7 MB] +#6 7.117 Get:87 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive all 2019.20200218-1 [14.4 kB] +#6 7.118 Get:88 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-bibtex-extra all 2019.202000218-1 [64.7 MB] +#6 7.836 Get:89 http://archive.ubuntu.com/ubuntu focal/main amd64 libthai-data all 0.1.28-3 [134 kB] +#6 7.838 Get:90 http://archive.ubuntu.com/ubuntu focal/main amd64 libdatrie1 amd64 0.2.12-3 [18.7 kB] +#6 7.838 Get:91 http://archive.ubuntu.com/ubuntu focal/main amd64 libthai0 amd64 0.1.28-3 [18.1 kB] +#6 7.839 Get:92 http://archive.ubuntu.com/ubuntu focal/universe amd64 libsombok3 amd64 2.4.0-2 [26.9 kB] +#6 7.839 Get:93 http://archive.ubuntu.com/ubuntu focal/universe amd64 libmime-charset-perl all 1.012.2-1 [30.9 kB] +#6 7.840 Get:94 http://archive.ubuntu.com/ubuntu focal/universe amd64 libunicode-linebreak-perl amd64 0.0.20190101-1build1 [96.9 kB] +#6 7.841 Get:95 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-extra-utils all 2019.202000218-1 [43.6 MB] +#6 8.263 Get:96 http://archive.ubuntu.com/ubuntu focal/universe amd64 libapache-pom-java all 18-1 [4720 B] +#6 8.263 Get:97 http://archive.ubuntu.com/ubuntu focal/universe amd64 libcommons-parent-java all 43-1 [10.8 kB] +#6 8.264 Get:98 http://archive.ubuntu.com/ubuntu focal/universe amd64 libcommons-logging-java all 1.2-2 [60.3 kB] +#6 8.265 Get:99 http://archive.ubuntu.com/ubuntu focal/universe amd64 libfontbox-java all 1:1.8.16-2 [207 kB] +#6 8.267 Get:100 http://archive.ubuntu.com/ubuntu focal/universe amd64 libpdfbox-java all 1:1.8.16-2 [5199 kB] +#6 8.301 Get:101 http://archive.ubuntu.com/ubuntu focal/universe amd64 preview-latex-style all 11.91-2ubuntu2 [184 kB] +#6 8.363 Get:102 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-pictures all 2019.20200218-1 [4492 kB] +#6 8.665 Get:103 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-latex-extra all 2019.202000218-1 [12.5 MB] +#6 8.768 Get:104 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-gfs-baskerville all 1.1-5 [43.4 kB] +#6 8.769 Get:105 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-gfs-porson all 1.1-6 [33.7 kB] +#6 8.770 Get:106 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-lang-greek all 2019.20200218-1 [77.3 MB] +#6 9.676 Get:107 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-science all 2019.202000218-1 [3217 kB] +#6 9.698 Get:108 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libxslt1.1 amd64 1.1.34-4ubuntu0.20.04.1 [151 kB] +#6 9.700 Get:109 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 xsltproc amd64 1.1.34-4ubuntu0.20.04.1 [14.3 kB] +#6 9.701 Get:110 http://archive.ubuntu.com/ubuntu focal/universe amd64 dblatex all 0.3.11py3-1 [346 kB] +#6 9.704 Get:111 http://archive.ubuntu.com/ubuntu focal/universe amd64 dblatex-doc all 0.3.11py3-1 [1354 kB] +#6 9.713 Get:112 http://archive.ubuntu.com/ubuntu focal/universe amd64 docbook-xsl all 1.79.1+dfsg-2 [1075 kB] +#6 9.721 Get:113 http://archive.ubuntu.com/ubuntu focal/main amd64 fonts-urw-base35 all 20170801.1-3 [6333 kB] +#6 9.838 Get:114 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgs9-common all 9.50~dfsg-5ubuntu4.14 [682 kB] +#6 9.847 Get:115 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libavahi-common-data amd64 0.7-4ubuntu7.3 [21.4 kB] +#6 9.848 Get:116 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libavahi-common3 amd64 0.7-4ubuntu7.3 [21.9 kB] +#6 9.849 Get:117 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libavahi-client3 amd64 0.7-4ubuntu7.3 [25.5 kB] +#6 9.850 Get:118 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcups2 amd64 2.3.1-9ubuntu1.9 [234 kB] +#6 9.852 Get:119 http://archive.ubuntu.com/ubuntu focal/main amd64 libidn11 amd64 1.33-2.2ubuntu2 [46.2 kB] +#6 9.853 Get:120 http://archive.ubuntu.com/ubuntu focal/main amd64 libijs-0.35 amd64 0.35-15 [15.7 kB] +#6 9.854 Get:121 http://archive.ubuntu.com/ubuntu focal/main amd64 libjbig2dec0 amd64 0.18-1ubuntu1 [60.0 kB] +#6 9.855 Get:122 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjpeg-turbo8 amd64 2.0.3-0ubuntu1.20.04.3 [118 kB] +#6 9.869 Get:123 http://archive.ubuntu.com/ubuntu focal/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2194 B] +#6 9.899 Get:124 http://archive.ubuntu.com/ubuntu focal/main amd64 liblcms2-2 amd64 2.9-4 [140 kB] +#6 9.901 Get:125 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.4 [141 kB] +#6 9.903 Get:126 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.20.04.1 [27.3 kB] +#6 9.904 Get:127 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebp6 amd64 0.6.1-2ubuntu0.20.04.3 [185 kB] +#6 9.906 Get:128 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libtiff5 amd64 4.1.0+git191117-2ubuntu0.20.04.14 [164 kB] +#6 9.909 Get:129 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgs9 amd64 9.50~dfsg-5ubuntu4.14 [2174 kB] +#6 9.939 Get:130 http://archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] +#6 9.940 Get:131 http://archive.ubuntu.com/ubuntu focal/universe amd64 dvisvgm amd64 2.8.1-1build1 [1048 kB] +#6 9.951 Get:132 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 fonts-noto-mono all 20200323-1build1~ubuntu20.04.1 [80.6 kB] +#6 9.952 Get:133 http://archive.ubuntu.com/ubuntu focal/universe amd64 fonts-texgyre all 20180621-3 [10.2 MB] +#6 10.05 Get:134 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcroco3 amd64 0.6.13-1ubuntu0.1 [82.4 kB] +#6 10.05 Get:135 http://archive.ubuntu.com/ubuntu focal/main amd64 gettext amd64 0.19.8.1-10build1 [895 kB] +#6 10.06 Get:136 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 ghostscript amd64 9.50~dfsg-5ubuntu4.14 [52.4 kB] +#6 10.06 Get:137 http://archive.ubuntu.com/ubuntu focal/main amd64 javascript-common all 11 [6066 B] +#6 10.06 Get:138 http://archive.ubuntu.com/ubuntu focal/universe amd64 libalgorithm-c3-perl all 0.10-1 [11.3 kB] +#6 10.06 Get:139 http://archive.ubuntu.com/ubuntu focal/main amd64 libb-hooks-op-check-perl amd64 0.22-1build2 [10.2 kB] +#6 10.06 Get:140 http://archive.ubuntu.com/ubuntu focal/main amd64 libdynaloader-functions-perl all 0.003-1 [11.9 kB] +#6 10.06 Get:141 http://archive.ubuntu.com/ubuntu focal/main amd64 libdevel-callchecker-perl amd64 0.008-1ubuntu1 [14.5 kB] +#6 10.06 Get:142 http://archive.ubuntu.com/ubuntu focal/main amd64 libparams-classify-perl amd64 0.015-1build2 [21.1 kB] +#6 10.08 Get:143 http://archive.ubuntu.com/ubuntu focal/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB] +#6 10.09 Get:144 http://archive.ubuntu.com/ubuntu focal/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB] +#6 10.09 Get:145 http://archive.ubuntu.com/ubuntu focal/main amd64 libmodule-implementation-perl all 0.09-1 [12.2 kB] +#6 10.09 Get:146 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [6784 B] +#6 10.09 Get:147 http://archive.ubuntu.com/ubuntu focal/main amd64 libvariable-magic-perl amd64 0.62-1build2 [34.4 kB] +#6 10.09 Get:148 http://archive.ubuntu.com/ubuntu focal/main amd64 libb-hooks-endofscope-perl all 0.24-1 [16.8 kB] +#6 10.10 Get:149 http://archive.ubuntu.com/ubuntu focal/main amd64 libbz2-dev amd64 1.0.8-2 [30.2 kB] +#6 10.10 Get:150 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libcap-dev amd64 1:2.32-1ubuntu0.1 [33.2 kB] +#6 10.10 Get:151 http://archive.ubuntu.com/ubuntu focal/main amd64 libcap-ng-dev amd64 0.7.9-2.1build1 [22.1 kB] +#6 10.11 Get:152 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-c3-perl all 0.34-1 [18.9 kB] +#6 10.13 Get:153 http://archive.ubuntu.com/ubuntu focal/universe amd64 libclass-c3-xs-perl amd64 0.14-1build5 [15.5 kB] +#6 10.13 Get:154 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-data-inheritable-perl all 0.08-3 [8084 B] +#6 10.13 Get:155 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-method-modifiers-perl all 2.13-1 [16.2 kB] +#6 10.13 Get:156 http://archive.ubuntu.com/ubuntu focal/main amd64 libclass-xsaccessor-perl amd64 1.19-3build3 [33.6 kB] +#6 10.13 Get:157 http://archive.ubuntu.com/ubuntu focal/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB] +#6 10.13 Get:158 http://archive.ubuntu.com/ubuntu focal/main amd64 libparams-util-perl amd64 1.07-3build5 [19.7 kB] +#6 10.13 Get:159 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-install-perl all 0.928-1 [10.5 kB] +#6 10.13 Get:160 http://archive.ubuntu.com/ubuntu focal/main amd64 libdata-optlist-perl all 0.110-1 [9956 B] +#6 10.14 Get:161 http://archive.ubuntu.com/ubuntu focal/universe amd64 libpadwalker-perl amd64 2.3-1build2 [15.2 kB] +#6 10.16 Get:162 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdevel-caller-perl amd64 2.06-2build2 [10.6 kB] +#6 10.16 Get:163 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdevel-globaldestruction-perl all 0.14-1 [6752 B] +#6 10.17 Get:164 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdevel-lexalias-perl amd64 0.05-2build2 [8788 B] +#6 10.17 Get:165 http://archive.ubuntu.com/ubuntu focal/main amd64 libdevel-stacktrace-perl all 2.0400-1 [22.7 kB] +#6 10.17 Get:166 http://archive.ubuntu.com/ubuntu focal/universe amd64 libdist-checkconflicts-perl all 0.11-1 [10.2 kB] +#6 10.17 Get:167 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm-amdgpu1 amd64 2.4.107-8ubuntu1~20.04.2 [18.6 kB] +#6 10.17 Get:168 http://archive.ubuntu.com/ubuntu focal/main amd64 libpciaccess0 amd64 0.16-0ubuntu1 [17.9 kB] +#6 10.17 Get:169 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm-intel1 amd64 2.4.107-8ubuntu1~20.04.2 [60.3 kB] +#6 10.17 Get:170 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm-nouveau2 amd64 2.4.107-8ubuntu1~20.04.2 [16.6 kB] +#6 10.20 Get:171 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libdrm-radeon1 amd64 2.4.107-8ubuntu1~20.04.2 [19.7 kB] +#6 10.20 Get:172 http://archive.ubuntu.com/ubuntu focal/main amd64 libemail-date-format-perl all 1.005-1 [6622 B] +#6 10.20 Get:173 http://archive.ubuntu.com/ubuntu focal/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] +#6 10.20 Get:174 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-exporter-perl all 0.987-1 [44.9 kB] +#6 10.20 Get:175 http://archive.ubuntu.com/ubuntu focal/universe amd64 libeval-closure-perl all 0.14-1 [10.3 kB] +#6 10.20 Get:176 http://archive.ubuntu.com/ubuntu focal/main amd64 libexception-class-perl all 1.44-1 [25.9 kB] +#6 10.20 Get:177 http://archive.ubuntu.com/ubuntu focal/main amd64 libipc-system-simple-perl all 1.26-1 [22.8 kB] +#6 10.21 Get:178 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-basedir-perl all 0.08-1 [16.9 kB] +#6 10.23 Get:179 http://archive.ubuntu.com/ubuntu focal/main amd64 liburi-perl all 1.76-2 [77.5 kB] +#6 10.23 Get:180 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-desktopentry-perl all 0.22-1 [18.2 kB] +#6 10.26 Get:181 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-which-perl all 1.23-1 [13.8 kB] +#6 10.26 Get:182 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-homedir-perl all 1.004-1 [37.3 kB] +#6 10.26 Get:183 http://archive.ubuntu.com/ubuntu focal/main amd64 libtimedate-perl all 2.3200-1 [34.0 kB] +#6 10.26 Get:184 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-date-perl all 6.05-1 [9920 B] +#6 10.26 Get:185 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-listing-perl all 6.04-1 [9774 B] +#6 10.26 Get:186 http://archive.ubuntu.com/ubuntu focal/main amd64 libfile-mimeinfo-perl all 0.29-1 [41.5 kB] +#6 10.26 Get:187 http://archive.ubuntu.com/ubuntu focal/main amd64 libfl2 amd64 2.6.4-6.2 [11.5 kB] +#6 10.26 Get:188 http://archive.ubuntu.com/ubuntu focal/main amd64 libfl-dev amd64 2.6.4-6.2 [6316 B] +#6 10.29 Get:189 http://archive.ubuntu.com/ubuntu focal/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB] +#6 10.29 Get:190 http://archive.ubuntu.com/ubuntu focal/main amd64 libfontenc1 amd64 1:1.1.4-0ubuntu1 [14.0 kB] +#6 10.32 Get:191 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglapi-mesa amd64 21.2.6-0ubuntu0.1~20.04.2 [27.4 kB] +#6 10.32 Get:192 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libllvm12 amd64 1:12.0.0-3ubuntu1~20.04.5 [18.8 MB] +#6 10.51 Get:193 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libsensors-config all 1:3.6.0-2ubuntu1.1 [6052 B] +#6 10.51 Get:194 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libsensors5 amd64 1:3.6.0-2ubuntu1.1 [27.2 kB] +#6 10.51 Get:195 http://archive.ubuntu.com/ubuntu focal/main amd64 libvulkan1 amd64 1.2.131.2-1 [93.3 kB] +#6 10.51 Get:196 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dri amd64 21.2.6-0ubuntu0.1~20.04.2 [11.0 MB] +#6 10.62 Get:197 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-bin amd64 2.64.6-1~ubuntu20.04.8 [72.7 kB] +#6 10.62 Get:198 http://archive.ubuntu.com/ubuntu focal/main amd64 libffi-dev amd64 3.3-4 [57.0 kB] +#6 10.62 Get:199 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-lib2to3 all 3.8.10-0ubuntu1~20.04 [76.3 kB] +#6 10.62 Get:200 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-distutils all 3.8.10-0ubuntu1~20.04 [141 kB] +#6 10.62 Get:201 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-dev-bin amd64 2.64.6-1~ubuntu20.04.8 [109 kB] +#6 10.62 Get:202 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 uuid-dev amd64 2.34-0.1ubuntu9.6 [33.6 kB] +#6 10.69 Get:203 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libblkid-dev amd64 2.34-0.1ubuntu9.6 [167 kB] +#6 10.84 Get:204 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libmount-dev amd64 2.34-0.1ubuntu9.6 [176 kB] +#6 10.86 Get:205 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre16-3 amd64 2:8.39-12ubuntu0.1 [150 kB] +#6 10.89 Get:206 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre32-3 amd64 2:8.39-12ubuntu0.1 [140 kB] +#6 10.90 Get:207 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcrecpp0v5 amd64 2:8.39-12ubuntu0.1 [15.5 kB] +#6 10.90 Get:208 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre3-dev amd64 2:8.39-12ubuntu0.1 [540 kB] +#6 10.93 Get:209 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libsepol1-dev amd64 3.0-1ubuntu0.1 [325 kB] +#6 10.94 Get:210 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-16-0 amd64 10.34-7ubuntu0.1 [181 kB] +#6 10.95 Get:211 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-32-0 amd64 10.34-7ubuntu0.1 [170 kB] +#6 10.95 Get:212 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-posix2 amd64 10.34-7ubuntu0.1 [5988 B] +#6 10.95 Get:213 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpcre2-dev amd64 10.34-7ubuntu0.1 [672 kB] +#6 10.97 Get:214 http://archive.ubuntu.com/ubuntu focal/main amd64 libselinux1-dev amd64 3.0-1build2 [151 kB] +#6 10.97 Get:215 http://archive.ubuntu.com/ubuntu focal/main amd64 pkg-config amd64 0.29.1-0ubuntu4 [45.5 kB] +#6 10.97 Get:216 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-2ubuntu1.5 [155 kB] +#6 10.97 Get:217 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglib2.0-dev amd64 2.64.6-1~ubuntu20.04.8 [1509 kB] +#6 10.99 Get:218 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libx11-xcb1 amd64 2:1.6.9-2ubuntu1.6 [9448 B] +#6 10.99 Get:219 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-dri2-0 amd64 1.14-2 [6920 B] +#6 10.99 Get:220 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-dri3-0 amd64 1.14-2 [6552 B] +#6 10.99 Get:221 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-glx0 amd64 1.14-2 [22.1 kB] +#6 10.99 Get:222 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-present0 amd64 1.14-2 [5560 B] +#6 11.02 Get:223 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-sync1 amd64 1.14-2 [8884 B] +#6 11.02 Get:224 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-xfixes0 amd64 1.14-2 [9296 B] +#6 11.02 Get:225 http://archive.ubuntu.com/ubuntu focal/main amd64 libxfixes3 amd64 1:5.0.3-2 [10.9 kB] +#6 11.02 Get:226 http://archive.ubuntu.com/ubuntu focal/main amd64 libxshmfence1 amd64 1.3-1 [5028 B] +#6 11.02 Get:227 http://archive.ubuntu.com/ubuntu focal/main amd64 libxxf86vm1 amd64 1:1.1.4-1build1 [10.2 kB] +#6 11.05 Get:228 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [137 kB] +#6 11.05 Get:229 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-tagset-perl all 3.20-4 [12.5 kB] +#6 11.06 Get:230 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-parser-perl amd64 3.72-5 [86.3 kB] +#6 11.06 Get:231 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-html-perl all 1.001-1 [14.9 kB] +#6 11.06 Get:232 http://archive.ubuntu.com/ubuntu focal/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.5 kB] +#6 11.08 Get:233 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-message-perl all 6.22-1 [76.1 kB] +#6 11.08 Get:234 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-form-perl all 6.07-1 [22.2 kB] +#6 11.09 Get:235 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-tree-perl all 5.07-2 [200 kB] +#6 11.09 Get:236 http://archive.ubuntu.com/ubuntu focal/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB] +#6 11.09 Get:237 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-cookies-perl all 6.08-1 [18.3 kB] +#6 11.11 Get:238 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libhttp-daemon-perl all 6.06-1ubuntu0.1 [22.0 kB] +#6 11.11 Get:239 http://archive.ubuntu.com/ubuntu focal/main amd64 libhttp-negotiate-perl all 6.01-1 [12.5 kB] +#6 11.12 Get:240 http://archive.ubuntu.com/ubuntu focal/main amd64 perl-openssl-defaults amd64 4 [7192 B] +#6 11.12 Get:241 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-ssleay-perl amd64 1.88-2ubuntu1 [291 kB] +#6 11.12 Get:242 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-socket-ssl-perl all 2.067-1 [176 kB] +#6 11.15 Get:243 http://archive.ubuntu.com/ubuntu focal/main amd64 libio-stringy-perl all 2.111-3 [55.8 kB] +#6 11.15 Get:244 http://archive.ubuntu.com/ubuntu focal/universe amd64 libipc-shareable-perl all 0.61-2 [29.5 kB] +#6 11.15 Get:245 http://archive.ubuntu.com/ubuntu focal/main amd64 libjs-jquery all 3.3.1~dfsg-3 [329 kB] +#6 11.15 Get:246 http://archive.ubuntu.com/ubuntu focal/main amd64 libpackage-stash-perl all 0.38-1 [19.1 kB] +#6 11.15 Get:247 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-identify-perl amd64 0.14-1build2 [10.7 kB] +#6 11.17 Get:248 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-name-perl amd64 0.26-1 [11.5 kB] +#6 11.18 Get:249 http://archive.ubuntu.com/ubuntu focal/main amd64 libnamespace-clean-perl all 0.27-1 [13.6 kB] +#6 11.18 Get:250 http://archive.ubuntu.com/ubuntu focal/universe amd64 libnamespace-autoclean-perl all 0.29-1 [12.5 kB] +#6 11.18 Get:251 http://archive.ubuntu.com/ubuntu focal/universe amd64 libparams-validationcompiler-perl all 0.30-1 [28.9 kB] +#6 11.18 Get:252 http://archive.ubuntu.com/ubuntu focal/universe amd64 libmro-compat-perl all 0.13-1 [11.2 kB] +#6 11.21 Get:253 http://archive.ubuntu.com/ubuntu focal/main amd64 librole-tiny-perl all 2.001004-1 [16.5 kB] +#6 11.21 Get:254 http://archive.ubuntu.com/ubuntu focal/main amd64 libsub-quote-perl all 2.006006-1 [19.5 kB] +#6 11.21 Get:255 http://archive.ubuntu.com/ubuntu focal/universe amd64 libxstring-perl amd64 0.002-2 [7276 B] +#6 11.21 Get:256 http://archive.ubuntu.com/ubuntu focal/universe amd64 libspecio-perl all 0.45-1 [138 kB] +#6 11.21 Get:257 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblog-dispatch-perl all 2.69-1 [67.0 kB] +#6 11.24 Get:258 http://archive.ubuntu.com/ubuntu focal/universe amd64 liblog-log4perl-perl all 1.49-1 [344 kB] +#6 11.24 Get:259 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-http-perl all 6.19-1 [22.8 kB] +#6 11.24 Get:260 http://archive.ubuntu.com/ubuntu focal/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB] +#6 11.24 Get:261 http://archive.ubuntu.com/ubuntu focal/main amd64 libwww-perl all 6.43-1 [140 kB] +#6 11.24 Get:262 http://archive.ubuntu.com/ubuntu focal/main amd64 liblwp-protocol-https-perl all 6.07-2ubuntu2 [8560 B] +#6 11.27 Get:263 http://archive.ubuntu.com/ubuntu focal/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] +#6 11.27 Get:264 http://archive.ubuntu.com/ubuntu focal/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] +#6 11.27 Get:265 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5948 B] +#6 11.27 Get:266 http://archive.ubuntu.com/ubuntu focal/main amd64 libmailtools-perl all 2.21-1 [80.7 kB] +#6 11.27 Get:267 http://archive.ubuntu.com/ubuntu focal/main amd64 libmime-lite-perl all 3.031-1 [62.9 kB] +#6 11.30 Get:268 http://archive.ubuntu.com/ubuntu focal/main amd64 libmime-types-perl all 2.17-1 [57.6 kB] +#6 11.30 Get:269 http://archive.ubuntu.com/ubuntu focal/main amd64 libxml-parser-perl amd64 2.46-1 [193 kB] +#6 11.30 Get:270 http://archive.ubuntu.com/ubuntu focal/main amd64 libxml-twig-perl all 1:3.50-2 [155 kB] +#6 11.30 Get:271 http://archive.ubuntu.com/ubuntu focal/main amd64 libnet-dbus-perl amd64 1.2.0-1 [177 kB] +#6 11.30 Get:272 http://archive.ubuntu.com/ubuntu focal/main amd64 libpackage-stash-xs-perl amd64 0.29-1build1 [18.4 kB] +#6 11.33 Get:273 http://archive.ubuntu.com/ubuntu focal/main amd64 libreadonly-perl all 2.050-2 [19.9 kB] +#6 11.34 Get:274 http://archive.ubuntu.com/ubuntu focal/main amd64 libref-util-perl all 0.204-1 [15.0 kB] +#6 11.34 Get:275 http://archive.ubuntu.com/ubuntu focal/main amd64 libref-util-xs-perl amd64 0.117-1build2 [12.0 kB] +#6 11.34 Get:276 http://archive.ubuntu.com/ubuntu focal/main amd64 rubygems-integration all 1.16 [5092 B] +#6 11.34 Get:277 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 ruby2.7 amd64 2.7.0-5ubuntu1.15 [109 kB] +#6 11.36 Get:278 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby amd64 1:2.7+1 [5412 B] +#6 11.36 Get:279 http://archive.ubuntu.com/ubuntu focal/main amd64 rake all 13.0.1-4 [61.6 kB] +#6 11.36 Get:280 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby-minitest all 5.13.0-1 [40.9 kB] +#6 11.36 Get:281 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby-net-telnet all 0.1.1-2 [12.6 kB] +#6 11.36 Get:282 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby-power-assert all 1.1.7-1 [11.4 kB] +#6 11.39 Get:283 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby-test-unit all 3.3.5-1 [73.2 kB] +#6 11.39 Get:284 http://archive.ubuntu.com/ubuntu focal/main amd64 ruby-xmlrpc all 0.3.0-2 [23.8 kB] +#6 11.39 Get:285 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libruby2.7 amd64 2.7.0-5ubuntu1.15 [3545 kB] +#6 11.42 Get:286 http://archive.ubuntu.com/ubuntu focal/main amd64 libtcl8.6 amd64 8.6.10+dfsg-1 [902 kB] +#6 11.43 Get:287 http://archive.ubuntu.com/ubuntu focal/main amd64 libtie-ixhash-perl all 1.23-2 [11.2 kB] +#6 11.43 Get:288 http://archive.ubuntu.com/ubuntu focal/main amd64 libxft2 amd64 2.3.3-0ubuntu1 [39.2 kB] +#6 11.43 Get:289 http://archive.ubuntu.com/ubuntu focal/main amd64 libxss1 amd64 1:1.2.3-1 [8140 B] +#6 11.43 Get:290 http://archive.ubuntu.com/ubuntu focal/main amd64 libtk8.6 amd64 8.6.10-1 [714 kB] +#6 11.44 Get:291 http://archive.ubuntu.com/ubuntu focal/main amd64 libutempter0 amd64 1.1.6-4 [8256 B] +#6 11.44 Get:292 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-client0 amd64 1.18.0-1ubuntu0.1 [23.9 kB] +#6 11.45 Get:293 http://archive.ubuntu.com/ubuntu focal/main amd64 libx11-protocol-perl all 0.56-7 [149 kB] +#6 11.45 Get:294 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-randr0 amd64 1.14-2 [16.3 kB] +#6 11.48 Get:295 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcb-shape0 amd64 1.14-2 [5928 B] +#6 11.48 Get:296 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcomposite1 amd64 1:0.4.5-1 [6976 B] +#6 11.48 Get:297 http://archive.ubuntu.com/ubuntu focal/main amd64 libxcursor1 amd64 1:1.2.0-2 [20.1 kB] +#6 11.48 Get:298 http://archive.ubuntu.com/ubuntu focal/main amd64 libxinerama1 amd64 2:1.1.4-2 [6904 B] +#6 11.48 Get:299 http://archive.ubuntu.com/ubuntu focal/main amd64 libxkbfile1 amd64 1:1.1.0-1 [65.3 kB] +#6 11.48 Get:300 http://archive.ubuntu.com/ubuntu focal/main amd64 libxml-xpathengine-perl all 0.14-1 [31.8 kB] +#6 11.48 Get:301 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libxml2-utils amd64 2.9.10+dfsg-5ubuntu0.20.04.7 [37.1 kB] +#6 11.48 Get:302 http://archive.ubuntu.com/ubuntu focal/main amd64 libxrandr2 amd64 2:1.5.2-0ubuntu1 [18.5 kB] +#6 11.51 Get:303 http://archive.ubuntu.com/ubuntu focal/main amd64 libxtst6 amd64 2:1.2.3-1 [12.8 kB] +#6 11.57 Get:304 http://archive.ubuntu.com/ubuntu focal/main amd64 libxv1 amd64 2:1.0.11-1 [10.7 kB] +#6 11.60 Get:305 http://archive.ubuntu.com/ubuntu focal/main amd64 libxxf86dga1 amd64 2:1.1.5-0ubuntu1 [12.0 kB] +#6 11.61 Get:306 http://archive.ubuntu.com/ubuntu focal/main amd64 libyaml-tiny-perl all 1.73-1 [25.2 kB] +#6 11.64 Get:307 http://archive.ubuntu.com/ubuntu focal/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu1 [573 kB] +#6 11.76 Get:308 http://archive.ubuntu.com/ubuntu focal/main amd64 xfonts-utils amd64 1:7.7+6 [91.5 kB] +#6 11.77 Get:309 http://archive.ubuntu.com/ubuntu focal/universe amd64 lmodern all 2.004.5-6 [9474 kB] +#6 11.89 Get:310 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 mesa-vulkan-drivers amd64 21.2.6-0ubuntu0.1~20.04.2 [5788 kB] +#6 11.95 Get:311 http://archive.ubuntu.com/ubuntu focal/main amd64 tcl8.6 amd64 8.6.10+dfsg-1 [14.8 kB] +#6 11.95 Get:312 http://archive.ubuntu.com/ubuntu focal/universe amd64 tcl amd64 8.6.9+1 [5112 B] +#6 11.95 Get:313 http://archive.ubuntu.com/ubuntu focal/universe amd64 tex-gyre all 20180621-3 [6209 kB] +#6 12.00 Get:314 http://archive.ubuntu.com/ubuntu focal/universe amd64 texlive-plain-generic all 2019.202000218-1 [24.6 MB] +#6 12.35 Get:315 http://archive.ubuntu.com/ubuntu focal/universe amd64 tipa all 2:1.3-20 [2978 kB] +#6 12.37 Get:316 http://archive.ubuntu.com/ubuntu focal/main amd64 tk8.6 amd64 8.6.10-1 [12.5 kB] +#6 12.37 Get:317 http://archive.ubuntu.com/ubuntu focal/universe amd64 tk amd64 8.6.9+1 [3240 B] +#6 12.37 Get:318 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd0 amd64 1.3.2-1~ubuntu0.20.04.2 [48.1 kB] +#6 12.37 Get:319 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx0 amd64 1.3.2-1~ubuntu0.20.04.2 [32.5 kB] +#6 12.37 Get:320 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1 amd64 1.3.2-1~ubuntu0.20.04.2 [85.8 kB] +#6 12.38 Get:321 http://archive.ubuntu.com/ubuntu focal/main amd64 x11-utils amd64 7.7+5 [199 kB] +#6 12.38 Get:322 http://archive.ubuntu.com/ubuntu focal/main amd64 x11-xserver-utils amd64 7.7+8 [162 kB] +#6 12.38 Get:323 http://archive.ubuntu.com/ubuntu focal/main amd64 xbitmaps all 1.1.1-2 [28.1 kB] +#6 12.38 Get:324 http://archive.ubuntu.com/ubuntu focal/universe amd64 xmlto amd64 0.0.28-2.1 [26.8 kB] +#6 12.41 Get:325 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 xterm amd64 353-1ubuntu1.20.04.2 [765 kB] +#6 12.42 Get:326 http://archive.ubuntu.com/ubuntu focal/main amd64 libaudit-dev amd64 1:2.8.5-2ubuntu6 [67.8 kB] +#6 12.42 Get:327 http://archive.ubuntu.com/ubuntu focal/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] +#6 12.68 debconf: delaying package configuration, since apt-utils is not installed +#6 12.72 Fetched 422 MB in 7s (63.0 MB/s) +#6 12.75 Selecting previously unselected package libpython3.8-minimal:amd64. +#6 12.75 (Reading database ... +(Reading database ... 5% +(Reading database ... 10% +(Reading database ... 15% +(Reading database ... 20% +(Reading database ... 25% +(Reading database ... 30% +(Reading database ... 35% +(Reading database ... 40% +(Reading database ... 45% +(Reading database ... 50% +(Reading database ... 55% +(Reading database ... 60% +(Reading database ... 65% +(Reading database ... 70% +(Reading database ... 75% +(Reading database ... 80% +(Reading database ... 85% +(Reading database ... 90% +(Reading database ... 95% +(Reading database ... 100% +(Reading database ... 17393 files and directories currently installed.) +#6 12.85 Preparing to unpack .../libpython3.8-minimal_3.8.10-0ubuntu1~20.04.14_amd64.deb ... +#6 12.86 Unpacking libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.14) ... +#6 12.97 Selecting previously unselected package python3.8-minimal. +#6 12.98 Preparing to unpack .../python3.8-minimal_3.8.10-0ubuntu1~20.04.14_amd64.deb ... +#6 12.98 Unpacking python3.8-minimal (3.8.10-0ubuntu1~20.04.14) ... +#6 13.21 Setting up libpython3.8-minimal:amd64 (3.8.10-0ubuntu1~20.04.14) ... +#6 13.22 Setting up python3.8-minimal (3.8.10-0ubuntu1~20.04.14) ... +#6 13.79 Selecting previously unselected package python3-minimal. +#6 13.79 (Reading database ... +(Reading database ... 5% +(Reading database ... 10% +(Reading database ... 15% +(Reading database ... 20% +(Reading database ... 25% +(Reading database ... 30% +(Reading database ... 35% +(Reading database ... 40% +(Reading database ... 45% +(Reading database ... 50% +(Reading database ... 55% +(Reading database ... 60% +(Reading database ... 65% +(Reading database ... 70% +(Reading database ... 75% +(Reading database ... 80% +(Reading database ... 85% +(Reading database ... 90% +(Reading database ... 95% +(Reading database ... 100% +(Reading database ... 17676 files and directories currently installed.) +#6 13.80 Preparing to unpack .../0-python3-minimal_3.8.2-0ubuntu2_amd64.deb ... +#6 13.81 Unpacking python3-minimal (3.8.2-0ubuntu2) ... +#6 13.83 Selecting previously unselected package mime-support. +#6 13.84 Preparing to unpack .../1-mime-support_3.64ubuntu1_all.deb ... +#6 13.84 Unpacking mime-support (3.64ubuntu1) ... +#6 13.87 Selecting previously unselected package libmpdec2:amd64. +#6 13.87 Preparing to unpack .../2-libmpdec2_2.4.2-3_amd64.deb ... +#6 13.87 Unpacking libmpdec2:amd64 (2.4.2-3) ... +#6 13.90 Selecting previously unselected package libpython3.8-stdlib:amd64. +#6 13.90 Preparing to unpack .../3-libpython3.8-stdlib_3.8.10-0ubuntu1~20.04.14_amd64.deb ... +#6 13.91 Unpacking libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.14) ... +#6 14.10 Selecting previously unselected package python3.8. +#6 14.10 Preparing to unpack .../4-python3.8_3.8.10-0ubuntu1~20.04.14_amd64.deb ... +#6 14.11 Unpacking python3.8 (3.8.10-0ubuntu1~20.04.14) ... +#6 14.14 Selecting previously unselected package libpython3-stdlib:amd64. +#6 14.14 Preparing to unpack .../5-libpython3-stdlib_3.8.2-0ubuntu2_amd64.deb ... +#6 14.14 Unpacking libpython3-stdlib:amd64 (3.8.2-0ubuntu2) ... +#6 14.18 Setting up python3-minimal (3.8.2-0ubuntu2) ... +#6 14.36 Selecting previously unselected package python3. +#6 14.36 (Reading database ... +(Reading database ... 5% +(Reading database ... 10% +(Reading database ... 15% +(Reading database ... 20% +(Reading database ... 25% +(Reading database ... 30% +(Reading database ... 35% +(Reading database ... 40% +(Reading database ... 45% +(Reading database ... 50% +(Reading database ... 55% +(Reading database ... 60% +(Reading database ... 65% +(Reading database ... 70% +(Reading database ... 75% +(Reading database ... 80% +(Reading database ... 85% +(Reading database ... 90% +(Reading database ... 95% +(Reading database ... 100% +(Reading database ... 18078 files and directories currently installed.) +#6 14.37 Preparing to unpack .../0-python3_3.8.2-0ubuntu2_amd64.deb ... +#6 14.38 Unpacking python3 (3.8.2-0ubuntu2) ... +#6 14.41 Selecting previously unselected package libsigsegv2:amd64. +#6 14.41 Preparing to unpack .../1-libsigsegv2_2.12-2_amd64.deb ... +#6 14.41 Unpacking libsigsegv2:amd64 (2.12-2) ... +#6 14.44 Selecting previously unselected package m4. +#6 14.44 Preparing to unpack .../2-m4_1.4.18-4_amd64.deb ... +#6 14.44 Unpacking m4 (1.4.18-4) ... +#6 14.48 Selecting previously unselected package flex. +#6 14.48 Preparing to unpack .../3-flex_2.6.4-6.2_amd64.deb ... +#6 14.48 Unpacking flex (2.6.4-6.2) ... +#6 14.54 Selecting previously unselected package fonts-droid-fallback. +#6 14.54 Preparing to unpack .../4-fonts-droid-fallback_1%3a6.0.1r16-1.1_all.deb ... +#6 14.56 Unpacking fonts-droid-fallback (1:6.0.1r16-1.1) ... +#6 14.77 Selecting previously unselected package fonts-lato. +#6 14.77 Preparing to unpack .../5-fonts-lato_2.0-2_all.deb ... +#6 14.77 Unpacking fonts-lato (2.0-2) ... +#6 15.09 Setting up libsigsegv2:amd64 (2.12-2) ... +#6 15.14 Selecting previously unselected package gawk. +#6 15.14 (Reading database ... +(Reading database ... 5% +(Reading database ... 10% +(Reading database ... 15% +(Reading database ... 20% +(Reading database ... 25% +(Reading database ... 30% +(Reading database ... 35% +(Reading database ... 40% +(Reading database ... 45% +(Reading database ... 50% +(Reading database ... 55% +(Reading database ... 60% +(Reading database ... 65% +(Reading database ... 70% +(Reading database ... 75% +(Reading database ... 80% +(Reading database ... 85% +(Reading database ... 90% +(Reading database ... 95% +(Reading database ... 100% +(Reading database ... 18295 files and directories currently installed.) +#6 15.15 Preparing to unpack .../000-gawk_1%3a5.0.1+dfsg-1ubuntu0.1_amd64.deb ... +#6 15.15 Unpacking gawk (1:5.0.1+dfsg-1ubuntu0.1) ... +#6 15.22 Selecting previously unselected package poppler-data. +#6 15.22 Preparing to unpack .../001-poppler-data_0.4.9-2_all.deb ... +#6 15.23 Unpacking poppler-data (0.4.9-2) ... +#6 15.56 Selecting previously unselected package sgml-base. +#6 15.56 Preparing to unpack .../002-sgml-base_1.29.1_all.deb ... +#6 15.57 Unpacking sgml-base (1.29.1) ... +#6 15.60 Selecting previously unselected package ucf. +#6 15.60 Preparing to unpack .../003-ucf_3.0038+nmu1_all.deb ... +#6 15.60 Moving old data out of the way +#6 15.61 Unpacking ucf (3.0038+nmu1) ... +#6 15.64 Selecting previously unselected package tex-common. +#6 15.64 Preparing to unpack .../004-tex-common_6.13_all.deb ... +#6 15.65 Unpacking tex-common (6.13) ... +#6 15.69 Selecting previously unselected package libapparmor1:amd64. +#6 15.69 Preparing to unpack .../005-libapparmor1_2.13.3-7ubuntu5.4_amd64.deb ... +#6 15.70 Unpacking libapparmor1:amd64 (2.13.3-7ubuntu5.4) ... +#6 15.73 Selecting previously unselected package libdbus-1-3:amd64. +#6 15.73 Preparing to unpack .../006-libdbus-1-3_1.12.16-2ubuntu2.3_amd64.deb ... +#6 15.73 Unpacking libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) ... +#6 15.78 Selecting previously unselected package dbus. +#6 15.78 Preparing to unpack .../007-dbus_1.12.16-2ubuntu2.3_amd64.deb ... +#6 15.79 Unpacking dbus (1.12.16-2ubuntu2.3) ... +#6 15.83 Selecting previously unselected package distro-info-data. +#6 15.83 Preparing to unpack .../008-distro-info-data_0.43ubuntu1.17_all.deb ... +#6 15.83 Unpacking distro-info-data (0.43ubuntu1.17) ... +#6 15.85 Selecting previously unselected package libmagic-mgc. +#6 15.86 Preparing to unpack .../009-libmagic-mgc_1%3a5.38-4_amd64.deb ... +#6 15.86 Unpacking libmagic-mgc (1:5.38-4) ... +#6 15.92 Selecting previously unselected package libmagic1:amd64. +#6 15.93 Preparing to unpack .../010-libmagic1_1%3a5.38-4_amd64.deb ... +#6 15.93 Unpacking libmagic1:amd64 (1:5.38-4) ... +#6 15.96 Selecting previously unselected package file. +#6 15.96 Preparing to unpack .../011-file_1%3a5.38-4_amd64.deb ... +#6 15.96 Unpacking file (1:5.38-4) ... +#6 15.99 Selecting previously unselected package libcap2:amd64. +#6 15.99 Preparing to unpack .../012-libcap2_1%3a2.32-1ubuntu0.1_amd64.deb ... +#6 15.99 Unpacking libcap2:amd64 (1:2.32-1ubuntu0.1) ... +#6 16.02 Selecting previously unselected package libelf1:amd64. +#6 16.02 Preparing to unpack .../013-libelf1_0.176-1.1ubuntu0.1_amd64.deb ... +#6 16.02 Unpacking libelf1:amd64 (0.176-1.1ubuntu0.1) ... +#6 16.05 Selecting previously unselected package libglib2.0-0:amd64. +#6 16.06 Preparing to unpack .../014-libglib2.0-0_2.64.6-1~ubuntu20.04.8_amd64.deb ... +#6 16.06 Unpacking libglib2.0-0:amd64 (2.64.6-1~ubuntu20.04.8) ... +#6 16.20 Selecting previously unselected package libglib2.0-data. +#6 16.20 Preparing to unpack .../015-libglib2.0-data_2.64.6-1~ubuntu20.04.8_all.deb ... +#6 16.20 Unpacking libglib2.0-data (2.64.6-1~ubuntu20.04.8) ... +#6 16.22 Selecting previously unselected package libicu66:amd64. +#6 16.23 Preparing to unpack .../016-libicu66_66.1-2ubuntu2.1_amd64.deb ... +#6 16.23 Unpacking libicu66:amd64 (66.1-2ubuntu2.1) ... +#6 17.11 Selecting previously unselected package libtext-iconv-perl. +#6 17.11 Preparing to unpack .../017-libtext-iconv-perl_1.7-7_amd64.deb ... +#6 17.11 Unpacking libtext-iconv-perl (1.7-7) ... +#6 17.14 Selecting previously unselected package libxml2:amd64. +#6 17.14 Preparing to unpack .../018-libxml2_2.9.10+dfsg-5ubuntu0.20.04.7_amd64.deb ... +#6 17.14 Unpacking libxml2:amd64 (2.9.10+dfsg-5ubuntu0.20.04.7) ... +#6 17.23 Selecting previously unselected package libyaml-0-2:amd64. +#6 17.24 Preparing to unpack .../019-libyaml-0-2_0.2.2-1_amd64.deb ... +#6 17.24 Unpacking libyaml-0-2:amd64 (0.2.2-1) ... +#6 17.26 Selecting previously unselected package lsb-release. +#6 17.27 Preparing to unpack .../020-lsb-release_11.1.0ubuntu2_all.deb ... +#6 17.27 Unpacking lsb-release (11.1.0ubuntu2) ... +#6 17.29 Selecting previously unselected package shared-mime-info. +#6 17.30 Preparing to unpack .../021-shared-mime-info_1.15-1_amd64.deb ... +#6 17.30 Unpacking shared-mime-info (1.15-1) ... +#6 17.37 Selecting previously unselected package xdg-user-dirs. +#6 17.37 Preparing to unpack .../022-xdg-user-dirs_0.17-2ubuntu1_amd64.deb ... +#6 17.38 Unpacking xdg-user-dirs (0.17-2ubuntu1) ... +#6 17.43 Selecting previously unselected package gettext-base. +#6 17.43 Preparing to unpack .../023-gettext-base_0.19.8.1-10build1_amd64.deb ... +#6 17.44 Unpacking gettext-base (0.19.8.1-10build1) ... +#6 17.46 Selecting previously unselected package iso-codes. +#6 17.47 Preparing to unpack .../024-iso-codes_4.4-1_all.deb ... +#6 17.47 Unpacking iso-codes (4.4-1) ... +#6 17.87 Selecting previously unselected package libdrm-common. +#6 17.87 Preparing to unpack .../025-libdrm-common_2.4.107-8ubuntu1~20.04.2_all.deb ... +#6 17.87 Unpacking libdrm-common (2.4.107-8ubuntu1~20.04.2) ... +#6 17.89 Selecting previously unselected package libdrm2:amd64. +#6 17.90 Preparing to unpack .../026-libdrm2_2.4.107-8ubuntu1~20.04.2_amd64.deb ... +#6 17.90 Unpacking libdrm2:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 17.93 Selecting previously unselected package libpng16-16:amd64. +#6 17.93 Preparing to unpack .../027-libpng16-16_1.6.37-2_amd64.deb ... +#6 17.93 Unpacking libpng16-16:amd64 (1.6.37-2) ... +#6 17.97 Selecting previously unselected package python-apt-common. +#6 17.97 Preparing to unpack .../028-python-apt-common_2.0.1ubuntu0.20.04.1_all.deb ... +#6 17.97 Unpacking python-apt-common (2.0.1ubuntu0.20.04.1) ... +#6 18.00 Selecting previously unselected package python3-apt. +#6 18.00 Preparing to unpack .../029-python3-apt_2.0.1ubuntu0.20.04.1_amd64.deb ... +#6 18.00 Unpacking python3-apt (2.0.1ubuntu0.20.04.1) ... +#6 18.04 Selecting previously unselected package bison. +#6 18.04 Preparing to unpack .../030-bison_2%3a3.5.1+dfsg-1_amd64.deb ... +#6 18.05 Unpacking bison (2:3.5.1+dfsg-1) ... +#6 18.11 Selecting previously unselected package bzip2-doc. +#6 18.11 Preparing to unpack .../031-bzip2-doc_1.0.8-2_all.deb ... +#6 18.12 Unpacking bzip2-doc (1.0.8-2) ... +#6 18.16 Selecting previously unselected package xml-core. +#6 18.16 Preparing to unpack .../032-xml-core_0.18+nmu1_all.deb ... +#6 18.17 Unpacking xml-core (0.18+nmu1) ... +#6 18.20 Selecting previously unselected package sgml-data. +#6 18.20 Preparing to unpack .../033-sgml-data_2.0.11_all.deb ... +#6 18.21 Unpacking sgml-data (2.0.11) ... +#6 18.26 Selecting previously unselected package docbook-xml. +#6 18.27 Preparing to unpack .../034-docbook-xml_4.5-9_all.deb ... +#6 18.27 Unpacking docbook-xml (4.5-9) ... +#6 18.32 Selecting previously unselected package libpaper1:amd64. +#6 18.33 Preparing to unpack .../035-libpaper1_1.1.28_amd64.deb ... +#6 18.33 Unpacking libpaper1:amd64 (1.1.28) ... +#6 18.35 Selecting previously unselected package libpaper-utils. +#6 18.35 Preparing to unpack .../036-libpaper-utils_1.1.28_amd64.deb ... +#6 18.35 Unpacking libpaper-utils (1.1.28) ... +#6 18.38 Selecting previously unselected package libkpathsea6:amd64. +#6 18.38 Preparing to unpack .../037-libkpathsea6_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 18.38 Unpacking libkpathsea6:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 18.41 Selecting previously unselected package libptexenc1:amd64. +#6 18.41 Preparing to unpack .../038-libptexenc1_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 18.42 Unpacking libptexenc1:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 18.44 Selecting previously unselected package libsynctex2:amd64. +#6 18.45 Preparing to unpack .../039-libsynctex2_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 18.45 Unpacking libsynctex2:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 18.48 Selecting previously unselected package libtexlua53:amd64. +#6 18.48 Preparing to unpack .../040-libtexlua53_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 18.48 Unpacking libtexlua53:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 18.52 Selecting previously unselected package libtexluajit2:amd64. +#6 18.52 Preparing to unpack .../041-libtexluajit2_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 18.52 Unpacking libtexluajit2:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 18.57 Selecting previously unselected package t1utils. +#6 18.57 Preparing to unpack .../042-t1utils_1.41-3_amd64.deb ... +#6 18.57 Unpacking t1utils (1.41-3) ... +#6 18.60 Selecting previously unselected package libfreetype6:amd64. +#6 18.61 Preparing to unpack .../043-libfreetype6_2.10.1-2ubuntu0.3_amd64.deb ... +#6 18.61 Unpacking libfreetype6:amd64 (2.10.1-2ubuntu0.3) ... +#6 18.66 Selecting previously unselected package fonts-dejavu-core. +#6 18.67 Preparing to unpack .../044-fonts-dejavu-core_2.37-1_all.deb ... +#6 18.67 Unpacking fonts-dejavu-core (2.37-1) ... +#6 18.80 Selecting previously unselected package fontconfig-config. +#6 18.80 Preparing to unpack .../045-fontconfig-config_2.13.1-2ubuntu3_all.deb ... +#6 18.80 Unpacking fontconfig-config (2.13.1-2ubuntu3) ... +#6 18.83 Selecting previously unselected package libfontconfig1:amd64. +#6 18.84 Preparing to unpack .../046-libfontconfig1_2.13.1-2ubuntu3_amd64.deb ... +#6 18.84 Unpacking libfontconfig1:amd64 (2.13.1-2ubuntu3) ... +#6 18.87 Selecting previously unselected package libpixman-1-0:amd64. +#6 18.88 Preparing to unpack .../047-libpixman-1-0_0.38.4-0ubuntu2.1_amd64.deb ... +#6 18.88 Unpacking libpixman-1-0:amd64 (0.38.4-0ubuntu2.1) ... +#6 18.93 Selecting previously unselected package libxcb-render0:amd64. +#6 18.93 Preparing to unpack .../048-libxcb-render0_1.14-2_amd64.deb ... +#6 18.93 Unpacking libxcb-render0:amd64 (1.14-2) ... +#6 18.96 Selecting previously unselected package libxcb-shm0:amd64. +#6 18.96 Preparing to unpack .../049-libxcb-shm0_1.14-2_amd64.deb ... +#6 18.96 Unpacking libxcb-shm0:amd64 (1.14-2) ... +#6 18.99 Selecting previously unselected package libxrender1:amd64. +#6 18.99 Preparing to unpack .../050-libxrender1_1%3a0.9.10-1_amd64.deb ... +#6 18.99 Unpacking libxrender1:amd64 (1:0.9.10-1) ... +#6 19.02 Selecting previously unselected package libcairo2:amd64. +#6 19.02 Preparing to unpack .../051-libcairo2_1.16.0-4ubuntu1_amd64.deb ... +#6 19.02 Unpacking libcairo2:amd64 (1.16.0-4ubuntu1) ... +#6 19.09 Selecting previously unselected package libgraphite2-3:amd64. +#6 19.10 Preparing to unpack .../052-libgraphite2-3_1.3.13-11build1_amd64.deb ... +#6 19.10 Unpacking libgraphite2-3:amd64 (1.3.13-11build1) ... +#6 19.13 Selecting previously unselected package libharfbuzz0b:amd64. +#6 19.13 Preparing to unpack .../053-libharfbuzz0b_2.6.4-1ubuntu4.2_amd64.deb ... +#6 19.14 Unpacking libharfbuzz0b:amd64 (2.6.4-1ubuntu4.2) ... +#6 19.20 Selecting previously unselected package libharfbuzz-icu0:amd64. +#6 19.21 Preparing to unpack .../054-libharfbuzz-icu0_2.6.4-1ubuntu4.2_amd64.deb ... +#6 19.21 Unpacking libharfbuzz-icu0:amd64 (2.6.4-1ubuntu4.2) ... +#6 19.23 Selecting previously unselected package libteckit0:amd64. +#6 19.24 Preparing to unpack .../055-libteckit0_2.5.8+ds2-5ubuntu2_amd64.deb ... +#6 19.24 Unpacking libteckit0:amd64 (2.5.8+ds2-5ubuntu2) ... +#6 19.31 Selecting previously unselected package x11-common. +#6 19.31 Preparing to unpack .../056-x11-common_1%3a7.7+19ubuntu14_all.deb ... +#6 19.33 dpkg-query: no packages found matching nux-tools +#6 19.34 Unpacking x11-common (1:7.7+19ubuntu14) ... +#6 19.36 Selecting previously unselected package libice6:amd64. +#6 19.37 Preparing to unpack .../057-libice6_2%3a1.0.10-0ubuntu1_amd64.deb ... +#6 19.37 Unpacking libice6:amd64 (2:1.0.10-0ubuntu1) ... +#6 19.39 Selecting previously unselected package libsm6:amd64. +#6 19.40 Preparing to unpack .../058-libsm6_2%3a1.2.3-1_amd64.deb ... +#6 19.40 Unpacking libsm6:amd64 (2:1.2.3-1) ... +#6 19.42 Selecting previously unselected package libxt6:amd64. +#6 19.43 Preparing to unpack .../059-libxt6_1%3a1.1.5-1_amd64.deb ... +#6 19.43 Unpacking libxt6:amd64 (1:1.1.5-1) ... +#6 19.47 Selecting previously unselected package libxmu6:amd64. +#6 19.47 Preparing to unpack .../060-libxmu6_2%3a1.1.3-0ubuntu1_amd64.deb ... +#6 19.47 Unpacking libxmu6:amd64 (2:1.1.3-0ubuntu1) ... +#6 19.50 Selecting previously unselected package libxpm4:amd64. +#6 19.51 Preparing to unpack .../061-libxpm4_1%3a3.5.12-1ubuntu0.20.04.2_amd64.deb ... +#6 19.51 Unpacking libxpm4:amd64 (1:3.5.12-1ubuntu0.20.04.2) ... +#6 19.53 Selecting previously unselected package libxaw7:amd64. +#6 19.54 Preparing to unpack .../062-libxaw7_2%3a1.0.13-1_amd64.deb ... +#6 19.54 Unpacking libxaw7:amd64 (2:1.0.13-1) ... +#6 19.58 Selecting previously unselected package libxi6:amd64. +#6 19.58 Preparing to unpack .../063-libxi6_2%3a1.7.10-0ubuntu1_amd64.deb ... +#6 19.59 Unpacking libxi6:amd64 (2:1.7.10-0ubuntu1) ... +#6 19.61 Selecting previously unselected package libzzip-0-13:amd64. +#6 19.61 Preparing to unpack .../064-libzzip-0-13_0.13.62-3.2ubuntu1.1_amd64.deb ... +#6 19.62 Unpacking libzzip-0-13:amd64 (0.13.62-3.2ubuntu1.1) ... +#6 19.64 Selecting previously unselected package texlive-binaries. +#6 19.65 Preparing to unpack .../065-texlive-binaries_2019.20190605.51237-3ubuntu0.2_amd64.deb ... +#6 19.65 Unpacking texlive-binaries (2019.20190605.51237-3ubuntu0.2) ... +#6 20.49 Selecting previously unselected package xdg-utils. +#6 20.50 Preparing to unpack .../066-xdg-utils_1.1.3-2ubuntu1.20.04.2_all.deb ... +#6 20.50 Unpacking xdg-utils (1.1.3-2ubuntu1.20.04.2) ... +#6 20.54 Selecting previously unselected package texlive-base. +#6 20.55 Preparing to unpack .../067-texlive-base_2019.20200218-1_all.deb ... +#6 20.57 Unpacking texlive-base (2019.20200218-1) ... +#6 22.44 Selecting previously unselected package texlive-fonts-recommended. +#6 22.45 Preparing to unpack .../068-texlive-fonts-recommended_2019.20200218-1_all.deb ... +#6 22.45 Unpacking texlive-fonts-recommended (2019.20200218-1) ... +#6 23.13 Selecting previously unselected package fonts-lmodern. +#6 23.13 Preparing to unpack .../069-fonts-lmodern_2.004.5-6_all.deb ... +#6 23.14 Unpacking fonts-lmodern (2.004.5-6) ... +#6 23.57 Selecting previously unselected package texlive-latex-base. +#6 23.58 Preparing to unpack .../070-texlive-latex-base_2019.20200218-1_all.deb ... +#6 23.59 Unpacking texlive-latex-base (2019.20200218-1) ... +#6 23.94 Selecting previously unselected package texlive-latex-recommended. +#6 23.94 Preparing to unpack .../071-texlive-latex-recommended_2019.20200218-1_all.deb ... +#6 23.95 Unpacking texlive-latex-recommended (2019.20200218-1) ... +#6 25.28 Selecting previously unselected package texlive. +#6 25.29 Preparing to unpack .../072-texlive_2019.20200218-1_all.deb ... +#6 25.29 Unpacking texlive (2019.20200218-1) ... +#6 25.32 Selecting previously unselected package texlive-bibtex-extra. +#6 25.33 Preparing to unpack .../073-texlive-bibtex-extra_2019.202000218-1_all.deb ... +#6 25.33 Unpacking texlive-bibtex-extra (2019.202000218-1) ... +#6 30.19 Selecting previously unselected package libthai-data. +#6 30.19 Preparing to unpack .../074-libthai-data_0.1.28-3_all.deb ... +#6 30.19 Unpacking libthai-data (0.1.28-3) ... +#6 30.24 Selecting previously unselected package libdatrie1:amd64. +#6 30.24 Preparing to unpack .../075-libdatrie1_0.2.12-3_amd64.deb ... +#6 30.24 Unpacking libdatrie1:amd64 (0.2.12-3) ... +#6 30.27 Selecting previously unselected package libthai0:amd64. +#6 30.27 Preparing to unpack .../076-libthai0_0.1.28-3_amd64.deb ... +#6 30.28 Unpacking libthai0:amd64 (0.1.28-3) ... +#6 30.30 Selecting previously unselected package libsombok3:amd64. +#6 30.31 Preparing to unpack .../077-libsombok3_2.4.0-2_amd64.deb ... +#6 30.31 Unpacking libsombok3:amd64 (2.4.0-2) ... +#6 30.34 Selecting previously unselected package libmime-charset-perl. +#6 30.34 Preparing to unpack .../078-libmime-charset-perl_1.012.2-1_all.deb ... +#6 30.34 Unpacking libmime-charset-perl (1.012.2-1) ... +#6 30.37 Selecting previously unselected package libunicode-linebreak-perl. +#6 30.37 Preparing to unpack .../079-libunicode-linebreak-perl_0.0.20190101-1build1_amd64.deb ... +#6 30.37 Unpacking libunicode-linebreak-perl (0.0.20190101-1build1) ... +#6 30.41 Selecting previously unselected package texlive-extra-utils. +#6 30.41 Preparing to unpack .../080-texlive-extra-utils_2019.202000218-1_all.deb ... +#6 30.42 Unpacking texlive-extra-utils (2019.202000218-1) ... +#6 33.69 Selecting previously unselected package libapache-pom-java. +#6 33.69 Preparing to unpack .../081-libapache-pom-java_18-1_all.deb ... +#6 33.70 Unpacking libapache-pom-java (18-1) ... +#6 33.72 Selecting previously unselected package libcommons-parent-java. +#6 33.72 Preparing to unpack .../082-libcommons-parent-java_43-1_all.deb ... +#6 33.73 Unpacking libcommons-parent-java (43-1) ... +#6 33.75 Selecting previously unselected package libcommons-logging-java. +#6 33.75 Preparing to unpack .../083-libcommons-logging-java_1.2-2_all.deb ... +#6 33.76 Unpacking libcommons-logging-java (1.2-2) ... +#6 33.80 Selecting previously unselected package libfontbox-java. +#6 33.80 Preparing to unpack .../084-libfontbox-java_1%3a1.8.16-2_all.deb ... +#6 33.80 Unpacking libfontbox-java (1:1.8.16-2) ... +#6 33.84 Selecting previously unselected package libpdfbox-java. +#6 33.85 Preparing to unpack .../085-libpdfbox-java_1%3a1.8.16-2_all.deb ... +#6 33.85 Unpacking libpdfbox-java (1:1.8.16-2) ... +#6 34.21 Selecting previously unselected package preview-latex-style. +#6 34.21 Preparing to unpack .../086-preview-latex-style_11.91-2ubuntu2_all.deb ... +#6 34.21 Unpacking preview-latex-style (11.91-2ubuntu2) ... +#6 34.25 Selecting previously unselected package texlive-pictures. +#6 34.26 Preparing to unpack .../087-texlive-pictures_2019.20200218-1_all.deb ... +#6 34.26 Unpacking texlive-pictures (2019.20200218-1) ... +#6 34.84 Selecting previously unselected package texlive-latex-extra. +#6 34.85 Preparing to unpack .../088-texlive-latex-extra_2019.202000218-1_all.deb ... +#6 34.85 Unpacking texlive-latex-extra (2019.202000218-1) ... +#6 36.40 Selecting previously unselected package fonts-gfs-baskerville. +#6 36.41 Preparing to unpack .../089-fonts-gfs-baskerville_1.1-5_all.deb ... +#6 36.41 Unpacking fonts-gfs-baskerville (1.1-5) ... +#6 36.44 Selecting previously unselected package fonts-gfs-porson. +#6 36.44 Preparing to unpack .../090-fonts-gfs-porson_1.1-6_all.deb ... +#6 36.44 Unpacking fonts-gfs-porson (1.1-6) ... +#6 36.48 Selecting previously unselected package texlive-lang-greek. +#6 36.49 Preparing to unpack .../091-texlive-lang-greek_2019.20200218-1_all.deb ... +#6 36.50 Unpacking texlive-lang-greek (2019.20200218-1) ... +#6 41.64 Selecting previously unselected package texlive-science. +#6 41.65 Preparing to unpack .../092-texlive-science_2019.202000218-1_all.deb ... +#6 41.65 Unpacking texlive-science (2019.202000218-1) ... +#6 42.71 Selecting previously unselected package libxslt1.1:amd64. +#6 42.72 Preparing to unpack .../093-libxslt1.1_1.1.34-4ubuntu0.20.04.1_amd64.deb ... +#6 42.75 Unpacking libxslt1.1:amd64 (1.1.34-4ubuntu0.20.04.1) ... +#6 42.90 Selecting previously unselected package xsltproc. +#6 42.90 Preparing to unpack .../094-xsltproc_1.1.34-4ubuntu0.20.04.1_amd64.deb ... +#6 42.91 Unpacking xsltproc (1.1.34-4ubuntu0.20.04.1) ... +#6 42.93 Selecting previously unselected package dblatex. +#6 42.94 Preparing to unpack .../095-dblatex_0.3.11py3-1_all.deb ... +#6 42.94 Unpacking dblatex (0.3.11py3-1) ... +#6 43.02 Selecting previously unselected package dblatex-doc. +#6 43.02 Preparing to unpack .../096-dblatex-doc_0.3.11py3-1_all.deb ... +#6 43.03 Unpacking dblatex-doc (0.3.11py3-1) ... +#6 43.14 Selecting previously unselected package docbook-xsl. +#6 43.14 Preparing to unpack .../097-docbook-xsl_1.79.1+dfsg-2_all.deb ... +#6 43.14 Unpacking docbook-xsl (1.79.1+dfsg-2) ... +#6 43.36 Selecting previously unselected package fonts-urw-base35. +#6 43.37 Preparing to unpack .../098-fonts-urw-base35_20170801.1-3_all.deb ... +#6 43.43 Unpacking fonts-urw-base35 (20170801.1-3) ... +#6 43.82 Selecting previously unselected package libgs9-common. +#6 43.83 Preparing to unpack .../099-libgs9-common_9.50~dfsg-5ubuntu4.14_all.deb ... +#6 43.83 Unpacking libgs9-common (9.50~dfsg-5ubuntu4.14) ... +#6 43.94 Selecting previously unselected package libavahi-common-data:amd64. +#6 43.94 Preparing to unpack .../100-libavahi-common-data_0.7-4ubuntu7.3_amd64.deb ... +#6 43.95 Unpacking libavahi-common-data:amd64 (0.7-4ubuntu7.3) ... +#6 43.97 Selecting previously unselected package libavahi-common3:amd64. +#6 43.98 Preparing to unpack .../101-libavahi-common3_0.7-4ubuntu7.3_amd64.deb ... +#6 43.98 Unpacking libavahi-common3:amd64 (0.7-4ubuntu7.3) ... +#6 44.01 Selecting previously unselected package libavahi-client3:amd64. +#6 44.01 Preparing to unpack .../102-libavahi-client3_0.7-4ubuntu7.3_amd64.deb ... +#6 44.01 Unpacking libavahi-client3:amd64 (0.7-4ubuntu7.3) ... +#6 44.04 Selecting previously unselected package libcups2:amd64. +#6 44.05 Preparing to unpack .../103-libcups2_2.3.1-9ubuntu1.9_amd64.deb ... +#6 44.05 Unpacking libcups2:amd64 (2.3.1-9ubuntu1.9) ... +#6 44.09 Selecting previously unselected package libidn11:amd64. +#6 44.10 Preparing to unpack .../104-libidn11_1.33-2.2ubuntu2_amd64.deb ... +#6 44.10 Unpacking libidn11:amd64 (1.33-2.2ubuntu2) ... +#6 44.13 Selecting previously unselected package libijs-0.35:amd64. +#6 44.13 Preparing to unpack .../105-libijs-0.35_0.35-15_amd64.deb ... +#6 44.14 Unpacking libijs-0.35:amd64 (0.35-15) ... +#6 44.16 Selecting previously unselected package libjbig2dec0:amd64. +#6 44.17 Preparing to unpack .../106-libjbig2dec0_0.18-1ubuntu1_amd64.deb ... +#6 44.17 Unpacking libjbig2dec0:amd64 (0.18-1ubuntu1) ... +#6 44.20 Selecting previously unselected package libjpeg-turbo8:amd64. +#6 44.20 Preparing to unpack .../107-libjpeg-turbo8_2.0.3-0ubuntu1.20.04.3_amd64.deb ... +#6 44.21 Unpacking libjpeg-turbo8:amd64 (2.0.3-0ubuntu1.20.04.3) ... +#6 44.24 Selecting previously unselected package libjpeg8:amd64. +#6 44.24 Preparing to unpack .../108-libjpeg8_8c-2ubuntu8_amd64.deb ... +#6 44.25 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... +#6 44.27 Selecting previously unselected package liblcms2-2:amd64. +#6 44.28 Preparing to unpack .../109-liblcms2-2_2.9-4_amd64.deb ... +#6 44.28 Unpacking liblcms2-2:amd64 (2.9-4) ... +#6 44.32 Selecting previously unselected package libopenjp2-7:amd64. +#6 44.32 Preparing to unpack .../110-libopenjp2-7_2.3.1-1ubuntu4.20.04.4_amd64.deb ... +#6 44.32 Unpacking libopenjp2-7:amd64 (2.3.1-1ubuntu4.20.04.4) ... +#6 44.36 Selecting previously unselected package libjbig0:amd64. +#6 44.37 Preparing to unpack .../111-libjbig0_2.1-3.1ubuntu0.20.04.1_amd64.deb ... +#6 44.37 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.20.04.1) ... +#6 44.40 Selecting previously unselected package libwebp6:amd64. +#6 44.40 Preparing to unpack .../112-libwebp6_0.6.1-2ubuntu0.20.04.3_amd64.deb ... +#6 44.40 Unpacking libwebp6:amd64 (0.6.1-2ubuntu0.20.04.3) ... +#6 44.45 Selecting previously unselected package libtiff5:amd64. +#6 44.45 Preparing to unpack .../113-libtiff5_4.1.0+git191117-2ubuntu0.20.04.14_amd64.deb ... +#6 44.45 Unpacking libtiff5:amd64 (4.1.0+git191117-2ubuntu0.20.04.14) ... +#6 44.50 Selecting previously unselected package libgs9:amd64. +#6 44.50 Preparing to unpack .../114-libgs9_9.50~dfsg-5ubuntu4.14_amd64.deb ... +#6 44.51 Unpacking libgs9:amd64 (9.50~dfsg-5ubuntu4.14) ... +#6 44.77 Selecting previously unselected package libwoff1:amd64. +#6 44.77 Preparing to unpack .../115-libwoff1_1.0.2-1build2_amd64.deb ... +#6 44.78 Unpacking libwoff1:amd64 (1.0.2-1build2) ... +#6 44.80 Selecting previously unselected package dvisvgm. +#6 44.81 Preparing to unpack .../116-dvisvgm_2.8.1-1build1_amd64.deb ... +#6 44.81 Unpacking dvisvgm (2.8.1-1build1) ... +#6 44.94 Selecting previously unselected package fonts-noto-mono. +#6 44.95 Preparing to unpack .../117-fonts-noto-mono_20200323-1build1~ubuntu20.04.1_all.deb ... +#6 44.95 Unpacking fonts-noto-mono (20200323-1build1~ubuntu20.04.1) ... +#6 44.99 Selecting previously unselected package fonts-texgyre. +#6 44.99 Preparing to unpack .../118-fonts-texgyre_20180621-3_all.deb ... +#6 45.00 Unpacking fonts-texgyre (20180621-3) ... +#6 45.80 Selecting previously unselected package libcroco3:amd64. +#6 45.80 Preparing to unpack .../119-libcroco3_0.6.13-1ubuntu0.1_amd64.deb ... +#6 45.80 Unpacking libcroco3:amd64 (0.6.13-1ubuntu0.1) ... +#6 45.83 Selecting previously unselected package gettext. +#6 45.84 Preparing to unpack .../120-gettext_0.19.8.1-10build1_amd64.deb ... +#6 45.84 Unpacking gettext (0.19.8.1-10build1) ... +#6 45.95 Selecting previously unselected package ghostscript. +#6 45.95 Preparing to unpack .../121-ghostscript_9.50~dfsg-5ubuntu4.14_amd64.deb ... +#6 45.96 Unpacking ghostscript (9.50~dfsg-5ubuntu4.14) ... +#6 45.99 Selecting previously unselected package javascript-common. +#6 46.00 Preparing to unpack .../122-javascript-common_11_all.deb ... +#6 46.01 Unpacking javascript-common (11) ... +#6 46.03 Selecting previously unselected package libalgorithm-c3-perl. +#6 46.04 Preparing to unpack .../123-libalgorithm-c3-perl_0.10-1_all.deb ... +#6 46.04 Unpacking libalgorithm-c3-perl (0.10-1) ... +#6 46.06 Selecting previously unselected package libb-hooks-op-check-perl. +#6 46.07 Preparing to unpack .../124-libb-hooks-op-check-perl_0.22-1build2_amd64.deb ... +#6 46.07 Unpacking libb-hooks-op-check-perl (0.22-1build2) ... +#6 46.09 Selecting previously unselected package libdynaloader-functions-perl. +#6 46.10 Preparing to unpack .../125-libdynaloader-functions-perl_0.003-1_all.deb ... +#6 46.10 Unpacking libdynaloader-functions-perl (0.003-1) ... +#6 46.12 Selecting previously unselected package libdevel-callchecker-perl. +#6 46.13 Preparing to unpack .../126-libdevel-callchecker-perl_0.008-1ubuntu1_amd64.deb ... +#6 46.13 Unpacking libdevel-callchecker-perl (0.008-1ubuntu1) ... +#6 46.16 Selecting previously unselected package libparams-classify-perl. +#6 46.16 Preparing to unpack .../127-libparams-classify-perl_0.015-1build2_amd64.deb ... +#6 46.17 Unpacking libparams-classify-perl (0.015-1build2) ... +#6 46.19 Selecting previously unselected package libmodule-runtime-perl. +#6 46.19 Preparing to unpack .../128-libmodule-runtime-perl_0.016-1_all.deb ... +#6 46.20 Unpacking libmodule-runtime-perl (0.016-1) ... +#6 46.22 Selecting previously unselected package libtry-tiny-perl. +#6 46.23 Preparing to unpack .../129-libtry-tiny-perl_0.30-1_all.deb ... +#6 46.23 Unpacking libtry-tiny-perl (0.30-1) ... +#6 46.25 Selecting previously unselected package libmodule-implementation-perl. +#6 46.26 Preparing to unpack .../130-libmodule-implementation-perl_0.09-1_all.deb ... +#6 46.26 Unpacking libmodule-implementation-perl (0.09-1) ... +#6 46.28 Selecting previously unselected package libsub-exporter-progressive-perl. +#6 46.28 Preparing to unpack .../131-libsub-exporter-progressive-perl_0.001013-1_all.deb ... +#6 46.29 Unpacking libsub-exporter-progressive-perl (0.001013-1) ... +#6 46.31 Selecting previously unselected package libvariable-magic-perl. +#6 46.31 Preparing to unpack .../132-libvariable-magic-perl_0.62-1build2_amd64.deb ... +#6 46.32 Unpacking libvariable-magic-perl (0.62-1build2) ... +#6 46.34 Selecting previously unselected package libb-hooks-endofscope-perl. +#6 46.34 Preparing to unpack .../133-libb-hooks-endofscope-perl_0.24-1_all.deb ... +#6 46.35 Unpacking libb-hooks-endofscope-perl (0.24-1) ... +#6 46.37 Selecting previously unselected package libbz2-dev:amd64. +#6 46.38 Preparing to unpack .../134-libbz2-dev_1.0.8-2_amd64.deb ... +#6 46.38 Unpacking libbz2-dev:amd64 (1.0.8-2) ... +#6 46.40 Selecting previously unselected package libcap-dev:amd64. +#6 46.41 Preparing to unpack .../135-libcap-dev_1%3a2.32-1ubuntu0.1_amd64.deb ... +#6 46.41 Unpacking libcap-dev:amd64 (1:2.32-1ubuntu0.1) ... +#6 46.44 Selecting previously unselected package libcap-ng-dev. +#6 46.44 Preparing to unpack .../136-libcap-ng-dev_0.7.9-2.1build1_amd64.deb ... +#6 46.44 Unpacking libcap-ng-dev (0.7.9-2.1build1) ... +#6 46.47 Selecting previously unselected package libclass-c3-perl. +#6 46.47 Preparing to unpack .../137-libclass-c3-perl_0.34-1_all.deb ... +#6 46.47 Unpacking libclass-c3-perl (0.34-1) ... +#6 46.50 Selecting previously unselected package libclass-c3-xs-perl. +#6 46.50 Preparing to unpack .../138-libclass-c3-xs-perl_0.14-1build5_amd64.deb ... +#6 46.50 Unpacking libclass-c3-xs-perl (0.14-1build5) ... +#6 46.53 Selecting previously unselected package libclass-data-inheritable-perl. +#6 46.53 Preparing to unpack .../139-libclass-data-inheritable-perl_0.08-3_all.deb ... +#6 46.53 Unpacking libclass-data-inheritable-perl (0.08-3) ... +#6 46.56 Selecting previously unselected package libclass-method-modifiers-perl. +#6 46.56 Preparing to unpack .../140-libclass-method-modifiers-perl_2.13-1_all.deb ... +#6 46.57 Unpacking libclass-method-modifiers-perl (2.13-1) ... +#6 46.59 Selecting previously unselected package libclass-xsaccessor-perl. +#6 46.59 Preparing to unpack .../141-libclass-xsaccessor-perl_1.19-3build3_amd64.deb ... +#6 46.60 Unpacking libclass-xsaccessor-perl (1.19-3build3) ... +#6 46.62 Selecting previously unselected package libdata-dump-perl. +#6 46.63 Preparing to unpack .../142-libdata-dump-perl_1.23-1_all.deb ... +#6 46.63 Unpacking libdata-dump-perl (1.23-1) ... +#6 46.65 Selecting previously unselected package libparams-util-perl. +#6 46.66 Preparing to unpack .../143-libparams-util-perl_1.07-3build5_amd64.deb ... +#6 46.66 Unpacking libparams-util-perl (1.07-3build5) ... +#6 46.69 Selecting previously unselected package libsub-install-perl. +#6 46.69 Preparing to unpack .../144-libsub-install-perl_0.928-1_all.deb ... +#6 46.69 Unpacking libsub-install-perl (0.928-1) ... +#6 46.72 Selecting previously unselected package libdata-optlist-perl. +#6 46.72 Preparing to unpack .../145-libdata-optlist-perl_0.110-1_all.deb ... +#6 46.73 Unpacking libdata-optlist-perl (0.110-1) ... +#6 46.75 Selecting previously unselected package libpadwalker-perl. +#6 46.75 Preparing to unpack .../146-libpadwalker-perl_2.3-1build2_amd64.deb ... +#6 46.76 Unpacking libpadwalker-perl (2.3-1build2) ... +#6 46.78 Selecting previously unselected package libdevel-caller-perl. +#6 46.78 Preparing to unpack .../147-libdevel-caller-perl_2.06-2build2_amd64.deb ... +#6 46.78 Unpacking libdevel-caller-perl (2.06-2build2) ... +#6 46.81 Selecting previously unselected package libdevel-globaldestruction-perl. +#6 46.81 Preparing to unpack .../148-libdevel-globaldestruction-perl_0.14-1_all.deb ... +#6 46.81 Unpacking libdevel-globaldestruction-perl (0.14-1) ... +#6 46.84 Selecting previously unselected package libdevel-lexalias-perl. +#6 46.84 Preparing to unpack .../149-libdevel-lexalias-perl_0.05-2build2_amd64.deb ... +#6 46.84 Unpacking libdevel-lexalias-perl (0.05-2build2) ... +#6 46.86 Selecting previously unselected package libdevel-stacktrace-perl. +#6 46.87 Preparing to unpack .../150-libdevel-stacktrace-perl_2.0400-1_all.deb ... +#6 46.87 Unpacking libdevel-stacktrace-perl (2.0400-1) ... +#6 46.89 Selecting previously unselected package libdist-checkconflicts-perl. +#6 46.90 Preparing to unpack .../151-libdist-checkconflicts-perl_0.11-1_all.deb ... +#6 46.90 Unpacking libdist-checkconflicts-perl (0.11-1) ... +#6 46.93 Selecting previously unselected package libdrm-amdgpu1:amd64. +#6 46.93 Preparing to unpack .../152-libdrm-amdgpu1_2.4.107-8ubuntu1~20.04.2_amd64.deb ... +#6 46.93 Unpacking libdrm-amdgpu1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 46.96 Selecting previously unselected package libpciaccess0:amd64. +#6 46.97 Preparing to unpack .../153-libpciaccess0_0.16-0ubuntu1_amd64.deb ... +#6 46.97 Unpacking libpciaccess0:amd64 (0.16-0ubuntu1) ... +#6 47.00 Selecting previously unselected package libdrm-intel1:amd64. +#6 47.00 Preparing to unpack .../154-libdrm-intel1_2.4.107-8ubuntu1~20.04.2_amd64.deb ... +#6 47.00 Unpacking libdrm-intel1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 47.03 Selecting previously unselected package libdrm-nouveau2:amd64. +#6 47.04 Preparing to unpack .../155-libdrm-nouveau2_2.4.107-8ubuntu1~20.04.2_amd64.deb ... +#6 47.04 Unpacking libdrm-nouveau2:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 47.07 Selecting previously unselected package libdrm-radeon1:amd64. +#6 47.07 Preparing to unpack .../156-libdrm-radeon1_2.4.107-8ubuntu1~20.04.2_amd64.deb ... +#6 47.07 Unpacking libdrm-radeon1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 47.10 Selecting previously unselected package libemail-date-format-perl. +#6 47.10 Preparing to unpack .../157-libemail-date-format-perl_1.005-1_all.deb ... +#6 47.11 Unpacking libemail-date-format-perl (1.005-1) ... +#6 47.13 Selecting previously unselected package libencode-locale-perl. +#6 47.13 Preparing to unpack .../158-libencode-locale-perl_1.05-1_all.deb ... +#6 47.13 Unpacking libencode-locale-perl (1.05-1) ... +#6 47.16 Selecting previously unselected package libsub-exporter-perl. +#6 47.16 Preparing to unpack .../159-libsub-exporter-perl_0.987-1_all.deb ... +#6 47.16 Unpacking libsub-exporter-perl (0.987-1) ... +#6 47.19 Selecting previously unselected package libeval-closure-perl. +#6 47.19 Preparing to unpack .../160-libeval-closure-perl_0.14-1_all.deb ... +#6 47.20 Unpacking libeval-closure-perl (0.14-1) ... +#6 47.22 Selecting previously unselected package libexception-class-perl. +#6 47.22 Preparing to unpack .../161-libexception-class-perl_1.44-1_all.deb ... +#6 47.22 Unpacking libexception-class-perl (1.44-1) ... +#6 47.25 Selecting previously unselected package libipc-system-simple-perl. +#6 47.25 Preparing to unpack .../162-libipc-system-simple-perl_1.26-1_all.deb ... +#6 47.26 Unpacking libipc-system-simple-perl (1.26-1) ... +#6 47.28 Selecting previously unselected package libfile-basedir-perl. +#6 47.28 Preparing to unpack .../163-libfile-basedir-perl_0.08-1_all.deb ... +#6 47.29 Unpacking libfile-basedir-perl (0.08-1) ... +#6 47.31 Selecting previously unselected package liburi-perl. +#6 47.31 Preparing to unpack .../164-liburi-perl_1.76-2_all.deb ... +#6 47.32 Unpacking liburi-perl (1.76-2) ... +#6 47.35 Selecting previously unselected package libfile-desktopentry-perl. +#6 47.35 Preparing to unpack .../165-libfile-desktopentry-perl_0.22-1_all.deb ... +#6 47.35 Unpacking libfile-desktopentry-perl (0.22-1) ... +#6 47.38 Selecting previously unselected package libfile-which-perl. +#6 47.38 Preparing to unpack .../166-libfile-which-perl_1.23-1_all.deb ... +#6 47.38 Unpacking libfile-which-perl (1.23-1) ... +#6 47.41 Selecting previously unselected package libfile-homedir-perl. +#6 47.41 Preparing to unpack .../167-libfile-homedir-perl_1.004-1_all.deb ... +#6 47.43 Unpacking libfile-homedir-perl (1.004-1) ... +#6 47.45 Selecting previously unselected package libtimedate-perl. +#6 47.46 Preparing to unpack .../168-libtimedate-perl_2.3200-1_all.deb ... +#6 47.46 Unpacking libtimedate-perl (2.3200-1) ... +#6 47.49 Selecting previously unselected package libhttp-date-perl. +#6 47.49 Preparing to unpack .../169-libhttp-date-perl_6.05-1_all.deb ... +#6 47.49 Unpacking libhttp-date-perl (6.05-1) ... +#6 47.52 Selecting previously unselected package libfile-listing-perl. +#6 47.52 Preparing to unpack .../170-libfile-listing-perl_6.04-1_all.deb ... +#6 47.52 Unpacking libfile-listing-perl (6.04-1) ... +#6 47.54 Selecting previously unselected package libfile-mimeinfo-perl. +#6 47.55 Preparing to unpack .../171-libfile-mimeinfo-perl_0.29-1_all.deb ... +#6 47.55 Unpacking libfile-mimeinfo-perl (0.29-1) ... +#6 47.59 Selecting previously unselected package libfl2:amd64. +#6 47.59 Preparing to unpack .../172-libfl2_2.6.4-6.2_amd64.deb ... +#6 47.59 Unpacking libfl2:amd64 (2.6.4-6.2) ... +#6 47.62 Selecting previously unselected package libfl-dev:amd64. +#6 47.62 Preparing to unpack .../173-libfl-dev_2.6.4-6.2_amd64.deb ... +#6 47.63 Unpacking libfl-dev:amd64 (2.6.4-6.2) ... +#6 47.65 Selecting previously unselected package libfont-afm-perl. +#6 47.66 Preparing to unpack .../174-libfont-afm-perl_1.20-2_all.deb ... +#6 47.66 Unpacking libfont-afm-perl (1.20-2) ... +#6 47.69 Selecting previously unselected package libfontenc1:amd64. +#6 47.70 Preparing to unpack .../175-libfontenc1_1%3a1.1.4-0ubuntu1_amd64.deb ... +#6 47.70 Unpacking libfontenc1:amd64 (1:1.1.4-0ubuntu1) ... +#6 47.73 Selecting previously unselected package libglapi-mesa:amd64. +#6 47.73 Preparing to unpack .../176-libglapi-mesa_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ... +#6 47.73 Unpacking libglapi-mesa:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 47.76 Selecting previously unselected package libllvm12:amd64. +#6 47.77 Preparing to unpack .../177-libllvm12_1%3a12.0.0-3ubuntu1~20.04.5_amd64.deb ... +#6 47.77 Unpacking libllvm12:amd64 (1:12.0.0-3ubuntu1~20.04.5) ... +#6 49.76 Selecting previously unselected package libsensors-config. +#6 49.76 Preparing to unpack .../178-libsensors-config_1%3a3.6.0-2ubuntu1.1_all.deb ... +#6 49.76 Unpacking libsensors-config (1:3.6.0-2ubuntu1.1) ... +#6 49.79 Selecting previously unselected package libsensors5:amd64. +#6 49.80 Preparing to unpack .../179-libsensors5_1%3a3.6.0-2ubuntu1.1_amd64.deb ... +#6 49.83 Unpacking libsensors5:amd64 (1:3.6.0-2ubuntu1.1) ... +#6 49.86 Selecting previously unselected package libvulkan1:amd64. +#6 49.86 Preparing to unpack .../180-libvulkan1_1.2.131.2-1_amd64.deb ... +#6 49.87 Unpacking libvulkan1:amd64 (1.2.131.2-1) ... +#6 49.90 Selecting previously unselected package libgl1-mesa-dri:amd64. +#6 49.91 Preparing to unpack .../181-libgl1-mesa-dri_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ... +#6 49.92 Unpacking libgl1-mesa-dri:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 51.02 Selecting previously unselected package libglib2.0-bin. +#6 51.02 Preparing to unpack .../182-libglib2.0-bin_2.64.6-1~ubuntu20.04.8_amd64.deb ... +#6 51.03 Unpacking libglib2.0-bin (2.64.6-1~ubuntu20.04.8) ... +#6 51.06 Selecting previously unselected package libffi-dev:amd64. +#6 51.06 Preparing to unpack .../183-libffi-dev_3.3-4_amd64.deb ... +#6 51.06 Unpacking libffi-dev:amd64 (3.3-4) ... +#6 51.09 Selecting previously unselected package python3-lib2to3. +#6 51.10 Preparing to unpack .../184-python3-lib2to3_3.8.10-0ubuntu1~20.04_all.deb ... +#6 51.10 Unpacking python3-lib2to3 (3.8.10-0ubuntu1~20.04) ... +#6 51.15 Selecting previously unselected package python3-distutils. +#6 51.15 Preparing to unpack .../185-python3-distutils_3.8.10-0ubuntu1~20.04_all.deb ... +#6 51.16 Unpacking python3-distutils (3.8.10-0ubuntu1~20.04) ... +#6 51.20 Selecting previously unselected package libglib2.0-dev-bin. +#6 51.21 Preparing to unpack .../186-libglib2.0-dev-bin_2.64.6-1~ubuntu20.04.8_amd64.deb ... +#6 51.21 Unpacking libglib2.0-dev-bin (2.64.6-1~ubuntu20.04.8) ... +#6 51.25 Selecting previously unselected package uuid-dev:amd64. +#6 51.25 Preparing to unpack .../187-uuid-dev_2.34-0.1ubuntu9.6_amd64.deb ... +#6 51.25 Unpacking uuid-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 51.28 Selecting previously unselected package libblkid-dev:amd64. +#6 51.29 Preparing to unpack .../188-libblkid-dev_2.34-0.1ubuntu9.6_amd64.deb ... +#6 51.30 Unpacking libblkid-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 51.34 Selecting previously unselected package libmount-dev:amd64. +#6 51.34 Preparing to unpack .../189-libmount-dev_2.34-0.1ubuntu9.6_amd64.deb ... +#6 51.35 Unpacking libmount-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 51.39 Selecting previously unselected package libpcre16-3:amd64. +#6 51.40 Preparing to unpack .../190-libpcre16-3_2%3a8.39-12ubuntu0.1_amd64.deb ... +#6 51.40 Unpacking libpcre16-3:amd64 (2:8.39-12ubuntu0.1) ... +#6 51.61 Selecting previously unselected package libpcre32-3:amd64. +#6 51.62 Preparing to unpack .../191-libpcre32-3_2%3a8.39-12ubuntu0.1_amd64.deb ... +#6 51.62 Unpacking libpcre32-3:amd64 (2:8.39-12ubuntu0.1) ... +#6 51.66 Selecting previously unselected package libpcrecpp0v5:amd64. +#6 51.66 Preparing to unpack .../192-libpcrecpp0v5_2%3a8.39-12ubuntu0.1_amd64.deb ... +#6 51.67 Unpacking libpcrecpp0v5:amd64 (2:8.39-12ubuntu0.1) ... +#6 51.69 Selecting previously unselected package libpcre3-dev:amd64. +#6 51.70 Preparing to unpack .../193-libpcre3-dev_2%3a8.39-12ubuntu0.1_amd64.deb ... +#6 51.70 Unpacking libpcre3-dev:amd64 (2:8.39-12ubuntu0.1) ... +#6 51.78 Selecting previously unselected package libsepol1-dev:amd64. +#6 51.78 Preparing to unpack .../194-libsepol1-dev_3.0-1ubuntu0.1_amd64.deb ... +#6 51.79 Unpacking libsepol1-dev:amd64 (3.0-1ubuntu0.1) ... +#6 51.85 Selecting previously unselected package libpcre2-16-0:amd64. +#6 51.86 Preparing to unpack .../195-libpcre2-16-0_10.34-7ubuntu0.1_amd64.deb ... +#6 51.86 Unpacking libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... +#6 51.90 Selecting previously unselected package libpcre2-32-0:amd64. +#6 51.91 Preparing to unpack .../196-libpcre2-32-0_10.34-7ubuntu0.1_amd64.deb ... +#6 51.91 Unpacking libpcre2-32-0:amd64 (10.34-7ubuntu0.1) ... +#6 51.96 Selecting previously unselected package libpcre2-posix2:amd64. +#6 51.96 Preparing to unpack .../197-libpcre2-posix2_10.34-7ubuntu0.1_amd64.deb ... +#6 51.96 Unpacking libpcre2-posix2:amd64 (10.34-7ubuntu0.1) ... +#6 51.99 Selecting previously unselected package libpcre2-dev:amd64. +#6 51.99 Preparing to unpack .../198-libpcre2-dev_10.34-7ubuntu0.1_amd64.deb ... +#6 52.00 Unpacking libpcre2-dev:amd64 (10.34-7ubuntu0.1) ... +#6 52.09 Selecting previously unselected package libselinux1-dev:amd64. +#6 52.09 Preparing to unpack .../199-libselinux1-dev_3.0-1build2_amd64.deb ... +#6 52.09 Unpacking libselinux1-dev:amd64 (3.0-1build2) ... +#6 52.14 Selecting previously unselected package pkg-config. +#6 52.15 Preparing to unpack .../200-pkg-config_0.29.1-0ubuntu4_amd64.deb ... +#6 52.15 Unpacking pkg-config (0.29.1-0ubuntu4) ... +#6 52.17 Selecting previously unselected package zlib1g-dev:amd64. +#6 52.18 Preparing to unpack .../201-zlib1g-dev_1%3a1.2.11.dfsg-2ubuntu1.5_amd64.deb ... +#6 52.18 Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu1.5) ... +#6 52.22 Selecting previously unselected package libglib2.0-dev:amd64. +#6 52.22 Preparing to unpack .../202-libglib2.0-dev_2.64.6-1~ubuntu20.04.8_amd64.deb ... +#6 52.23 Unpacking libglib2.0-dev:amd64 (2.64.6-1~ubuntu20.04.8) ... +#6 52.45 Selecting previously unselected package libx11-xcb1:amd64. +#6 52.46 Preparing to unpack .../203-libx11-xcb1_2%3a1.6.9-2ubuntu1.6_amd64.deb ... +#6 52.46 Unpacking libx11-xcb1:amd64 (2:1.6.9-2ubuntu1.6) ... +#6 52.49 Selecting previously unselected package libxcb-dri2-0:amd64. +#6 52.49 Preparing to unpack .../204-libxcb-dri2-0_1.14-2_amd64.deb ... +#6 52.49 Unpacking libxcb-dri2-0:amd64 (1.14-2) ... +#6 52.52 Selecting previously unselected package libxcb-dri3-0:amd64. +#6 52.52 Preparing to unpack .../205-libxcb-dri3-0_1.14-2_amd64.deb ... +#6 52.53 Unpacking libxcb-dri3-0:amd64 (1.14-2) ... +#6 52.55 Selecting previously unselected package libxcb-glx0:amd64. +#6 52.56 Preparing to unpack .../206-libxcb-glx0_1.14-2_amd64.deb ... +#6 52.56 Unpacking libxcb-glx0:amd64 (1.14-2) ... +#6 52.59 Selecting previously unselected package libxcb-present0:amd64. +#6 52.60 Preparing to unpack .../207-libxcb-present0_1.14-2_amd64.deb ... +#6 52.60 Unpacking libxcb-present0:amd64 (1.14-2) ... +#6 52.63 Selecting previously unselected package libxcb-sync1:amd64. +#6 52.63 Preparing to unpack .../208-libxcb-sync1_1.14-2_amd64.deb ... +#6 52.64 Unpacking libxcb-sync1:amd64 (1.14-2) ... +#6 52.66 Selecting previously unselected package libxcb-xfixes0:amd64. +#6 52.67 Preparing to unpack .../209-libxcb-xfixes0_1.14-2_amd64.deb ... +#6 52.67 Unpacking libxcb-xfixes0:amd64 (1.14-2) ... +#6 52.70 Selecting previously unselected package libxfixes3:amd64. +#6 52.70 Preparing to unpack .../210-libxfixes3_1%3a5.0.3-2_amd64.deb ... +#6 52.70 Unpacking libxfixes3:amd64 (1:5.0.3-2) ... +#6 52.73 Selecting previously unselected package libxshmfence1:amd64. +#6 52.73 Preparing to unpack .../211-libxshmfence1_1.3-1_amd64.deb ... +#6 52.74 Unpacking libxshmfence1:amd64 (1.3-1) ... +#6 52.76 Selecting previously unselected package libxxf86vm1:amd64. +#6 52.77 Preparing to unpack .../212-libxxf86vm1_1%3a1.1.4-1build1_amd64.deb ... +#6 52.77 Unpacking libxxf86vm1:amd64 (1:1.1.4-1build1) ... +#6 52.80 Selecting previously unselected package libglx-mesa0:amd64. +#6 52.80 Preparing to unpack .../213-libglx-mesa0_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ... +#6 52.81 Unpacking libglx-mesa0:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 52.85 Selecting previously unselected package libhtml-tagset-perl. +#6 52.85 Preparing to unpack .../214-libhtml-tagset-perl_3.20-4_all.deb ... +#6 52.86 Unpacking libhtml-tagset-perl (3.20-4) ... +#6 52.88 Selecting previously unselected package libhtml-parser-perl. +#6 52.88 Preparing to unpack .../215-libhtml-parser-perl_3.72-5_amd64.deb ... +#6 52.89 Unpacking libhtml-parser-perl (3.72-5) ... +#6 52.92 Selecting previously unselected package libio-html-perl. +#6 52.92 Preparing to unpack .../216-libio-html-perl_1.001-1_all.deb ... +#6 52.92 Unpacking libio-html-perl (1.001-1) ... +#6 52.95 Selecting previously unselected package liblwp-mediatypes-perl. +#6 52.95 Preparing to unpack .../217-liblwp-mediatypes-perl_6.04-1_all.deb ... +#6 52.95 Unpacking liblwp-mediatypes-perl (6.04-1) ... +#6 52.98 Selecting previously unselected package libhttp-message-perl. +#6 52.98 Preparing to unpack .../218-libhttp-message-perl_6.22-1_all.deb ... +#6 52.99 Unpacking libhttp-message-perl (6.22-1) ... +#6 53.02 Selecting previously unselected package libhtml-form-perl. +#6 53.02 Preparing to unpack .../219-libhtml-form-perl_6.07-1_all.deb ... +#6 53.03 Unpacking libhtml-form-perl (6.07-1) ... +#6 53.05 Selecting previously unselected package libhtml-tree-perl. +#6 53.06 Preparing to unpack .../220-libhtml-tree-perl_5.07-2_all.deb ... +#6 53.06 Unpacking libhtml-tree-perl (5.07-2) ... +#6 53.10 Selecting previously unselected package libhtml-format-perl. +#6 53.10 Preparing to unpack .../221-libhtml-format-perl_2.12-1_all.deb ... +#6 53.11 Unpacking libhtml-format-perl (2.12-1) ... +#6 53.13 Selecting previously unselected package libhttp-cookies-perl. +#6 53.14 Preparing to unpack .../222-libhttp-cookies-perl_6.08-1_all.deb ... +#6 53.14 Unpacking libhttp-cookies-perl (6.08-1) ... +#6 53.18 Selecting previously unselected package libhttp-daemon-perl. +#6 53.18 Preparing to unpack .../223-libhttp-daemon-perl_6.06-1ubuntu0.1_all.deb ... +#6 53.19 Unpacking libhttp-daemon-perl (6.06-1ubuntu0.1) ... +#6 53.21 Selecting previously unselected package libhttp-negotiate-perl. +#6 53.22 Preparing to unpack .../224-libhttp-negotiate-perl_6.01-1_all.deb ... +#6 53.22 Unpacking libhttp-negotiate-perl (6.01-1) ... +#6 53.24 Selecting previously unselected package perl-openssl-defaults:amd64. +#6 53.25 Preparing to unpack .../225-perl-openssl-defaults_4_amd64.deb ... +#6 53.25 Unpacking perl-openssl-defaults:amd64 (4) ... +#6 53.27 Selecting previously unselected package libnet-ssleay-perl. +#6 53.28 Preparing to unpack .../226-libnet-ssleay-perl_1.88-2ubuntu1_amd64.deb ... +#6 53.28 Unpacking libnet-ssleay-perl (1.88-2ubuntu1) ... +#6 53.34 Selecting previously unselected package libio-socket-ssl-perl. +#6 53.35 Preparing to unpack .../227-libio-socket-ssl-perl_2.067-1_all.deb ... +#6 53.35 Unpacking libio-socket-ssl-perl (2.067-1) ... +#6 53.39 Selecting previously unselected package libio-stringy-perl. +#6 53.39 Preparing to unpack .../228-libio-stringy-perl_2.111-3_all.deb ... +#6 53.40 Unpacking libio-stringy-perl (2.111-3) ... +#6 53.42 Selecting previously unselected package libipc-shareable-perl. +#6 53.43 Preparing to unpack .../229-libipc-shareable-perl_0.61-2_all.deb ... +#6 53.43 Unpacking libipc-shareable-perl (0.61-2) ... +#6 53.45 Selecting previously unselected package libjs-jquery. +#6 53.46 Preparing to unpack .../230-libjs-jquery_3.3.1~dfsg-3_all.deb ... +#6 53.46 Unpacking libjs-jquery (3.3.1~dfsg-3) ... +#6 53.51 Selecting previously unselected package libpackage-stash-perl. +#6 53.51 Preparing to unpack .../231-libpackage-stash-perl_0.38-1_all.deb ... +#6 53.52 Unpacking libpackage-stash-perl (0.38-1) ... +#6 53.54 Selecting previously unselected package libsub-identify-perl. +#6 53.55 Preparing to unpack .../232-libsub-identify-perl_0.14-1build2_amd64.deb ... +#6 53.55 Unpacking libsub-identify-perl (0.14-1build2) ... +#6 53.57 Selecting previously unselected package libsub-name-perl. +#6 53.58 Preparing to unpack .../233-libsub-name-perl_0.26-1_amd64.deb ... +#6 53.58 Unpacking libsub-name-perl (0.26-1) ... +#6 53.60 Selecting previously unselected package libnamespace-clean-perl. +#6 53.61 Preparing to unpack .../234-libnamespace-clean-perl_0.27-1_all.deb ... +#6 53.61 Unpacking libnamespace-clean-perl (0.27-1) ... +#6 53.63 Selecting previously unselected package libnamespace-autoclean-perl. +#6 53.64 Preparing to unpack .../235-libnamespace-autoclean-perl_0.29-1_all.deb ... +#6 53.64 Unpacking libnamespace-autoclean-perl (0.29-1) ... +#6 53.66 Selecting previously unselected package libparams-validationcompiler-perl. +#6 53.67 Preparing to unpack .../236-libparams-validationcompiler-perl_0.30-1_all.deb ... +#6 53.67 Unpacking libparams-validationcompiler-perl (0.30-1) ... +#6 53.70 Selecting previously unselected package libmro-compat-perl. +#6 53.70 Preparing to unpack .../237-libmro-compat-perl_0.13-1_all.deb ... +#6 53.70 Unpacking libmro-compat-perl (0.13-1) ... +#6 53.73 Selecting previously unselected package librole-tiny-perl. +#6 53.73 Preparing to unpack .../238-librole-tiny-perl_2.001004-1_all.deb ... +#6 53.74 Unpacking librole-tiny-perl (2.001004-1) ... +#6 53.77 Selecting previously unselected package libsub-quote-perl. +#6 53.77 Preparing to unpack .../239-libsub-quote-perl_2.006006-1_all.deb ... +#6 53.77 Unpacking libsub-quote-perl (2.006006-1) ... +#6 53.80 Selecting previously unselected package libxstring-perl. +#6 53.80 Preparing to unpack .../240-libxstring-perl_0.002-2_amd64.deb ... +#6 53.81 Unpacking libxstring-perl (0.002-2) ... +#6 53.83 Selecting previously unselected package libspecio-perl. +#6 53.83 Preparing to unpack .../241-libspecio-perl_0.45-1_all.deb ... +#6 53.84 Unpacking libspecio-perl (0.45-1) ... +#6 53.87 Selecting previously unselected package liblog-dispatch-perl. +#6 53.88 Preparing to unpack .../242-liblog-dispatch-perl_2.69-1_all.deb ... +#6 53.88 Unpacking liblog-dispatch-perl (2.69-1) ... +#6 53.91 Selecting previously unselected package liblog-log4perl-perl. +#6 53.91 Preparing to unpack .../243-liblog-log4perl-perl_1.49-1_all.deb ... +#6 53.92 Unpacking liblog-log4perl-perl (1.49-1) ... +#6 53.97 Selecting previously unselected package libnet-http-perl. +#6 53.98 Preparing to unpack .../244-libnet-http-perl_6.19-1_all.deb ... +#6 53.98 Unpacking libnet-http-perl (6.19-1) ... +#6 54.01 Selecting previously unselected package libwww-robotrules-perl. +#6 54.01 Preparing to unpack .../245-libwww-robotrules-perl_6.02-1_all.deb ... +#6 54.01 Unpacking libwww-robotrules-perl (6.02-1) ... +#6 54.04 Selecting previously unselected package libwww-perl. +#6 54.04 Preparing to unpack .../246-libwww-perl_6.43-1_all.deb ... +#6 54.04 Unpacking libwww-perl (6.43-1) ... +#6 54.08 Selecting previously unselected package liblwp-protocol-https-perl. +#6 54.09 Preparing to unpack .../247-liblwp-protocol-https-perl_6.07-2ubuntu2_all.deb ... +#6 54.09 Unpacking liblwp-protocol-https-perl (6.07-2ubuntu2) ... +#6 54.11 Selecting previously unselected package libsys-hostname-long-perl. +#6 54.12 Preparing to unpack .../248-libsys-hostname-long-perl_1.5-1_all.deb ... +#6 54.12 Unpacking libsys-hostname-long-perl (1.5-1) ... +#6 54.15 Selecting previously unselected package libmail-sendmail-perl. +#6 54.15 Preparing to unpack .../249-libmail-sendmail-perl_0.80-1_all.deb ... +#6 54.15 Unpacking libmail-sendmail-perl (0.80-1) ... +#6 54.18 Selecting previously unselected package libnet-smtp-ssl-perl. +#6 54.18 Preparing to unpack .../250-libnet-smtp-ssl-perl_1.04-1_all.deb ... +#6 54.19 Unpacking libnet-smtp-ssl-perl (1.04-1) ... +#6 54.22 Selecting previously unselected package libmailtools-perl. +#6 54.23 Preparing to unpack .../251-libmailtools-perl_2.21-1_all.deb ... +#6 54.23 Unpacking libmailtools-perl (2.21-1) ... +#6 54.26 Selecting previously unselected package libmime-lite-perl. +#6 54.27 Preparing to unpack .../252-libmime-lite-perl_3.031-1_all.deb ... +#6 54.27 Unpacking libmime-lite-perl (3.031-1) ... +#6 54.30 Selecting previously unselected package libmime-types-perl. +#6 54.30 Preparing to unpack .../253-libmime-types-perl_2.17-1_all.deb ... +#6 54.31 Unpacking libmime-types-perl (2.17-1) ... +#6 54.33 Selecting previously unselected package libxml-parser-perl. +#6 54.34 Preparing to unpack .../254-libxml-parser-perl_2.46-1_amd64.deb ... +#6 54.34 Unpacking libxml-parser-perl (2.46-1) ... +#6 54.38 Selecting previously unselected package libxml-twig-perl. +#6 54.39 Preparing to unpack .../255-libxml-twig-perl_1%3a3.50-2_all.deb ... +#6 54.39 Unpacking libxml-twig-perl (1:3.50-2) ... +#6 54.43 Selecting previously unselected package libnet-dbus-perl. +#6 54.43 Preparing to unpack .../256-libnet-dbus-perl_1.2.0-1_amd64.deb ... +#6 54.43 Unpacking libnet-dbus-perl (1.2.0-1) ... +#6 54.47 Selecting previously unselected package libpackage-stash-xs-perl. +#6 54.48 Preparing to unpack .../257-libpackage-stash-xs-perl_0.29-1build1_amd64.deb ... +#6 54.48 Unpacking libpackage-stash-xs-perl (0.29-1build1) ... +#6 54.51 Selecting previously unselected package libreadonly-perl. +#6 54.51 Preparing to unpack .../258-libreadonly-perl_2.050-2_all.deb ... +#6 54.51 Unpacking libreadonly-perl (2.050-2) ... +#6 54.54 Selecting previously unselected package libref-util-perl. +#6 54.54 Preparing to unpack .../259-libref-util-perl_0.204-1_all.deb ... +#6 54.54 Unpacking libref-util-perl (0.204-1) ... +#6 54.57 Selecting previously unselected package libref-util-xs-perl. +#6 54.57 Preparing to unpack .../260-libref-util-xs-perl_0.117-1build2_amd64.deb ... +#6 54.57 Unpacking libref-util-xs-perl (0.117-1build2) ... +#6 54.60 Selecting previously unselected package rubygems-integration. +#6 54.60 Preparing to unpack .../261-rubygems-integration_1.16_all.deb ... +#6 54.60 Unpacking rubygems-integration (1.16) ... +#6 54.63 Selecting previously unselected package ruby2.7. +#6 54.63 Preparing to unpack .../262-ruby2.7_2.7.0-5ubuntu1.15_amd64.deb ... +#6 54.63 Unpacking ruby2.7 (2.7.0-5ubuntu1.15) ... +#6 54.67 Selecting previously unselected package ruby. +#6 54.67 Preparing to unpack .../263-ruby_1%3a2.7+1_amd64.deb ... +#6 54.68 Unpacking ruby (1:2.7+1) ... +#6 54.70 Selecting previously unselected package rake. +#6 54.70 Preparing to unpack .../264-rake_13.0.1-4_all.deb ... +#6 54.70 Unpacking rake (13.0.1-4) ... +#6 54.74 Selecting previously unselected package ruby-minitest. +#6 54.74 Preparing to unpack .../265-ruby-minitest_5.13.0-1_all.deb ... +#6 54.74 Unpacking ruby-minitest (5.13.0-1) ... +#6 54.77 Selecting previously unselected package ruby-net-telnet. +#6 54.77 Preparing to unpack .../266-ruby-net-telnet_0.1.1-2_all.deb ... +#6 54.78 Unpacking ruby-net-telnet (0.1.1-2) ... +#6 54.80 Selecting previously unselected package ruby-power-assert. +#6 54.80 Preparing to unpack .../267-ruby-power-assert_1.1.7-1_all.deb ... +#6 54.81 Unpacking ruby-power-assert (1.1.7-1) ... +#6 54.83 Selecting previously unselected package ruby-test-unit. +#6 54.84 Preparing to unpack .../268-ruby-test-unit_3.3.5-1_all.deb ... +#6 54.84 Unpacking ruby-test-unit (3.3.5-1) ... +#6 54.87 Selecting previously unselected package ruby-xmlrpc. +#6 54.88 Preparing to unpack .../269-ruby-xmlrpc_0.3.0-2_all.deb ... +#6 54.88 Unpacking ruby-xmlrpc (0.3.0-2) ... +#6 54.91 Selecting previously unselected package libruby2.7:amd64. +#6 54.92 Preparing to unpack .../270-libruby2.7_2.7.0-5ubuntu1.15_amd64.deb ... +#6 54.92 Unpacking libruby2.7:amd64 (2.7.0-5ubuntu1.15) ... +#6 56.32 Selecting previously unselected package libtcl8.6:amd64. +#6 56.33 Preparing to unpack .../271-libtcl8.6_8.6.10+dfsg-1_amd64.deb ... +#6 56.33 Unpacking libtcl8.6:amd64 (8.6.10+dfsg-1) ... +#6 56.47 Selecting previously unselected package libtie-ixhash-perl. +#6 56.48 Preparing to unpack .../272-libtie-ixhash-perl_1.23-2_all.deb ... +#6 56.48 Unpacking libtie-ixhash-perl (1.23-2) ... +#6 56.50 Selecting previously unselected package libxft2:amd64. +#6 56.51 Preparing to unpack .../273-libxft2_2.3.3-0ubuntu1_amd64.deb ... +#6 56.51 Unpacking libxft2:amd64 (2.3.3-0ubuntu1) ... +#6 56.54 Selecting previously unselected package libxss1:amd64. +#6 56.55 Preparing to unpack .../274-libxss1_1%3a1.2.3-1_amd64.deb ... +#6 56.55 Unpacking libxss1:amd64 (1:1.2.3-1) ... +#6 56.58 Selecting previously unselected package libtk8.6:amd64. +#6 56.59 Preparing to unpack .../275-libtk8.6_8.6.10-1_amd64.deb ... +#6 56.59 Unpacking libtk8.6:amd64 (8.6.10-1) ... +#6 56.69 Selecting previously unselected package libutempter0:amd64. +#6 56.69 Preparing to unpack .../276-libutempter0_1.1.6-4_amd64.deb ... +#6 56.70 Unpacking libutempter0:amd64 (1.1.6-4) ... +#6 56.73 Selecting previously unselected package libwayland-client0:amd64. +#6 56.73 Preparing to unpack .../277-libwayland-client0_1.18.0-1ubuntu0.1_amd64.deb ... +#6 56.73 Unpacking libwayland-client0:amd64 (1.18.0-1ubuntu0.1) ... +#6 56.76 Selecting previously unselected package libx11-protocol-perl. +#6 56.77 Preparing to unpack .../278-libx11-protocol-perl_0.56-7_all.deb ... +#6 56.77 Unpacking libx11-protocol-perl (0.56-7) ... +#6 56.81 Selecting previously unselected package libxcb-randr0:amd64. +#6 56.82 Preparing to unpack .../279-libxcb-randr0_1.14-2_amd64.deb ... +#6 56.82 Unpacking libxcb-randr0:amd64 (1.14-2) ... +#6 56.85 Selecting previously unselected package libxcb-shape0:amd64. +#6 56.85 Preparing to unpack .../280-libxcb-shape0_1.14-2_amd64.deb ... +#6 56.86 Unpacking libxcb-shape0:amd64 (1.14-2) ... +#6 56.88 Selecting previously unselected package libxcomposite1:amd64. +#6 56.89 Preparing to unpack .../281-libxcomposite1_1%3a0.4.5-1_amd64.deb ... +#6 56.89 Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... +#6 56.92 Selecting previously unselected package libxcursor1:amd64. +#6 56.92 Preparing to unpack .../282-libxcursor1_1%3a1.2.0-2_amd64.deb ... +#6 56.93 Unpacking libxcursor1:amd64 (1:1.2.0-2) ... +#6 56.95 Selecting previously unselected package libxinerama1:amd64. +#6 56.96 Preparing to unpack .../283-libxinerama1_2%3a1.1.4-2_amd64.deb ... +#6 56.96 Unpacking libxinerama1:amd64 (2:1.1.4-2) ... +#6 56.99 Selecting previously unselected package libxkbfile1:amd64. +#6 56.99 Preparing to unpack .../284-libxkbfile1_1%3a1.1.0-1_amd64.deb ... +#6 56.99 Unpacking libxkbfile1:amd64 (1:1.1.0-1) ... +#6 57.02 Selecting previously unselected package libxml-xpathengine-perl. +#6 57.03 Preparing to unpack .../285-libxml-xpathengine-perl_0.14-1_all.deb ... +#6 57.03 Unpacking libxml-xpathengine-perl (0.14-1) ... +#6 57.06 Selecting previously unselected package libxml2-utils. +#6 57.06 Preparing to unpack .../286-libxml2-utils_2.9.10+dfsg-5ubuntu0.20.04.7_amd64.deb ... +#6 57.07 Unpacking libxml2-utils (2.9.10+dfsg-5ubuntu0.20.04.7) ... +#6 57.10 Selecting previously unselected package libxrandr2:amd64. +#6 57.10 Preparing to unpack .../287-libxrandr2_2%3a1.5.2-0ubuntu1_amd64.deb ... +#6 57.10 Unpacking libxrandr2:amd64 (2:1.5.2-0ubuntu1) ... +#6 57.13 Selecting previously unselected package libxtst6:amd64. +#6 57.14 Preparing to unpack .../288-libxtst6_2%3a1.2.3-1_amd64.deb ... +#6 57.14 Unpacking libxtst6:amd64 (2:1.2.3-1) ... +#6 57.17 Selecting previously unselected package libxv1:amd64. +#6 57.17 Preparing to unpack .../289-libxv1_2%3a1.0.11-1_amd64.deb ... +#6 57.18 Unpacking libxv1:amd64 (2:1.0.11-1) ... +#6 57.20 Selecting previously unselected package libxxf86dga1:amd64. +#6 57.21 Preparing to unpack .../290-libxxf86dga1_2%3a1.1.5-0ubuntu1_amd64.deb ... +#6 57.21 Unpacking libxxf86dga1:amd64 (2:1.1.5-0ubuntu1) ... +#6 57.24 Selecting previously unselected package libyaml-tiny-perl. +#6 57.25 Preparing to unpack .../291-libyaml-tiny-perl_1.73-1_all.deb ... +#6 57.25 Unpacking libyaml-tiny-perl (1.73-1) ... +#6 57.28 Selecting previously unselected package xfonts-encodings. +#6 57.28 Preparing to unpack .../292-xfonts-encodings_1%3a1.0.5-0ubuntu1_all.deb ... +#6 57.28 Unpacking xfonts-encodings (1:1.0.5-0ubuntu1) ... +#6 57.36 Selecting previously unselected package xfonts-utils. +#6 57.37 Preparing to unpack .../293-xfonts-utils_1%3a7.7+6_amd64.deb ... +#6 57.37 Unpacking xfonts-utils (1:7.7+6) ... +#6 57.41 Selecting previously unselected package lmodern. +#6 57.42 Preparing to unpack .../294-lmodern_2.004.5-6_all.deb ... +#6 57.43 Unpacking lmodern (2.004.5-6) ... +#6 58.38 Selecting previously unselected package mesa-vulkan-drivers:amd64. +#6 58.39 Preparing to unpack .../295-mesa-vulkan-drivers_21.2.6-0ubuntu0.1~20.04.2_amd64.deb ... +#6 58.39 Unpacking mesa-vulkan-drivers:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 59.01 Selecting previously unselected package tcl8.6. +#6 59.02 Preparing to unpack .../296-tcl8.6_8.6.10+dfsg-1_amd64.deb ... +#6 59.02 Unpacking tcl8.6 (8.6.10+dfsg-1) ... +#6 59.05 Selecting previously unselected package tcl. +#6 59.05 Preparing to unpack .../297-tcl_8.6.9+1_amd64.deb ... +#6 59.06 Unpacking tcl (8.6.9+1) ... +#6 59.09 Selecting previously unselected package tex-gyre. +#6 59.10 Preparing to unpack .../298-tex-gyre_20180621-3_all.deb ... +#6 59.11 Unpacking tex-gyre (20180621-3) ... +#6 59.68 Selecting previously unselected package texlive-plain-generic. +#6 59.68 Preparing to unpack .../299-texlive-plain-generic_2019.202000218-1_all.deb ... +#6 59.69 Unpacking texlive-plain-generic (2019.202000218-1) ... +#6 62.36 Selecting previously unselected package tipa. +#6 62.37 Preparing to unpack .../300-tipa_2%3a1.3-20_all.deb ... +#6 62.38 Unpacking tipa (2:1.3-20) ... +#6 62.70 Selecting previously unselected package tk8.6. +#6 62.71 Preparing to unpack .../301-tk8.6_8.6.10-1_amd64.deb ... +#6 62.71 Unpacking tk8.6 (8.6.10-1) ... +#6 62.74 Selecting previously unselected package tk. +#6 62.75 Preparing to unpack .../302-tk_8.6.9+1_amd64.deb ... +#6 62.75 Unpacking tk (8.6.9+1) ... +#6 62.78 Selecting previously unselected package libglvnd0:amd64. +#6 62.79 Preparing to unpack .../303-libglvnd0_1.3.2-1~ubuntu0.20.04.2_amd64.deb ... +#6 62.79 Unpacking libglvnd0:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 62.83 Selecting previously unselected package libglx0:amd64. +#6 62.84 Preparing to unpack .../304-libglx0_1.3.2-1~ubuntu0.20.04.2_amd64.deb ... +#6 62.84 Unpacking libglx0:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 62.89 Selecting previously unselected package libgl1:amd64. +#6 62.89 Preparing to unpack .../305-libgl1_1.3.2-1~ubuntu0.20.04.2_amd64.deb ... +#6 62.89 Unpacking libgl1:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 62.94 Selecting previously unselected package x11-utils. +#6 62.94 Preparing to unpack .../306-x11-utils_7.7+5_amd64.deb ... +#6 62.95 Unpacking x11-utils (7.7+5) ... +#6 63.00 Selecting previously unselected package x11-xserver-utils. +#6 63.01 Preparing to unpack .../307-x11-xserver-utils_7.7+8_amd64.deb ... +#6 63.01 Unpacking x11-xserver-utils (7.7+8) ... +#6 63.05 Selecting previously unselected package xbitmaps. +#6 63.06 Preparing to unpack .../308-xbitmaps_1.1.1-2_all.deb ... +#6 63.06 Unpacking xbitmaps (1.1.1-2) ... +#6 63.10 Selecting previously unselected package xmlto. +#6 63.10 Preparing to unpack .../309-xmlto_0.0.28-2.1_amd64.deb ... +#6 63.11 Unpacking xmlto (0.0.28-2.1) ... +#6 63.15 Selecting previously unselected package xterm. +#6 63.15 Preparing to unpack .../310-xterm_353-1ubuntu1.20.04.2_amd64.deb ... +#6 63.16 Unpacking xterm (353-1ubuntu1.20.04.2) ... +#6 63.25 Selecting previously unselected package libaudit-dev:amd64. +#6 63.26 Preparing to unpack .../311-libaudit-dev_1%3a2.8.5-2ubuntu6_amd64.deb ... +#6 63.26 Unpacking libaudit-dev:amd64 (1:2.8.5-2ubuntu6) ... +#6 63.30 Selecting previously unselected package libauthen-sasl-perl. +#6 63.30 Preparing to unpack .../312-libauthen-sasl-perl_2.1600-1_all.deb ... +#6 63.31 Unpacking libauthen-sasl-perl (2.1600-1) ... +#6 63.37 Setting up libpcrecpp0v5:amd64 (2:8.39-12ubuntu0.1) ... +#6 63.38 Setting up libtext-iconv-perl (1.7-7) ... +#6 63.38 Setting up javascript-common (11) ... +#6 63.41 Setting up libgraphite2-3:amd64 (1.3.13-11build1) ... +#6 63.42 Setting up libxcb-dri3-0:amd64 (1.14-2) ... +#6 63.43 Setting up liblcms2-2:amd64 (2.9-4) ... +#6 63.43 Setting up libpixman-1-0:amd64 (0.38.4-0ubuntu2.1) ... +#6 63.44 Setting up bzip2-doc (1.0.8-2) ... +#6 63.45 Setting up libx11-xcb1:amd64 (2:1.6.9-2ubuntu1.6) ... +#6 63.46 Setting up libpciaccess0:amd64 (0.16-0ubuntu1) ... +#6 63.46 Setting up libfile-which-perl (1.23-1) ... +#6 63.47 Setting up libapparmor1:amd64 (2.13.3-7ubuntu5.4) ... +#6 63.48 Setting up libtie-ixhash-perl (1.23-2) ... +#6 63.49 Setting up fonts-lato (2.0-2) ... +#6 63.49 Setting up libxcb-xfixes0:amd64 (1.14-2) ... +#6 63.50 Setting up mime-support (3.64ubuntu1) ... +#6 63.54 Setting up fonts-noto-mono (20200323-1build1~ubuntu20.04.1) ... +#6 63.55 Setting up libxpm4:amd64 (1:3.5.12-1ubuntu0.20.04.2) ... +#6 63.56 Setting up libpcre16-3:amd64 (2:8.39-12ubuntu0.1) ... +#6 63.56 Setting up fonts-gfs-porson (1.1-6) ... +#6 63.57 Setting up libxi6:amd64 (2:1.7.10-0ubuntu1) ... +#6 63.58 Setting up libfont-afm-perl (1.20-2) ... +#6 63.59 Setting up libwoff1:amd64 (1.0.2-1build2) ... +#6 63.60 Setting up libxrender1:amd64 (1:0.9.10-1) ... +#6 63.60 Setting up libdynaloader-functions-perl (0.003-1) ... +#6 63.61 Setting up libdatrie1:amd64 (0.2.12-3) ... +#6 63.62 Setting up libclass-method-modifiers-perl (2.13-1) ... +#6 63.63 Setting up xdg-user-dirs (0.17-2ubuntu1) ... +#6 63.66 Setting up libref-util-xs-perl (0.117-1build2) ... +#6 63.66 Setting up ruby-power-assert (1.1.7-1) ... +#6 63.67 Setting up libmagic-mgc (1:5.38-4) ... +#6 63.68 Setting up libmime-types-perl (2.17-1) ... +#6 63.69 Setting up gawk (1:5.0.1+dfsg-1ubuntu0.1) ... +#6 63.71 Setting up libtexlua53:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 63.72 Setting up libxcb-render0:amd64 (1.14-2) ... +#6 63.73 Setting up libyaml-0-2:amd64 (0.2.2-1) ... +#6 63.74 Setting up libsub-identify-perl (0.14-1build2) ... +#6 63.74 Setting up libglib2.0-0:amd64 (2.64.6-1~ubuntu20.04.8) ... +#6 63.75 No schema files found: doing nothing. +#6 63.76 Setting up distro-info-data (0.43ubuntu1.17) ... +#6 63.77 Setting up libglvnd0:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 63.77 Setting up dblatex-doc (0.3.11py3-1) ... +#6 63.78 Setting up libicu66:amd64 (66.1-2ubuntu2.1) ... +#6 63.79 Setting up libio-stringy-perl (2.111-3) ... +#6 63.80 Setting up libhtml-tagset-perl (3.20-4) ... +#6 63.80 Setting up libijs-0.35:amd64 (0.35-15) ... +#6 63.81 Setting up libauthen-sasl-perl (2.1600-1) ... +#6 63.82 Setting up libxcb-glx0:amd64 (1.14-2) ... +#6 63.83 Setting up libtexluajit2:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 63.83 Setting up libfontbox-java (1:1.8.16-2) ... +#6 63.84 Setting up liblwp-mediatypes-perl (6.04-1) ... +#6 63.85 Setting up libxcb-shape0:amd64 (1.14-2) ... +#6 63.86 Setting up x11-common (1:7.7+19ubuntu14) ... +#6 64.03 update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults +#6 64.04 invoke-rc.d: could not determine current runlevel +#6 64.04 invoke-rc.d: policy-rc.d denied execution of start. +#6 64.05 Setting up libtry-tiny-perl (0.30-1) ... +#6 64.06 Setting up libsensors-config (1:3.6.0-2ubuntu1.1) ... +#6 64.07 Setting up libmagic1:amd64 (1:5.38-4) ... +#6 64.08 Setting up libsepol1-dev:amd64 (3.0-1ubuntu0.1) ... +#6 64.09 Setting up libxxf86dga1:amd64 (2:1.1.5-0ubuntu1) ... +#6 64.10 Setting up perl-openssl-defaults:amd64 (4) ... +#6 64.10 Setting up gettext-base (0.19.8.1-10build1) ... +#6 64.11 Setting up m4 (1.4.18-4) ... +#6 64.12 Setting up libpadwalker-perl (2.3-1build2) ... +#6 64.13 Setting up libencode-locale-perl (1.05-1) ... +#6 64.13 Setting up libipc-shareable-perl (0.61-2) ... +#6 64.14 Setting up rubygems-integration (1.16) ... +#6 64.15 Setting up libxcb-shm0:amd64 (1.14-2) ... +#6 64.16 Setting up libzzip-0-13:amd64 (0.13.62-3.2ubuntu1.1) ... +#6 64.16 Setting up file (1:5.38-4) ... +#6 64.17 Setting up fonts-urw-base35 (20170801.1-3) ... +#6 64.24 Setting up libxstring-perl (0.002-2) ... +#6 64.24 Setting up libffi-dev:amd64 (3.3-4) ... +#6 64.25 Setting up libyaml-tiny-perl (1.73-1) ... +#6 64.26 Setting up libclass-c3-xs-perl (0.14-1build5) ... +#6 64.27 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.20.04.1) ... +#6 64.27 Setting up libpcre2-16-0:amd64 (10.34-7ubuntu0.1) ... +#6 64.30 Setting up libdevel-caller-perl (2.06-2build2) ... +#6 64.31 Setting up libcap2:amd64 (1:2.32-1ubuntu0.1) ... +#6 64.31 Setting up libsub-install-perl (0.928-1) ... +#6 64.32 Setting up libxxf86vm1:amd64 (1:1.1.4-1build1) ... +#6 64.33 Setting up poppler-data (0.4.9-2) ... +#6 64.36 Setting up libxcb-present0:amd64 (1.14-2) ... +#6 64.37 Setting up ruby-minitest (5.13.0-1) ... +#6 64.37 Setting up libreadonly-perl (2.050-2) ... +#6 64.38 Setting up libdevel-lexalias-perl (0.05-2build2) ... +#6 64.39 Setting up libfontenc1:amd64 (1:1.1.4-0ubuntu1) ... +#6 64.40 Setting up libpackage-stash-xs-perl (0.29-1build1) ... +#6 64.41 Setting up libpcre2-32-0:amd64 (10.34-7ubuntu0.1) ... +#6 64.41 Setting up libclass-data-inheritable-perl (0.08-3) ... +#6 64.42 Setting up libglib2.0-data (2.64.6-1~ubuntu20.04.8) ... +#6 64.43 Setting up libalgorithm-c3-perl (0.10-1) ... +#6 64.44 Setting up liblog-log4perl-perl (1.49-1) ... +#6 64.44 Setting up ruby-test-unit (3.3.5-1) ... +#6 64.45 Setting up libdata-dump-perl (1.23-1) ... +#6 64.46 Setting up libref-util-perl (0.204-1) ... +#6 64.47 Setting up libxfixes3:amd64 (1:5.0.3-2) ... +#6 64.47 Setting up libxcb-sync1:amd64 (1.14-2) ... +#6 64.48 Setting up libjbig2dec0:amd64 (0.18-1ubuntu1) ... +#6 64.49 Setting up libipc-system-simple-perl (1.26-1) ... +#6 64.50 Setting up libidn11:amd64 (1.33-2.2ubuntu2) ... +#6 64.50 Setting up libteckit0:amd64 (2.5.8+ds2-5ubuntu2) ... +#6 64.51 Setting up libxml-xpathengine-perl (0.14-1) ... +#6 64.52 Setting up uuid-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 64.53 Setting up libapache-pom-java (18-1) ... +#6 64.54 Setting up libavahi-common-data:amd64 (0.7-4ubuntu7.3) ... +#6 64.55 Setting up libllvm12:amd64 (1:12.0.0-3ubuntu1~20.04.5) ... +#6 64.55 Setting up libdbus-1-3:amd64 (1.12.16-2ubuntu2.3) ... +#6 64.56 Setting up ruby-net-telnet (0.1.1-2) ... +#6 64.57 Setting up dbus (1.12.16-2ubuntu2.3) ... +#6 64.71 Setting up xfonts-encodings (1:1.0.5-0ubuntu1) ... +#6 64.72 Setting up t1utils (1.41-3) ... +#6 64.72 Setting up libxinerama1:amd64 (2:1.1.4-2) ... +#6 64.73 Setting up libemail-date-format-perl (1.005-1) ... +#6 64.74 Setting up libxv1:amd64 (2:1.0.11-1) ... +#6 64.75 Setting up libpng16-16:amd64 (1.6.37-2) ... +#6 64.76 Setting up libpcre32-3:amd64 (2:8.39-12ubuntu0.1) ... +#6 64.76 Setting up libvariable-magic-perl (0.62-1build2) ... +#6 64.77 Setting up libio-html-perl (1.001-1) ... +#6 64.78 Setting up libxrandr2:amd64 (2:1.5.2-0ubuntu1) ... +#6 64.79 Setting up libtcl8.6:amd64 (8.6.10+dfsg-1) ... +#6 64.79 Setting up libwebp6:amd64 (0.6.1-2ubuntu0.20.04.3) ... +#6 64.80 Setting up libb-hooks-op-check-perl (0.22-1build2) ... +#6 64.81 Setting up pkg-config (0.29.1-0ubuntu4) ... +#6 64.86 Setting up fonts-dejavu-core (2.37-1) ... +#6 64.90 Setting up libfl2:amd64 (2.6.4-6.2) ... +#6 64.91 Setting up ucf (3.0038+nmu1) ... +#6 65.00 Setting up libpcre2-posix2:amd64 (10.34-7ubuntu0.1) ... +#6 65.01 Setting up fonts-texgyre (20180621-3) ... +#6 65.03 Setting up libsensors5:amd64 (1:3.6.0-2ubuntu1.1) ... +#6 65.03 Setting up libjpeg-turbo8:amd64 (2.0.3-0ubuntu1.20.04.3) ... +#6 65.04 Setting up libglapi-mesa:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 65.05 Setting up libparams-util-perl (1.07-3build5) ... +#6 65.06 Setting up libkpathsea6:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 65.07 Setting up libvulkan1:amd64 (1.2.131.2-1) ... +#6 65.07 Setting up libsub-exporter-progressive-perl (0.001013-1) ... +#6 65.08 Setting up libtimedate-perl (2.3200-1) ... +#6 65.09 Setting up libutempter0:amd64 (1.1.6-4) ... +#6 65.10 Setting up libxcb-dri2-0:amd64 (1.14-2) ... +#6 65.11 Setting up libsub-name-perl (0.26-1) ... +#6 65.11 Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-2ubuntu1.5) ... +#6 65.12 Setting up python-apt-common (2.0.1ubuntu0.20.04.1) ... +#6 65.13 Setting up fonts-gfs-baskerville (1.1-5) ... +#6 65.14 Setting up libxshmfence1:amd64 (1.3-1) ... +#6 65.14 Setting up libmime-charset-perl (1.012.2-1) ... +#6 65.15 Setting up libxcb-randr0:amd64 (1.14-2) ... +#6 65.16 Setting up libcap-ng-dev (0.7.9-2.1build1) ... +#6 65.17 Setting up bison (2:3.5.1+dfsg-1) ... +#6 65.18 update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode +#6 65.18 update-alternatives: warning: skip creation of /usr/share/man/man1/yacc.1.gz because associated file /usr/share/man/man1/bison.yacc.1.gz (of link group yacc) doesn't exist +#6 65.19 Setting up librole-tiny-perl (2.001004-1) ... +#6 65.19 Setting up fonts-lmodern (2.004.5-6) ... +#6 65.20 Setting up libopenjp2-7:amd64 (2.3.1-1ubuntu4.20.04.4) ... +#6 65.21 Setting up libthai-data (0.1.28-3) ... +#6 65.22 Setting up libdevel-globaldestruction-perl (0.14-1) ... +#6 65.24 Setting up sgml-base (1.29.1) ... +#6 65.28 Setting up libsub-quote-perl (2.006006-1) ... +#6 65.28 Setting up libdevel-stacktrace-perl (2.0400-1) ... +#6 65.29 Setting up libclass-xsaccessor-perl (1.19-3build3) ... +#6 65.30 Setting up fonts-droid-fallback (1:6.0.1r16-1.1) ... +#6 65.33 Setting up libxss1:amd64 (1:1.2.3-1) ... +#6 65.34 Setting up libxkbfile1:amd64 (1:1.1.0-1) ... +#6 65.34 Setting up libmpdec2:amd64 (2.4.2-3) ... +#6 65.35 Setting up libjs-jquery (3.3.1~dfsg-3) ... +#6 65.36 Setting up libpython3.8-stdlib:amd64 (3.8.10-0ubuntu1~20.04.14) ... +#6 65.37 Setting up python3.8 (3.8.10-0ubuntu1~20.04.14) ... +#6 66.09 Setting up libfile-homedir-perl (1.004-1) ... +#6 66.09 Setting up libcap-dev:amd64 (1:2.32-1ubuntu0.1) ... +#6 66.10 Setting up libdrm-common (2.4.107-8ubuntu1~20.04.2) ... +#6 66.11 Setting up libelf1:amd64 (0.176-1.1ubuntu0.1) ... +#6 66.11 Setting up libxcomposite1:amd64 (1:0.4.5-1) ... +#6 66.12 Setting up libsys-hostname-long-perl (1.5-1) ... +#6 66.13 Setting up ruby-xmlrpc (0.3.0-2) ... +#6 66.13 Setting up libxml2:amd64 (2.9.10+dfsg-5ubuntu0.20.04.7) ... +#6 66.14 Setting up xdg-utils (1.1.3-2ubuntu1.20.04.2) ... +#6 66.15 Setting up liburi-perl (1.76-2) ... +#6 66.16 Setting up iso-codes (4.4-1) ... +#6 66.16 Setting up libx11-protocol-perl (0.56-7) ... +#6 66.18 Setting up xbitmaps (1.1.1-2) ... +#6 66.18 Setting up libsynctex2:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 66.19 Setting up libpython3-stdlib:amd64 (3.8.2-0ubuntu2) ... +#6 66.20 Setting up libbz2-dev:amd64 (1.0.8-2) ... +#6 66.21 Setting up libwayland-client0:amd64 (1.18.0-1ubuntu0.1) ... +#6 66.21 Setting up libnet-ssleay-perl (1.88-2ubuntu1) ... +#6 66.22 Setting up libjpeg8:amd64 (8c-2ubuntu8) ... +#6 66.22 Setting up libgs9-common (9.50~dfsg-5ubuntu4.14) ... +#6 66.23 Setting up libblkid-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 66.24 Setting up libpaper1:amd64 (1.1.28) ... +#6 66.38 +#6 66.38 Creating config file /etc/papersize with new version +#6 66.41 Setting up libice6:amd64 (2:1.0.10-0ubuntu1) ... +#6 66.42 Setting up libhttp-date-perl (6.05-1) ... +#6 66.43 Setting up flex (2.6.4-6.2) ... +#6 66.44 Setting up tcl8.6 (8.6.10+dfsg-1) ... +#6 66.44 Setting up libfile-basedir-perl (0.08-1) ... +#6 66.45 Setting up libfile-listing-perl (6.04-1) ... +#6 66.46 Setting up libpdfbox-java (1:1.8.16-2) ... +#6 66.46 Setting up libpcre2-dev:amd64 (10.34-7ubuntu0.1) ... +#6 66.47 Setting up libselinux1-dev:amd64 (3.0-1build2) ... +#6 66.48 Setting up libpcre3-dev:amd64 (2:8.39-12ubuntu0.1) ... +#6 66.48 Setting up fontconfig-config (2.13.1-2ubuntu3) ... +#6 66.59 Setting up libxtst6:amd64 (2:1.2.3-1) ... +#6 66.60 Setting up libaudit-dev:amd64 (1:2.8.5-2ubuntu6) ... +#6 66.61 Setting up libxcursor1:amd64 (1:1.2.0-2) ... +#6 66.62 Setting up libcommons-parent-java (43-1) ... +#6 66.62 Setting up libavahi-common3:amd64 (0.7-4ubuntu7.3) ... +#6 66.63 Setting up libcommons-logging-java (1.2-2) ... +#6 66.64 Setting up libglib2.0-bin (2.64.6-1~ubuntu20.04.8) ... +#6 66.65 Setting up libnet-http-perl (6.19-1) ... +#6 66.65 Setting up python3 (3.8.2-0ubuntu2) ... +#6 67.01 Setting up libexception-class-perl (1.44-1) ... +#6 67.01 Setting up libpaper-utils (1.1.28) ... +#6 67.02 Setting up libclass-c3-perl (0.34-1) ... +#6 67.03 Setting up libdevel-callchecker-perl (0.008-1ubuntu1) ... +#6 67.04 Setting up libfl-dev:amd64 (2.6.4-6.2) ... +#6 67.04 Setting up tex-common (6.13) ... +#6 67.20 update-language: texlive-base not installed and configured, doing nothing! +#6 67.27 Setting up libmail-sendmail-perl (0.80-1) ... +#6 67.28 Setting up libthai0:amd64 (0.1.28-3) ... +#6 67.29 Setting up libptexenc1:amd64 (2019.20190605.51237-3ubuntu0.2) ... +#6 67.29 Setting up libfreetype6:amd64 (2.10.1-2ubuntu0.3) ... +#6 67.30 Setting up shared-mime-info (1.15-1) ... +#6 68.76 Setting up libdata-optlist-perl (0.110-1) ... +#6 68.76 Setting up libcroco3:amd64 (0.6.13-1ubuntu0.1) ... +#6 68.77 Setting up libfile-desktopentry-perl (0.22-1) ... +#6 68.78 Setting up libwww-robotrules-perl (6.02-1) ... +#6 68.79 Setting up libdrm2:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 68.79 Setting up xml-core (0.18+nmu1) ... +#6 69.00 Setting up libhtml-parser-perl (3.72-5) ... +#6 69.01 Setting up tcl (8.6.9+1) ... +#6 69.02 Setting up libxslt1.1:amd64 (1.1.34-4ubuntu0.20.04.1) ... +#6 69.02 Setting up libharfbuzz0b:amd64 (2.6.4-1ubuntu4.2) ... +#6 69.03 Setting up libtiff5:amd64 (4.1.0+git191117-2ubuntu0.20.04.14) ... +#6 69.04 Setting up libfontconfig1:amd64 (2.13.1-2ubuntu3) ... +#6 69.04 Setting up libmro-compat-perl (0.13-1) ... +#6 69.05 Setting up lsb-release (11.1.0ubuntu2) ... +#6 69.06 Setting up libxml2-utils (2.9.10+dfsg-5ubuntu0.20.04.7) ... +#6 69.07 Setting up python3-lib2to3 (3.8.10-0ubuntu1~20.04) ... +#6 69.16 Setting up libsm6:amd64 (2:1.2.3-1) ... +#6 69.17 Setting up libavahi-client3:amd64 (0.7-4ubuntu7.3) ... +#6 69.18 Setting up libmount-dev:amd64 (2.34-0.1ubuntu9.6) ... +#6 69.18 Setting up libio-socket-ssl-perl (2.067-1) ... +#6 69.19 Setting up libsub-exporter-perl (0.987-1) ... +#6 69.20 Setting up libhttp-message-perl (6.22-1) ... +#6 69.20 Setting up libeval-closure-perl (0.14-1) ... +#6 69.21 Setting up libdrm-amdgpu1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 69.22 Setting up libhtml-form-perl (6.07-1) ... +#6 69.22 Setting up python3-distutils (3.8.10-0ubuntu1~20.04) ... +#6 69.34 Setting up libglib2.0-dev-bin (2.64.6-1~ubuntu20.04.8) ... +#6 69.50 Setting up mesa-vulkan-drivers:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 69.51 Setting up libfile-mimeinfo-perl (0.29-1) ... +#6 69.52 Setting up libhttp-negotiate-perl (6.01-1) ... +#6 69.53 Setting up libparams-validationcompiler-perl (0.30-1) ... +#6 69.53 Setting up libxft2:amd64 (2.3.3-0ubuntu1) ... +#6 69.54 Setting up libdrm-nouveau2:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 69.55 Setting up gettext (0.19.8.1-10build1) ... +#6 69.55 Setting up libharfbuzz-icu0:amd64 (2.6.4-1ubuntu4.2) ... +#6 69.56 Setting up libhttp-cookies-perl (6.08-1) ... +#6 69.56 Setting up libsombok3:amd64 (2.4.0-2) ... +#6 69.57 Setting up libdrm-radeon1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 69.58 Setting up python3-apt (2.0.1ubuntu0.20.04.1) ... +#6 69.75 Setting up libhtml-tree-perl (5.07-2) ... +#6 69.75 Setting up preview-latex-style (11.91-2ubuntu2) ... +#6 69.76 Setting up libtk8.6:amd64 (8.6.10-1) ... +#6 69.77 Setting up libparams-classify-perl (0.015-1build2) ... +#6 69.78 Setting up libdrm-intel1:amd64 (2.4.107-8ubuntu1~20.04.2) ... +#6 69.78 Setting up libgl1-mesa-dri:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 69.79 Setting up xsltproc (1.1.34-4ubuntu0.20.04.1) ... +#6 69.80 Setting up libhtml-format-perl (2.12-1) ... +#6 69.81 Setting up xfonts-utils (1:7.7+6) ... +#6 69.82 Setting up libcairo2:amd64 (1.16.0-4ubuntu1) ... +#6 69.82 Setting up libglib2.0-dev:amd64 (2.64.6-1~ubuntu20.04.8) ... +#6 69.83 Setting up libnet-smtp-ssl-perl (1.04-1) ... +#6 69.84 Setting up libmodule-runtime-perl (0.016-1) ... +#6 69.84 Setting up libmailtools-perl (2.21-1) ... +#6 69.85 Setting up libunicode-linebreak-perl (0.0.20190101-1build1) ... +#6 69.86 Setting up libdist-checkconflicts-perl (0.11-1) ... +#6 69.86 Setting up libxt6:amd64 (1:1.1.5-1) ... +#6 69.87 Setting up libcups2:amd64 (2.3.1-9ubuntu1.9) ... +#6 69.88 Setting up libhttp-daemon-perl (6.06-1ubuntu0.1) ... +#6 69.89 Setting up lmodern (2.004.5-6) ... +#6 70.05 Setting up tex-gyre (20180621-3) ... +#6 70.21 Setting up tk8.6 (8.6.10-1) ... +#6 70.22 Setting up libxmu6:amd64 (2:1.1.3-0ubuntu1) ... +#6 70.23 Setting up libglx-mesa0:amd64 (21.2.6-0ubuntu0.1~20.04.2) ... +#6 70.24 Setting up libgs9:amd64 (9.50~dfsg-5ubuntu4.14) ... +#6 70.24 Setting up libglx0:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 70.25 Setting up libmime-lite-perl (3.031-1) ... +#6 70.26 Setting up libmodule-implementation-perl (0.09-1) ... +#6 70.26 Setting up libpackage-stash-perl (0.38-1) ... +#6 70.27 Setting up dvisvgm (2.8.1-1build1) ... +#6 70.28 Setting up libxaw7:amd64 (2:1.0.13-1) ... +#6 70.29 Setting up ghostscript (9.50~dfsg-5ubuntu4.14) ... +#6 70.31 Setting up x11-xserver-utils (7.7+8) ... +#6 70.32 Setting up libspecio-perl (0.45-1) ... +#6 70.33 Setting up libgl1:amd64 (1.3.2-1~ubuntu0.20.04.2) ... +#6 70.33 Setting up texlive-binaries (2019.20190605.51237-3ubuntu0.2) ... +#6 70.34 update-alternatives: using /usr/bin/xdvi-xaw to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode +#6 70.34 update-alternatives: using /usr/bin/bibtex.original to provide /usr/bin/bibtex (bibtex) in auto mode +#6 70.34 update-alternatives: warning: skip creation of /usr/share/man/man1/bibtex.1.gz because associated file /usr/share/man/man1/bibtex.original.1.gz (of link group bibtex) doesn't exist +#6 70.35 Setting up x11-utils (7.7+5) ... +#6 70.38 Setting up xterm (353-1ubuntu1.20.04.2) ... +#6 70.40 update-alternatives: using /usr/bin/xterm to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode +#6 70.40 update-alternatives: warning: skip creation of /usr/share/man/man1/x-terminal-emulator.1.gz because associated file /usr/share/man/man1/xterm.1.gz (of link group x-terminal-emulator) doesn't exist +#6 70.41 update-alternatives: using /usr/bin/lxterm to provide /usr/bin/x-terminal-emulator (x-terminal-emulator) in auto mode +#6 70.41 update-alternatives: warning: skip creation of /usr/share/man/man1/x-terminal-emulator.1.gz because associated file /usr/share/man/man1/lxterm.1.gz (of link group x-terminal-emulator) doesn't exist +#6 70.41 Setting up tk (8.6.9+1) ... +#6 70.42 Setting up libb-hooks-endofscope-perl (0.24-1) ... +#6 70.43 Setting up texlive-base (2019.20200218-1) ... +#6 71.05 tl-paper: setting paper size for dvips to a4: /var/lib/texmf/dvips/config/config-paper.ps +#6 71.31 tl-paper: setting paper size for dvipdfmx to a4: /var/lib/texmf/dvipdfmx/dvipdfmx-paper.cfg +#6 71.55 tl-paper: setting paper size for xdvi to a4: /var/lib/texmf/xdvi/XDvi-paper +#6 71.79 tl-paper: setting paper size for pdftex to a4: /var/lib/texmf/tex/generic/config/pdftexconfig.tex +#6 72.36 Setting up texlive-plain-generic (2019.202000218-1) ... +#6 72.38 Setting up texlive-lang-greek (2019.20200218-1) ... +#6 72.40 Setting up texlive-latex-base (2019.20200218-1) ... +#6 72.42 Setting up texlive-extra-utils (2019.202000218-1) ... +#6 72.43 Setting up texlive-latex-recommended (2019.20200218-1) ... +#6 72.44 Setting up libnamespace-clean-perl (0.27-1) ... +#6 72.45 Setting up texlive-pictures (2019.20200218-1) ... +#6 72.46 Setting up texlive-fonts-recommended (2019.20200218-1) ... +#6 72.47 Setting up tipa (2:1.3-20) ... +#6 72.53 Regenerating '/var/lib/texmf/fmtutil.cnf-DEBIAN'... done. +#6 72.54 Regenerating '/var/lib/texmf/fmtutil.cnf-TEXLIVEDIST'... done. +#6 72.54 update-fmtutil has updated the following file(s): +#6 72.54 /var/lib/texmf/fmtutil.cnf-DEBIAN +#6 72.54 /var/lib/texmf/fmtutil.cnf-TEXLIVEDIST +#6 72.54 If you want to activate the changes in the above file(s), +#6 72.54 you should run fmtutil-sys or fmtutil. +#6 72.57 Setting up libnamespace-autoclean-perl (0.29-1) ... +#6 72.57 Setting up texlive (2019.20200218-1) ... +#6 72.58 Setting up texlive-science (2019.202000218-1) ... +#6 72.60 Setting up texlive-latex-extra (2019.202000218-1) ... +#6 72.61 Setting up texlive-bibtex-extra (2019.202000218-1) ... +#6 72.62 Setting up liblog-dispatch-perl (2.69-1) ... +#6 72.63 Setting up ruby (1:2.7+1) ... +#6 72.64 Setting up rake (13.0.1-4) ... +#6 72.65 Setting up liblwp-protocol-https-perl (6.07-2ubuntu2) ... +#6 72.65 Setting up libwww-perl (6.43-1) ... +#6 72.66 Setting up libruby2.7:amd64 (2.7.0-5ubuntu1.15) ... +#6 72.67 Setting up libxml-parser-perl (2.46-1) ... +#6 72.68 Setting up libxml-twig-perl (1:3.50-2) ... +#6 72.68 Setting up ruby2.7 (2.7.0-5ubuntu1.15) ... +#6 72.69 Setting up libnet-dbus-perl (1.2.0-1) ... +#6 72.70 Processing triggers for libc-bin (2.31-0ubuntu9.16) ... +#6 72.75 Processing triggers for sgml-base (1.29.1) ... +#6 72.76 Setting up docbook-xsl (1.79.1+dfsg-2) ... +#6 72.85 Setting up sgml-data (2.0.11) ... +#6 73.20 Processing triggers for sgml-base (1.29.1) ... +#6 73.22 Setting up docbook-xml (4.5-9) ... +#6 74.69 Processing triggers for sgml-base (1.29.1) ... +#6 74.71 Setting up xmlto (0.0.28-2.1) ... +#6 74.72 Setting up dblatex (0.3.11py3-1) ... +#6 74.91 Processing triggers for tex-common (6.13) ... +#6 75.02 Running updmap-sys. This may take some time... done. +#6 75.55 Running mktexlsr /var/lib/texmf ... done. +#6 75.65 Building format(s) --all. +#6 75.65 This may take some time... done. +#6 DONE 85.4s + +#7 [3/5] RUN git clone --depth 1 https://github.com/SELinuxProject/selinux +#7 0.173 Cloning into 'selinux'... +#7 DONE 1.4s + +#8 [4/5] WORKDIR selinux +#8 DONE 0.0s + +#9 [5/5] COPY build.sh *.c /src/ +#9 DONE 0.0s + +#10 exporting to image +#10 exporting layers +#10 exporting layers 9.8s done +#10 writing image sha256:016eab9d7921d7d889edfa51a7b7314f9e997eef1cc279515291a78ed86d124e done +#10 naming to gcr.io/oss-fuzz/selinux done +#10 DONE 9.8s + + 1 warning found (use docker --debug to expand): + - WorkdirRelativePath: Relative workdir "selinux" can have unexpected results if the base image changes (line 32) +Using cached base images... +Running: docker build --no-cache -t gcr.io/oss-fuzz/selinux projects/selinux +/tmp/tmph1ht1j27/oss-fuzz$ /usr/bin/python3 infra/helper.py build_fuzzers --sanitizer address --clean selinux /tmp/tmph1ht1j27/selinux +/tmp/tmph1ht1j27/oss-fuzz/infra/helper.py:27: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 + import pipes +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.04kB done +#1 WARN: WorkdirRelativePath: Relative workdir "selinux" can have unexpected results if the base image changes (line 32) +#1 DONE 0.0s + +#2 [internal] load metadata for gcr.io/oss-fuzz-base/base-builder:latest +#2 DONE 0.1s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [1/5] FROM gcr.io/oss-fuzz-base/base-builder:latest@sha256:35a7e82a227062d56e171abbfd7d5434e01fb0e57a9e4f5e4c881bc319cbe9be +#4 DONE 0.0s + +#5 [internal] load build context +#5 transferring context: 65B done +#5 DONE 0.0s + +#6 [4/5] WORKDIR selinux +#6 CACHED + +#7 [2/5] RUN apt-get update && apt-get install -y bison flex gawk gettext make libaudit-dev libbz2-dev libcap-dev libcap-ng-dev libglib2.0-dev libpcre3-dev xmlto +#7 CACHED + +#8 [3/5] RUN git clone --depth 1 https://github.com/SELinuxProject/selinux +#8 CACHED + +#9 [5/5] COPY build.sh *.c /src/ +#9 CACHED + +#10 exporting to image +#10 exporting layers done +#10 writing image sha256:016eab9d7921d7d889edfa51a7b7314f9e997eef1cc279515291a78ed86d124e done +#10 naming to gcr.io/oss-fuzz/selinux done +#10 DONE 0.0s + + 1 warning found (use docker --debug to expand): + - WorkdirRelativePath: Relative workdir "selinux" can have unexpected results if the base image changes (line 32) +--------------------------------------------------------------- +vm.mmap_rnd_bits = 28 +Compiling libFuzzer to /usr/lib/libFuzzingEngine.a... done. +--------------------------------------------------------------- +CC=clang +CXX=clang++ +CFLAGS=-O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link +CXXFLAGS=-O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -stdlib=libc++ +RUSTFLAGS=--cfg fuzzing -Zsanitizer=address -Cdebuginfo=1 -Cforce-frame-pointers +--------------------------------------------------------------- +++ pwd ++ export DESTDIR=/src/selinux/DESTDIR ++ DESTDIR=/src/selinux/DESTDIR ++ export 'LDFLAGS= -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link' ++ LDFLAGS=' -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link' ++ find -name Makefile ++ xargs sed -i s/,-z,defs// +++ nproc ++ make V=1 -j2 install +make[1]: Entering directory '/src/selinux/libsepol' +make -C include install +make[2]: Entering directory '/src/selinux/libsepol/include' +test -d /src/selinux/DESTDIR/usr/include/sepol || install -m 755 -d /src/selinux/DESTDIR/usr/include/sepol +test -d /src/selinux/DESTDIR/usr/include/sepol/policydb || install -m 755 -d /src/selinux/DESTDIR/usr/include/sepol/policydb +test -d /src/selinux/DESTDIR/usr/include/sepol/cil || install -m 755 -d /src/selinux/DESTDIR/usr/include/sepol/cil +install -m 644 sepol/boolean_record.h sepol/errcodes.h sepol/ports.h sepol/node_record.h sepol/module.h sepol/policydb.h sepol/context.h sepol/kernel_to_conf.h sepol/user_record.h sepol/module_to_cil.h sepol/debug.h sepol/interfaces.h sepol/port_record.h sepol/sepol.h sepol/ibendport_record.h sepol/booleans.h sepol/iface_record.h sepol/handle.h sepol/ibpkeys.h sepol/users.h sepol/roles.h sepol/ibpkey_record.h sepol/ibendports.h sepol/context_record.h sepol/kernel_to_cil.h sepol/nodes.h /src/selinux/DESTDIR/usr/include/sepol +install -m 644 sepol/policydb/symtab.h sepol/policydb/avtab.h sepol/policydb/module.h sepol/policydb/link.h sepol/policydb/avrule_block.h sepol/policydb/flask_types.h sepol/policydb/mls_types.h sepol/policydb/policydb.h sepol/policydb/context.h sepol/policydb/ebitmap.h sepol/policydb/polcaps.h sepol/policydb/util.h sepol/policydb/conditional.h sepol/policydb/services.h sepol/policydb/hashtab.h sepol/policydb/sidtab.h sepol/policydb/expand.h sepol/policydb/constraint.h sepol/policydb/hierarchy.h /src/selinux/DESTDIR/usr/include/sepol/policydb +install -m 644 ../cil/include/cil/cil.h /src/selinux/DESTDIR/usr/include/sepol/cil +make[2]: Leaving directory '/src/selinux/libsepol/include' +make -C src install +make[2]: Entering directory '/src/selinux/libsepol/src' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o assertion.o assertion.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o avrule_block.o avrule_block.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o avtab.o avtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o boolean_record.o boolean_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o booleans.o booleans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o conditional.o conditional.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o constraint.o constraint.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o context.o context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o context_record.o context_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o debug.o debug.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ebitmap.o ebitmap.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o expand.o expand.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o handle.o handle.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o hashtab.o hashtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o hierarchy.o hierarchy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ibendport_record.o ibendport_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ibendports.o ibendports.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ibpkey_record.o ibpkey_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ibpkeys.o ibpkeys.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o iface_record.o iface_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o interfaces.o interfaces.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o kernel_to_cil.o kernel_to_cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o kernel_to_common.o kernel_to_common.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o kernel_to_conf.o kernel_to_conf.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o link.o link.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o mls.o mls.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o module.o module.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o module_to_cil.o module_to_cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o node_record.o node_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o nodes.o nodes.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o optimize.o optimize.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o polcaps.o polcaps.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o policydb.o policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o policydb_convert.o policydb_convert.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o policydb_public.o policydb_public.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o port_record.o port_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ports.o ports.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o roles.o roles.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o services.o services.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o sidtab.o sidtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o symtab.o symtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o user_record.o user_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o users.o users.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o util.o util.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o write.o write.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil.o ../cil/src/cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_binary.o ../cil/src/cil_binary.c +../cil/src/cil_binary.c:1980:8: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 1980 | op = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2079:28: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2079 | enum cil_flavor cil_op = (enum cil_flavor)item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2565:30: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2565 | enum cil_flavor l_operand = (enum cil_flavor)l_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2596:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2596 | enum cil_flavor r_operand = (enum cil_flavor)r_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2611:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2611 | enum cil_flavor r_operand = (enum cil_flavor)r_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2675:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2675 | enum cil_flavor cil_op = (enum cil_flavor)item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_build_ast.o ../cil/src/cil_build_ast.c +6 warnings generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_copy_ast.o ../cil/src/cil_copy_ast.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_find.o ../cil/src/cil_find.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_fqn.o ../cil/src/cil_fqn.c +flex -o ../cil/src/cil_lexer.c ../cil/src/cil_lexer.l +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_list.o ../cil/src/cil_list.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_log.o ../cil/src/cil_log.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_mem.o ../cil/src/cil_mem.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_parser.o ../cil/src/cil_parser.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_policy.o ../cil/src/cil_policy.c +../cil/src/cil_policy.c:287:24: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 287 | enum cil_flavor op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:387:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 387 | enum cil_flavor flavor = (enum cil_flavor)op->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:422:7: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 422 | op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:474:30: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 474 | enum cil_flavor o_flavor = (enum cil_flavor)operand->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:557:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 557 | enum cil_flavor flavor = (enum cil_flavor)op->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:601:7: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 601 | op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_post.o ../cil/src/cil_post.c +../cil/src/cil_post.c:1304:24: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 1304 | enum cil_flavor op = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +6 warnings generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_reset_ast.o ../cil/src/cil_reset_ast.c +1 warning generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_resolve_ast.o ../cil/src/cil_resolve_ast.c +../cil/src/cil_resolve_ast.c:3279:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 3279 | enum cil_flavor op_flavor = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_stack.o ../cil/src/cil_stack.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_strpool.o ../cil/src/cil_strpool.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_symtab.o ../cil/src/cil_symtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_tree.o ../cil/src/cil_tree.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_verify.o ../cil/src/cil_verify.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o assertion.lo assertion.c +1 warning generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o avrule_block.lo avrule_block.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o avtab.lo avtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o boolean_record.lo boolean_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o booleans.lo booleans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o conditional.lo conditional.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o constraint.lo constraint.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o context.lo context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o context_record.lo context_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o debug.lo debug.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ebitmap.lo ebitmap.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o expand.lo expand.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o handle.lo handle.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o hashtab.lo hashtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o hierarchy.lo hierarchy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ibendport_record.lo ibendport_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ibendports.lo ibendports.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ibpkey_record.lo ibpkey_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ibpkeys.lo ibpkeys.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o iface_record.lo iface_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o interfaces.lo interfaces.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o kernel_to_cil.lo kernel_to_cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o kernel_to_common.lo kernel_to_common.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o kernel_to_conf.lo kernel_to_conf.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o link.lo link.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o mls.lo mls.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o module.lo module.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o module_to_cil.lo module_to_cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o node_record.lo node_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o nodes.lo nodes.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o optimize.lo optimize.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o polcaps.lo polcaps.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o policydb.lo policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o policydb_convert.lo policydb_convert.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o policydb_public.lo policydb_public.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o port_record.lo port_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ports.lo ports.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o roles.lo roles.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o services.lo services.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o sidtab.lo sidtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o symtab.lo symtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o user_record.lo user_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o users.lo users.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o util.lo util.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o write.lo write.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil.lo ../cil/src/cil.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_binary.lo ../cil/src/cil_binary.c +../cil/src/cil_binary.c:1980:8: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 1980 | op = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2079:28: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2079 | enum cil_flavor cil_op = (enum cil_flavor)item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2565:30: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2565 | enum cil_flavor l_operand = (enum cil_flavor)l_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2596:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2596 | enum cil_flavor r_operand = (enum cil_flavor)r_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2611:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2611 | enum cil_flavor r_operand = (enum cil_flavor)r_item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_binary.c:2675:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 2675 | enum cil_flavor cil_op = (enum cil_flavor)item->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_build_ast.lo ../cil/src/cil_build_ast.c +6 warnings generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_copy_ast.lo ../cil/src/cil_copy_ast.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_find.lo ../cil/src/cil_find.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_fqn.lo ../cil/src/cil_fqn.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_lexer.lo ../cil/src/cil_lexer.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_list.lo ../cil/src/cil_list.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_log.lo ../cil/src/cil_log.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_mem.lo ../cil/src/cil_mem.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_parser.lo ../cil/src/cil_parser.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_policy.lo ../cil/src/cil_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_post.lo ../cil/src/cil_post.c +../cil/src/cil_policy.c:287:24: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 287 | enum cil_flavor op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:387:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 387 | enum cil_flavor flavor = (enum cil_flavor)op->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:422:7: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 422 | op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:474:30: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 474 | enum cil_flavor o_flavor = (enum cil_flavor)operand->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:557:27: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 557 | enum cil_flavor flavor = (enum cil_flavor)op->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_policy.c:601:7: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 601 | op = (enum cil_flavor)i1->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~ +../cil/src/cil_post.c:1304:24: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 1304 | enum cil_flavor op = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +6 warnings generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_reset_ast.lo ../cil/src/cil_reset_ast.c +1 warning generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_resolve_ast.lo ../cil/src/cil_resolve_ast.c +../cil/src/cil_resolve_ast.c:3279:31: warning: cast to smaller integer type 'enum cil_flavor' from 'void *' [-Wvoid-pointer-to-enum-cast] + 3279 | enum cil_flavor op_flavor = (enum cil_flavor)curr->data; + |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~ +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_stack.lo ../cil/src/cil_stack.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_strpool.lo ../cil/src/cil_strpool.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_symtab.lo ../cil/src/cil_symtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_tree.lo ../cil/src/cil_tree.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -DSHARED -c -o ../cil/src/cil_verify.lo ../cil/src/cil_verify.c +cp libsepol.map.in libsepol.map +sed -e 's/@VERSION@/3.2-rc1/; s:@prefix@:/usr:; s:@libdir@:/usr/lib:; s:@includedir@:/usr/include:' < libsepol.pc.in > libsepol.pc +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -fPIC -c -o ../cil/src/cil_lexer.o ../cil/src/cil_lexer.c +1 warning generated. +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I. -I../include -D_GNU_SOURCE -I../cil/include -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -shared -o libsepol.so.2 assertion.lo avrule_block.lo avtab.lo boolean_record.lo booleans.lo conditional.lo constraint.lo context.lo context_record.lo debug.lo ebitmap.lo expand.lo handle.lo hashtab.lo hierarchy.lo ibendport_record.lo ibendports.lo ibpkey_record.lo ibpkeys.lo iface_record.lo interfaces.lo kernel_to_cil.lo kernel_to_common.lo kernel_to_conf.lo link.lo mls.lo module.lo module_to_cil.lo node_record.lo nodes.lo optimize.lo polcaps.lo policydb.lo policydb_convert.lo policydb_public.lo port_record.lo ports.lo roles.lo services.lo sidtab.lo symtab.lo user_record.lo users.lo util.lo write.lo ../cil/src/cil.lo ../cil/src/cil_binary.lo ../cil/src/cil_build_ast.lo ../cil/src/cil_copy_ast.lo ../cil/src/cil_find.lo ../cil/src/cil_fqn.lo ../cil/src/cil_lexer.lo ../cil/src/cil_list.lo ../cil/src/cil_log.lo ../cil/src/cil_mem.lo ../cil/src/cil_parser.lo ../cil/src/cil_policy.lo ../cil/src/cil_post.lo ../cil/src/cil_reset_ast.lo ../cil/src/cil_resolve_ast.lo ../cil/src/cil_stack.lo ../cil/src/cil_strpool.lo ../cil/src/cil_symtab.lo ../cil/src/cil_tree.lo ../cil/src/cil_verify.lo -Wl,-soname,libsepol.so.2,--version-script=libsepol.map +ln -sf libsepol.so.2 libsepol.so +ar rcs libsepol.a assertion.o avrule_block.o avtab.o boolean_record.o booleans.o conditional.o constraint.o context.o context_record.o debug.o ebitmap.o expand.o handle.o hashtab.o hierarchy.o ibendport_record.o ibendports.o ibpkey_record.o ibpkeys.o iface_record.o interfaces.o kernel_to_cil.o kernel_to_common.o kernel_to_conf.o link.o mls.o module.o module_to_cil.o node_record.o nodes.o optimize.o polcaps.o policydb.o policydb_convert.o policydb_public.o port_record.o ports.o roles.o services.o sidtab.o symtab.o user_record.o users.o util.o write.o ../cil/src/cil.o ../cil/src/cil_binary.o ../cil/src/cil_build_ast.o ../cil/src/cil_copy_ast.o ../cil/src/cil_find.o ../cil/src/cil_fqn.o ../cil/src/cil_lexer.o ../cil/src/cil_list.o ../cil/src/cil_log.o ../cil/src/cil_mem.o ../cil/src/cil_parser.o ../cil/src/cil_policy.o ../cil/src/cil_post.o ../cil/src/cil_reset_ast.o ../cil/src/cil_resolve_ast.o ../cil/src/cil_stack.o ../cil/src/cil_strpool.o ../cil/src/cil_symtab.o ../cil/src/cil_tree.o ../cil/src/cil_verify.o +ranlib libsepol.a +test -d /src/selinux/DESTDIR/usr/lib || install -m 755 -d /src/selinux/DESTDIR/usr/lib +install -m 644 libsepol.a /src/selinux/DESTDIR/usr/lib +test -d /src/selinux/DESTDIR/lib || install -m 755 -d /src/selinux/DESTDIR/lib +install -m 755 libsepol.so.2 /src/selinux/DESTDIR/lib +test -d /src/selinux/DESTDIR/usr/lib/pkgconfig || install -m 755 -d /src/selinux/DESTDIR/usr/lib/pkgconfig +install -m 644 libsepol.pc /src/selinux/DESTDIR/usr/lib/pkgconfig +ln -sf --relative /src/selinux/DESTDIR/lib/libsepol.so.2 /src/selinux/DESTDIR/usr/lib/libsepol.so +make[2]: Leaving directory '/src/selinux/libsepol/src' +make -C utils install +make[2]: Entering directory '/src/selinux/libsepol/utils' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src chkcon.c -lsepol -o chkcon +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 chkcon /src/selinux/DESTDIR/usr/bin +make[2]: Leaving directory '/src/selinux/libsepol/utils' +make -C man install +make[2]: Entering directory '/src/selinux/libsepol/man' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man3 +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 man3/*.3 /src/selinux/DESTDIR/usr/share/man/man3 +install -m 644 man8/*.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang}/man3 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + install -m 644 ${lang}/man3/*.3 /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + fi ; \ + if [ -e ${lang}/man8 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/man8/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/libsepol/man' +make[1]: Leaving directory '/src/selinux/libsepol' +make[1]: Entering directory '/src/selinux/libselinux' +make[2]: Entering directory '/src/selinux/libselinux/include' +test -d /src/selinux/DESTDIR/usr/include/selinux || install -m 755 -d /src/selinux/DESTDIR/usr/include/selinux +install -m 644 selinux/get_context_list.h selinux/get_default_type.h selinux/avc.h selinux/context.h selinux/restorecon.h selinux/selinux.h selinux/label.h /src/selinux/DESTDIR/usr/include/selinux +make[2]: Leaving directory '/src/selinux/libselinux/include' +make[2]: Entering directory '/src/selinux/libselinux/src' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o avc.o avc.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o avc_internal.o avc_internal.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o avc_sidtab.o avc_sidtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o booleans.o booleans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o callbacks.o callbacks.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o canonicalize_context.o canonicalize_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o checkAccess.o checkAccess.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o check_context.o check_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o checkreqprot.o checkreqprot.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o compute_av.o compute_av.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o compute_create.o compute_create.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o compute_member.o compute_member.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o compute_relabel.o compute_relabel.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o compute_user.o compute_user.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o context.o context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o deny_unknown.o deny_unknown.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o disable.o disable.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o enabled.o enabled.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o fgetfilecon.o fgetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o freecon.o freecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o freeconary.o freeconary.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o fsetfilecon.o fsetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o get_context_list.o get_context_list.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o get_default_type.o get_default_type.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o get_initial_context.o get_initial_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o getenforce.o getenforce.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o getfilecon.o getfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o getpeercon.o getpeercon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o init.o init.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o is_customizable_type.o is_customizable_type.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label.o label.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label_db.o label_db.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label_file.o label_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label_media.o label_media.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label_support.o label_support.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o label_x.o label_x.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o lgetfilecon.o lgetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o load_policy.o load_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o lsetfilecon.o lsetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o mapping.o mapping.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o matchmediacon.o matchmediacon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o matchpathcon.o matchpathcon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o policyvers.o policyvers.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o procattr.o procattr.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o query_user_context.o query_user_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o regex.o regex.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o reject_unknown.o reject_unknown.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o selinux_check_securetty_context.o selinux_check_securetty_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o selinux_config.o selinux_config.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o selinux_restorecon.o selinux_restorecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o sestatus.o sestatus.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o setenforce.o setenforce.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o setexecfilecon.o setexecfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o setfilecon.o setfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o setrans_client.o setrans_client.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o seusers.o seusers.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o sha1.o sha1.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o stringrep.o stringrep.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -c -o validatetrans.o validatetrans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o avc.lo avc.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o avc_internal.lo avc_internal.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o avc_sidtab.lo avc_sidtab.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o booleans.lo booleans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o callbacks.lo callbacks.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o canonicalize_context.lo canonicalize_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o checkAccess.lo checkAccess.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o check_context.lo check_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o checkreqprot.lo checkreqprot.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o compute_av.lo compute_av.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o compute_create.lo compute_create.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o compute_member.lo compute_member.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o compute_relabel.lo compute_relabel.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o compute_user.lo compute_user.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o context.lo context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o deny_unknown.lo deny_unknown.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o disable.lo disable.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o enabled.lo enabled.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o fgetfilecon.lo fgetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o freecon.lo freecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o freeconary.lo freeconary.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o fsetfilecon.lo fsetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o get_context_list.lo get_context_list.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o get_default_type.lo get_default_type.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o get_initial_context.lo get_initial_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o getenforce.lo getenforce.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o getfilecon.lo getfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o getpeercon.lo getpeercon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o init.lo init.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o is_customizable_type.lo is_customizable_type.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label.lo label.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label_db.lo label_db.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label_file.lo label_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label_media.lo label_media.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label_support.lo label_support.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o label_x.lo label_x.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o lgetfilecon.lo lgetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o load_policy.lo load_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o lsetfilecon.lo lsetfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o mapping.lo mapping.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o matchmediacon.lo matchmediacon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o matchpathcon.lo matchpathcon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o policyvers.lo policyvers.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o procattr.lo procattr.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o query_user_context.lo query_user_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o regex.lo regex.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o reject_unknown.lo reject_unknown.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o selinux_check_securetty_context.lo selinux_check_securetty_context.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o selinux_config.lo selinux_config.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o selinux_restorecon.lo selinux_restorecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o sestatus.lo sestatus.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o setenforce.lo setenforce.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o setexecfilecon.lo setexecfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o setfilecon.lo setfilecon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o setrans_client.lo setrans_client.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o seusers.lo seusers.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o sha1.lo sha1.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o stringrep.lo stringrep.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -fPIC -DSHARED -c -o validatetrans.lo validatetrans.c +sed -e 's/@VERSION@/3.2-rc1/; s:@prefix@:/usr:; s:@libdir@:/usr/lib:; s:@includedir@:/usr/include:; s:@PCRE_MODULE@:libpcre:' < libselinux.pc.in > libselinux.pc +ar rcs libselinux.a avc.o avc_internal.o avc_sidtab.o booleans.o callbacks.o canonicalize_context.o checkAccess.o check_context.o checkreqprot.o compute_av.o compute_create.o compute_member.o compute_relabel.o compute_user.o context.o deny_unknown.o disable.o enabled.o fgetfilecon.o freecon.o freeconary.o fsetfilecon.o get_context_list.o get_default_type.o get_initial_context.o getenforce.o getfilecon.o getpeercon.o init.o is_customizable_type.o label.o label_db.o label_file.o label_media.o label_support.o label_x.o lgetfilecon.o load_policy.o lsetfilecon.o mapping.o matchmediacon.o matchpathcon.o policyvers.o procattr.o query_user_context.o regex.o reject_unknown.o selinux_check_securetty_context.o selinux_config.o selinux_restorecon.o sestatus.o setenforce.o setexecfilecon.o setfilecon.o setrans_client.o seusers.o sha1.o stringrep.o validatetrans.o +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -DNO_ANDROID_BACKEND -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -shared -o libselinux.so.1 avc.lo avc_internal.lo avc_sidtab.lo booleans.lo callbacks.lo canonicalize_context.lo checkAccess.lo check_context.lo checkreqprot.lo compute_av.lo compute_create.lo compute_member.lo compute_relabel.lo compute_user.lo context.lo deny_unknown.lo disable.lo enabled.lo fgetfilecon.lo freecon.lo freeconary.lo fsetfilecon.lo get_context_list.lo get_default_type.lo get_initial_context.lo getenforce.lo getfilecon.lo getpeercon.lo init.lo is_customizable_type.lo label.lo label_db.lo label_file.lo label_media.lo label_support.lo label_x.lo lgetfilecon.lo load_policy.lo lsetfilecon.lo mapping.lo matchmediacon.lo matchpathcon.lo policyvers.lo procattr.lo query_user_context.lo regex.lo reject_unknown.lo selinux_check_securetty_context.lo selinux_config.lo selinux_restorecon.lo sestatus.lo setenforce.lo setexecfilecon.lo setfilecon.lo setrans_client.lo seusers.lo sha1.lo stringrep.lo validatetrans.lo -lpcre -ldl -Wl,-soname,libselinux.so.1,--version-script=libselinux.map,-z,relro +ranlib libselinux.a +ln -sf libselinux.so.1 libselinux.so +test -d /src/selinux/DESTDIR/usr/lib || install -m 755 -d /src/selinux/DESTDIR/usr/lib +install -m 644 libselinux.a /src/selinux/DESTDIR/usr/lib +test -d /src/selinux/DESTDIR/lib || install -m 755 -d /src/selinux/DESTDIR/lib +install -m 755 libselinux.so.1 /src/selinux/DESTDIR/lib +test -d /src/selinux/DESTDIR/usr/lib/pkgconfig || install -m 755 -d /src/selinux/DESTDIR/usr/lib/pkgconfig +install -m 644 libselinux.pc /src/selinux/DESTDIR/usr/lib/pkgconfig +ln -sf --relative /src/selinux/DESTDIR/lib/libselinux.so.1 /src/selinux/DESTDIR/usr/lib/libselinux.so +make[2]: Leaving directory '/src/selinux/libselinux/src' +make[2]: Entering directory '/src/selinux/libselinux/utils' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src avcstat.c -lselinux -o avcstat +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src compute_av.c -lselinux -o compute_av +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src compute_create.c -lselinux -o compute_create +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src compute_member.c -lselinux -o compute_member +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src compute_relabel.c -lselinux -o compute_relabel +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getconlist.c -lselinux -o getconlist +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getdefaultcon.c -lselinux -o getdefaultcon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getenforce.c -lselinux -o getenforce +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getfilecon.c -lselinux -o getfilecon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getpidcon.c -lselinux -o getpidcon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getsebool.c -lselinux -o getsebool +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src getseuser.c -lselinux -o getseuser +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src matchpathcon.c -lselinux -o matchpathcon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src policyvers.c -lselinux -o policyvers +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o sefcontext_compile.o sefcontext_compile.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selabel_digest.c -lselinux -o selabel_digest +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selabel_get_digests_all_partial_matches.c -lselinux -o selabel_get_digests_all_partial_matches +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selabel_lookup.c -lselinux -o selabel_lookup +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selabel_lookup_best_match.c -lselinux -o selabel_lookup_best_match +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selabel_partial_match.c -lselinux -o selabel_partial_match +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selinux_check_access.c -lselinux -o selinux_check_access +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selinux_check_securetty_context.c -lselinux -o selinux_check_securetty_context +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selinuxenabled.c -lselinux -o selinuxenabled +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src selinuxexeccon.c -lselinux -o selinuxexeccon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src setenforce.c -lselinux -o setenforce +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src setfilecon.c -lselinux -o setfilecon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src togglesebool.c -lselinux -o togglesebool +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src validatetrans.c -lselinux -o validatetrans +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -L../src sefcontext_compile.o ../src/regex.o -lselinux -lpcre ../src/libselinux.a -lsepol -o sefcontext_compile +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 avcstat compute_av compute_create compute_member compute_relabel getconlist getdefaultcon getenforce getfilecon getpidcon getsebool getseuser matchpathcon policyvers sefcontext_compile selabel_digest selabel_get_digests_all_partial_matches selabel_lookup selabel_lookup_best_match selabel_partial_match selinux_check_access selinux_check_securetty_context selinuxenabled selinuxexeccon setenforce setfilecon togglesebool validatetrans /src/selinux/DESTDIR/usr/sbin +make[2]: Leaving directory '/src/selinux/libselinux/utils' +make[2]: Entering directory '/src/selinux/libselinux/man' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man3 +mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 man3/*.3 /src/selinux/DESTDIR/usr/share/man/man3 +install -m 644 man5/*.5 /src/selinux/DESTDIR/usr/share/man/man5 +install -m 644 man8/*.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang}/man3 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + install -m 644 ${lang}/man3/*.3 /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + fi ; \ + if [ -e ${lang}/man5 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + install -m 644 ${lang}/man5/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + fi ; \ + if [ -e ${lang}/man8 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/man8/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/libselinux/man' +make[1]: Leaving directory '/src/selinux/libselinux' +make[1]: Entering directory '/src/selinux/libsemanage' +make -C include install +make[2]: Entering directory '/src/selinux/libsemanage/include' +test -d /src/selinux/DESTDIR/usr/include/semanage || install -m 755 -d /src/selinux/DESTDIR/usr/include/semanage +install -m 644 semanage/interfaces_local.h semanage/boolean_record.h semanage/booleans_local.h semanage/interfaces_policy.h semanage/semanage.h semanage/fcontexts_local.h semanage/ibpkeys_local.h semanage/users_local.h semanage/seusers_local.h semanage/ibendports_local.h semanage/booleans_policy.h semanage/seuser_record.h semanage/fcontexts_policy.h semanage/nodes_local.h semanage/ibpkeys_policy.h semanage/debug.h semanage/seusers_policy.h semanage/fcontext_record.h semanage/user_record.h semanage/ibendports_policy.h semanage/ibendport_record.h semanage/users_policy.h semanage/nodes_policy.h semanage/node_record.h semanage/ports_local.h semanage/handle.h semanage/iface_record.h semanage/booleans_active.h semanage/ibpkey_record.h semanage/ports_policy.h semanage/context_record.h semanage/port_record.h semanage/modules.h /src/selinux/DESTDIR/usr/include/semanage +make[2]: Leaving directory '/src/selinux/libsemanage/include' +make -C src install +make[2]: Entering directory '/src/selinux/libsemanage/src' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o boolean_record.o boolean_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_active.o booleans_active.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_activedb.o booleans_activedb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_file.o booleans_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_local.o booleans_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_policy.o booleans_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o booleans_policydb.o booleans_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o context_record.o context_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database.o database.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database_activedb.o database_activedb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database_file.o database_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database_join.o database_join.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database_llist.o database_llist.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o database_policydb.o database_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o debug.o debug.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o direct_api.o direct_api.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o fcontext_record.o fcontext_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o fcontexts_file.o fcontexts_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o fcontexts_local.o fcontexts_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o fcontexts_policy.o fcontexts_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o genhomedircon.o genhomedircon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o handle.o handle.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibendport_record.o ibendport_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibendports_file.o ibendports_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibendports_local.o ibendports_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibendports_policy.o ibendports_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibendports_policydb.o ibendports_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibpkey_record.o ibpkey_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibpkeys_file.o ibpkeys_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibpkeys_local.o ibpkeys_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibpkeys_policy.o ibpkeys_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ibpkeys_policydb.o ibpkeys_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o iface_record.o iface_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o interfaces_file.o interfaces_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o interfaces_local.o interfaces_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o interfaces_policy.o interfaces_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o interfaces_policydb.o interfaces_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o modules.o modules.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o node_record.o node_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o nodes_file.o nodes_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o nodes_local.o nodes_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o nodes_policy.o nodes_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o nodes_policydb.o nodes_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o parse_utils.o parse_utils.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o policy_components.o policy_components.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o port_record.o port_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ports_file.o ports_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ports_local.o ports_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ports_policy.o ports_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o ports_policydb.o ports_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o semanage_store.o semanage_store.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o seuser_record.o seuser_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o seusers_file.o seusers_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o seusers_local.o seusers_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o seusers_policy.o seusers_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o user_base_record.o user_base_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o user_extra_record.o user_extra_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o user_record.o user_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_base_file.o users_base_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_base_policydb.o users_base_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_extra_file.o users_extra_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_join.o users_join.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_local.o users_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o users_policy.o users_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o utilities.o utilities.c +bison -d -o conf-parse.c conf-parse.y +conf-parse.y:55.1-24: warning: deprecated directive: '%name-prefix "semanage_"', use '%define api.prefix {semanage_}' [-Wdeprecated] + 55 | %name-prefix "semanage_" + | ^~~~~~~~~~~~~~~~~~~~~~~~ + | %define api.prefix {semanage_} +conf-parse.y: warning: fix-its can be applied. Rerun with option '--update'. [-Wother] +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o boolean_record.lo boolean_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_active.lo booleans_active.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_activedb.lo booleans_activedb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_file.lo booleans_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_local.lo booleans_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_policy.lo booleans_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o booleans_policydb.lo booleans_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o context_record.lo context_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database.lo database.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database_activedb.lo database_activedb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database_file.lo database_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database_join.lo database_join.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database_llist.lo database_llist.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o database_policydb.lo database_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o debug.lo debug.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o direct_api.lo direct_api.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o fcontext_record.lo fcontext_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o fcontexts_file.lo fcontexts_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o fcontexts_local.lo fcontexts_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o fcontexts_policy.lo fcontexts_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o genhomedircon.lo genhomedircon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o handle.lo handle.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibendport_record.lo ibendport_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibendports_file.lo ibendports_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibendports_local.lo ibendports_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibendports_policy.lo ibendports_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibendports_policydb.lo ibendports_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibpkey_record.lo ibpkey_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibpkeys_file.lo ibpkeys_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibpkeys_local.lo ibpkeys_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibpkeys_policy.lo ibpkeys_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ibpkeys_policydb.lo ibpkeys_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o iface_record.lo iface_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o interfaces_file.lo interfaces_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o interfaces_local.lo interfaces_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o interfaces_policy.lo interfaces_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o interfaces_policydb.lo interfaces_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o modules.lo modules.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o node_record.lo node_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o nodes_file.lo nodes_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o nodes_local.lo nodes_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o nodes_policy.lo nodes_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o nodes_policydb.lo nodes_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o parse_utils.lo parse_utils.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o policy_components.lo policy_components.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o port_record.lo port_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ports_file.lo ports_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ports_local.lo ports_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ports_policy.lo ports_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o ports_policydb.lo ports_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o semanage_store.lo semanage_store.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o seuser_record.lo seuser_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o seusers_file.lo seusers_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o seusers_local.lo seusers_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o seusers_policy.lo seusers_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o user_base_record.lo user_base_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o user_extra_record.lo user_extra_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o user_record.lo user_record.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_base_file.lo users_base_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_base_policydb.lo users_base_policydb.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_extra_file.lo users_extra_file.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_join.lo users_join.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_local.lo users_local.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o users_policy.lo users_policy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o utilities.lo utilities.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o conf-parse.lo conf-parse.c +sed -e 's/@VERSION@/3.2-rc1/; s:@prefix@:/usr:; s:@libdir@:/usr/lib:; s:@includedir@:/usr/include:' < libsemanage.pc.in > libsemanage.pc +flex -s -o conf-scan.c conf-scan.l +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o conf-parse.o conf-parse.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -fPIC -DSHARED -c -o conf-scan.lo conf-scan.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -c -o conf-scan.o conf-scan.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -I../include -D_GNU_SOURCE -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -shared -o libsemanage.so.2 boolean_record.lo booleans_active.lo booleans_activedb.lo booleans_file.lo booleans_local.lo booleans_policy.lo booleans_policydb.lo context_record.lo database.lo database_activedb.lo database_file.lo database_join.lo database_llist.lo database_policydb.lo debug.lo direct_api.lo fcontext_record.lo fcontexts_file.lo fcontexts_local.lo fcontexts_policy.lo genhomedircon.lo handle.lo ibendport_record.lo ibendports_file.lo ibendports_local.lo ibendports_policy.lo ibendports_policydb.lo ibpkey_record.lo ibpkeys_file.lo ibpkeys_local.lo ibpkeys_policy.lo ibpkeys_policydb.lo iface_record.lo interfaces_file.lo interfaces_local.lo interfaces_policy.lo interfaces_policydb.lo modules.lo node_record.lo nodes_file.lo nodes_local.lo nodes_policy.lo nodes_policydb.lo parse_utils.lo policy_components.lo port_record.lo ports_file.lo ports_local.lo ports_policy.lo ports_policydb.lo semanage_store.lo seuser_record.lo seusers_file.lo seusers_local.lo seusers_policy.lo user_base_record.lo user_extra_record.lo user_record.lo users_base_file.lo users_base_policydb.lo users_extra_file.lo users_join.lo users_local.lo users_policy.lo utilities.lo conf-scan.lo conf-parse.lo -lsepol -laudit -lselinux -lbz2 -Wl,-soname,libsemanage.so.2,--version-script=libsemanage.map +ln -sf libsemanage.so.2 libsemanage.so +ar rcs libsemanage.a boolean_record.o booleans_active.o booleans_activedb.o booleans_file.o booleans_local.o booleans_policy.o booleans_policydb.o context_record.o database.o database_activedb.o database_file.o database_join.o database_llist.o database_policydb.o debug.o direct_api.o fcontext_record.o fcontexts_file.o fcontexts_local.o fcontexts_policy.o genhomedircon.o handle.o ibendport_record.o ibendports_file.o ibendports_local.o ibendports_policy.o ibendports_policydb.o ibpkey_record.o ibpkeys_file.o ibpkeys_local.o ibpkeys_policy.o ibpkeys_policydb.o iface_record.o interfaces_file.o interfaces_local.o interfaces_policy.o interfaces_policydb.o modules.o node_record.o nodes_file.o nodes_local.o nodes_policy.o nodes_policydb.o parse_utils.o policy_components.o port_record.o ports_file.o ports_local.o ports_policy.o ports_policydb.o semanage_store.o seuser_record.o seusers_file.o seusers_local.o seusers_policy.o user_base_record.o user_extra_record.o user_record.o users_base_file.o users_base_policydb.o users_extra_file.o users_join.o users_local.o users_policy.o utilities.o conf-scan.o conf-parse.o +ranlib libsemanage.a +test -d /src/selinux/DESTDIR/usr/lib || install -m 755 -d /src/selinux/DESTDIR/usr/lib +install -m 644 libsemanage.a /src/selinux/DESTDIR/usr/lib +install -m 755 libsemanage.so.2 /src/selinux/DESTDIR/usr/lib +test -d /src/selinux/DESTDIR/usr/lib/pkgconfig || install -m 755 -d /src/selinux/DESTDIR/usr/lib/pkgconfig +install -m 644 libsemanage.pc /src/selinux/DESTDIR/usr/lib/pkgconfig +test -f /src/selinux/DESTDIR/etc/selinux/semanage.conf || install -m 644 -D semanage.conf /src/selinux/DESTDIR/etc/selinux/semanage.conf +cd /src/selinux/DESTDIR/usr/lib && ln -sf libsemanage.so.2 libsemanage.so +make[2]: Leaving directory '/src/selinux/libsemanage/src' +make -C man install +make[2]: Entering directory '/src/selinux/libsemanage/man' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man3 +mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +install -m 644 man3/*.3 /src/selinux/DESTDIR/usr/share/man/man3 +install -m 644 man5/*.5 /src/selinux/DESTDIR/usr/share/man/man5 +for lang in ru ; do \ + if [ -e ${lang}/man3 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + install -m 644 ${lang}/man3/*.3 /src/selinux/DESTDIR/usr/share/man/${lang}/man3 ; \ + fi ; \ + if [ -e ${lang}/man5 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + install -m 644 ${lang}/man5/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/libsemanage/man' +make -C utils install +make[2]: Entering directory '/src/selinux/libsemanage/utils' +mkdir -p /src/selinux/DESTDIR/usr/libexec/selinux/ +install -m 755 semanage_migrate_store /src/selinux/DESTDIR/usr/libexec/selinux/ +make[2]: Leaving directory '/src/selinux/libsemanage/utils' +make[1]: Leaving directory '/src/selinux/libsemanage' +make[1]: Entering directory '/src/selinux/checkpolicy' +bison -y -d policy_parse.y +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o queue.o -c queue.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o module_compiler.o -c module_compiler.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o parse_util.o -c parse_util.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o policy_define.o -c policy_define.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o checkpolicy.o -c checkpolicy.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o checkmodule.o -c checkmodule.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o y.tab.o -c y.tab.c +flex policy_scan.l +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -o lex.yy.o -c lex.yy.c +clang -o checkpolicy y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o policy_define.o checkpolicy.o /src/selinux/DESTDIR/usr/lib/libsepol.a -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib +clang -o checkmodule y.tab.o lex.yy.o queue.o module_compiler.o parse_util.o policy_define.o checkmodule.o /src/selinux/DESTDIR/usr/lib/libsepol.a -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib +make -C test +make[2]: Entering directory '/src/selinux/checkpolicy/test' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o dispol.o dispol.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o dismod.o dismod.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o dispol dispol.o /src/selinux/DESTDIR/usr/lib/libsepol.a +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o dismod dismod.o /src/selinux/DESTDIR/usr/lib/libsepol.a +make[2]: Leaving directory '/src/selinux/checkpolicy/test' +mkdir -p /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 755 checkpolicy checkmodule /src/selinux/DESTDIR/usr/bin +install -m 644 checkpolicy.8 /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 checkmodule.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + fi ; \ +done +make[1]: Leaving directory '/src/selinux/checkpolicy' +make[1]: Entering directory '/src/selinux/secilc' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -c -o secilc.o secilc.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -c -o secil2conf.o secil2conf.c +xmlto man secilc.8.xml +xmlto man secil2conf.8.xml +Note: Writing secilc.8 +Note: Writing secil2conf.8 +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o secilc secilc.o -lsepol +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o secil2conf secil2conf.o -lsepol +mkdir -p /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 755 secilc /src/selinux/DESTDIR/usr/bin +install -m 755 secil2conf /src/selinux/DESTDIR/usr/bin +install -m 644 secilc.8 /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 secil2conf.8 /src/selinux/DESTDIR/usr/share/man/man8 +make[1]: Leaving directory '/src/selinux/secilc' +make[1]: Entering directory '/src/selinux/policycoreutils' +make[2]: Entering directory '/src/selinux/policycoreutils/setfiles' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DUSE_AUDIT -c -o setfiles.o setfiles.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DUSE_AUDIT -c -o restore.o restore.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DUSE_AUDIT -c -o restorecon_xattr.o restorecon_xattr.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib setfiles.o restore.o -lselinux -lsepol -laudit -o setfiles +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib restorecon_xattr.o restore.o -lselinux -lsepol -laudit -o restorecon_xattr +ln -sf setfiles restorecon +[ -d /src/selinux/DESTDIR/usr/share/man/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +mkdir -p /src/selinux/DESTDIR/sbin +install -m 755 setfiles /src/selinux/DESTDIR/sbin +(cd /src/selinux/DESTDIR/sbin && ln -sf setfiles restorecon) +install -m 755 restorecon_xattr /src/selinux/DESTDIR/sbin +install -m 644 setfiles.8.man /src/selinux/DESTDIR/usr/share/man/man8/setfiles.8 +install -m 644 restorecon.8 /src/selinux/DESTDIR/usr/share/man/man8/restorecon.8 +install -m 644 restorecon_xattr.8 /src/selinux/DESTDIR/usr/share/man/man8/restorecon_xattr.8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + [ -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/setfiles' +make[2]: Entering directory '/src/selinux/policycoreutils/load_policy' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -DUSE_NLS -DLOCALEDIR="\"/src/selinux/DESTDIR/usr/share/locale\"" -DPACKAGE="\"policycoreutils\"" -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib load_policy.c -lsepol -lselinux -o load_policy +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 load_policy /src/selinux/DESTDIR/usr/sbin +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 load_policy.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/load_policy' +make[2]: Entering directory '/src/selinux/policycoreutils/newrole' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DVERSION=\"3.2-rc1\" -DUSE_NLS -DLOCALEDIR="\"/src/selinux/DESTDIR/usr/share/locale\"" -DPACKAGE="\"policycoreutils\"" -D_XOPEN_SOURCE=500 -DUSE_AUDIT -c -o newrole.o newrole.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o newrole newrole.o -lselinux -lcrypt -laudit +test -d /src/selinux/DESTDIR/usr/bin || install -m 755 -d /src/selinux/DESTDIR/usr/bin +test -d /src/selinux/DESTDIR/etc/pam.d || install -m 755 -d /src/selinux/DESTDIR/etc/pam.d +test -d /src/selinux/DESTDIR/usr/share/man/man1 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man1 +install -m 0555 newrole /src/selinux/DESTDIR/usr/bin +install -m 644 newrole.1 /src/selinux/DESTDIR/usr/share/man/man1/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man1 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man1 ; \ + install -m 644 ${lang}/*.1 /src/selinux/DESTDIR/usr/share/man/${lang}/man1/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/newrole' +make[2]: Entering directory '/src/selinux/policycoreutils/run_init' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DUSE_NLS -DLOCALEDIR="\"/src/selinux/DESTDIR/usr/share/locale\"" -DPACKAGE="\"policycoreutils\"" -D_XOPEN_SOURCE=500 -DUSE_AUDIT -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib open_init_pty.c -ldl -lutil -o open_init_pty +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DUSE_NLS -DLOCALEDIR="\"/src/selinux/DESTDIR/usr/share/locale\"" -DPACKAGE="\"policycoreutils\"" -D_XOPEN_SOURCE=500 -DUSE_AUDIT -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib run_init.c -lselinux -lcrypt -laudit -o run_init +test -d /src/selinux/DESTDIR/usr/sbin || install -m 755 -d /src/selinux/DESTDIR/usr/sbin +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 755 run_init /src/selinux/DESTDIR/usr/sbin +install -m 755 open_init_pty /src/selinux/DESTDIR/usr/sbin +install -m 644 run_init.8 /src/selinux/DESTDIR/usr/share/man/man8/ +install -m 644 open_init_pty.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/run_init' +make[2]: Entering directory '/src/selinux/policycoreutils/secon' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DVERSION=\"3.2-rc1\" -c -o secon.o secon.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib secon.o -lselinux -o secon +install -m 755 secon /src/selinux/DESTDIR/usr/bin; +test -d /src/selinux/DESTDIR/usr/share/man/man1 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man1 +install -m 644 secon.1 /src/selinux/DESTDIR/usr/share/man/man1 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man1 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man1 ; \ + install -m 644 ${lang}/*.1 /src/selinux/DESTDIR/usr/share/man/${lang}/man1/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/secon' +make[2]: Entering directory '/src/selinux/policycoreutils/sestatus' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_FILE_OFFSET_BITS=64 -c -o sestatus.o sestatus.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib sestatus.o -lselinux -o sestatus +[ -d /src/selinux/DESTDIR/usr/share/man/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +[ -d /src/selinux/DESTDIR/usr/share/man/man5 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 sestatus /src/selinux/DESTDIR/usr/sbin +install -m 644 sestatus.8 /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 sestatus.conf.5 /src/selinux/DESTDIR/usr/share/man/man5 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + [ -d /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + [ -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5/ ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +mkdir -p /src/selinux/DESTDIR/etc +install -m 644 sestatus.conf /src/selinux/DESTDIR/etc +make[2]: Leaving directory '/src/selinux/policycoreutils/sestatus' +make[2]: Entering directory '/src/selinux/policycoreutils/semodule' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o semodule.o semodule.c +ln -sf semodule genhomedircon +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib semodule.o -lsepol -lselinux -lsemanage -o semodule +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 semodule /src/selinux/DESTDIR/usr/sbin +(cd /src/selinux/DESTDIR/usr/sbin; ln -sf semodule genhomedircon) +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 semodule.8 /src/selinux/DESTDIR/usr/share/man/man8/ +install -m 644 genhomedircon.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/semodule' +make[2]: Entering directory '/src/selinux/policycoreutils/setsebool' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o setsebool.o setsebool.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib setsebool.o -lsepol -lselinux -lsemanage -o setsebool +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 setsebool /src/selinux/DESTDIR/usr/sbin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 setsebool.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +mkdir -p /src/selinux/DESTDIR/usr/share/bash-completion/completions +install -m 644 setsebool-bash-completion.sh /src/selinux/DESTDIR/usr/share/bash-completion/completions/setsebool +make[2]: Leaving directory '/src/selinux/policycoreutils/setsebool' +make[2]: Entering directory '/src/selinux/policycoreutils/scripts' +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 fixfiles /src/selinux/DESTDIR/usr/sbin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 fixfiles.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/scripts' +make[2]: Entering directory '/src/selinux/policycoreutils/po' +msgfmt -o af.mo af.po +msgfmt -o aln.mo aln.po +msgfmt -o am.mo am.po +msgfmt -o ar.mo ar.po +msgfmt -o as.mo as.po +msgfmt -o ast.mo ast.po +msgfmt -o az.mo az.po +msgfmt -o bal.mo bal.po +msgfmt -o be.mo be.po +msgfmt -o bg.mo bg.po +msgfmt -o bn.mo bn.po +msgfmt -o bn_BD.mo bn_BD.po +msgfmt -o bn_IN.mo bn_IN.po +msgfmt -o bo.mo bo.po +msgfmt -o br.mo br.po +msgfmt -o brx.mo brx.po +msgfmt -o bs.mo bs.po +msgfmt -o ca.mo ca.po +msgfmt -o cs.mo cs.po +msgfmt -o cy.mo cy.po +msgfmt -o da.mo da.po +msgfmt -o de.mo de.po +msgfmt -o dz.mo dz.po +msgfmt -o el.mo el.po +msgfmt -o en_GB.mo en_GB.po +msgfmt -o eo.mo eo.po +msgfmt -o es.mo es.po +msgfmt -o es_MX.mo es_MX.po +msgfmt -o et.mo et.po +msgfmt -o eu.mo eu.po +msgfmt -o fa.mo fa.po +msgfmt -o fi.mo fi.po +msgfmt -o fr.mo fr.po +msgfmt -o ga.mo ga.po +msgfmt -o gl.mo gl.po +msgfmt -o gu.mo gu.po +msgfmt -o he.mo he.po +msgfmt -o hi.mo hi.po +msgfmt -o hr.mo hr.po +msgfmt -o hu.mo hu.po +msgfmt -o hy.mo hy.po +msgfmt -o ia.mo ia.po +msgfmt -o id.mo id.po +msgfmt -o ilo.mo ilo.po +msgfmt -o is.mo is.po +msgfmt -o it.mo it.po +msgfmt -o ja.mo ja.po +msgfmt -o ka.mo ka.po +msgfmt -o kk.mo kk.po +msgfmt -o km.mo km.po +msgfmt -o kn.mo kn.po +msgfmt -o ko.mo ko.po +msgfmt -o ks.mo ks.po +msgfmt -o ku.mo ku.po +msgfmt -o ky.mo ky.po +msgfmt -o la.mo la.po +msgfmt -o lo.mo lo.po +msgfmt -o lt.mo lt.po +msgfmt -o lt_LT.mo lt_LT.po +msgfmt -o lv.mo lv.po +msgfmt -o lv_LV.mo lv_LV.po +msgfmt -o mai.mo mai.po +msgfmt -o mg.mo mg.po +msgfmt -o mk.mo mk.po +msgfmt -o ml.mo ml.po +msgfmt -o mn.mo mn.po +msgfmt -o mr.mo mr.po +msgfmt -o ms.mo ms.po +msgfmt -o my.mo my.po +msgfmt -o nb.mo nb.po +msgfmt -o nds.mo nds.po +msgfmt -o ne.mo ne.po +msgfmt -o nl.mo nl.po +msgfmt -o nn.mo nn.po +msgfmt -o nso.mo nso.po +msgfmt -o or.mo or.po +msgfmt -o pa.mo pa.po +msgfmt -o pl.mo pl.po +msgfmt -o pt.mo pt.po +msgfmt -o pt_BR.mo pt_BR.po +msgfmt -o ro.mo ro.po +msgfmt -o ru.mo ru.po +msgfmt -o si.mo si.po +msgfmt -o si_LK.mo si_LK.po +msgfmt -o sk.mo sk.po +msgfmt -o sl.mo sl.po +msgfmt -o sq.mo sq.po +msgfmt -o sr.mo sr.po +msgfmt -o sr@latin.mo sr@latin.po +msgfmt -o sv.mo sv.po +msgfmt -o ta.mo ta.po +msgfmt -o te.mo te.po +msgfmt -o tg.mo tg.po +msgfmt -o th.mo th.po +msgfmt -o tl.mo tl.po +msgfmt -o tr.mo tr.po +msgfmt -o uk.mo uk.po +msgfmt -o ur.mo ur.po +msgfmt -o vi.mo vi.po +msgfmt -o vi_VN.mo vi_VN.po +msgfmt -o wo.mo wo.po +msgfmt -o xh.mo xh.po +msgfmt -o zh_CN.mo zh_CN.po +msgfmt -o zh_CN.GB2312.mo zh_CN.GB2312.po +msgfmt -o zh_HK.mo zh_HK.po +msgfmt -o zh_TW.mo zh_TW.po +msgfmt -o zh_TW.Big5.mo zh_TW.Big5.po +msgfmt -o zu.mo zu.po +'af.mo' -> '/src/selinux/DESTDIR/usr/share/locale/af/LC_MESSAGES/policycoreutils.mo' +'aln.mo' -> '/src/selinux/DESTDIR/usr/share/locale/aln/LC_MESSAGES/policycoreutils.mo' +'am.mo' -> '/src/selinux/DESTDIR/usr/share/locale/am/LC_MESSAGES/policycoreutils.mo' +'ar.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ar/LC_MESSAGES/policycoreutils.mo' +'as.mo' -> '/src/selinux/DESTDIR/usr/share/locale/as/LC_MESSAGES/policycoreutils.mo' +'ast.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ast/LC_MESSAGES/policycoreutils.mo' +'az.mo' -> '/src/selinux/DESTDIR/usr/share/locale/az/LC_MESSAGES/policycoreutils.mo' +'bal.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bal/LC_MESSAGES/policycoreutils.mo' +'be.mo' -> '/src/selinux/DESTDIR/usr/share/locale/be/LC_MESSAGES/policycoreutils.mo' +'bg.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bg/LC_MESSAGES/policycoreutils.mo' +'bn.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bn/LC_MESSAGES/policycoreutils.mo' +'bn_BD.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bn_BD/LC_MESSAGES/policycoreutils.mo' +'bn_IN.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bn_IN/LC_MESSAGES/policycoreutils.mo' +'bo.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bo/LC_MESSAGES/policycoreutils.mo' +'br.mo' -> '/src/selinux/DESTDIR/usr/share/locale/br/LC_MESSAGES/policycoreutils.mo' +'brx.mo' -> '/src/selinux/DESTDIR/usr/share/locale/brx/LC_MESSAGES/policycoreutils.mo' +'bs.mo' -> '/src/selinux/DESTDIR/usr/share/locale/bs/LC_MESSAGES/policycoreutils.mo' +'ca.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ca/LC_MESSAGES/policycoreutils.mo' +'cs.mo' -> '/src/selinux/DESTDIR/usr/share/locale/cs/LC_MESSAGES/policycoreutils.mo' +'cy.mo' -> '/src/selinux/DESTDIR/usr/share/locale/cy/LC_MESSAGES/policycoreutils.mo' +'da.mo' -> '/src/selinux/DESTDIR/usr/share/locale/da/LC_MESSAGES/policycoreutils.mo' +'de.mo' -> '/src/selinux/DESTDIR/usr/share/locale/de/LC_MESSAGES/policycoreutils.mo' +'dz.mo' -> '/src/selinux/DESTDIR/usr/share/locale/dz/LC_MESSAGES/policycoreutils.mo' +'el.mo' -> '/src/selinux/DESTDIR/usr/share/locale/el/LC_MESSAGES/policycoreutils.mo' +'en_GB.mo' -> '/src/selinux/DESTDIR/usr/share/locale/en_GB/LC_MESSAGES/policycoreutils.mo' +'eo.mo' -> '/src/selinux/DESTDIR/usr/share/locale/eo/LC_MESSAGES/policycoreutils.mo' +'es.mo' -> '/src/selinux/DESTDIR/usr/share/locale/es/LC_MESSAGES/policycoreutils.mo' +'es_MX.mo' -> '/src/selinux/DESTDIR/usr/share/locale/es_MX/LC_MESSAGES/policycoreutils.mo' +'et.mo' -> '/src/selinux/DESTDIR/usr/share/locale/et/LC_MESSAGES/policycoreutils.mo' +'eu.mo' -> '/src/selinux/DESTDIR/usr/share/locale/eu/LC_MESSAGES/policycoreutils.mo' +'fa.mo' -> '/src/selinux/DESTDIR/usr/share/locale/fa/LC_MESSAGES/policycoreutils.mo' +'fi.mo' -> '/src/selinux/DESTDIR/usr/share/locale/fi/LC_MESSAGES/policycoreutils.mo' +'fr.mo' -> '/src/selinux/DESTDIR/usr/share/locale/fr/LC_MESSAGES/policycoreutils.mo' +'ga.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ga/LC_MESSAGES/policycoreutils.mo' +'gl.mo' -> '/src/selinux/DESTDIR/usr/share/locale/gl/LC_MESSAGES/policycoreutils.mo' +'gu.mo' -> '/src/selinux/DESTDIR/usr/share/locale/gu/LC_MESSAGES/policycoreutils.mo' +'he.mo' -> '/src/selinux/DESTDIR/usr/share/locale/he/LC_MESSAGES/policycoreutils.mo' +'hi.mo' -> '/src/selinux/DESTDIR/usr/share/locale/hi/LC_MESSAGES/policycoreutils.mo' +'hr.mo' -> '/src/selinux/DESTDIR/usr/share/locale/hr/LC_MESSAGES/policycoreutils.mo' +'hu.mo' -> '/src/selinux/DESTDIR/usr/share/locale/hu/LC_MESSAGES/policycoreutils.mo' +'hy.mo' -> '/src/selinux/DESTDIR/usr/share/locale/hy/LC_MESSAGES/policycoreutils.mo' +'ia.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ia/LC_MESSAGES/policycoreutils.mo' +'id.mo' -> '/src/selinux/DESTDIR/usr/share/locale/id/LC_MESSAGES/policycoreutils.mo' +'ilo.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ilo/LC_MESSAGES/policycoreutils.mo' +'is.mo' -> '/src/selinux/DESTDIR/usr/share/locale/is/LC_MESSAGES/policycoreutils.mo' +'it.mo' -> '/src/selinux/DESTDIR/usr/share/locale/it/LC_MESSAGES/policycoreutils.mo' +'ja.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ja/LC_MESSAGES/policycoreutils.mo' +'ka.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ka/LC_MESSAGES/policycoreutils.mo' +'kk.mo' -> '/src/selinux/DESTDIR/usr/share/locale/kk/LC_MESSAGES/policycoreutils.mo' +'km.mo' -> '/src/selinux/DESTDIR/usr/share/locale/km/LC_MESSAGES/policycoreutils.mo' +'kn.mo' -> '/src/selinux/DESTDIR/usr/share/locale/kn/LC_MESSAGES/policycoreutils.mo' +'ko.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ko/LC_MESSAGES/policycoreutils.mo' +'ks.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ks/LC_MESSAGES/policycoreutils.mo' +'ku.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ku/LC_MESSAGES/policycoreutils.mo' +'ky.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ky/LC_MESSAGES/policycoreutils.mo' +'la.mo' -> '/src/selinux/DESTDIR/usr/share/locale/la/LC_MESSAGES/policycoreutils.mo' +'lo.mo' -> '/src/selinux/DESTDIR/usr/share/locale/lo/LC_MESSAGES/policycoreutils.mo' +'lt.mo' -> '/src/selinux/DESTDIR/usr/share/locale/lt/LC_MESSAGES/policycoreutils.mo' +'lt_LT.mo' -> '/src/selinux/DESTDIR/usr/share/locale/lt_LT/LC_MESSAGES/policycoreutils.mo' +'lv.mo' -> '/src/selinux/DESTDIR/usr/share/locale/lv/LC_MESSAGES/policycoreutils.mo' +'lv_LV.mo' -> '/src/selinux/DESTDIR/usr/share/locale/lv_LV/LC_MESSAGES/policycoreutils.mo' +'mai.mo' -> '/src/selinux/DESTDIR/usr/share/locale/mai/LC_MESSAGES/policycoreutils.mo' +'mg.mo' -> '/src/selinux/DESTDIR/usr/share/locale/mg/LC_MESSAGES/policycoreutils.mo' +'mk.mo' -> '/src/selinux/DESTDIR/usr/share/locale/mk/LC_MESSAGES/policycoreutils.mo' +'ml.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ml/LC_MESSAGES/policycoreutils.mo' +'mn.mo' -> '/src/selinux/DESTDIR/usr/share/locale/mn/LC_MESSAGES/policycoreutils.mo' +'mr.mo' -> '/src/selinux/DESTDIR/usr/share/locale/mr/LC_MESSAGES/policycoreutils.mo' +'ms.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ms/LC_MESSAGES/policycoreutils.mo' +'my.mo' -> '/src/selinux/DESTDIR/usr/share/locale/my/LC_MESSAGES/policycoreutils.mo' +'nb.mo' -> '/src/selinux/DESTDIR/usr/share/locale/nb/LC_MESSAGES/policycoreutils.mo' +'nds.mo' -> '/src/selinux/DESTDIR/usr/share/locale/nds/LC_MESSAGES/policycoreutils.mo' +'ne.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ne/LC_MESSAGES/policycoreutils.mo' +'nl.mo' -> '/src/selinux/DESTDIR/usr/share/locale/nl/LC_MESSAGES/policycoreutils.mo' +'nn.mo' -> '/src/selinux/DESTDIR/usr/share/locale/nn/LC_MESSAGES/policycoreutils.mo' +'nso.mo' -> '/src/selinux/DESTDIR/usr/share/locale/nso/LC_MESSAGES/policycoreutils.mo' +'or.mo' -> '/src/selinux/DESTDIR/usr/share/locale/or/LC_MESSAGES/policycoreutils.mo' +'pa.mo' -> '/src/selinux/DESTDIR/usr/share/locale/pa/LC_MESSAGES/policycoreutils.mo' +'pl.mo' -> '/src/selinux/DESTDIR/usr/share/locale/pl/LC_MESSAGES/policycoreutils.mo' +'pt.mo' -> '/src/selinux/DESTDIR/usr/share/locale/pt/LC_MESSAGES/policycoreutils.mo' +'pt_BR.mo' -> '/src/selinux/DESTDIR/usr/share/locale/pt_BR/LC_MESSAGES/policycoreutils.mo' +'ro.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ro/LC_MESSAGES/policycoreutils.mo' +'ru.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ru/LC_MESSAGES/policycoreutils.mo' +'si.mo' -> '/src/selinux/DESTDIR/usr/share/locale/si/LC_MESSAGES/policycoreutils.mo' +'si_LK.mo' -> '/src/selinux/DESTDIR/usr/share/locale/si_LK/LC_MESSAGES/policycoreutils.mo' +'sk.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sk/LC_MESSAGES/policycoreutils.mo' +'sl.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sl/LC_MESSAGES/policycoreutils.mo' +'sq.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sq/LC_MESSAGES/policycoreutils.mo' +'sr.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sr/LC_MESSAGES/policycoreutils.mo' +'sr@latin.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sr@latin/LC_MESSAGES/policycoreutils.mo' +'sv.mo' -> '/src/selinux/DESTDIR/usr/share/locale/sv/LC_MESSAGES/policycoreutils.mo' +'ta.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ta/LC_MESSAGES/policycoreutils.mo' +'te.mo' -> '/src/selinux/DESTDIR/usr/share/locale/te/LC_MESSAGES/policycoreutils.mo' +'tg.mo' -> '/src/selinux/DESTDIR/usr/share/locale/tg/LC_MESSAGES/policycoreutils.mo' +'th.mo' -> '/src/selinux/DESTDIR/usr/share/locale/th/LC_MESSAGES/policycoreutils.mo' +'tl.mo' -> '/src/selinux/DESTDIR/usr/share/locale/tl/LC_MESSAGES/policycoreutils.mo' +'tr.mo' -> '/src/selinux/DESTDIR/usr/share/locale/tr/LC_MESSAGES/policycoreutils.mo' +'uk.mo' -> '/src/selinux/DESTDIR/usr/share/locale/uk/LC_MESSAGES/policycoreutils.mo' +'ur.mo' -> '/src/selinux/DESTDIR/usr/share/locale/ur/LC_MESSAGES/policycoreutils.mo' +'vi.mo' -> '/src/selinux/DESTDIR/usr/share/locale/vi/LC_MESSAGES/policycoreutils.mo' +'vi_VN.mo' -> '/src/selinux/DESTDIR/usr/share/locale/vi_VN/LC_MESSAGES/policycoreutils.mo' +'wo.mo' -> '/src/selinux/DESTDIR/usr/share/locale/wo/LC_MESSAGES/policycoreutils.mo' +'xh.mo' -> '/src/selinux/DESTDIR/usr/share/locale/xh/LC_MESSAGES/policycoreutils.mo' +'zh_CN.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zh_CN/LC_MESSAGES/policycoreutils.mo' +'zh_CN.GB2312.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zh_CN.GB2312/LC_MESSAGES/policycoreutils.mo' +'zh_HK.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zh_HK/LC_MESSAGES/policycoreutils.mo' +'zh_TW.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zh_TW/LC_MESSAGES/policycoreutils.mo' +'zh_TW.Big5.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zh_TW.Big5/LC_MESSAGES/policycoreutils.mo' +'zu.mo' -> '/src/selinux/DESTDIR/usr/share/locale/zu/LC_MESSAGES/policycoreutils.mo' +make[2]: Leaving directory '/src/selinux/policycoreutils/po' +make[2]: Entering directory '/src/selinux/policycoreutils/man' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +install -m 644 man5/*.5 /src/selinux/DESTDIR/usr/share/man/man5 +for lang in ru ; do \ + if [ -e ${lang}/man5 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + install -m 644 ${lang}/man5/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/policycoreutils/man' +make[2]: Entering directory '/src/selinux/policycoreutils/hll' +make[3]: Entering directory '/src/selinux/policycoreutils/hll/pp' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o pp.o pp.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o pp pp.o -lsepol +mkdir -p /src/selinux/DESTDIR/usr/libexec/selinux/hll +install -m 755 pp /src/selinux/DESTDIR/usr/libexec/selinux/hll +make[3]: Leaving directory '/src/selinux/policycoreutils/hll/pp' +make[2]: Leaving directory '/src/selinux/policycoreutils/hll' +make[1]: Leaving directory '/src/selinux/policycoreutils' +make[1]: Entering directory '/src/selinux/dbus' +mkdir -p /src/selinux/DESTDIR/etc/dbus-1/system.d/ +install -m 644 org.selinux.conf /src/selinux/DESTDIR/etc/dbus-1/system.d/ +mkdir -p /src/selinux/DESTDIR/usr/share/dbus-1/system-services +install -m 644 org.selinux.service /src/selinux/DESTDIR/usr/share/dbus-1/system-services +mkdir -p /src/selinux/DESTDIR/usr/share/polkit-1/actions/ +install -m 644 org.selinux.policy /src/selinux/DESTDIR/usr/share/polkit-1/actions/ +mkdir -p /src/selinux/DESTDIR/usr/share/system-config-selinux +install -m 755 selinux_server.py /src/selinux/DESTDIR/usr/share/system-config-selinux +make[1]: Leaving directory '/src/selinux/dbus' +make[1]: Entering directory '/src/selinux/gui' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +mkdir -p /src/selinux/DESTDIR/usr/share/system-config-selinux +mkdir -p /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/pixmaps +mkdir -p /src/selinux/DESTDIR/usr/share/icons/hicolor/24x24/apps +mkdir -p /src/selinux/DESTDIR/usr/share/polkit-1/actions/ +mkdir -p /src/selinux/DESTDIR/usr/share/applications +install -m 755 system-config-selinux.py /src/selinux/DESTDIR/usr/share/system-config-selinux +install -m 755 system-config-selinux /src/selinux/DESTDIR/usr/bin +install -m 755 polgengui.py /src/selinux/DESTDIR/usr/bin/selinux-polgengui +install -m 644 booleansPage.py domainsPage.py fcontextPage.py loginsPage.py modulesPage.py polgen.ui portsPage.py semanagePage.py statusPage.py system-config-selinux.png system-config-selinux.ui usersPage.py /src/selinux/DESTDIR/usr/share/system-config-selinux +install -m 644 system-config-selinux.8 /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 selinux-polgengui.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +install -m 644 system-config-selinux.png /src/selinux/DESTDIR/usr/share/pixmaps +install -m 644 system-config-selinux.png /src/selinux/DESTDIR/usr/share/icons/hicolor/24x24/apps +install -m 644 system-config-selinux.png /src/selinux/DESTDIR/usr/share/system-config-selinux +install -m 644 *.desktop /src/selinux/DESTDIR/usr/share/applications +mkdir -p /src/selinux/DESTDIR/usr/share/pixmaps +install -m 644 sepolicy_256.png /src/selinux/DESTDIR/usr/share/pixmaps/sepolicy.png +for i in 16 22 32 48 256; do \ + mkdir -p /src/selinux/DESTDIR/usr/share/icons/hicolor/${i}x${i}/apps; \ + install -m 644 sepolicy_${i}.png /src/selinux/DESTDIR/usr/share/icons/hicolor/${i}x${i}/apps/sepolicy.png; \ +done +install -m 644 org.selinux.config.policy /src/selinux/DESTDIR/usr/share/polkit-1/actions/ +make[1]: Leaving directory '/src/selinux/gui' +make[1]: Entering directory '/src/selinux/mcstrans' +make -C src install +make[2]: Entering directory '/src/selinux/mcstrans/src' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -fPIE -c -o mcstrans.o mcstrans.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -fPIE -c -o mcscolor.o mcscolor.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -fPIE -c -o mcstransd.o mcstransd.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -fPIE -c -o mls_level.o mls_level.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -pie -o mcstransd mcstrans.o mcscolor.o mcstransd.o mls_level.o /src/selinux/DESTDIR/usr/lib/libsepol.a -lselinux -lcap -lpcre +test -d /src/selinux/DESTDIR/sbin || install -m 755 -d /src/selinux/DESTDIR/sbin +install -m 755 mcstransd /src/selinux/DESTDIR/sbin +test -d /src/selinux/DESTDIR/etc/rc.d/init.d || install -m 755 -d /src/selinux/DESTDIR/etc/rc.d/init.d +install -m 755 mcstrans.init /src/selinux/DESTDIR/etc/rc.d/init.d/mcstrans +test -d /src/selinux/DESTDIR/usr/lib/systemd/system || install -m 755 -d /src/selinux/DESTDIR/usr/lib/systemd/system +install -m 644 mcstrans.service /src/selinux/DESTDIR/usr/lib/systemd/system/ +make[2]: Leaving directory '/src/selinux/mcstrans/src' +make -C man install +make[2]: Entering directory '/src/selinux/mcstrans/man' +mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 man5/*.5 /src/selinux/DESTDIR/usr/share/man/man5 +install -m 644 man8/*.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang}/man5 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + install -m 644 ${lang}/man5/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + fi ; \ + if [ -e ${lang}/man8 ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/man8/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/mcstrans/man' +make[1]: Leaving directory '/src/selinux/mcstrans' +make[1]: Entering directory '/src/selinux/python' +make[2]: Entering directory '/src/selinux/python/sepolicy' +python3 setup.py install --prefix=/usr `test -n "/src/selinux/DESTDIR" && echo --root /src/selinux/DESTDIR` +/usr/local/lib/python3.10/site-packages/setuptools/dist.py:530: UserWarning: Normalizing '3.2-rc1' to '3.2rc1' + warnings.warn(tmpl.format(**locals())) +running install +/usr/local/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. + warnings.warn( +running build +running build_py +creating build +creating build/lib +creating build/lib/sepolicy +copying sepolicy/interface.py -> build/lib/sepolicy +copying sepolicy/network.py -> build/lib/sepolicy +copying sepolicy/communicate.py -> build/lib/sepolicy +copying sepolicy/generate.py -> build/lib/sepolicy +copying sepolicy/sedbus.py -> build/lib/sepolicy +copying sepolicy/gui.py -> build/lib/sepolicy +copying sepolicy/transition.py -> build/lib/sepolicy +copying sepolicy/__init__.py -> build/lib/sepolicy +copying sepolicy/booleans.py -> build/lib/sepolicy +copying sepolicy/manpage.py -> build/lib/sepolicy +creating build/lib/sepolicy/templates +copying sepolicy/templates/test_module.py -> build/lib/sepolicy/templates +copying sepolicy/templates/rw.py -> build/lib/sepolicy/templates +copying sepolicy/templates/var_spool.py -> build/lib/sepolicy/templates +copying sepolicy/templates/network.py -> build/lib/sepolicy/templates +copying sepolicy/templates/var_cache.py -> build/lib/sepolicy/templates +copying sepolicy/templates/boolean.py -> build/lib/sepolicy/templates +copying sepolicy/templates/var_run.py -> build/lib/sepolicy/templates +copying sepolicy/templates/spec.py -> build/lib/sepolicy/templates +copying sepolicy/templates/user.py -> build/lib/sepolicy/templates +copying sepolicy/templates/tmp.py -> build/lib/sepolicy/templates +copying sepolicy/templates/etc_rw.py -> build/lib/sepolicy/templates +copying sepolicy/templates/semodule.py -> build/lib/sepolicy/templates +copying sepolicy/templates/__init__.py -> build/lib/sepolicy/templates +copying sepolicy/templates/script.py -> build/lib/sepolicy/templates +copying sepolicy/templates/var_log.py -> build/lib/sepolicy/templates +copying sepolicy/templates/unit_file.py -> build/lib/sepolicy/templates +copying sepolicy/templates/var_lib.py -> build/lib/sepolicy/templates +copying sepolicy/templates/executable.py -> build/lib/sepolicy/templates +creating build/lib/sepolicy/help +copying sepolicy/help/__init__.py -> build/lib/sepolicy/help +copying sepolicy/sepolicy.glade -> build/lib/sepolicy +copying sepolicy/help/transition_file.txt -> build/lib/sepolicy/help +copying sepolicy/help/file_equiv.txt -> build/lib/sepolicy/help +copying sepolicy/help/start.txt -> build/lib/sepolicy/help +copying sepolicy/help/booleans_toggled.txt -> build/lib/sepolicy/help +copying sepolicy/help/files_write.txt -> build/lib/sepolicy/help +copying sepolicy/help/login_default.txt -> build/lib/sepolicy/help +copying sepolicy/help/booleans_more_show.txt -> build/lib/sepolicy/help +copying sepolicy/help/system_policy_type.txt -> build/lib/sepolicy/help +copying sepolicy/help/ports_inbound.txt -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_ptrace.txt -> build/lib/sepolicy/help +copying sepolicy/help/files_exec.txt -> build/lib/sepolicy/help +copying sepolicy/help/login.txt -> build/lib/sepolicy/help +copying sepolicy/help/booleans.txt -> build/lib/sepolicy/help +copying sepolicy/help/files_apps.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_from.txt -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_permissive.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_to.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean.txt -> build/lib/sepolicy/help +copying sepolicy/help/system_relabel.txt -> build/lib/sepolicy/help +copying sepolicy/help/system_export.txt -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_unconfined.txt -> build/lib/sepolicy/help +copying sepolicy/help/system.txt -> build/lib/sepolicy/help +copying sepolicy/help/lockdown.txt -> build/lib/sepolicy/help +copying sepolicy/help/booleans_more.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean_1.txt -> build/lib/sepolicy/help +copying sepolicy/help/system_current_mode.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean_2.txt -> build/lib/sepolicy/help +copying sepolicy/help/users.txt -> build/lib/sepolicy/help +copying sepolicy/help/system_boot_mode.txt -> build/lib/sepolicy/help +copying sepolicy/help/ports_outbound.txt -> build/lib/sepolicy/help +copying sepolicy/help/transition_from.png -> build/lib/sepolicy/help +copying sepolicy/help/booleans_toggled.png -> build/lib/sepolicy/help +copying sepolicy/help/start.png -> build/lib/sepolicy/help +copying sepolicy/help/login_default.png -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean_2.png -> build/lib/sepolicy/help +copying sepolicy/help/ports_inbound.png -> build/lib/sepolicy/help +copying sepolicy/help/system_policy_type.png -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_ptrace.png -> build/lib/sepolicy/help +copying sepolicy/help/ports_outbound.png -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_permissive.png -> build/lib/sepolicy/help +copying sepolicy/help/login.png -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean.png -> build/lib/sepolicy/help +copying sepolicy/help/transition_from_boolean_1.png -> build/lib/sepolicy/help +copying sepolicy/help/system_relabel.png -> build/lib/sepolicy/help +copying sepolicy/help/system_export.png -> build/lib/sepolicy/help +copying sepolicy/help/transition_file.png -> build/lib/sepolicy/help +copying sepolicy/help/transition_to.png -> build/lib/sepolicy/help +copying sepolicy/help/system_current_mode.png -> build/lib/sepolicy/help +copying sepolicy/help/users.png -> build/lib/sepolicy/help +copying sepolicy/help/file_equiv.png -> build/lib/sepolicy/help +copying sepolicy/help/files_exec.png -> build/lib/sepolicy/help +copying sepolicy/help/booleans_more_show.png -> build/lib/sepolicy/help +copying sepolicy/help/system.png -> build/lib/sepolicy/help +copying sepolicy/help/files_apps.png -> build/lib/sepolicy/help +copying sepolicy/help/lockdown.png -> build/lib/sepolicy/help +copying sepolicy/help/booleans.png -> build/lib/sepolicy/help +copying sepolicy/help/system_boot_mode.png -> build/lib/sepolicy/help +copying sepolicy/help/lockdown_unconfined.png -> build/lib/sepolicy/help +copying sepolicy/help/booleans_more.png -> build/lib/sepolicy/help +copying sepolicy/help/files_write.png -> build/lib/sepolicy/help +running install_lib +creating /src/selinux/DESTDIR/usr/lib/python3.10 +creating /src/selinux/DESTDIR/usr/lib/python3.10/site-packages +creating /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +creating /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_file.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/file_equiv.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/start.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_toggled.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_write.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_toggled.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/login_default.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_more_show.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/start.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/login_default.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_policy_type.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean_2.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/ports_inbound.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_policy_type.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_ptrace.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/ports_outbound.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/ports_inbound.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_ptrace.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_exec.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_permissive.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/login.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/login.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean_1.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_apps.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_relabel.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_export.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_file.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_to.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_permissive.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_to.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_current_mode.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/__init__.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/users.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_relabel.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_export.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_unconfined.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/file_equiv.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_exec.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_more.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_more_show.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean_1.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_apps.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_current_mode.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/transition_from_boolean_2.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/users.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_boot_mode.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/system_boot_mode.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/ports_outbound.txt -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/lockdown_unconfined.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/booleans_more.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/help/files_write.png -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help +copying build/lib/sepolicy/interface.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/sepolicy.glade -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/network.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/communicate.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/generate.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +creating /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/test_module.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/rw.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/var_spool.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/network.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/var_cache.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/boolean.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/var_run.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/spec.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/user.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/tmp.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/etc_rw.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/semodule.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/__init__.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/script.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/var_log.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/unit_file.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/var_lib.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/templates/executable.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates +copying build/lib/sepolicy/sedbus.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/gui.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/transition.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/__init__.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/booleans.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +copying build/lib/sepolicy/manpage.py -> /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/help/__init__.py to __init__.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/interface.py to interface.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/network.py to network.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/communicate.py to communicate.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/generate.py to generate.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/test_module.py to test_module.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/rw.py to rw.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/var_spool.py to var_spool.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/network.py to network.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/var_cache.py to var_cache.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/boolean.py to boolean.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/var_run.py to var_run.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/spec.py to spec.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/user.py to user.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/tmp.py to tmp.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/etc_rw.py to etc_rw.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/semodule.py to semodule.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/__init__.py to __init__.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/script.py to script.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/var_log.py to var_log.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/unit_file.py to unit_file.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/var_lib.py to var_lib.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/templates/executable.py to executable.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/sedbus.py to sedbus.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/gui.py to gui.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/transition.py to transition.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/__init__.py to __init__.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/booleans.py to booleans.cpython-310.pyc +byte-compiling /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy/manpage.py to manpage.cpython-310.pyc +running install_egg_info +running egg_info +creating sepolicy.egg-info +writing sepolicy.egg-info/PKG-INFO +writing dependency_links to sepolicy.egg-info/dependency_links.txt +writing top-level names to sepolicy.egg-info/top_level.txt +writing manifest file 'sepolicy.egg-info/SOURCES.txt' +reading manifest file 'sepolicy.egg-info/SOURCES.txt' +writing manifest file 'sepolicy.egg-info/SOURCES.txt' +Copying sepolicy.egg-info to /src/selinux/DESTDIR/usr/lib/python3.10/site-packages/sepolicy-3.2rc1-py3.10.egg-info +running install_scripts +[ -d /src/selinux/DESTDIR/usr/bin ] || mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 sepolicy.py /src/selinux/DESTDIR/usr/bin/sepolicy +(cd /src/selinux/DESTDIR/usr/bin; ln -sf sepolicy sepolgen) +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 *.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +mkdir -p /src/selinux/DESTDIR/usr/share/bash-completion/completions +install -m 644 sepolicy-bash-completion.sh /src/selinux/DESTDIR/usr/share/bash-completion/completions/sepolicy +make[2]: Leaving directory '/src/selinux/python/sepolicy' +make[2]: Entering directory '/src/selinux/python/audit2allow' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o sepolgen-ifgen-attr-helper.o sepolgen-ifgen-attr-helper.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o sepolgen-ifgen-attr-helper sepolgen-ifgen-attr-helper.o /src/selinux/DESTDIR/usr/lib/libsepol.a -lselinux +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 audit2allow /src/selinux/DESTDIR/usr/bin +(cd /src/selinux/DESTDIR/usr/bin; ln -sf audit2allow audit2why) +install -m 755 sepolgen-ifgen-attr-helper /src/selinux/DESTDIR/usr/bin +install -m 755 sepolgen-ifgen /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man1 +install -m 644 audit2allow.1 /src/selinux/DESTDIR/usr/share/man/man1/ +install -m 644 audit2why.1 /src/selinux/DESTDIR/usr/share/man/man1/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man1 ; \ + install -m 644 ${lang}/*.1 /src/selinux/DESTDIR/usr/share/man/${lang}/man1/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/python/audit2allow' +make[2]: Entering directory '/src/selinux/python/semanage' +[ -d /src/selinux/DESTDIR/usr/share/man/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 semanage /src/selinux/DESTDIR/usr/sbin +install -m 644 *.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + [ -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +test -d /src/selinux/DESTDIR//usr/lib/python3.10/site-packages || install -m 755 -d /src/selinux/DESTDIR//usr/lib/python3.10/site-packages +install -m 644 seobject.py /src/selinux/DESTDIR//usr/lib/python3.10/site-packages +mkdir -p /src/selinux/DESTDIR/usr/share/bash-completion/completions +install -m 644 semanage-bash-completion.sh /src/selinux/DESTDIR/usr/share/bash-completion/completions/semanage +make[2]: Leaving directory '/src/selinux/python/semanage' +make[2]: Entering directory '/src/selinux/python/sepolgen' +make -C src install +make[3]: Entering directory '/src/selinux/python/sepolgen/src' +make -C sepolgen install +make[4]: Entering directory '/src/selinux/python/sepolgen/src/sepolgen' +mkdir -p /src/selinux/DESTDIR//usr/lib/python3.10/site-packages/sepolgen +install -m 644 *.py /src/selinux/DESTDIR//usr/lib/python3.10/site-packages/sepolgen +make[4]: Leaving directory '/src/selinux/python/sepolgen/src/sepolgen' +make -C share install +make[4]: Entering directory '/src/selinux/python/sepolgen/src/share' +mkdir -p /src/selinux/DESTDIR/var/lib/sepolgen +install -m 644 perm_map /src/selinux/DESTDIR/var/lib/sepolgen +make[4]: Leaving directory '/src/selinux/python/sepolgen/src/share' +make[3]: Leaving directory '/src/selinux/python/sepolgen/src' +make[2]: Leaving directory '/src/selinux/python/sepolgen' +make[2]: Entering directory '/src/selinux/python/chcat' +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 chcat /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 chcat.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/python/chcat' +make[1]: Leaving directory '/src/selinux/python' +make[1]: Entering directory '/src/selinux/restorecond' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o restore.o restore.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o restorecond.o restorecond.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o utmpwatcher.o utmpwatcher.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o stringslist.o stringslist.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o user.o user.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DHAVE_DBUS -pthread -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -c -o watch.o watch.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib -o restorecond restore.o restorecond.o utmpwatcher.o stringslist.o user.o watch.o -lselinux -lgio-2.0 -lgobject-2.0 -lglib-2.0 +Package systemd was not found in the pkg-config search path. +Perhaps you should add the directory containing `systemd.pc' +to the PKG_CONFIG_PATH environment variable +No package 'systemd' found +Package systemd was not found in the pkg-config search path. +Perhaps you should add the directory containing `systemd.pc' +to the PKG_CONFIG_PATH environment variable +No package 'systemd' found +Package systemd was not found in the pkg-config search path. +Perhaps you should add the directory containing `systemd.pc' +to the PKG_CONFIG_PATH environment variable +No package 'systemd' found +Package systemd was not found in the pkg-config search path. +Perhaps you should add the directory containing `systemd.pc' +to the PKG_CONFIG_PATH environment variable +No package 'systemd' found +[ -d /src/selinux/DESTDIR/usr/share/man/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 755 restorecond /src/selinux/DESTDIR/usr/sbin +install -m 644 restorecond.8 /src/selinux/DESTDIR/usr/share/man/man8 +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + [ -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ] || mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +mkdir -p /src/selinux/DESTDIR/etc/rc.d/init.d +install -m 755 restorecond.init /src/selinux/DESTDIR/etc/rc.d/init.d/restorecond +mkdir -p /src/selinux/DESTDIR/etc/selinux +install -m 644 restorecond.conf /src/selinux/DESTDIR/etc/selinux/restorecond.conf +install -m 644 restorecond_user.conf /src/selinux/DESTDIR/etc/selinux/restorecond_user.conf +mkdir -p /src/selinux/DESTDIR/etc/xdg/autostart +install -m 644 restorecond.desktop /src/selinux/DESTDIR/etc/xdg/autostart/restorecond.desktop +mkdir -p /src/selinux/DESTDIR/usr/share/dbus-1/services +install -m 644 org.selinux.Restorecond.service /src/selinux/DESTDIR/usr/share/dbus-1/services/org.selinux.Restorecond.service +mkdir -p /src/selinux/DESTDIR +install -m 644 restorecond.service /src/selinux/DESTDIR +mkdir -p /src/selinux/DESTDIR +install -m 644 restorecond_user.service /src/selinux/DESTDIR +make[1]: Leaving directory '/src/selinux/restorecond' +make[1]: Entering directory '/src/selinux/sandbox' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -DPACKAGE="\"policycoreutils\"" -Wall -Werror -Wextra -W -c -o seunshare.o seunshare.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib seunshare.o -lselinux -lcap-ng -o seunshare +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 sandbox /src/selinux/DESTDIR/usr/bin +mkdir -p /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 sandbox.8 /src/selinux/DESTDIR/usr/share/man/man8/ +install -m 644 seunshare.8 /src/selinux/DESTDIR/usr/share/man/man8/ +mkdir -p /src/selinux/DESTDIR/usr/share/man/man5 +install -m 644 sandbox.5 /src/selinux/DESTDIR/usr/share/man/man5/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man5 ; \ + mkdir -p /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.5 /src/selinux/DESTDIR/usr/share/man/${lang}/man5/ ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +mkdir -p /src/selinux/DESTDIR/usr/sbin +install -m 4755 seunshare /src/selinux/DESTDIR/usr/sbin/ +mkdir -p /src/selinux/DESTDIR/usr/share/sandbox +install -m 755 sandboxX.sh /src/selinux/DESTDIR/usr/share/sandbox +install -m 755 start /src/selinux/DESTDIR/usr/share/sandbox +mkdir -p /src/selinux/DESTDIR/etc/sysconfig +install -m 644 sandbox.conf /src/selinux/DESTDIR/etc/sysconfig/sandbox +make[1]: Leaving directory '/src/selinux/sandbox' +make[1]: Entering directory '/src/selinux/semodule-utils' +make[2]: Entering directory '/src/selinux/semodule-utils/semodule_package' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o semodule_package.o semodule_package.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib semodule_unpackage.c -lsepol -o semodule_unpackage +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib semodule_package.o -lsepol -o semodule_package +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 semodule_package /src/selinux/DESTDIR/usr/bin +install -m 755 semodule_unpackage /src/selinux/DESTDIR/usr/bin +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 semodule_package.8 /src/selinux/DESTDIR/usr/share/man/man8/ +install -m 644 semodule_unpackage.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/semodule-utils/semodule_package' +make[2]: Entering directory '/src/selinux/semodule-utils/semodule_link' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o semodule_link.o semodule_link.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib semodule_link.o -lsepol -o semodule_link +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 semodule_link /src/selinux/DESTDIR/usr/bin +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 semodule_link.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/semodule-utils/semodule_link' +make[2]: Entering directory '/src/selinux/semodule-utils/semodule_expand' +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -c -o semodule_expand.o semodule_expand.c +clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -L/src/selinux/DESTDIR/usr/lib -L/src/selinux/DESTDIR/usr/lib semodule_expand.o -lsepol -o semodule_expand +mkdir -p /src/selinux/DESTDIR/usr/bin +install -m 755 semodule_expand /src/selinux/DESTDIR/usr/bin +test -d /src/selinux/DESTDIR/usr/share/man/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/man8 +install -m 644 semodule_expand.8 /src/selinux/DESTDIR/usr/share/man/man8/ +for lang in ru ; do \ + if [ -e ${lang} ] ; then \ + test -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 || install -m 755 -d /src/selinux/DESTDIR/usr/share/man/${lang}/man8 ; \ + install -m 644 ${lang}/*.8 /src/selinux/DESTDIR/usr/share/man/${lang}/man8/ ; \ + fi ; \ +done +make[2]: Leaving directory '/src/selinux/semodule-utils/semodule_expand' +make[1]: Leaving directory '/src/selinux/semodule-utils' ++ clang -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -I/src/selinux/DESTDIR/usr/include -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -c -o secilc-fuzzer.o /src/secilc-fuzzer.c +/src/secilc-fuzzer.c:56:31: warning: passing 'const uint8_t *' (aka 'const unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign] + 56 | if (cil_add_file(db, "fuzz", data, size) != SEPOL_OK) + |  ^~~~ +/src/selinux/DESTDIR/usr/include/sepol/cil/cil.h:45:69: note: passing argument to parameter 'data' here + 45 | extern int cil_add_file(cil_db_t *db, const char *name, const char *data, size_t size); + |  ^ +1 warning generated. ++ clang++ -O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -stdlib=libc++ -fsanitize=fuzzer secilc-fuzzer.o /src/selinux/DESTDIR/usr/lib/libsepol.a -o /out/secilc-fuzzer ++ zip -r /out/secilc-fuzzer_seed_corpus.zip secilc/test + adding: secilc/test/ (stored 0%) + adding: secilc/test/opt-expected.cil (deflated 72%) + adding: secilc/test/minimum.cil (deflated 53%) + adding: secilc/test/integration.cil (deflated 71%) + adding: secilc/test/optional_test.cil (deflated 62%) + adding: secilc/test/bounds.cil (deflated 82%) + adding: secilc/test/policy.cil (deflated 74%) + adding: secilc/test/name_resolution_test.cil (deflated 73%) + adding: secilc/test/neverallow.cil (deflated 69%) + adding: secilc/test/opt-input.cil (deflated 75%) + adding: secilc/test/in_test.cil (deflated 74%) + adding: secilc/test/block_test.cil (deflated 67%) +Running: docker build -t gcr.io/oss-fuzz/selinux projects/selinux +Cleaning existing build artifacts. +Running: docker run --rm --privileged -i -v /tmp/tmph1ht1j27/oss-fuzz/build/out/selinux:/out -t gcr.io/oss-fuzz/selinux /bin/bash -c 'rm -rf /out/*' +Running: docker run --rm --privileged -i -v /tmp/tmph1ht1j27/oss-fuzz/build/work/selinux:/work -t gcr.io/oss-fuzz/selinux /bin/bash -c 'rm -rf /work/*' +Running: docker run --rm --privileged -i --cap-add SYS_PTRACE -e FUZZING_ENGINE=libfuzzer -e SANITIZER=address -e ARCHITECTURE=x86_64 -e FUZZING_LANGUAGE=c -v /tmp/tmph1ht1j27/selinux:/src/selinux -v /tmp/tmph1ht1j27/oss-fuzz/build/out/selinux:/out -v /tmp/tmph1ht1j27/oss-fuzz/build/work/selinux:/work -t gcr.io/oss-fuzz/selinux +/tmp/tmph1ht1j27/oss-fuzz$ /usr/bin/python3 infra/helper.py reproduce selinux secilc-fuzzer /home/bradswain/testcases/selinux/OSV-2021-270 +/tmp/tmph1ht1j27/oss-fuzz/infra/helper.py:27: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 + import pipes ++ FUZZER=secilc-fuzzer ++ shift ++ '[' '!' -v TESTCASE ']' ++ TESTCASE=/testcase ++ '[' '!' -f /testcase ']' ++ export RUN_FUZZER_MODE=interactive ++ RUN_FUZZER_MODE=interactive ++ export FUZZING_ENGINE=libfuzzer ++ FUZZING_ENGINE=libfuzzer ++ export SKIP_SEED_CORPUS=1 ++ SKIP_SEED_CORPUS=1 ++ run_fuzzer secilc-fuzzer -runs=100 /testcase +vm.mmap_rnd_bits = 28 +/out/secilc-fuzzer -rss_limit_mb=2560 -timeout=25 -runs=100 /testcase < /dev/null +INFO: Running with entropic power schedule (0xFF, 100). +INFO: Seed: 2374174406 +INFO: Loaded 1 modules (17391 inline 8-bit counters): 17391 [0x561fc6b4ea88, 0x561fc6b52e77), +INFO: Loaded 1 PC tables (17391 PCs): 17391 [0x561fc6b52e78,0x561fc6b96d68), +/out/secilc-fuzzer: Running 1 inputs 100 time(s) each. +Running: /testcase +Recursive blockinherit found: +block b at fuzz:1 +blockinherit b at fuzz:1 +================================================================= +==14==ERROR: AddressSanitizer: heap-use-after-free on address 0x5060000006a0 at pc 0x561fc69a2f48 bp 0x7ffc0b6f8980 sp 0x7ffc0b6f8978 +READ of size 4 at 0x5060000006a0 thread T0 +SCARINESS: 45 (4-byte-read-heap-use-after-free) + #0 0x561fc69a2f47 in cil_destroy_block /src/selinux/libsepol/src/../cil/src/cil_build_ast.c:249:17 + #1 0x561fc6976fbc in cil_destroy_data /src/selinux/libsepol/src/../cil/src/cil.c:626:3 + #2 0x561fc6a1c6fe in cil_tree_node_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c + #3 0x561fc6a1c6fe in cil_tree_children_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c + #4 0x561fc6a1c1a3 in cil_tree_subtree_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c:172:2 + #5 0x561fc6a1c1a3 in cil_tree_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c:165:2 + #6 0x561fc69750ed in cil_db_destroy /src/selinux/libsepol/src/../cil/src/cil.c:453:2 + #7 0x561fc695da5a in LLVMFuzzerTestOneInput /src/secilc-fuzzer.c:83:2 + #8 0x561fc6812330 in fuzzer::Fuzzer::ExecuteCallback(unsigned char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp:614:13 + #9 0x561fc67fd5a5 in fuzzer::RunOneTest(fuzzer::Fuzzer*, char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:327:6 + #10 0x561fc680303f in fuzzer::FuzzerDriver(int*, char***, int (*)(unsigned char const*, unsigned long)) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:862:9 + #11 0x561fc682e2e2 in main /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerMain.cpp:20:10 + #12 0x7f5f7a89f082 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24082) (BuildId: 0702430aef5fa3dda43986563e9ffcc47efbd75e) + #13 0x561fc67f578d in _start (/out/secilc-fuzzer+0xc578d) + +DEDUP_TOKEN: cil_destroy_block--cil_destroy_data--cil_tree_node_destroy +0x5060000006a0 is located 32 bytes inside of 56-byte region [0x506000000680,0x5060000006b8) +freed by thread T0 here: + #0 0x561fc691de66 in free /src/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp:52:3 + #1 0x561fc6a1c706 in cil_tree_node_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c:240:2 + #2 0x561fc6a1c706 in cil_tree_children_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c + #3 0x561fc6a1c1a3 in cil_tree_subtree_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c:172:2 + #4 0x561fc6a1c1a3 in cil_tree_destroy /src/selinux/libsepol/src/../cil/src/cil_tree.c:165:2 + #5 0x561fc69750ed in cil_db_destroy /src/selinux/libsepol/src/../cil/src/cil.c:453:2 + #6 0x561fc695da5a in LLVMFuzzerTestOneInput /src/secilc-fuzzer.c:83:2 + #7 0x561fc6812330 in fuzzer::Fuzzer::ExecuteCallback(unsigned char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp:614:13 + #8 0x561fc67fd5a5 in fuzzer::RunOneTest(fuzzer::Fuzzer*, char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:327:6 + #9 0x561fc680303f in fuzzer::FuzzerDriver(int*, char***, int (*)(unsigned char const*, unsigned long)) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:862:9 + #10 0x561fc682e2e2 in main /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerMain.cpp:20:10 + #11 0x7f5f7a89f082 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24082) (BuildId: 0702430aef5fa3dda43986563e9ffcc47efbd75e) + +DEDUP_TOKEN: __interceptor_free--cil_tree_node_destroy--cil_tree_children_destroy +previously allocated by thread T0 here: + #0 0x561fc691e0ff in malloc /src/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp:68:3 + #1 0x561fc69dae77 in cil_malloc /src/selinux/libsepol/src/../cil/src/cil_mem.c:39:14 + #2 0x561fc6a1c02e in cil_tree_node_init /src/selinux/libsepol/src/../cil/src/cil_tree.c:210:35 + #3 0x561fc69c4256 in __cil_build_ast_node_helper /src/selinux/libsepol/src/../cil/src/cil_build_ast.c:6169:2 + #4 0x561fc6a1ca9b in cil_tree_walk_core /src/selinux/libsepol/src/../cil/src/cil_tree.c:272:9 + #5 0x561fc6a1cc81 in cil_tree_walk /src/selinux/libsepol/src/../cil/src/cil_tree.c:316:7 + #6 0x561fc6a1cc81 in cil_tree_walk_core /src/selinux/libsepol/src/../cil/src/cil_tree.c:284:9 + #7 0x561fc6a1cc81 in cil_tree_walk /src/selinux/libsepol/src/../cil/src/cil_tree.c:316:7 + #8 0x561fc6a1cc81 in cil_tree_walk_core /src/selinux/libsepol/src/../cil/src/cil_tree.c:284:9 + #9 0x561fc6a1cc81 in cil_tree_walk /src/selinux/libsepol/src/../cil/src/cil_tree.c:316:7 + #10 0x561fc6a1cc81 in cil_tree_walk_core /src/selinux/libsepol/src/../cil/src/cil_tree.c:284:9 + #11 0x561fc6a1ce8e in cil_tree_walk /src/selinux/libsepol/src/../cil/src/cil_tree.c:316:7 + #12 0x561fc69c752c in cil_build_ast /src/selinux/libsepol/src/../cil/src/cil_build_ast.c:6550:7 + #13 0x561fc6976c7a in cil_compile /src/selinux/libsepol/src/../cil/src/cil.c:540:7 + #14 0x561fc695d958 in LLVMFuzzerTestOneInput /src/secilc-fuzzer.c:59:6 + #15 0x561fc6812330 in fuzzer::Fuzzer::ExecuteCallback(unsigned char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerLoop.cpp:614:13 + #16 0x561fc67fd5a5 in fuzzer::RunOneTest(fuzzer::Fuzzer*, char const*, unsigned long) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:327:6 + #17 0x561fc680303f in fuzzer::FuzzerDriver(int*, char***, int (*)(unsigned char const*, unsigned long)) /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerDriver.cpp:862:9 + #18 0x561fc682e2e2 in main /src/llvm-project/compiler-rt/lib/fuzzer/FuzzerMain.cpp:20:10 + #19 0x7f5f7a89f082 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24082) (BuildId: 0702430aef5fa3dda43986563e9ffcc47efbd75e) + +DEDUP_TOKEN: __interceptor_malloc--cil_malloc--cil_tree_node_init +SUMMARY: AddressSanitizer: heap-use-after-free /src/selinux/libsepol/src/../cil/src/cil_build_ast.c:249:17 in cil_destroy_block +Shadow bytes around the buggy address: + 0x506000000400: fd fd fd fa fa fa fa fa fd fd fd fd fd fd fd fa + 0x506000000480: fa fa fa fa fd fd fd fd fd fd fd fa fa fa fa fa + 0x506000000500: fd fd fd fd fd fd fd fa fa fa fa fa fd fd fd fd + 0x506000000580: fd fd fd fa fa fa fa fa 00 00 00 00 00 00 00 fa + 0x506000000600: fa fa fa fa 00 00 00 00 00 00 00 fa fa fa fa fa +=>0x506000000680: fd fd fd fd[fd]fd fd fa fa fa fa fa fd fd fd fd + 0x506000000700: fd fd fd fa fa fa fa fa fd fd fd fd fd fd fd fa + 0x506000000780: fa fa fa fa fd fd fd fd fd fd fd fa fa fa fa fa + 0x506000000800: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa + 0x506000000880: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa + 0x506000000900: fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa fa +Shadow byte legend (one shadow byte represents 8 application bytes): + Addressable: 00 + Partially addressable: 01 02 03 04 05 06 07 + Heap left redzone: fa + Freed heap region: fd + Stack left redzone: f1 + Stack mid redzone: f2 + Stack right redzone: f3 + Stack after return: f5 + Stack use after scope: f8 + Global redzone: f9 + Global init order: f6 + Poisoned by user: f7 + Container overflow: fc + Array cookie: ac + Intra object redzone: bb + ASan internal: fe + Left alloca redzone: ca + Right alloca redzone: cb +==14==ABORTING +Running: docker run --rm --privileged -i -v /tmp/tmph1ht1j27/oss-fuzz/build/out/selinux:/out -v /home/bradswain/testcases/selinux/OSV-2021-270:/testcase -t gcr.io/oss-fuzz-base/base-runner reproduce secilc-fuzzer -runs=100 diff --git a/common/tests/data/stacktrace_corpus/java_stacktrace.txt b/common/tests/data/stacktrace_corpus/java_stacktrace.txt new file mode 100644 index 00000000..36bb46bf --- /dev/null +++ b/common/tests/data/stacktrace_corpus/java_stacktrace.txt @@ -0,0 +1,5533 @@ +commons-jxpath/ +commons-jxpath/README.md +commons-jxpath/pom.xml +commons-jxpath/.gitignore +commons-jxpath/conf/ +commons-jxpath/conf/findbugs-exclude-filter.xml +commons-jxpath/build.properties.sample +commons-jxpath/build.xml +commons-jxpath/checkstyle.xml +commons-jxpath/rat.xml +commons-jxpath/CONTRIBUTING.md +commons-jxpath/SECURITY.md +commons-jxpath/NOTICE.txt +commons-jxpath/PROPOSAL.html +commons-jxpath/.asf.yaml +commons-jxpath/LICENSE.txt +commons-jxpath/src/ +commons-jxpath/src/conf/ +commons-jxpath/src/conf/MANIFEST.MF +commons-jxpath/src/site/ +commons-jxpath/src/site/resources/ +commons-jxpath/src/site/resources/profile.jacoco +commons-jxpath/src/site/resources/download_jxpath.cgi +commons-jxpath/src/site/resources/images/ +commons-jxpath/src/site/resources/images/jakarta-logo.gif +commons-jxpath/src/site/resources/images/logo.jpg +commons-jxpath/src/site/resources/images/logo-wbg.jpg +commons-jxpath/src/site/resources/images/logo-for-anakia.jpg +commons-jxpath/src/site/xdoc/ +commons-jxpath/src/site/xdoc/download_jxpath.xml +commons-jxpath/src/site/xdoc/release-notes-1.2.xml +commons-jxpath/src/site/xdoc/contributors.xml +commons-jxpath/src/site/xdoc/users-guide.xml +commons-jxpath/src/site/xdoc/issue-tracking.xml +commons-jxpath/src/site/xdoc/mail-lists.xml +commons-jxpath/src/site/xdoc/building.xml +commons-jxpath/src/site/xdoc/release-notes-1.1.xml +commons-jxpath/src/site/xdoc/index.xml +commons-jxpath/src/site/xdoc/release-notes-1.3.xml +commons-jxpath/src/site/site.xml +commons-jxpath/src/main/ +commons-jxpath/src/main/java/ +commons-jxpath/src/main/java/org/ +commons-jxpath/src/main/java/org/apache/ +commons-jxpath/src/main/java/org/apache/commons/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/Variables.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ExpressionContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/BasicNodeSet.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/Function.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ExtendedKeyManager.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathInvalidAccessException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathIntrospector.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/DOMParser.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/DocumentContainer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/XMLParser.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/JDOMParser.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/xml/XMLParser2.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/PackageFunctions.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/functions/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/functions/MethodFunction.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/functions/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/functions/ConstructorFunction.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/Container.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathFunctionNotFoundException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathBeanInfo.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/TypeConverter.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/KeyManagerUtils.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/JXPath11CompatibleTypeConverter.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/ValueUtils.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/TypeUtils.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/ReverseComparator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/MethodLookupUtils.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/util/ClassLoaderUtil.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/CompiledExpression.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathAbstractFactoryException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ClassFunctions.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/BasicVariables.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/ServletContextHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContextHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/ServletRequestAndContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/PageScopeContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/PageContextHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/KeywordVariables.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/HttpSessionAndServletContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/JXPathServletContexts.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/servlet/Constants.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathContextFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathContextFactoryConfigurationError.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathBasicBeanInfo.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/Functions.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathTypeConversionException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/MapDynamicPropertyHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathNotFoundException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/Pointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/IdentityManager.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/NodeSet.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/XMLDocumentContainer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/DynamicPropertyHandler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/EvalContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/PrecedingOrFollowingContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/UnionContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/RootContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/InitialContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/AncestorContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/ParentContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreter.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/AttributeContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/NodeSetContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/ChildContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/SelfContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/NamespaceContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/PredicateContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/axes/DescendantContext.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/XPathParserConstants.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/Token.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/jcc.bat +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/XPathParser.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/SimpleCharStream.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/ParseException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/XPath.html +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/XPathParserTokenManager.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/TokenMgrError.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/parser/XPath.jj +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImpl.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/JXPathContextFactoryReferenceImpl.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/Parser.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/InfoSetUtil.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/JXPathCompiledExpression.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/Compiler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/NamespaceResolver.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/NodePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/NodePointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNamespaceIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMAttributePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/NamespacePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dom/DOMNodePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/VariablePointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/NodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/container/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/container/ContainerPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/container/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/container/ContainerPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanPropertyPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynabeans/StrictLazyDynaBeanPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionAttributeNodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPropertyPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionChildNodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/PropertyOwnerPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanAttributeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/LangAttributePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionNodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/BeanPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullPropertyPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/NullElementPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/beans/CollectionPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicPropertyPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicPropertyIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicAttributeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicPointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNamespaceIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMPointerFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMAttributePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNamespacePointer.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMNodeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/model/jdom/JDOMAttributeIterator.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/QName.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/ +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/LocationPath.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationRelationalExpression.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTypeTest.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/ProcessingInstructionTest.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/Path.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationMod.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationAnd.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunction.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationNegate.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/NameAttributeTest.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/ExpressionPath.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationNotEqual.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationLessThanOrEqual.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/TreeCompiler.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationDivide.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationEqual.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationUnion.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationGreaterThanOrEqual.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/Constant.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/Expression.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationOr.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeTest.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/package-info.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperation.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationSubtract.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationLessThan.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationMultiply.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationCompare.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreFunction.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationGreaterThan.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/NodeNameTest.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/CoreOperationAdd.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/Operation.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/Step.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ri/compiler/VariableReference.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/AbstractFactory.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/JXPathInvalidSyntaxException.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/KeyManager.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/FunctionLibrary.java +commons-jxpath/src/main/java/org/apache/commons/jxpath/ExceptionHandler.java +commons-jxpath/src/changes/ +commons-jxpath/src/changes/changes.xml +commons-jxpath/src/test/ +commons-jxpath/src/test/resources/ +commons-jxpath/src/test/resources/org/ +commons-jxpath/src/test/resources/org/apache/ +commons-jxpath/src/test/resources/org/apache/commons/ +commons-jxpath/src/test/resources/org/apache/commons/jxpath/ +commons-jxpath/src/test/resources/org/apache/commons/jxpath/ExternalNS.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/XmlPreserveSpace.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/VendorUpper.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/Vendor.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/InnerEmptyNamespace.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/IterateAliasedNS.xml +commons-jxpath/src/test/resources/org/apache/commons/jxpath/XmlSpace.xml +commons-jxpath/src/test/java/ +commons-jxpath/src/test/java/org/ +commons-jxpath/src/test/java/org/apache/ +commons-jxpath/src/test/java/org/apache/commons/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/JXPathTestCase.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/TestBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath172DynamicTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath177Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath118Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath113Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath149Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath172Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/util/BasicTypeConverterTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ClassLoaderUtilTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ValueUtilsTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ClassLoadingExampleClass.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/TestMixedModelBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/BasicNodeSetTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/servlet/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/servlet/JXPathServletContextTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/TestNull.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/NestedTestBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/JXPathContextReferenceImplTestCase.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/axes/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/axes/TestBeanWithNode.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/axes/RecursiveAxesTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/axes/SimplePathInterpreterTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/axes/RecursiveBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/JXPathCompiledExpressionTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/ExceptionHandlerTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/StressTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dom/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dom/TestDOMFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dom/DOMModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/XMLPreserveSpaceTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/container/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/ExternalXMLNamespaceTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/EmbeddedColonMapKeysTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/MixedModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/XMLUpperCaseElementsTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/JXPath154Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/JXPath151Test.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/AliasedNamespaceIterationTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/XMLSpaceTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/XMLModelTestCase.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/TestMixedModelFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynabeans/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynabeans/DynaBeanModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynabeans/TestDynaBeanFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynabeans/LazyDynaBeanTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/beans/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/beans/TestBeanFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/beans/BadlyImplementedFactoryTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/beans/BeanModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/beans/TestIndexedPropertyBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynamic/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynamic/TestDynamicPropertyFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/dynamic/DynamicPropertiesModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/ExceptionPropertyTestBean.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/BeanModelTestCase.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/jdom/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/jdom/JDOMModelTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/jdom/TestJDOMFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/model/EmptyCollectionTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/ +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/VariableTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/TestFunctions2.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/TestFunctions.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/VariableFactory.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/CoreOperationTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/ContextDependencyTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/ExtensionFunctionTest.java +commons-jxpath/src/test/java/org/apache/commons/jxpath/ri/compiler/CoreFunctionTest.java +commons-jxpath/src/assembly/ +commons-jxpath/src/assembly/bin.xml +commons-jxpath/src/assembly/src.xml +commons-jxpath/STATUS.html +commons-jxpath/CODE_OF_CONDUCT.md +fuzz-tooling/ +fuzz-tooling/infra/ +fuzz-tooling/infra/build_fuzzers.Dockerfile +fuzz-tooling/infra/constants.py +fuzz-tooling/infra/run_fuzzers.Dockerfile +fuzz-tooling/infra/README.md +fuzz-tooling/infra/repo_manager_test.py +fuzz-tooling/infra/build/ +fuzz-tooling/infra/build/status/ +fuzz-tooling/infra/build/status/polymer.json +fuzz-tooling/infra/build/status/deploy.sh +fuzz-tooling/infra/build/status/index.html +fuzz-tooling/infra/build/status/bower.json +fuzz-tooling/infra/build/status/src/ +fuzz-tooling/infra/build/status/src/build-status/ +fuzz-tooling/infra/build/status/src/build-status/build-status.html +fuzz-tooling/infra/build/status/manifest.json +fuzz-tooling/infra/build/request_all_builds.sh +fuzz-tooling/infra/build/functions/ +fuzz-tooling/infra/build/functions/ci_trial_build.py +fuzz-tooling/infra/build/functions/datastore_entities.py +fuzz-tooling/infra/build/functions/deploy.sh +fuzz-tooling/infra/build/functions/requirements.txt +fuzz-tooling/infra/build/functions/test_utils.py +fuzz-tooling/infra/build/functions/request_build.py +fuzz-tooling/infra/build/functions/test_data/ +fuzz-tooling/infra/build/functions/test_data/expected_centipede_build_steps.json +fuzz-tooling/infra/build/functions/test_data/expected_build_steps.json +fuzz-tooling/infra/build/functions/test_data/expected_coverage_build_steps.json +fuzz-tooling/infra/build/functions/test_data/expected_trial_build_steps.json +fuzz-tooling/infra/build/functions/request_coverage_build.py +fuzz-tooling/infra/build/functions/build_and_push_test_images.py +fuzz-tooling/infra/build/functions/trial_build.py +fuzz-tooling/infra/build/functions/project_sync.py +fuzz-tooling/infra/build/functions/ci_trial_build_test.py +fuzz-tooling/infra/build/functions/main.py +fuzz-tooling/infra/build/functions/build_project.py +fuzz-tooling/infra/build/functions/__init__.py +fuzz-tooling/infra/build/functions/build_project_test.py +fuzz-tooling/infra/build/functions/request_introspector_build.py +fuzz-tooling/infra/build/functions/build_lib.py +fuzz-tooling/infra/build/functions/build_and_run_coverage.py +fuzz-tooling/infra/build/functions/build_and_run_coverage_test.py +fuzz-tooling/infra/build/functions/project_sync_test.py +fuzz-tooling/infra/build/functions/request_build_test.py +fuzz-tooling/infra/build/functions/fuzzbench.py +fuzz-tooling/infra/build/functions/index.yaml +fuzz-tooling/infra/build/functions/trial_build_test.py +fuzz-tooling/infra/build/functions/trial_build/ +fuzz-tooling/infra/build/functions/trial_build/Dockerfile +fuzz-tooling/infra/build/functions/trial_build/cloudbuild.yaml +fuzz-tooling/infra/build/functions/base_images.py +fuzz-tooling/infra/build/build_status/ +fuzz-tooling/infra/build/build_status/Dockerfile +fuzz-tooling/infra/build/build_status/update_build_status_test.py +fuzz-tooling/infra/build/build_status/cloudbuild.yaml +fuzz-tooling/infra/build/build_status/fuzz_introspector_page_gen.py +fuzz-tooling/infra/build/build_status/update_build_status.py +fuzz-tooling/infra/build/request_build.sh +fuzz-tooling/infra/manifest.py +fuzz-tooling/infra/build_specified_commit_test.py +fuzz-tooling/infra/uploader/ +fuzz-tooling/infra/uploader/Dockerfile +fuzz-tooling/infra/retry.py +fuzz-tooling/infra/test_repos.py +fuzz-tooling/infra/helper_test.py +fuzz-tooling/infra/tools/ +fuzz-tooling/infra/tools/hold_back_images.py +fuzz-tooling/infra/tools/wycheproof/ +fuzz-tooling/infra/tools/wycheproof/package.bash +fuzz-tooling/infra/tools/wycheproof/.gitignore +fuzz-tooling/infra/tools/wycheproof/run.py +fuzz-tooling/infra/tools/wycheproof/generate_job.py +fuzz-tooling/infra/tools/wycheproof/launcher.py +fuzz-tooling/infra/cifuzz/ +fuzz-tooling/infra/cifuzz/cifuzz_combined_entrypoint.py +fuzz-tooling/infra/cifuzz/get_coverage.py +fuzz-tooling/infra/cifuzz/http_utils_test.py +fuzz-tooling/infra/cifuzz/requirements.txt +fuzz-tooling/infra/cifuzz/build_fuzzers_entrypoint.py +fuzz-tooling/infra/cifuzz/run_cifuzz.py +fuzz-tooling/infra/cifuzz/cifuzz_end_to_end_test.py +fuzz-tooling/infra/cifuzz/package-lock.json +fuzz-tooling/infra/cifuzz/config_utils.py +fuzz-tooling/infra/cifuzz/environment.py +fuzz-tooling/infra/cifuzz/run_fuzzers.py +fuzz-tooling/infra/cifuzz/package.json +fuzz-tooling/infra/cifuzz/affected_fuzz_targets.py +fuzz-tooling/infra/cifuzz/continuous_integration_test.py +fuzz-tooling/infra/cifuzz/clusterfuzz_deployment_test.py +fuzz-tooling/infra/cifuzz/logs.py +fuzz-tooling/infra/cifuzz/test_data/ +fuzz-tooling/infra/cifuzz/test_data/undefined/ +fuzz-tooling/infra/cifuzz/test_data/undefined/build-out/ +fuzz-tooling/infra/cifuzz/test_data/undefined/build-out/curl_fuzzer_undefined +fuzz-tooling/infra/cifuzz/test_data/example_coverage_report_summary.json +fuzz-tooling/infra/cifuzz/test_data/example_crash_fuzzer_output.txt +fuzz-tooling/infra/cifuzz/test_data/memory/ +fuzz-tooling/infra/cifuzz/test_data/memory/build-out/ +fuzz-tooling/infra/cifuzz/test_data/memory/build-out/curl_fuzzer_memory +fuzz-tooling/infra/cifuzz/test_data/example_curl_cov.json +fuzz-tooling/infra/cifuzz/test_data/external-project/ +fuzz-tooling/infra/cifuzz/test_data/external-project/Makefile +fuzz-tooling/infra/cifuzz/test_data/external-project/my_api.cpp +fuzz-tooling/infra/cifuzz/test_data/external-project/.clusterfuzzlite/ +fuzz-tooling/infra/cifuzz/test_data/external-project/.clusterfuzzlite/Dockerfile +fuzz-tooling/infra/cifuzz/test_data/external-project/.clusterfuzzlite/build.sh +fuzz-tooling/infra/cifuzz/test_data/external-project/standalone_fuzz_target_runner.cpp +fuzz-tooling/infra/cifuzz/test_data/external-project/do_stuff_fuzzer.dict +fuzz-tooling/infra/cifuzz/test_data/external-project/do_stuff_fuzzer.cpp +fuzz-tooling/infra/cifuzz/test_data/external-project/my_api.h +fuzz-tooling/infra/cifuzz/test_data/msan_crash_fuzzer_output.txt +fuzz-tooling/infra/cifuzz/test_data/TimeoutFuzzer.cpp +fuzz-tooling/infra/cifuzz/test_data/example_curl_file_list.json +fuzz-tooling/infra/cifuzz/test_data/build-out/ +fuzz-tooling/infra/cifuzz/test_data/build-out/example_nocrash_fuzzer +fuzz-tooling/infra/cifuzz/test_data/build-out/example_crash_fuzzer +fuzz-tooling/infra/cifuzz/test_data/timeout_fuzzer +fuzz-tooling/infra/cifuzz/test_data/msan_crash_fuzzer_bug_summary.txt +fuzz-tooling/infra/cifuzz/test_data/example_crash_fuzzer_bug_summary.txt +fuzz-tooling/infra/cifuzz/test_data/example_curl_fuzzer_cov.json +fuzz-tooling/infra/cifuzz/docker.py +fuzz-tooling/infra/cifuzz/filestore/ +fuzz-tooling/infra/cifuzz/filestore/github_actions/ +fuzz-tooling/infra/cifuzz/filestore/github_actions/github_api.py +fuzz-tooling/infra/cifuzz/filestore/github_actions/github_actions_test.py +fuzz-tooling/infra/cifuzz/filestore/github_actions/upload.js +fuzz-tooling/infra/cifuzz/filestore/github_actions/__init__.py +fuzz-tooling/infra/cifuzz/filestore/github_actions/github_api_test.py +fuzz-tooling/infra/cifuzz/filestore/git/ +fuzz-tooling/infra/cifuzz/filestore/git/git_test.py +fuzz-tooling/infra/cifuzz/filestore/git/__init__.py +fuzz-tooling/infra/cifuzz/filestore/gitlab/ +fuzz-tooling/infra/cifuzz/filestore/gitlab/__init__.py +fuzz-tooling/infra/cifuzz/filestore/filesystem/ +fuzz-tooling/infra/cifuzz/filestore/filesystem/__init__.py +fuzz-tooling/infra/cifuzz/filestore/no_filestore/ +fuzz-tooling/infra/cifuzz/filestore/no_filestore/__init__.py +fuzz-tooling/infra/cifuzz/filestore/gsutil/ +fuzz-tooling/infra/cifuzz/filestore/gsutil/__init__.py +fuzz-tooling/infra/cifuzz/filestore/__init__.py +fuzz-tooling/infra/cifuzz/filestore_utils_test.py +fuzz-tooling/infra/cifuzz/run_fuzzers_entrypoint.py +fuzz-tooling/infra/cifuzz/example_cifuzz.yml +fuzz-tooling/infra/cifuzz/cifuzz-base/ +fuzz-tooling/infra/cifuzz/cifuzz-base/Dockerfile +fuzz-tooling/infra/cifuzz/affected_fuzz_targets_test.py +fuzz-tooling/infra/cifuzz/fuzz_target.py +fuzz-tooling/infra/cifuzz/generate_coverage_report_test.py +fuzz-tooling/infra/cifuzz/cloudbuild.yaml +fuzz-tooling/infra/cifuzz/get_coverage_test.py +fuzz-tooling/infra/cifuzz/external-actions/ +fuzz-tooling/infra/cifuzz/external-actions/run_fuzzers/ +fuzz-tooling/infra/cifuzz/external-actions/run_fuzzers/action.yml +fuzz-tooling/infra/cifuzz/external-actions/build_fuzzers/ +fuzz-tooling/infra/cifuzz/external-actions/build_fuzzers/action.yml +fuzz-tooling/infra/cifuzz/http_utils.py +fuzz-tooling/infra/cifuzz/fuzz_target_test.py +fuzz-tooling/infra/cifuzz/docker_test.py +fuzz-tooling/infra/cifuzz/base_runner_utils.py +fuzz-tooling/infra/cifuzz/build_fuzzers.py +fuzz-tooling/infra/cifuzz/clusterfuzz_deployment.py +fuzz-tooling/infra/cifuzz/workspace_utils.py +fuzz-tooling/infra/cifuzz/test_helpers.py +fuzz-tooling/infra/cifuzz/generate_coverage_report.py +fuzz-tooling/infra/cifuzz/build_fuzzers_test.py +fuzz-tooling/infra/cifuzz/platform_config/ +fuzz-tooling/infra/cifuzz/platform_config/platform_config_test.py +fuzz-tooling/infra/cifuzz/platform_config/prow.py +fuzz-tooling/infra/cifuzz/platform_config/standalone.py +fuzz-tooling/infra/cifuzz/platform_config/gitlab.py +fuzz-tooling/infra/cifuzz/platform_config/__init__.py +fuzz-tooling/infra/cifuzz/platform_config/github_test.py +fuzz-tooling/infra/cifuzz/platform_config/github.py +fuzz-tooling/infra/cifuzz/platform_config/gcb.py +fuzz-tooling/infra/cifuzz/run_fuzzers_test.py +fuzz-tooling/infra/cifuzz/filestore_utils.py +fuzz-tooling/infra/cifuzz/CHANGELOG +fuzz-tooling/infra/cifuzz/continuous_integration.py +fuzz-tooling/infra/cifuzz/actions/ +fuzz-tooling/infra/cifuzz/actions/run_fuzzers/ +fuzz-tooling/infra/cifuzz/actions/run_fuzzers/action.yml +fuzz-tooling/infra/cifuzz/actions/build_fuzzers/ +fuzz-tooling/infra/cifuzz/actions/build_fuzzers/action.yml +fuzz-tooling/infra/cifuzz/config_utils_test.py +fuzz-tooling/infra/cifuzz/build-images.sh +fuzz-tooling/infra/helper.py +fuzz-tooling/infra/build_specified_commit.py +fuzz-tooling/infra/utils_test.py +fuzz-tooling/infra/ci/ +fuzz-tooling/infra/ci/requirements.txt +fuzz-tooling/infra/ci/build_test.py +fuzz-tooling/infra/ci/build.py +fuzz-tooling/infra/bisector_test.py +fuzz-tooling/infra/.dockerignore +fuzz-tooling/infra/experimental/ +fuzz-tooling/infra/experimental/sanitizers/ +fuzz-tooling/infra/experimental/sanitizers/ExecSan/ +fuzz-tooling/infra/experimental/sanitizers/ExecSan/README.md +fuzz-tooling/infra/experimental/SystemSan/ +fuzz-tooling/infra/experimental/SystemSan/Makefile +fuzz-tooling/infra/experimental/SystemSan/README.md +fuzz-tooling/infra/experimental/SystemSan/PoEs/ +fuzz-tooling/infra/experimental/SystemSan/PoEs/node-shell-quote-v1.7.3/ +fuzz-tooling/infra/experimental/SystemSan/PoEs/node-shell-quote-v1.7.3/Makefile +fuzz-tooling/infra/experimental/SystemSan/PoEs/node-shell-quote-v1.7.3/Dockerfile +fuzz-tooling/infra/experimental/SystemSan/PoEs/node-shell-quote-v1.7.3/target.js +fuzz-tooling/infra/experimental/SystemSan/PoEs/node-shell-quote-v1.7.3/build.sh +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/ +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/Makefile +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/Dockerfile +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/fuzz_pytorch_lightning.py +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/build.sh +fuzz-tooling/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/vuln.dict +fuzz-tooling/infra/experimental/SystemSan/inspect_utils.cpp +fuzz-tooling/infra/experimental/SystemSan/target_file.cpp +fuzz-tooling/infra/experimental/SystemSan/target_evil_link.cpp +fuzz-tooling/infra/experimental/SystemSan/target.cpp +fuzz-tooling/infra/experimental/SystemSan/inspect_dns.cpp +fuzz-tooling/infra/experimental/SystemSan/inspect_utils.h +fuzz-tooling/infra/experimental/SystemSan/inspect_dns.h +fuzz-tooling/infra/experimental/SystemSan/target_dns.cpp +fuzz-tooling/infra/experimental/SystemSan/SystemSan.cpp +fuzz-tooling/infra/experimental/SystemSan/vuln.dict +fuzz-tooling/infra/bisector.py +fuzz-tooling/infra/repo_manager.py +fuzz-tooling/infra/presubmit.py +fuzz-tooling/infra/pytest.ini +fuzz-tooling/infra/templates.py +fuzz-tooling/infra/base-images/ +fuzz-tooling/infra/base-images/base-builder-fuzzbench/ +fuzz-tooling/infra/base-images/base-builder-fuzzbench/fuzzbench_run_fuzzer +fuzz-tooling/infra/base-images/base-builder-fuzzbench/Dockerfile +fuzz-tooling/infra/base-images/base-builder-fuzzbench/fuzzbench_build +fuzz-tooling/infra/base-images/base-builder-fuzzbench/fuzzbench_measure +fuzz-tooling/infra/base-images/base-builder-fuzzbench/fuzzbench_install_dependencies +fuzz-tooling/infra/base-images/base-builder-jvm/ +fuzz-tooling/infra/base-images/base-builder-jvm/Dockerfile +fuzz-tooling/infra/base-images/README.md +fuzz-tooling/infra/base-images/all.sh +fuzz-tooling/infra/base-images/base-builder-javascript/ +fuzz-tooling/infra/base-images/base-builder-javascript/Dockerfile +fuzz-tooling/infra/base-images/base-builder-swift/ +fuzz-tooling/infra/base-images/base-builder-swift/precompile_swift +fuzz-tooling/infra/base-images/base-builder-swift/Dockerfile +fuzz-tooling/infra/base-images/base-runner-debug/ +fuzz-tooling/infra/base-images/base-runner-debug/Dockerfile +fuzz-tooling/infra/base-images/base-image/ +fuzz-tooling/infra/base-images/base-image/Dockerfile +fuzz-tooling/infra/base-images/base-runner/ +fuzz-tooling/infra/base-images/base-runner/install_go.sh +fuzz-tooling/infra/base-images/base-runner/profraw_update.py +fuzz-tooling/infra/base-images/base-runner/README.md +fuzz-tooling/infra/base-images/base-runner/nyc_report_converter.py +fuzz-tooling/infra/base-images/base-runner/install_java.sh +fuzz-tooling/infra/base-images/base-runner/bad_build_check +fuzz-tooling/infra/base-images/base-runner/targets_list +fuzz-tooling/infra/base-images/base-runner/coverage_helper +fuzz-tooling/infra/base-images/base-runner/test_all.py +fuzz-tooling/infra/base-images/base-runner/Dockerfile +fuzz-tooling/infra/base-images/base-runner/jacoco_report_converter.py +fuzz-tooling/infra/base-images/base-runner/install_javascript.sh +fuzz-tooling/infra/base-images/base-runner/coverage +fuzz-tooling/infra/base-images/base-runner/test_one.py +fuzz-tooling/infra/base-images/base-runner/install_deps.sh +fuzz-tooling/infra/base-images/base-runner/download_corpus +fuzz-tooling/infra/base-images/base-runner/run_fuzzer +fuzz-tooling/infra/base-images/base-runner/rcfilt +fuzz-tooling/infra/base-images/base-runner/reproduce +fuzz-tooling/infra/base-images/base-runner/gocoverage/ +fuzz-tooling/infra/base-images/base-runner/gocoverage/gocovmerge/ +fuzz-tooling/infra/base-images/base-runner/gocoverage/gocovmerge/LICENSE +fuzz-tooling/infra/base-images/base-runner/gocoverage/gocovmerge/gocovmerge.go +fuzz-tooling/infra/base-images/base-runner/gocoverage/pprof-merge/ +fuzz-tooling/infra/base-images/base-runner/gocoverage/pprof-merge/LICENSE +fuzz-tooling/infra/base-images/base-runner/gocoverage/pprof-merge/main.go +fuzz-tooling/infra/base-images/base-runner/gocoverage/gocovsum/ +fuzz-tooling/infra/base-images/base-runner/gocoverage/gocovsum/gocovsum.go +fuzz-tooling/infra/base-images/base-runner/gocoverage/go.mod +fuzz-tooling/infra/base-images/base-runner/gocoverage/go.sum +fuzz-tooling/infra/base-images/base-runner/gocoverage/convertcorpus/ +fuzz-tooling/infra/base-images/base-runner/gocoverage/convertcorpus/main.go +fuzz-tooling/infra/base-images/base-runner/gocoverage/convertcorpus/go.mod +fuzz-tooling/infra/base-images/base-runner/gocoverage/convertcorpus/go.sum +fuzz-tooling/infra/base-images/base-runner/test_all_test.py +fuzz-tooling/infra/base-images/base-runner/parse_options.py +fuzz-tooling/infra/base-images/base-runner/python_coverage_runner_help.py +fuzz-tooling/infra/base-images/base-builder-python/ +fuzz-tooling/infra/base-images/base-builder-python/Dockerfile +fuzz-tooling/infra/base-images/base-builder-go/ +fuzz-tooling/infra/base-images/base-builder-go/Dockerfile +fuzz-tooling/infra/base-images/base-builder-go/ossfuzz_coverage_runner.go +fuzz-tooling/infra/base-images/base-builder-rust/ +fuzz-tooling/infra/base-images/base-builder-rust/Dockerfile +fuzz-tooling/infra/base-images/base-builder/ +fuzz-tooling/infra/base-images/base-builder/install_go.sh +fuzz-tooling/infra/base-images/base-builder/compile_afl +fuzz-tooling/infra/base-images/base-builder/README.md +fuzz-tooling/infra/base-images/base-builder/install_python.sh +fuzz-tooling/infra/base-images/base-builder/compile_python_fuzzer +fuzz-tooling/infra/base-images/base-builder/install_java.sh +fuzz-tooling/infra/base-images/base-builder/precompile_honggfuzz +fuzz-tooling/infra/base-images/base-builder/llvmsymbol.diff +fuzz-tooling/infra/base-images/base-builder/debug_afl +fuzz-tooling/infra/base-images/base-builder/precompile_afl +fuzz-tooling/infra/base-images/base-builder/precompile_centipede +fuzz-tooling/infra/base-images/base-builder/compile_fuzztests.sh +fuzz-tooling/infra/base-images/base-builder/cargo +fuzz-tooling/infra/base-images/base-builder/test_data/ +fuzz-tooling/infra/base-images/base-builder/test_data/culprit-commit.txt +fuzz-tooling/infra/base-images/base-builder/Dockerfile +fuzz-tooling/infra/base-images/base-builder/install_javascript.sh +fuzz-tooling/infra/base-images/base-builder/install_rust.sh +fuzz-tooling/infra/base-images/base-builder/srcmap +fuzz-tooling/infra/base-images/base-builder/sanitizers/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/README.md +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/README.md +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/yaml_deserialization_general.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/os_command_injection.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/python-ldap-GHSL-2021-117/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/python-ldap-GHSL-2021-117/fuzz_ldap.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/python-ldap-GHSL-2021-117/build.sh +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/ansible-runner-cve-2021-4041/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/ansible-runner-cve-2021-4041/fuzz_ansible_runner.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/ansible-runner-cve-2021-4041/build.sh +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/libvcs-cve-2022-21187/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/libvcs-cve-2022-21187/build.sh +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/libvcs-cve-2022-21187/fuzz_libvcs.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/pytorch-lightning-1.5.10/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/pytorch-lightning-1.5.10/fuzz_pytorch_lightning.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/pytorch-lightning-1.5.10/build.sh +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/poe/pytorch-lightning-1.5.10/fuzz_pytorch_lightning.dict +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/subprocess_popen_injection.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/eval_command_injection.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/tests/yaml_deserialization_simple.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/LICENSE +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/.gitignore +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/ +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/redos.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/sanlib.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/yaml_deserialization.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/command_injection.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pysecsan/__init__.py +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/pyproject.toml +fuzz-tooling/infra/base-images/base-builder/sanitizers/pysecsan/setup.py +fuzz-tooling/infra/base-images/base-builder/bisect_clang.py +fuzz-tooling/infra/base-images/base-builder/bazel.bazelrc +fuzz-tooling/infra/base-images/base-builder/install_deps.sh +fuzz-tooling/infra/base-images/base-builder/compile +fuzz-tooling/infra/base-images/base-builder/write_labels.py +fuzz-tooling/infra/base-images/base-builder/detect_repo_test.py +fuzz-tooling/infra/base-images/base-builder/bisect_clang_test.py +fuzz-tooling/infra/base-images/base-builder/compile_go_fuzzer +fuzz-tooling/infra/base-images/base-builder/ossfuzz_coverage_runner.go +fuzz-tooling/infra/base-images/base-builder/compile_honggfuzz +fuzz-tooling/infra/base-images/base-builder/compile_native_go_fuzzer +fuzz-tooling/infra/base-images/base-builder/detect_repo.py +fuzz-tooling/infra/base-images/base-builder/bazel_build_fuzz_tests +fuzz-tooling/infra/base-images/base-builder/compile_libfuzzer +fuzz-tooling/infra/base-images/base-builder/python_coverage_helper.py +fuzz-tooling/infra/base-images/base-builder/install_swift.sh +fuzz-tooling/infra/base-images/base-builder/compile_javascript_fuzzer +fuzz-tooling/infra/base-images/base-builder/compile_centipede +fuzz-tooling/infra/base-images/base-clang/ +fuzz-tooling/infra/base-images/base-clang/checkout_build_install_llvm.sh +fuzz-tooling/infra/base-images/base-clang/Dockerfile +fuzz-tooling/infra/test +fuzz-tooling/infra/utils.py +fuzz-tooling/README.md +fuzz-tooling/LICENSE +fuzz-tooling/.gitignore +fuzz-tooling/.allstar/ +fuzz-tooling/.allstar/binary_artifacts.yaml +fuzz-tooling/CONTRIBUTING.md +fuzz-tooling/.clusterfuzzlite/ +fuzz-tooling/.clusterfuzzlite/Dockerfile +fuzz-tooling/.clusterfuzzlite/project.yaml +fuzz-tooling/.clusterfuzzlite/coverage_atheris_fuzzer.py +fuzz-tooling/.clusterfuzzlite/build.sh +fuzz-tooling/.pylintrc +fuzz-tooling/projects/ +fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/ +fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/Dockerfile +fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/project.yaml +fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/build.sh +fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/JXPathFuzzer.java +fuzz-tooling/.dockerignore +fuzz-tooling/.gitattributes +fuzz-tooling/docs/ +fuzz-tooling/docs/reference/ +fuzz-tooling/docs/reference/glossary.md +fuzz-tooling/docs/reference/reference.md +fuzz-tooling/docs/reference/useful_links.md +fuzz-tooling/docs/README.md +fuzz-tooling/docs/404.html +fuzz-tooling/docs/faq.md +fuzz-tooling/docs/ideal_integration.md +fuzz-tooling/docs/.gitignore +fuzz-tooling/docs/advanced-topics/ +fuzz-tooling/docs/advanced-topics/ideal_integration.md +fuzz-tooling/docs/advanced-topics/bug_fixing_guidance.md +fuzz-tooling/docs/advanced-topics/fuzz_introspector.md +fuzz-tooling/docs/advanced-topics/corpora.md +fuzz-tooling/docs/advanced-topics/debugging.md +fuzz-tooling/docs/advanced-topics/reproducing.md +fuzz-tooling/docs/advanced-topics/code_coverage.md +fuzz-tooling/docs/advanced-topics/advanced_topics.md +fuzz-tooling/docs/oss-fuzz/ +fuzz-tooling/docs/oss-fuzz/architecture.md +fuzz-tooling/docs/favicon.ico +fuzz-tooling/docs/getting-started/ +fuzz-tooling/docs/getting-started/integration_rewards.md +fuzz-tooling/docs/getting-started/continuous_integration.md +fuzz-tooling/docs/getting-started/bug_disclosure_guidelines.md +fuzz-tooling/docs/getting-started/new-project-guide/ +fuzz-tooling/docs/getting-started/new-project-guide/bazel.md +fuzz-tooling/docs/getting-started/new-project-guide/python_lang.md +fuzz-tooling/docs/getting-started/new-project-guide/javascript_lang.md +fuzz-tooling/docs/getting-started/new-project-guide/rust_lang.md +fuzz-tooling/docs/getting-started/new-project-guide/jvm_lang.md +fuzz-tooling/docs/getting-started/new-project-guide/go_lang.md +fuzz-tooling/docs/getting-started/new-project-guide/swift.md +fuzz-tooling/docs/getting-started/new_project_guide.md +fuzz-tooling/docs/getting-started/accepting_new_projects.md +fuzz-tooling/docs/getting-started/getting_started.md +fuzz-tooling/docs/Gemfile +fuzz-tooling/docs/glossary.md +fuzz-tooling/docs/new_project_guide.md +fuzz-tooling/docs/index.md +fuzz-tooling/docs/_config.yml +fuzz-tooling/docs/Gemfile.lock +fuzz-tooling/docs/reproducing.md +fuzz-tooling/docs/images/ +fuzz-tooling/docs/images/process.png +fuzz-tooling/docs/images/expat_performance_analyzer.png +fuzz-tooling/docs/images/pcre2_testcase.png +fuzz-tooling/docs/images/freetype_stats_table.png +fuzz-tooling/docs/images/freetype_coverage_2.png +fuzz-tooling/docs/images/run_fuzzers.png +fuzz-tooling/docs/images/artifacts.png +fuzz-tooling/docs/images/freetype_coverage_1.png +fuzz-tooling/docs/images/freetype_stats_graphs.png +fuzz-tooling/docs/images/crash_stats.png +fuzz-tooling/docs/images/viewing_corpus.png +fuzz-tooling/docs/images/corpus_path.png +fuzz-tooling/docs/further-reading/ +fuzz-tooling/docs/further-reading/further_reading.md +fuzz-tooling/docs/further-reading/clusterfuzz.md +fuzz-tooling/docs/further-reading/fuzzer_environment.md +fuzz-tooling/.style.yapf +Extracting /tmp/tmp7_yr1n03/repo-tars/commons-jxpath.tar.gz +Extracting /tmp/tmp7_yr1n03/repo-tars/oss-fuzz.tar.gz +Mounting /home/bradswain/.m2 at /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/work/apache-commons-jxpath-osv-2023-719/m2 +/usr/bin/python3 infra/helper.py build_image --no-pull apache-commons-jxpath-osv-2023-719 +INFO:root:Using cached base images... +INFO:root:Running: docker build --no-cache -t gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 --file /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/Dockerfile /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719. +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.44kB done +#1 WARN: LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 23) +#1 DONE 0.0s + +#2 [internal] load metadata for gcr.io/oss-fuzz-base/base-builder-jvm:latest +#2 DONE 0.1s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [1/8] FROM gcr.io/oss-fuzz-base/base-builder-jvm:latest@sha256:b1da2e7c3d2b6744cf4154c3a2aa0ad3c676f1f5640ae73aa14870b926bb2e07 +#4 CACHED + +#5 [internal] load build context +#5 transferring context: 4.40kB done +#5 DONE 0.0s + +#6 [2/8] RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && unzip maven.zip -d /src/maven && rm -rf maven.zip +#6 0.177 % Total % Received % Xferd Average Speed Time Time Time Current +#6 0.177 Dload Upload Total Spent Left Speed +#6 0.177 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 9377k 0 39946 0 0 59004 0 0:02:42 --:--:-- 0:02:42 58917 11 9377k 11 1124k 0 0 705k 0 0:00:13 0:00:01 0:00:12 704k 26 9377k 26 2492k 0 0 959k 0 0:00:09 0:00:02 0:00:07 958k 41 9377k 41 3921k 0 0 1090k 0 0:00:08 0:00:03 0:00:05 1090k 59 9377k 59 5562k 0 0 1210k 0 0:00:07 0:00:04 0:00:03 1210k 76 9377k 76 7195k 0 0 1286k 0 0:00:07 0:00:05 0:00:02 1454k 93 9377k 93 8789k 0 0 1332k 0 0:00:07 0:00:06 0:00:01 1532k 100 9377k 100 9377k 0 0 1347k 0 0:00:06 0:00:06 --:--:-- 1579k +#6 7.140 Archive: maven.zip +#6 7.140 creating: /src/maven/apache-maven-3.6.3/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/boot/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/freebsd32/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/freebsd64/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/linux32/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/linux64/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/osx/ +#6 7.140 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/windows32/ +#6 7.141 creating: /src/maven/apache-maven-3.6.3/lib/jansi-native/windows64/ +#6 7.141 creating: /src/maven/apache-maven-3.6.3/bin/ +#6 7.141 creating: /src/maven/apache-maven-3.6.3/conf/ +#6 7.141 creating: /src/maven/apache-maven-3.6.3/conf/logging/ +#6 7.141 creating: /src/maven/apache-maven-3.6.3/lib/ext/ +#6 7.141 inflating: /src/maven/apache-maven-3.6.3/README.txt +#6 7.141 inflating: /src/maven/apache-maven-3.6.3/LICENSE +#6 7.142 inflating: /src/maven/apache-maven-3.6.3/NOTICE +#6 7.142 inflating: /src/maven/apache-maven-3.6.3/lib/cdi-api.license +#6 7.142 inflating: /src/maven/apache-maven-3.6.3/lib/commons-cli.license +#6 7.142 inflating: /src/maven/apache-maven-3.6.3/lib/commons-io.license +#6 7.143 inflating: /src/maven/apache-maven-3.6.3/lib/commons-lang3.license +#6 7.143 inflating: /src/maven/apache-maven-3.6.3/lib/guava.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/guice.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/jansi.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/javax.inject.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/jcl-over-slf4j.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/jsoup.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/jsr250-api.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/org.eclipse.sisu.inject.license +#6 7.144 inflating: /src/maven/apache-maven-3.6.3/lib/org.eclipse.sisu.plexus.license +#6 7.145 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-cipher.license +#6 7.145 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-component-annotations.license +#6 7.145 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-interpolation.license +#6 7.145 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-sec-dispatcher.license +#6 7.146 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-utils.license +#6 7.146 inflating: /src/maven/apache-maven-3.6.3/lib/slf4j-api.license +#6 7.146 inflating: /src/maven/apache-maven-3.6.3/boot/plexus-classworlds.license +#6 7.146 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/freebsd32/libjansi.so +#6 7.147 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/freebsd64/libjansi.so +#6 7.148 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/linux32/libjansi.so +#6 7.149 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/linux64/libjansi.so +#6 7.151 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/osx/libjansi.jnilib +#6 7.151 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/windows32/jansi.dll +#6 7.151 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/windows64/jansi.dll +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/m2.conf +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/mvn.cmd +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/mvnDebug.cmd +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/mvn +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/mvnDebug +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/bin/mvnyjp +#6 7.152 inflating: /src/maven/apache-maven-3.6.3/conf/logging/simplelogger.properties +#6 7.153 inflating: /src/maven/apache-maven-3.6.3/conf/settings.xml +#6 7.153 inflating: /src/maven/apache-maven-3.6.3/conf/toolchains.xml +#6 7.153 inflating: /src/maven/apache-maven-3.6.3/lib/ext/README.txt +#6 7.153 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-native/README.txt +#6 7.153 inflating: /src/maven/apache-maven-3.6.3/boot/plexus-classworlds-2.6.0.jar +#6 7.154 inflating: /src/maven/apache-maven-3.6.3/lib/maven-embedder-3.6.3.jar +#6 7.155 inflating: /src/maven/apache-maven-3.6.3/lib/maven-settings-3.6.3.jar +#6 7.155 inflating: /src/maven/apache-maven-3.6.3/lib/maven-settings-builder-3.6.3.jar +#6 7.156 inflating: /src/maven/apache-maven-3.6.3/lib/maven-plugin-api-3.6.3.jar +#6 7.156 inflating: /src/maven/apache-maven-3.6.3/lib/maven-model-3.6.3.jar +#6 7.158 inflating: /src/maven/apache-maven-3.6.3/lib/maven-model-builder-3.6.3.jar +#6 7.160 inflating: /src/maven/apache-maven-3.6.3/lib/maven-builder-support-3.6.3.jar +#6 7.160 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-api-1.4.1.jar +#6 7.162 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-util-1.4.1.jar +#6 7.163 inflating: /src/maven/apache-maven-3.6.3/lib/maven-shared-utils-3.2.1.jar +#6 7.165 inflating: /src/maven/apache-maven-3.6.3/lib/commons-io-2.5.jar +#6 7.167 inflating: /src/maven/apache-maven-3.6.3/lib/guice-4.2.1-no_aop.jar +#6 7.171 inflating: /src/maven/apache-maven-3.6.3/lib/guava-25.1-android.jar +#6 7.191 inflating: /src/maven/apache-maven-3.6.3/lib/javax.inject-1.jar +#6 7.191 inflating: /src/maven/apache-maven-3.6.3/lib/jsr250-api-1.0.jar +#6 7.191 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-utils-3.2.1.jar +#6 7.194 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-sec-dispatcher-1.4.jar +#6 7.194 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-cipher-1.7.jar +#6 7.194 inflating: /src/maven/apache-maven-3.6.3/lib/slf4j-api-1.7.29.jar +#6 7.195 inflating: /src/maven/apache-maven-3.6.3/lib/commons-lang3-3.8.1.jar +#6 7.199 inflating: /src/maven/apache-maven-3.6.3/lib/maven-core-3.6.3.jar +#6 7.204 inflating: /src/maven/apache-maven-3.6.3/lib/maven-repository-metadata-3.6.3.jar +#6 7.204 inflating: /src/maven/apache-maven-3.6.3/lib/maven-artifact-3.6.3.jar +#6 7.205 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-provider-3.6.3.jar +#6 7.205 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-impl-1.4.1.jar +#6 7.207 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-spi-1.4.1.jar +#6 7.207 inflating: /src/maven/apache-maven-3.6.3/lib/org.eclipse.sisu.inject-0.3.4.jar +#6 7.211 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-component-annotations-2.1.0.jar +#6 7.211 inflating: /src/maven/apache-maven-3.6.3/lib/maven-compat-3.6.3.jar +#6 7.213 inflating: /src/maven/apache-maven-3.6.3/lib/plexus-interpolation-1.25.jar +#6 7.214 inflating: /src/maven/apache-maven-3.6.3/lib/wagon-provider-api-3.3.4.jar +#6 7.215 inflating: /src/maven/apache-maven-3.6.3/lib/org.eclipse.sisu.plexus-0.3.4.jar +#6 7.216 inflating: /src/maven/apache-maven-3.6.3/lib/cdi-api-1.0.jar +#6 7.217 inflating: /src/maven/apache-maven-3.6.3/lib/commons-cli-1.4.jar +#6 7.217 inflating: /src/maven/apache-maven-3.6.3/lib/wagon-http-3.3.4-shaded.jar +#6 7.234 inflating: /src/maven/apache-maven-3.6.3/lib/jsoup-1.12.1.jar +#6 7.237 inflating: /src/maven/apache-maven-3.6.3/lib/jcl-over-slf4j-1.7.29.jar +#6 7.238 inflating: /src/maven/apache-maven-3.6.3/lib/wagon-file-3.3.4.jar +#6 7.238 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-connector-basic-1.4.1.jar +#6 7.238 inflating: /src/maven/apache-maven-3.6.3/lib/maven-resolver-transport-wagon-1.4.1.jar +#6 7.239 inflating: /src/maven/apache-maven-3.6.3/lib/maven-slf4j-provider-3.6.3.jar +#6 7.239 inflating: /src/maven/apache-maven-3.6.3/lib/jansi-1.17.1.jar +#6 DONE 7.3s + +#7 [3/8] RUN git clone --depth 1 https://github.com/google/fuzzing && mv fuzzing/dictionaries/xml.dict /src/JXPathFuzzer.dict && rm -rf fuzzing +#7 0.172 Cloning into 'fuzzing'... +#7 DONE 0.6s + +#8 [4/8] RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus && zip -j /src/JXPathFuzzer_seed_corpus.zip go-fuzz-corpus/xml/corpus/* && rm -rf go-fuzz-corpus +#8 0.149 Cloning into 'go-fuzz-corpus'... +#8 2.578 Updating files: 39% (24257/60861) Updating files: 40% (24345/60861) Updating files: 41% (24954/60861) Updating files: 42% (25562/60861) Updating files: 43% (26171/60861) Updating files: 44% (26779/60861) Updating files: 45% (27388/60861) Updating files: 46% (27997/60861) Updating files: 47% (28605/60861) Updating files: 48% (29214/60861) Updating files: 49% (29822/60861) Updating files: 50% (30431/60861) Updating files: 51% (31040/60861) Updating files: 52% (31648/60861) Updating files: 53% (32257/60861) Updating files: 54% (32865/60861) Updating files: 55% (33474/60861) Updating files: 56% (34083/60861) Updating files: 57% (34691/60861) Updating files: 58% (35300/60861) Updating files: 59% (35908/60861) Updating files: 60% (36517/60861) Updating files: 61% (37126/60861) Updating files: 62% (37734/60861) Updating files: 63% (38343/60861) Updating files: 64% (38952/60861) Updating files: 65% (39560/60861) Updating files: 66% (40169/60861) Updating files: 67% (40777/60861) Updating files: 68% (41386/60861) Updating files: 69% (41995/60861) Updating files: 70% (42603/60861) Updating files: 71% (43212/60861) Updating files: 72% (43820/60861) Updating files: 73% (44429/60861) Updating files: 74% (45038/60861) Updating files: 75% (45646/60861) Updating files: 75% (45904/60861) Updating files: 76% (46255/60861) Updating files: 77% (46863/60861) Updating files: 78% (47472/60861) Updating files: 79% (48081/60861) Updating files: 80% (48689/60861) Updating files: 81% (49298/60861) Updating files: 82% (49907/60861) Updating files: 83% (50515/60861) Updating files: 84% (51124/60861) Updating files: 85% (51732/60861) Updating files: 86% (52341/60861) Updating files: 87% (52950/60861) Updating files: 88% (53558/60861) Updating files: 89% (54167/60861) Updating files: 90% (54775/60861) Updating files: 91% (55384/60861) Updating files: 92% (55993/60861) Updating files: 93% (56601/60861) Updating files: 94% (57210/60861) Updating files: 95% (57818/60861) Updating files: 96% (58427/60861) Updating files: 97% (59036/60861) Updating files: 98% (59644/60861) Updating files: 99% (60253/60861) Updating files: 100% (60861/60861) Updating files: 100% (60861/60861), done. +#8 4.492 adding: 0 (deflated 27%) +#8 4.493 adding: 0059a213b945c6c9611293eec295ee8401544689-12 (deflated 8%) +#8 4.493 adding: 00c708d8d82c4c027aa7eb3bd7c3108f60ae1444-10 (deflated 38%) +#8 4.493 adding: 00d742ebcd67b883e113b4edbaac1c59c1ae5f51-5 (deflated 17%) +#8 4.493 adding: 011d07fb57bb600b8c29d29d839e949e39c44c62 (stored 0%) +#8 4.493 adding: 015f2999abd419657a8cbab6831c4de4834beedf-6 (deflated 38%) +#8 4.493 adding: 016601612402944f5e091cf09bd776524a2a64d2-11 (deflated 58%) +#8 4.493 adding: 016f041c91764ff6b7909fb352b5bbfb7b5711d4-4 (deflated 22%) +#8 4.493 adding: 018717d21c05373899616e8a895541195245ff91 (stored 0%) +#8 4.493 adding: 0190e36f2de6444e5aef474e0d827ecb818c7b69-1 (deflated 38%) +#8 4.493 adding: 01b131d40cb090fdbb3f26282acd14962dee297e-1 (stored 0%) +#8 4.493 adding: 01f59a44b3c20c7224fa09048403f8739c1547e3-10 (deflated 4%) +#8 4.493 adding: 021c89ce62aab076ebfec16e690d46a2a2d49d5c-1 (stored 0%) +#8 4.493 adding: 0270244304e81551b9f0b24eb22a9ff1d01d12e9 (stored 0%) +#8 4.493 adding: 03024491d45ef7914c8328a9aa057e94dad35152-1 (stored 0%) +#8 4.493 adding: 031260af4741ed8ab592ad567320c8aa3adaea97-6 (stored 0%) +#8 4.493 adding: 031eca0dc182bc1235591b00fd2e2646a864f5f9-10 (stored 0%) +#8 4.493 adding: 034cd3ff7ab1f435cc90c55f83504f6fa5183555-14 (stored 0%) +#8 4.494 adding: 0360b6ec3cfedce36a2d6c6860e7e6e138a2b63c-1 (stored 0%) +#8 4.494 adding: 03aaebae75829116f7ccfdbbf17ac2c1249ed384-13 (stored 0%) +#8 4.494 adding: 042389ba5265b04d8cb881c51b54dc9f76df3aa1-9 (deflated 70%) +#8 4.494 adding: 043dcdfe5191d951c871109df3180b78494ff241-19 (deflated 85%) +#8 4.494 adding: 04764b8821f424c32061c03fb02dad374a3552db-10 (stored 0%) +#8 4.494 adding: 049877a40835058317812ca673c4ece8cfc83f5b-4 (stored 0%) +#8 4.494 adding: 05095df76ac5831089f0a680bc4a8cc89765e398 (deflated 6%) +#8 4.494 adding: 053bc4ad93cca6351baf44162ea7e33b892c2936-3 (stored 0%) +#8 4.494 adding: 057af41c9b9fe31e5c8c1cd46837f73a525274a4-8 (stored 0%) +#8 4.494 adding: 05ae8defadd07dfaba29f3555c3665af42a3ad77-8 (deflated 50%) +#8 4.494 adding: 075a2d55aa847e32c43d742a8413bf59e74aa2d0-5 (deflated 51%) +#8 4.494 adding: 07742109bf0ab97e1d0bea2c2674fa6630fd2e59-8 (deflated 50%) +#8 4.494 adding: 07acdc63797a45ee440dc40b72b401bc5b01d58d-16 (deflated 52%) +#8 4.494 adding: 0873ac478c34ae12e3ef3ce69c4e5c50731894ad-5 (stored 0%) +#8 4.494 adding: 087a6ea499f37434105123ed03f0ddf664c08158-17 (stored 0%) +#8 4.494 adding: 08cf854c0594128f30848cb3ce50e743516a5d64-9 (deflated 42%) +#8 4.494 adding: 09528f6d73f5ec015d3a46dd2ab63b44d7dfd9f0-5 (deflated 88%) +#8 4.494 adding: 0963c9e647fa8a4dfb4b86cd1bb4948f3cd0d8e2-15 (deflated 81%) +#8 4.494 adding: 0a0ff142e7c6eb7226be79fd39f009ea8648d527-6 (deflated 20%) +#8 4.494 adding: 0a149e908a682b7264c2cc0ea09788e099f76094-10 (stored 0%) +#8 4.494 adding: 0a4dad0946290121c8cb9429be5ed5c0f7861b25-5 (stored 0%) +#8 4.494 adding: 0a61e1a35d745045276769c627957dd1c52c4e28-3 (stored 0%) +#8 4.494 adding: 0ac8b8be8bf1cfa6dc73a2d3290ba94f2683234d-2 (deflated 71%) +#8 4.494 adding: 0ba059f4b6dbd58364b4cf8997540786f91957d2-6 (deflated 50%) +#8 4.494 adding: 0c9db37a39c829f4acd8de5016b337ddafb94b6a-1 (stored 0%) +#8 4.495 adding: 0ccb9c7dcd47027d049bc71dadd92c00ad89c0e6-16 (deflated 43%) +#8 4.495 adding: 0f873f9a051bd5626a998c1deaa105aebd22a08a-9 (stored 0%) +#8 4.495 adding: 0fa3a592545ffa029cdceb047d7b2283330c7eb8-13 (deflated 68%) +#8 4.495 adding: 0fc2825657ded93326826307eca3d1ae31b16fbe-10 (stored 0%) +#8 4.495 adding: 0ff4d025a8859de791e6865b10c1d262c7fbaf62-9 (stored 0%) +#8 4.495 adding: 1 (deflated 46%) +#8 4.495 adding: 108df586c61324bb2944e980df71391d535b2e7c-12 (deflated 59%) +#8 4.495 adding: 10ccd1a201f41589d9cf633479261b2cba150d9e-8 (stored 0%) +#8 4.495 adding: 11c7796571080bab841df00e6eecc7296433eca7-2 (stored 0%) +#8 4.495 adding: 12504e0c08c6a7c9b165dc81c3fa5ac12440e8f7-10 (stored 0%) +#8 4.495 adding: 1280823464b942a7645c048a08cb2854f0157de8-10 (stored 0%) +#8 4.495 adding: 1286d1f08abccf531214f7c2b27314aa2ece391c-4 (stored 0%) +#8 4.496 adding: 12c5d714873fad3d59a7c8922732bbab04c32d2e-13 (stored 0%) +#8 4.496 adding: 132a92177618417f92ce66213e8f4b3d8aca5539-7 (stored 0%) +#8 4.496 adding: 1374697c3d074ccdfe8a82ebabe970a26323b717-10 (deflated 21%) +#8 4.496 adding: 148ad7eb924ea204a6d3ea8e34ef9aad04c02287-2 (stored 0%) +#8 4.496 adding: 14c688f9be554beefb3e054d30fa1f4b993ac8c2-10 (stored 0%) +#8 4.496 adding: 14c6be38bf210dd48a13bbe6a9b744eab12c1090-4 (stored 0%) +#8 4.496 adding: 15092af576eac3921d4e1fce58b910abef61c8e2-7 (stored 0%) +#8 4.496 adding: 1512d860792d4361fa5ecd9ae3dc40f99a7074d4-5 (stored 0%) +#8 4.496 adding: 153b75a2b6415efca49d1ed9352ac300bfb510b3-14 (deflated 72%) +#8 4.496 adding: 158a54f3fb776afe627704949973cf6891c21bfc-6 (deflated 64%) +#8 4.496 adding: 159ee956b82fea381d42ed3c898b70cb2e64562e-7 (stored 0%) +#8 4.496 adding: 15c02a4b46b3143ea62004991f144998089e8134-5 (stored 0%) +#8 4.497 adding: 15c4dccb2c686f0b791e6a9e8b32cbc127a70ed1-15 (deflated 28%) +#8 4.497 adding: 15cbcd6f9adb5f20a2e4f286841fae943d0e959c-10 (stored 0%) +#8 4.497 adding: 162ee3e0a4f475bcae0fd008dbd5c9ad28bfb6ee-9 (deflated 23%) +#8 4.497 adding: 16d47982f6235cdd2ae62df4b5a40abdc300dfca-5 (stored 0%) +#8 4.497 adding: 16ddbbcf9a22aee8b92b2fd91dae27b078b6726a-11 (stored 0%) +#8 4.497 adding: 16ef53d1bcf1114ccb98f1b63f0b6c2c1c96cf3b-7 (stored 0%) +#8 4.497 adding: 170b2bc706524cbed7779de1c3f7057674489f10-13 (deflated 86%) +#8 4.497 adding: 1713f319d265ac557fa6d6d00eca633b3a8bebcf-3 (stored 0%) +#8 4.497 adding: 1719b1293820f9dea4c1dd917181ff9a604e2dd0-1 (stored 0%) +#8 4.497 adding: 181b61de6a7b7c055a0c9ca87ef3f9e6beefcf28-7 (deflated 36%) +#8 4.497 adding: 19446100ebd05b49ffb393cdf44a9646216e05ab-12 (stored 0%) +#8 4.497 adding: 195173658c45a7956733ce6245e286888f948e4d-4 (stored 0%) +#8 4.498 adding: 1966008ad942602ce679230c49f8f2ca2034077b-3 (stored 0%) +#8 4.498 adding: 196e98cc3f43a6251d69113cc1611a0bf3b81768-1 (deflated 80%) +#8 4.498 adding: 198224202320f975378be9c2be71f08ef53e1718-2 (deflated 76%) +#8 4.498 adding: 198b9387ab878a3170ba43f278b97a9c683a3447-6 (stored 0%) +#8 4.498 adding: 199f7db21b2c49ed0915dd1bbf6ef89e5e4254d3-5 (stored 0%) +#8 4.498 adding: 19e754d63ef122bd83f15f61c3245ee29c810174-5 (deflated 55%) +#8 4.498 adding: 1a1c87186c024f9f10eb4ec9749546e7b6d83400-5 (deflated 44%) +#8 4.498 adding: 1a268d06e3dfb8140881192c457c796d8fb90486-21 (deflated 48%) +#8 4.498 adding: 1a372273d89d3e2bd5b8d0da84665cfc81cb2abf-7 (deflated 38%) +#8 4.498 adding: 1a87656eee46c5fe296f4dd680c363ff8d46582b-20 (deflated 81%) +#8 4.498 adding: 1a93a69863621137fa2059397a8fc781a293a72e-7 (stored 0%) +#8 4.498 adding: 1ac4b5e1b6192f56a130a1f4aba1eb9d58557954-4 (stored 0%) +#8 4.498 adding: 1af6f99a02e3c28ee8361447d0609125ca6570fb-12 (deflated 13%) +#8 4.498 adding: 1b241e5e6760ea172da2db4605c65b48fea9327c-2 (deflated 41%) +#8 4.498 adding: 1c7ec8aedfd00228b90b9b8b58e0365c2d3bb49d-7 (deflated 77%) +#8 4.498 adding: 1ca63b71a8c3a1ac9902eba969076cb58d60bce8-15 (deflated 28%) +#8 4.498 adding: 1d4ea0de8169d16f2ac8993daa1366e3c90aaa2d-1 (stored 0%) +#8 4.498 adding: 1d8c6c9d428d24ea811852840a81a04949fd571b-5 (stored 0%) +#8 4.498 adding: 1e094e6d28deddd455e070d9f758036726cf4927-5 (stored 0%) +#8 4.498 adding: 1e88ad17320c5e4d46a5ca0230b4ab34cd166b80-4 (deflated 6%) +#8 4.498 adding: 1f4e867865d65b53b941d203310c9451f135a96a-2 (deflated 79%) +#8 4.498 adding: 1f5ed1b45b0d77ce5d5216463bcfc03a0f6e8b60-12 (deflated 73%) +#8 4.498 adding: 1f6b0d0b3cd688997b39b75d04a83f04f027b680-3 (stored 0%) +#8 4.498 adding: 1f7f66025b435153208e2902c4060fde312881d3-6 (stored 0%) +#8 4.498 adding: 1fb9da5efcebce930d71410cd433a3c22d9c08dc-4 (deflated 68%) +#8 4.498 adding: 1fcd94226b3ead6946ebaac070c8acacab69810b-11 (deflated 77%) +#8 4.498 adding: 1ff274ae470a61da398b0be81d49caddc0363e38-12 (stored 0%) +#8 4.499 adding: 1ffb56e9b7e145d86919da40ec5b00e51f3e92b1-10 (stored 0%) +#8 4.499 adding: 2 (deflated 28%) +#8 4.499 adding: 20064bcda79c6610e4cb87a3fdba06de68e897ce (stored 0%) +#8 4.499 adding: 20dc3103aae7e82408cc21e7b1d65d599c5ca54a (deflated 29%) +#8 4.499 adding: 2132ce3c79392ce316fa10489159ce40f9502786-7 (deflated 93%) +#8 4.499 adding: 215070b3d1cacf9952551ce84861ee006ec7ddfb-2 (stored 0%) +#8 4.499 adding: 2188c810de7562f8c03c79b1d96f7ba3674bbe12-10 (deflated 64%) +#8 4.499 adding: 2208880e2a5412a8920bffa4ce33484803b91ec7-9 (stored 0%) +#8 4.499 adding: 2217671b05908902d6d91c31ba4db4dcb3d7bad9-7 (deflated 72%) +#8 4.499 adding: 22534c1a68b6556d8e28929554041448b5def20b-9 (deflated 78%) +#8 4.499 adding: 225725950c102bdb2ef1e5593cb75b841b36cca7-9 (deflated 3%) +#8 4.499 adding: 22658ac39487dcbb91d2cfbbdce3072282a9d9a6-3 (stored 0%) +#8 4.499 adding: 22aae636504b93ce762b6af4ef99158e1ba5d6e1-3 (deflated 13%) +#8 4.499 adding: 233245a45570d419fd54115e10015a6701c7d8f9-10 (deflated 3%) +#8 4.500 adding: 23cf557e78d79291dcc0d10a31b3716e92661e2f-4 (stored 0%) +#8 4.500 adding: 247608fc12aac27e9f059ab36effaeecf293e563-5 (stored 0%) +#8 4.500 adding: 2488a57439f554b51c7dab7b8dd469551532e6f9-7 (stored 0%) +#8 4.500 adding: 24bf01f27bde51f4245a40bb694eb8ae00f25dcc-13 (deflated 70%) +#8 4.500 adding: 2520b28c6a81e2f551ee623a5b278ff55ce0251e-8 (stored 0%) +#8 4.500 adding: 255ca5d883eec5aa4107beea28740d1c87713a03-8 (deflated 56%) +#8 4.500 adding: 25ef4d3c4b8279f3f83ad00064a05b09f69fdd49 (stored 0%) +#8 4.500 adding: 2699f2aa3ffae3a7de5ee00e23978d9dd24ef612-11 (deflated 43%) +#8 4.500 adding: 26af0bd798c9ee2d56c5bc32d937f636e0da7e39-8 (stored 0%) +#8 4.500 adding: 26b4fcf1aca80089991ea3351218b88b192e1e4e-13 (stored 0%) +#8 4.500 adding: 26e04202753610c1657b2cb21c9f76b3d263e35c-6 (deflated 48%) +#8 4.501 adding: 275fa95615aef17b963566c8cee127c3d20b52e6-4 (deflated 78%) +#8 4.501 adding: 277456bec31d01471e6fb29243a45ba4646bcbed-5 (deflated 88%) +#8 4.501 adding: 2786adc4b4de347611c6ba295177bd511d61b675-4 (deflated 78%) +#8 4.501 adding: 27cc16ae091274ae92ad3eccd59440a584796ada (deflated 35%) +#8 4.501 adding: 27fe83dfb257c995d32845b412ca8f041679b24c-8 (deflated 53%) +#8 4.501 adding: 2802d1264e20d5021f046a65791fddf7afd6b46f-8 (stored 0%) +#8 4.501 adding: 2893772d25fd69b6cb02d04e50001a4935fb60a1-12 (stored 0%) +#8 4.501 adding: 28e4df8c88311f3edd2ab76277b7f33b7c992c9d (deflated 76%) +#8 4.501 adding: 29abda318b0882b7fe3396840b9b14583378b72e-1 (deflated 58%) +#8 4.501 adding: 2a3c660ab95fbab7267223adea20e83c13c50011-6 (stored 0%) +#8 4.501 adding: 2a49c14ed4ccc7334594009b6a3ce1acf904b9d1-8 (stored 0%) +#8 4.501 adding: 2a7ade46ee5135516255dc986366ca551b177e45-10 (deflated 76%) +#8 4.501 adding: 2aa3f005309173983892c964d18cce649a799e15-14 (deflated 23%) +#8 4.501 adding: 2ac46795f735e54f96b819ca24957525a0cd2741-14 (stored 0%) +#8 4.501 adding: 2ad7a28a9d58c04355e435cb15ff27788f228716-7 (deflated 36%) +#8 4.501 adding: 2b16b4e3ab670067aeeea212e87bb0eb5338d886-12 (deflated 11%) +#8 4.501 adding: 2bb749f723947caeb6715fb94e8806c9b817b79e-10 (stored 0%) +#8 4.501 adding: 2bd1ca872c05f70e12738ab9684f1a460fd43743-10 (stored 0%) +#8 4.501 adding: 2c845bc29aa352028db6477eccb3fe79b19648f8-2 (deflated 50%) +#8 4.501 adding: 2cc850b3a70a8f0fe62b813274645b079a5f92c6-3 (deflated 63%) +#8 4.501 adding: 2d2f58e417dc79e8b34532c2482d1782679b4f86-10 (stored 0%) +#8 4.501 adding: 2d6d2637283ceeee2e9bac0cf23d7de2a59d373b-2 (deflated 8%) +#8 4.501 adding: 2d94027dedb10c0f2b1cec91088640d765e18125-10 (deflated 32%) +#8 4.501 adding: 2e41c9254346e1873a14172afcdd36875825695b-1 (stored 0%) +#8 4.501 adding: 2e72bc6ba5613248a9397c887df64e3a791505d8-13 (stored 0%) +#8 4.502 adding: 2eb063da9a6128016c0ee445cd85e73c942cff63-3 (stored 0%) +#8 4.502 adding: 2eceed544a3fd4aabdc19085a77b6eff22bf4621-2 (deflated 73%) +#8 4.502 adding: 2f4c008bcb74e3965a4591b7a8edc0d24df19996-6 (deflated 59%) +#8 4.502 adding: 2f77ada062ef2703593edfa0ef2521be3f368a0e-1 (deflated 45%) +#8 4.502 adding: 3 (deflated 3%) +#8 4.502 adding: 301e9cc83315c8dba57e43412edd36799eb36fef-2 (deflated 36%) +#8 4.502 adding: 30e8c073f6c275f66a3fadb3382087f38a15f79d-9 (deflated 25%) +#8 4.502 adding: 312a395e0dd1771500bdf3bd3953291e0e7102f4-2 (stored 0%) +#8 4.502 adding: 3133fa8bf0bcb4972eb8f70b3f0dc5a00f4d4c2b-13 (stored 0%) +#8 4.502 adding: 3330b72b939ab5a419abfa68f00a9286eb69a78c-6 (stored 0%) +#8 4.502 adding: 334c1ac55970cbdf387722f1763e6a26ebefd8ba-11 (stored 0%) +#8 4.502 adding: 33b097e685a04e60709fa8390a7bcca265491723-6 (stored 0%) +#8 4.502 adding: 3476036292b9a37ed1f6dbc65241251cd93c8427-7 (stored 0%) +#8 4.503 adding: 3494e3f8bd8185b2db100dc45f50873f81e68ba3-7 (stored 0%) +#8 4.503 adding: 349a3c2846f0c3dd45b05ca9e0a6f93408beff5d-14 (stored 0%) +#8 4.503 adding: 34b90aed5b812851abe87173b5bcb093fadf2820-1 (deflated 59%) +#8 4.503 adding: 3560e95a455cff0e1ddcb92af69d576ed7b30c00-5 (stored 0%) +#8 4.503 adding: 362582687b581be931cd5aa186c25144e72f7b8a-9 (stored 0%) +#8 4.503 adding: 363991f8d0f937f92c1704fe512145cf2ab710cb-7 (stored 0%) +#8 4.503 adding: 3655e839264ec2af686dc517196059ba390566a8-2 (deflated 43%) +#8 4.503 adding: 365dc3b93752389ff82df705431a61741cf729e4-10 (deflated 67%) +#8 4.503 adding: 3686fc0cdc60dc536e75df054b0bd372273db2cc (stored 0%) +#8 4.503 adding: 3782acafef951e97c37c15861401bda52d535e69-9 (deflated 15%) +#8 4.503 adding: 3783412d11795b9d2a387c8aff96798ab94b466a-10 (stored 0%) +#8 4.503 adding: 37a8aa53d6c5c7be70fcbe0e18fb13cffdb42177-11 (stored 0%) +#8 4.503 adding: 38fd0b12e572c4341208ecd41a18b3def5ca2ddf-5 (stored 0%) +#8 4.503 adding: 39179e6f9deeda7fc6fb4ac3ade7257f1d1831f3-7 (deflated 29%) +#8 4.503 adding: 39527c59247a39d18ad48b9947ea738396a3bc47-1 (stored 0%) +#8 4.503 adding: 3a5a091062073698d19aad3c73e71d62471ffbba-12 (deflated 56%) +#8 4.503 adding: 3ac7e4cf7a35212830b27f87c5597d92a4842d00-2 (deflated 4%) +#8 4.503 adding: 3ae86d419035582e293e9bf76d38db0255eefa38-7 (deflated 47%) +#8 4.503 adding: 3b57781fa5c3a69122916b96d059b685f6b3dc5e-13 (deflated 24%) +#8 4.503 adding: 3b597bfad7d6e544e2e1ac5d3ba1c5fdf1e26845-8 (stored 0%) +#8 4.503 adding: 3bad7bfabe59a8ccaec8107270fc04aa676b9efb-13 (deflated 23%) +#8 4.503 adding: 3bdafcdf336179cc6a2e322da1eb525c8b735f96-15 (deflated 73%) +#8 4.503 adding: 3c3338faf3099ebf06e4f0f63811d8b65380ea99-1 (stored 0%) +#8 4.503 adding: 3c343d029143241b36751f46f5343f555299a054-6 (stored 0%) +#8 4.503 adding: 3c469b2ae181abddf4dda7272122be5d986942a0-11 (stored 0%) +#8 4.503 adding: 3cd4a6497342a8a9abe2b4f2cf2f9c015149e6b4-8 (deflated 15%) +#8 4.503 adding: 3cf2f5c0924731aa8e3901240d761a4bb23a2644-7 (deflated 40%) +#8 4.503 adding: 3d11f8097d8d3f3e785a46092d64bb4fe539e7d1-10 (deflated 12%) +#8 4.503 adding: 3d128b1040bd362cab199b3600c449c8a66fb876-6 (deflated 43%) +#8 4.504 adding: 3d1299ac3a885e69d21f47c3865f2cdca51eab6b-17 (stored 0%) +#8 4.504 adding: 3d25ab14374f3c46f5896b10ce1095eb88131b67-11 (deflated 20%) +#8 4.504 adding: 3d6a704f2203220e7142a658c0cb732d2fe52fae-11 (stored 0%) +#8 4.504 adding: 3d6c9801233cd20d689cc71c9116d230dc10516a-7 (stored 0%) +#8 4.504 adding: 3d94fbf90a7b639c2107261f42e01ce4b9c26fbe-5 (deflated 89%) +#8 4.504 adding: 3d99b13849103524ebf829c2ec643e3a21e5fca9-14 (stored 0%) +#8 4.504 adding: 3dddf0b5d9ce91ef925e94ee6d6d99fe88e9cb17-8 (stored 0%) +#8 4.504 adding: 3ddf6e33d00dc9cde44408dbea673459728dedf6-16 (stored 0%) +#8 4.504 adding: 3e13a68da36e72ee77e729d70b64e860bb82dfb3-4 (stored 0%) +#8 4.504 adding: 3e3aa85ce686ce45a40218a80d24e511101ec01b-6 (stored 0%) +#8 4.504 adding: 3e9cd98ab75cc82df0543b5e27fbdd6a7e9d30d9 (deflated 16%) +#8 4.504 adding: 3ee8a49e6ba3fa3eca38c5b202ccb32a67a52466-7 (deflated 54%) +#8 4.504 adding: 3efe1f96eb48907fdca256018eca6a143d3c3a5b-12 (stored 0%) +#8 4.504 adding: 3f800e0f548c98e93f49aec36d4a0e3768bec757-11 (deflated 24%) +#8 4.504 adding: 3fca7bdcfd1f885eb4829dad99db30febaf911f5-5 (deflated 84%) +#8 4.504 adding: 4 (deflated 6%) +#8 4.504 adding: 403b036a63bdf1763e889c871f5a61680c86401f-12 (stored 0%) +#8 4.505 adding: 404e1f1406f117db486f333729817d39a8d7d862-2 (deflated 63%) +#8 4.505 adding: 40c63d9c447b301c70c16202a0a3a57a3b941607-3 (deflated 56%) +#8 4.505 adding: 41617b5662f6124b32aa3040ccd9f1c4f0229904-10 (stored 0%) +#8 4.505 adding: 41a4cdb2dcdf2f034a5c6c70fe879137a8fa86f8-10 (stored 0%) +#8 4.505 adding: 41ae15c1b07e7ca1d1c88799e43ddef330e2c41a-15 (stored 0%) +#8 4.505 adding: 41f43ea4c25a261308f9f951a19e39acf7d28122-8 (stored 0%) +#8 4.505 adding: 4297eef27084b2d29a848488b4d13c1926a64cbe-4 (deflated 81%) +#8 4.505 adding: 431c9bef51ec7efd2c860c0ac3ce45fc91e58044-5 (stored 0%) +#8 4.505 adding: 436f27a6ccf1ee52cf01c9775136ff5ecb4f3a72-4 (stored 0%) +#8 4.505 adding: 437491f3ddbc80c4a1732583e07f8bd8714e978e-11 (stored 0%) +#8 4.505 adding: 43dcddaf77864f5e63cbab65bda8ea4fc812b00d (deflated 63%) +#8 4.505 adding: 442afa68c00f43bba90695c3d35ad4e07c61e14e-6 (deflated 50%) +#8 4.505 adding: 443a58bf993959912fbab13559caa11e0964a172-8 (stored 0%) +#8 4.505 adding: 445bc9db98368014f5c255b450d456bbce067023-5 (stored 0%) +#8 4.505 adding: 44747d24c8ea3c3cca2972af4dfe6ff4bfd56805-9 (stored 0%) +#8 4.506 adding: 44e59366d3f28df9cfd96971c9c67f8605a56208-2 (stored 0%) +#8 4.506 adding: 45c32cd0cb03c97d419a0f67184e663fc62cff51-6 (deflated 7%) +#8 4.506 adding: 460637212d0a97e372c61b60ee8f33746734b59a-12 (deflated 74%) +#8 4.506 adding: 465327d397e438ae27dd2b48cf49d002e92a6c20-4 (deflated 84%) +#8 4.506 adding: 46b862727a1bb82a18846a179583debc89d8bcf1-6 (stored 0%) +#8 4.506 adding: 4744e9cf60e2ff80293597184020e448d3f6f134-14 (deflated 23%) +#8 4.506 adding: 47e5b8702756276f8c53d8d44c68adf2b06547a2-18 (deflated 80%) +#8 4.506 adding: 484b0aebaec81e4f2b9fe41bdfedd945c827614c-7 (deflated 39%) +#8 4.506 adding: 486e2200980b58e54e8bf5709e126abb28a17fc5-1 (stored 0%) +#8 4.506 adding: 48bc59baaf68d848faf8e3a28af719b98fb49bc7-10 (stored 0%) +#8 4.506 adding: 493627fce8a7edfe490793f86fc324672ae8bb2e-2 (deflated 45%) +#8 4.506 adding: 494cfb9d91353e8bead0993493092db370da74e7-11 (deflated 7%) +#8 4.506 adding: 494d3068028e7d4659e56e0e5bbcd7ca3ac9b26e-3 (stored 0%) +#8 4.506 adding: 495682f2eadc4c8d94e6db2d70f9ba910e118260-3 (stored 0%) +#8 4.506 adding: 495ecf25b7433be33e59253af71da090e31bb73e-8 (deflated 14%) +#8 4.506 adding: 497a9aa0f3c72e451e9092b49e46cfd96722e18a-1 (stored 0%) +#8 4.506 adding: 49af432543da8b311db4e8febebc418d3fd56fa7-5 (stored 0%) +#8 4.506 adding: 49bd947f0efaa57de923b73532b5b03adbe29da2-6 (stored 0%) +#8 4.507 adding: 4a471ed8865f7b19dc3212b68b074ed8788976bf-7 (deflated 20%) +#8 4.507 adding: 4b04acc79393f0499c924dadd3233728648af6c7-11 (deflated 53%) +#8 4.507 adding: 4b3605dc0e72f5a1aa7760183d33cd54b9c01fa9-9 (stored 0%) +#8 4.507 adding: 4c4e9b389d35f8ebf24f733386587090c8001300-5 (stored 0%) +#8 4.507 adding: 4c53841b55c2f4fdc57d965f277b409c074281ff-3 (stored 0%) +#8 4.508 adding: 4c89fb5993cd4e1a3e6515c56b7575de93ea1ea5-16 (deflated 43%) +#8 4.508 adding: 4cc05a7f3fcb7eb9a83b851e2fec999a4435bd1a-2 (deflated 46%) +#8 4.508 adding: 4d1a1ba466e738935db4471c14ce52943fb02462-2 (deflated 33%) +#8 4.508 adding: 4e322d853b270344776e065bf0b2bf046789534a-3 (stored 0%) +#8 4.508 adding: 4e32b8a9729dcff4b1dde1641754e00eb272436f-9 (deflated 6%) +#8 4.508 adding: 4e51a16026539d0ba6333021686120b9311f39af-5 (stored 0%) +#8 4.508 adding: 4ead83464125ad6a67df5c359f0dc6318fcb76f4-3 (deflated 15%) +#8 4.508 adding: 4ef639d5b0c07d3bbcb389887783760717cf3568-2 (deflated 21%) +#8 4.508 adding: 4fd57d12a8ed47f168d60a319e27fe13224c4a77 (deflated 42%) +#8 4.508 adding: 4ff3ec2c18170e5e121ff887db27a474f812c31e-11 (deflated 4%) +#8 4.508 adding: 5 (deflated 42%) +#8 4.508 adding: 501650c2bce80c4996655fa3447a795b24e1e95c-6 (deflated 21%) +#8 4.508 adding: 50b9422a350623cedd5ee093cd176767aa677cf1-9 (deflated 39%) +#8 4.508 adding: 50de16c9f7b6ad386cc6644a8b54874238f1ccac-15 (deflated 62%) +#8 4.508 adding: 50f5114c1e999371cb821f2de4272e5f3fd0cedd-6 (stored 0%) +#8 4.508 adding: 5127a742f37c360c11fa89a428bb0534850f1650-13 (stored 0%) +#8 4.508 adding: 513704a0bdcd628a7ff590c44a24e892ad764135-2 (deflated 30%) +#8 4.508 adding: 52202c467fc8bf0e2b735e6489f889087c764a82-6 (stored 0%) +#8 4.508 adding: 52fca79f21508097863cb9ef72e7495348e770de-11 (deflated 83%) +#8 4.508 adding: 5328bd166bf52b6b930a488b3122da145ce01961-11 (stored 0%) +#8 4.508 adding: 54156170d9db50dabdf05e7eeb898202ac8a673c-13 (deflated 59%) +#8 4.508 adding: 555e6a6666ddf96622ee44d5a1b41218799d5cab-1 (stored 0%) +#8 4.508 adding: 557710b960717305e452ce1938a486511f7a9ba9-1 (deflated 22%) +#8 4.508 adding: 55df2a59ed6a888ee2f0cdfdcc8582696702de7a-13 (stored 0%) +#8 4.508 adding: 562284e099c1b093cb5e627002264513d04c4e10-3 (stored 0%) +#8 4.508 adding: 5639b99a9bd270737c2700ac7a32c904c5c20018-4 (stored 0%) +#8 4.508 adding: 5675e436ae63116f0cf87a2a2c530c9f5aa865b4-9 (deflated 12%) +#8 4.508 adding: 56d4c8fd6a2e32a93413445f80330920cdcf2877-9 (stored 0%) +#8 4.508 adding: 56fa24fee01da5669e54db9397acdd38325b48f9-2 (stored 0%) +#8 4.508 adding: 579ef79f603bfda032807e90d6fa9404731fc04f-12 (deflated 8%) +#8 4.508 adding: 57b33ffa843497d87bc9cfb8e116e995037939e7-16 (stored 0%) +#8 4.508 adding: 57eb32e3feea4ad960c405e7b00439a3cea75764-1 (stored 0%) +#8 4.508 adding: 5827a016b199f090cd59f35b3c5f99e0bfe07bb3-10 (stored 0%) +#8 4.508 adding: 5920c9c0afde1952c34b570a76d2234ce1a1139b-1 (stored 0%) +#8 4.508 adding: 59556b2e3cf2c401ac94d778a5523a572cf03fdb-10 (stored 0%) +#8 4.508 adding: 59557fcbe98eea705e6f05c8c71cb1d39aae7b46-6 (stored 0%) +#8 4.508 adding: 59737d45c9faa903e98c8589bb44f27effd960e9-9 (deflated 24%) +#8 4.509 adding: 5a33e5d035a69f1a4d3cad5b5ce5fb45a7cd505a-14 (deflated 70%) +#8 4.509 adding: 5a9dba7257f82e291dca2f2bf81482bd785198d2-9 (deflated 38%) +#8 4.509 adding: 5aa4fdbccb82a1d695f122f07d912cc91a0693f6-11 (deflated 20%) +#8 4.509 adding: 5aa65bb4681f7469a9f63975dc80cf88369369b3-9 (stored 0%) +#8 4.509 adding: 5ba484334098060ae545d98c6fd7643891040098-13 (deflated 8%) +#8 4.509 adding: 5bd5783d0b8a7e9ab6c27f27f4dda0e64d58185a-5 (stored 0%) +#8 4.509 adding: 5bfd7c2ea3dfcd06d86993fb13208538c83205a6-5 (stored 0%) +#8 4.509 adding: 5c50b9efb7edddab1c3b926ce0f47656a609c270-10 (stored 0%) +#8 4.509 adding: 5ce74e10a02985a139a67b0be4dc2164eca4c08d-10 (deflated 61%) +#8 4.509 adding: 5d0bc9eaaa2c4020d421e7abb7516ccafd724107-2 (stored 0%) +#8 4.509 adding: 5d2c1a80d8c17e5a143aee09c29a86838f18ab02-2 (stored 0%) +#8 4.509 adding: 5d57f3a01571158ac00c3986b5ac5ae3b4e5c78e-3 (deflated 22%) +#8 4.509 adding: 5da17c7d8aba3a34601b448b9859b90cd6ea459a-5 (deflated 56%) +#8 4.509 adding: 5dbef7cb713176b579206b00676938bb92796e8e-15 (deflated 13%) +#8 4.509 adding: 5de4e2b309fc7379a56789171ab7fb8e58956eba-7 (stored 0%) +#8 4.509 adding: 5e819f3f2ead0ab723f1f5f946fc226208df9fc0-7 (deflated 40%) +#8 4.510 adding: 5edbb777f04b7a415e2c210de2bda99c8fcd5db0-7 (stored 0%) +#8 4.510 adding: 5f1e7151168ede1b0238067e05b920b1f32178e2-7 (stored 0%) +#8 4.510 adding: 5f9ee84be2a74fd5b8cc9980c40a4af17b2460a3-3 (deflated 40%) +#8 4.510 adding: 5fb9cbca0b0d8ca7caf7f2d9293f5c900bc0aa53-8 (deflated 95%) +#8 4.510 adding: 5fcac176f9662ddb2871531c5fb8d248095be47a-8 (deflated 7%) +#8 4.510 adding: 5ffd422e1db06a816573df35478535f6e5912186-6 (deflated 20%) +#8 4.510 adding: 6 (stored 0%) +#8 4.510 adding: 603ce1117aa91678d7ea87e06088635a58976db8-16 (stored 0%) +#8 4.510 adding: 606f9cf44271e1c57e04fcfe35babfc48ea2f3f2-10 (stored 0%) +#8 4.510 adding: 6073312c3c053780e7c0f93b9a2e3531d0babf56-5 (stored 0%) +#8 4.510 adding: 6089e707a2413bb5e51279e4b75562596e93181a-8 (deflated 74%) +#8 4.510 adding: 60b67645a994c6e5efe91df243dc756aec2cbd0b-1 (deflated 43%) +#8 4.510 adding: 61121e878efbe53007b5110dfd56a9d376b49f02-11 (stored 0%) +#8 4.510 adding: 617bf48158bac557e94d30a608fdf8f8e135c895-11 (deflated 7%) +#8 4.510 adding: 61cfc08c8d19567993d054ab4b50e909f5f416f3-1 (deflated 8%) +#8 4.510 adding: 61f9a980fac909c891e202ba3cf1911a2b391670-11 (stored 0%) +#8 4.510 adding: 62038f317d58acfbd45f4991f8fa2be5c8e995bd-11 (deflated 83%) +#8 4.510 adding: 622c550b8e7e22397f3fdbcb9a58c406759fdb82-1 (deflated 36%) +#8 4.511 adding: 626ea72bcaac5a3494443b936227cb7df446c741-2 (deflated 66%) +#8 4.511 adding: 62ac183073d0fe728919c384320b2dafcc9c320d-7 (stored 0%) +#8 4.511 adding: 631370aa71f23979e0e4733653c9e0dafaf2cba0-11 (stored 0%) +#8 4.511 adding: 63198c43c567e8888bbe391f8d71f3f3f68dea52-14 (stored 0%) +#8 4.511 adding: 63255474383a278adfff40e649cd4e14ab9dcd87-1 (stored 0%) +#8 4.511 adding: 635673eef1b1dd93a82bcf99b441a39be45c10f6-9 (stored 0%) +#8 4.511 adding: 63c14c1ceaf0079184e96160f9a2f6c70940c141-8 (stored 0%) +#8 4.511 adding: 641a9d712dc0473b4db69906b1b8bddb88ddd9c1-8 (stored 0%) +#8 4.511 adding: 64843026146174ec1526b5c879920da8069792f1-11 (stored 0%) +#8 4.511 adding: 64ad1306cd6fc082007812264a1ead32b6e63f6d-10 (deflated 23%) +#8 4.511 adding: 64e55a3b892d14c32f6bab0836bc70786129ef1f-2 (stored 0%) +#8 4.511 adding: 65d07473197e59be3cb205fcf7bbda83d6d44ba8-13 (deflated 32%) +#8 4.511 adding: 65d4f77f0cca1fb744edffa933bcaa1136bf374b-6 (deflated 72%) +#8 4.511 adding: 663ba6ddd5551d571fa941b41239244e199a8ed8-11 (deflated 57%) +#8 4.511 adding: 66928e6cbb59c3a3bce606959ef4a865fe04e642-6 (stored 0%) +#8 4.511 adding: 67823115fea20f71918db9b15aca4abf99cea819-3 (deflated 75%) +#8 4.511 adding: 67a49f5843569d9c326a8a66fa02d528ef89647f-14 (deflated 14%) +#8 4.512 adding: 67cf18c2bf044cb018f5eacbe3ee5e83cc5013bf-6 (stored 0%) +#8 4.512 adding: 67e27f1b3d69efaefc22d4362fc831d7cab7049f-11 (deflated 18%) +#8 4.512 adding: 68a9c79da5facc22c39ca038f12057397370a681-5 (deflated 25%) +#8 4.512 adding: 69d98f1cac2b008d21d37c8e368d50df28155a19-8 (stored 0%) +#8 4.512 adding: 6a360905e1c2789f8086b06ba37e64e9efb0ddc2-6 (stored 0%) +#8 4.512 adding: 6a43184ea591f50748a386af9f9f79313823c641-6 (deflated 74%) +#8 4.512 adding: 6a79f3fba6cec757f3cf5f3109ee0c9b03bb2221-5 (stored 0%) +#8 4.512 adding: 6a8e8c6a464a595fcaf4a0a44914dd6dc5091027-9 (stored 0%) +#8 4.512 adding: 6aba28a33c2353cd97fcd81422b37024eabf09e8-4 (stored 0%) +#8 4.512 adding: 6adf67a8d24dbd9ff2f230f41e0854624d63f3dc-3 (stored 0%) +#8 4.512 adding: 6adfb3047dbac7a83d908357d5a52b25225c94ca-10 (stored 0%) +#8 4.512 adding: 6af7cd2c12364b757d09feeb083bcbbc36f913d6-6 (deflated 35%) +#8 4.512 adding: 6b339c4768445cab9d9c1e7de9dfdd5e687cdd98-5 (stored 0%) +#8 4.513 adding: 6beb1b50db909344a63afee72cee43bcc5eb97d1-18 (stored 0%) +#8 4.513 adding: 6bfedb8c7ec8b62d20db04066eb9e0065acc8e91-5 (stored 0%) +#8 4.513 adding: 6cac5b792673cc1c285266f032e396d31bcd7b25-15 (deflated 31%) +#8 4.513 adding: 6d862baa7cf267e9d4e29ee2115772427a88551a-2 (stored 0%) +#8 4.513 adding: 6ddef2033bad5d11e139b4cfe63feb69abe70a27-9 (deflated 14%) +#8 4.513 adding: 6e14a407faae939957b80e641a836735bbdcad5a-1 (stored 0%) +#8 4.513 adding: 6e5afc8e1ab3473c05ac59ba62f40c8aa13943b7-8 (deflated 63%) +#8 4.513 adding: 6edf83ec8d5b7059827647df3a4963558dc57384 (stored 0%) +#8 4.513 adding: 6fa995c3c7f5dba46b44cad1abd42ab98ab99b16-3 (stored 0%) +#8 4.513 adding: 7024366a70a62bff2a956f2b04465870b23cf422-11 (deflated 3%) +#8 4.513 adding: 7059c45c37bd73de7acbac158ce63be0ad934c42-2 (stored 0%) +#8 4.513 adding: 707f1262c9ff795428f0a46efc6e8bd02333991c-7 (deflated 43%) +#8 4.513 adding: 7136d0f3963567761fe8f79aa42ca1774724a8df-6 (stored 0%) +#8 4.513 adding: 7192a9c4e7ac4abd6bb8e4efcb918358bc0f8e9e (deflated 15%) +#8 4.513 adding: 71a6a050b0bec02d90b92bb1437fb0325021b3f5-4 (stored 0%) +#8 4.513 adding: 71bb3f290034c1c7a972f9a22fbbfce08f3d2ade-6 (deflated 19%) +#8 4.514 adding: 725b1caff9b49e1231fda15b85166bbefaa36a11-4 (stored 0%) +#8 4.514 adding: 72aa98b9eb572784e0c32cbe864d70b3df16a0f8-3 (stored 0%) +#8 4.514 adding: 72b58ecb2c43828a662be85128ad625dd3c3878e-2 (deflated 50%) +#8 4.514 adding: 72d13cced42f1889fd8d944e3f39b84031786d40-6 (stored 0%) +#8 4.514 adding: 72e268d3fa0f86be5fdfc6611ad89dca4914a081-8 (deflated 47%) +#8 4.514 adding: 73d8b55ca1a848e16d16a29e5481fc482a2d1242-21 (deflated 86%) +#8 4.514 adding: 743daf92968c38fa8e57bff5572d0edbc7fc8b41-13 (stored 0%) +#8 4.514 adding: 74a69e02011662f3ad02ce4cd39cd9a2e577a6e4-2 (stored 0%) +#8 4.514 adding: 74fc1a9a0347f7c7455976730ce4a5875421fabb-2 (deflated 76%) +#8 4.514 adding: 752cec00ab93ac1cb0fdd7580ea7d0fbe3fe475d-1 (deflated 52%) +#8 4.514 adding: 75b41aa82da3f9721a33aadd707a7b7718a54ce1-14 (deflated 27%) +#8 4.514 adding: 7720f26f055ad2df72f29aa6e0bf68f04bf35a06-12 (stored 0%) +#8 4.514 adding: 77d718e1a56736a425da2386728ce99d96ae5be1-10 (deflated 84%) +#8 4.514 adding: 781e7dab7ce3419b819635f51f0d44fd73b848f5-1 (stored 0%) +#8 4.514 adding: 78334e62f5431722aa31dd93b9969e20cb6ddb5b-14 (deflated 28%) +#8 4.514 adding: 79c26a48021a1fcf32b84a51ebf30005e8b0fa60-8 (stored 0%) +#8 4.514 adding: 79c372b5cc44802cea9da0bd4dd1e89f33e1640e-5 (stored 0%) +#8 4.514 adding: 7a6872ae2e39ff140eb621d39ce45aa2cc7b2410-5 (stored 0%) +#8 4.514 adding: 7a71c1d5b868747765c0b7e04d6b6c0e81e215e3-9 (stored 0%) +#8 4.514 adding: 7aaa042c6bf9784289a79b1f0ee46dee8df93c12-22 (deflated 81%) +#8 4.514 adding: 7b3b37d9a0f98c5606a9ba0245d8b97b5d675107-2 (stored 0%) +#8 4.515 adding: 7b5c3bd873a1bbd2f9890ab0aff1f80976120546-8 (stored 0%) +#8 4.515 adding: 7c4d33785daa5c2370201ffa236b427aa37c9996-3 (stored 0%) +#8 4.515 adding: 7cb2cf72467d5b979f2a48daa09acb93cb170059-6 (stored 0%) +#8 4.516 adding: 7cc4e6eac6f437e0801df3430436d316b328f774-7 (deflated 46%) +#8 4.516 adding: 7d24dfe40e30c4d9535639f5b3e969568efce980-6 (deflated 23%) +#8 4.516 adding: 7db2e918cfebae55c80054b8c47aedb85320681b-14 (stored 0%) +#8 4.516 adding: 7de66a5c858e0138f7666b7093522e3434ae6592-10 (stored 0%) +#8 4.516 adding: 7de96bcd39204945e7e50f315e8ef7b7b86c8201-7 (deflated 5%) +#8 4.516 adding: 7e2c8190fa82b4607dcad22d780ac8ed7151247b-5 (deflated 11%) +#8 4.516 adding: 7e58ed317c61a688c3440e3040f623af4cbd11b0-1 (deflated 56%) +#8 4.516 adding: 7eb53f01d9ed5e62f6a921e0aeb48a40c3618ec1-9 (deflated 74%) +#8 4.516 adding: 7ede42aab54684df1609de7b3c65519c08fcfeb2-5 (stored 0%) +#8 4.516 adding: 7f4258e3575a8cdc9e25e23013783c7bc6394537-10 (deflated 23%) +#8 4.516 adding: 7f7680de186a5688defc8ffb241043385afea521-10 (deflated 21%) +#8 4.516 adding: 7f9906a4b3b7dd1434f0bb72e7c785d7f6615af6-5 (deflated 88%) +#8 4.516 adding: 808389f189f76b88dfd7afbd252e6fc943116c55-1 (deflated 68%) +#8 4.516 adding: 80dcb8aa501736a99629bec9473b00a57ac392ce-5 (stored 0%) +#8 4.516 adding: 80e171946b42139934de734b4a36089c390b2860-13 (stored 0%) +#8 4.516 adding: 80fecfb0705273496b7a438ea9c80d14acfcc308-13 (stored 0%) +#8 4.516 adding: 8116c310d5e929c4f2f678842bca053add0b8ed6-15 (deflated 30%) +#8 4.516 adding: 81d8ad99934b832fb5a36d9da86d228a5e6406ed-2 (stored 0%) +#8 4.516 adding: 82553eae92d915786ece19997b2afb71bf06dec1-3 (stored 0%) +#8 4.516 adding: 82bb33344ea55c319553c997c6b1976894085353-1 (deflated 23%) +#8 4.516 adding: 836619876fe7e36a5410dde82aa09da5da97f3e5-2 (stored 0%) +#8 4.516 adding: 845407506bc5afb0acfd73eab574c2ceef1fb507-9 (stored 0%) +#8 4.516 adding: 8483f3986fbea2003a00df060b707f52a6a91ad1-17 (deflated 45%) +#8 4.516 adding: 849af84090dbab5e914a3dbb8413eaf721b78a10-3 (deflated 9%) +#8 4.516 adding: 84a2141facd0f7c3c2c16d39375412dd65ea3655-1 (stored 0%) +#8 4.516 adding: 84b1edc471dc6fb750c77d1569bf51ddc766eb6b-8 (stored 0%) +#8 4.516 adding: 84bf86a40143dccb1802dcd72605b93b3c604883-9 (stored 0%) +#8 4.516 adding: 84ed387854db3a77d8598e2eaa2163908c3d78d6-13 (deflated 26%) +#8 4.516 adding: 84ed65e32b1b927cd16ef453a56737cdc93f5ab6-6 (stored 0%) +#8 4.516 adding: 8514cae4b2765538f6a1d19334b90ecca76cfc82-11 (deflated 87%) +#8 4.516 adding: 856b8d11813abab729f1c77b07447e4a10eb3a00-7 (stored 0%) +#8 4.517 adding: 858c69773ed471f66e651ed68d213327007d5809-5 (stored 0%) +#8 4.517 adding: 85c409f0ba580ce54eff4602d5d8ad05c5ca5658-12 (deflated 72%) +#8 4.517 adding: 85c68ae078259b4bfbc2e894e2f699d80867d7ea-6 (stored 0%) +#8 4.517 adding: 85c9925eb4a39b7ec4a58b3373f02432c3109b21-9 (deflated 13%) +#8 4.517 adding: 8675832adfb018534dfc278023349d9ca2456be3-7 (stored 0%) +#8 4.517 adding: 86ac0dbbbb395547a72404b8b9937854ab9aba3f-16 (deflated 74%) +#8 4.517 adding: 86c56e4c8c1931013729964335096a712df1e1cd-14 (deflated 50%) +#8 4.517 adding: 8705492fa3017c587ba1c8f372cfa70bd160e14e-18 (deflated 51%) +#8 4.517 adding: 873e079ca6ed104121056a18ae66d6ec6c814cd8-8 (stored 0%) +#8 4.517 adding: 8757ef8736cf999baa5c181fecc48ebdf781bc0a-10 (stored 0%) +#8 4.517 adding: 87faa51764b813923864d468269035938dc78a31-10 (deflated 70%) +#8 4.517 adding: 8890d6c0b195db1c53f09dc45e86f2420509dacc-3 (stored 0%) +#8 4.517 adding: 889cc239949557d6e2f28a33614ec2c48e37c3b1-8 (stored 0%) +#8 4.517 adding: 88e3a122fbeae345f0e6b8ef90c4901de9898b5b-2 (deflated 59%) +#8 4.517 adding: 893ba643915b1f169329229f90ae10f1a2bd48e4-11 (stored 0%) +#8 4.517 adding: 896ce69e76e5e672bc588765f0b4b4497374e5b3-9 (deflated 29%) +#8 4.517 adding: 89a77827e82894b66d17f499eac5fc9f549520c9-1 (stored 0%) +#8 4.518 adding: 8a48ed5f153311bdb49235c90e2507dd4748751e-6 (deflated 19%) +#8 4.518 adding: 8a6902d99109fe85c01024c91a1261cb9107c8d5-6 (deflated 33%) +#8 4.518 adding: 8a9f2413057ed3232b178237c9d5d73171b28f0f-6 (stored 0%) +#8 4.518 adding: 8ac78f14bfd2e65e4655ed22571ed27212b3eac3-2 (deflated 73%) +#8 4.518 adding: 8ac9ac5a896e48b31adf4fa8eadddf71a0e9095a-4 (stored 0%) +#8 4.518 adding: 8adf736c99d26d4a22d006455a324bf1d460c3ea-11 (stored 0%) +#8 4.518 adding: 8b4f0431906abe795a41a342b22a2bf38f34600a-10 (deflated 84%) +#8 4.518 adding: 8b592b0e86108cf61c618ddd5816f376ce49b612-11 (stored 0%) +#8 4.518 adding: 8b8f71d9cfeb2b240b39feaa50f2759ca488033f-6 (deflated 8%) +#8 4.518 adding: 8c2eda05b8950cbad83360462889fba54df9e4ec-2 (stored 0%) +#8 4.518 adding: 8c42328a910af4de403061aec8644c8585489993-2 (deflated 35%) +#8 4.519 adding: 8d2ae40ebfeec6b99c6200abb5089cacffeb57e0-2 (stored 0%) +#8 4.519 adding: 8d56e14a055930614fbf49ec0075dd3fa593a1ec-9 (stored 0%) +#8 4.519 adding: 8d738e5a7d149226d476f55c432e9fd3e35157a9-10 (stored 0%) +#8 4.519 adding: 8dc00598417d4eb788a77ac6ccef3cb484905d8b-1 (stored 0%) +#8 4.519 adding: 8e2aadd0b63d7c69578a260905e8f37e14e4ac7d-10 (stored 0%) +#8 4.519 adding: 8ef3b0e8f36808cd820e6b3ce998b552ca85c656-4 (deflated 29%) +#8 4.519 adding: 8faef093885f069550ed050f5c2e5d772e0fa89f-7 (stored 0%) +#8 4.519 adding: 90017275093c5e8e00339c7939a7d1f4f1915fa8-5 (stored 0%) +#8 4.519 adding: 9037dfdfe74de89b7f80209fd142625153e49fbc-1 (deflated 4%) +#8 4.519 adding: 903dad943f232a0703221062c90bc42038a9f3d1-17 (deflated 71%) +#8 4.519 adding: 907fb0e9dda87cbb5715f7bfbf63f049fb2dea90-16 (deflated 51%) +#8 4.519 adding: 90acd0c0958cfe3bdb0862f44a87b9cdc35b66c2-1 (deflated 46%) +#8 4.519 adding: 9205d788387ae539f24afeb23dfe712d3666384c-20 (deflated 74%) +#8 4.519 adding: 9265d9e7342b6bf1179778598b5fa181e352feb4-17 (stored 0%) +#8 4.519 adding: 926f9a6618c86782d47ab5c664b76b793851a3f0-7 (deflated 84%) +#8 4.519 adding: 9282258934f8654cdb74ed6a1131d2e8b234359b-10 (stored 0%) +#8 4.519 adding: 92ebf1d6df72ba83a6029a0771a7765eb85f53c6-7 (deflated 57%) +#8 4.519 adding: 92f24facd5e09c21d2b5b91543d47e740a854493-18 (deflated 49%) +#8 4.519 adding: 930a8f2368de7ded52f583df3b5c24a232c72f26-13 (stored 0%) +#8 4.519 adding: 933d29ef4208d06845687ddd29acddda07c12636-11 (stored 0%) +#8 4.519 adding: 936486fb02c2b682a58b30ac59141194717c2169-13 (deflated 83%) +#8 4.519 adding: 9399c68f9d13f4974e1c5164f901c2bdda0b858d-12 (deflated 6%) +#8 4.519 adding: 944090a56a322c7089af5f95aceef6dac7990c4f-19 (deflated 71%) +#8 4.519 adding: 94f476b8fa9ea441c513c2630ef455b595ec6f09-4 (deflated 77%) +#8 4.520 adding: 951d30401245fc946f9f4646cd54a1f9d35bafd0-8 (deflated 18%) +#8 4.520 adding: 958949f4ad7c1c7b469430c046bc95f66d0672b4-9 (deflated 31%) +#8 4.520 adding: 95899717441a190000caf039551f8bbf4bab19e5-8 (stored 0%) +#8 4.520 adding: 959f0b361b854cb4df71e357d7b2e52f8510c640-9 (stored 0%) +#8 4.520 adding: 9606dff5de0f08582a6df721e213a27d734fadfd-16 (deflated 43%) +#8 4.520 adding: 962e568ef451f0c0c3f92d5590406fc03ac32ea9-14 (stored 0%) +#8 4.520 adding: 96ba906769073bd543ae0f47c8a79c27289a76ab-6 (stored 0%) +#8 4.520 adding: 96dd4d793ac149d65fc8e89d3f9acd978f99a743-1 (deflated 76%) +#8 4.520 adding: 971713e28ed9396ce127946f1e31ae1d5d1d34a9-2 (deflated 73%) +#8 4.520 adding: 97433fac206f45006e64a8d2cc28529a4b786ca9-3 (deflated 36%) +#8 4.520 adding: 976bcabb4c23f4d3f60abeb483da50961cb4a64d-2 (stored 0%) +#8 4.520 adding: 979b4e001aa435c31759502485062decaeb7ba98-13 (deflated 8%) +#8 4.520 adding: 983cb4bf1f5a84fc02edb0efdce4b39201db6f4e-4 (stored 0%) +#8 4.522 adding: 98f9abe9e39a3ba90ad24c16241b5c5012759396-1 (deflated 60%) +#8 4.522 adding: 999eefd48642cf241f91953643cfbd8b9df7e646-3 (deflated 59%) +#8 4.522 adding: 99b2f8e9e4ca737e31853b3592d7faeae0ea3202-9 (stored 0%) +#8 4.522 adding: 99c9b1d673abf74b96a3434162ddddc23d99908b-4 (deflated 12%) +#8 4.522 adding: 9a16e44d347e549248f747552a99e368899ef331-19 (deflated 82%) +#8 4.522 adding: 9a3ce34a4a7cb301fbc95b09936a0f2cb918c568-10 (stored 0%) +#8 4.522 adding: 9b0b5e82f6e6f6c154f09422192156d3a19c8ef4-3 (stored 0%) +#8 4.522 adding: 9b3a009f9555e81527f80865e4bd0eacb907de9b-13 (stored 0%) +#8 4.522 adding: 9b472fedebdc199ac5dcb27af7d303a3ba4d39b7-6 (stored 0%) +#8 4.522 adding: 9b97b86397ae9bbad9c8c4b01c92600bf3e98c4f-8 (deflated 77%) +#8 4.522 adding: 9ba1463978d37a13a962798ffae06696ac0dcea0-13 (deflated 60%) +#8 4.522 adding: 9bd0c20176c66597401759fbc2e767e093058cc7-8 (deflated 74%) +#8 4.522 adding: 9bd40aeb199d2274da602de14a7cd45b3bbd7cb9-8 (deflated 25%) +#8 4.522 adding: 9c7727df3bf6c883f303e3052add4b8a6836e5bf-9 (stored 0%) +#8 4.522 adding: 9ce4d9f48ee8d3fdeec2b25822c6b65d3e2bb915-8 (stored 0%) +#8 4.522 adding: 9cf15f63a478ecadebeeeb20f0f5142a4197ac4a-4 (stored 0%) +#8 4.522 adding: 9d15f1bc582560937563ce4b41419a065969b38e-19 (deflated 35%) +#8 4.522 adding: 9d6ee1e0700128eb6c1e132eb8de07a89e5d7aa5-8 (stored 0%) +#8 4.522 adding: 9eb708d3a08badf344885d076c30b5e4f7d92041-10 (stored 0%) +#8 4.522 adding: 9f185261e35ac07579e1202869d7cbb9aad35d66-1 (stored 0%) +#8 4.522 adding: 9fc572be1e710ef0bb3b10e1d9e85367f4249924-3 (deflated 76%) +#8 4.522 adding: 9fffd9c3752816f85c3a7de69541b2e11cfcaac4-4 (stored 0%) +#8 4.522 adding: a0048fb5e2485bb4fbb047751bc92c42239becd2-14 (stored 0%) +#8 4.522 adding: a0173bdd9df880166f0cd6ebd8e56cc932b8fbc2-7 (stored 0%) +#8 4.522 adding: a01e2799c1d4043d77d7791d8ac40ceee7899782-2 (deflated 58%) +#8 4.522 adding: a02128c16256cebe519f43e5f343916a1e3e88ef-6 (stored 0%) +#8 4.522 adding: a117ed6d150e6b79e3982f14b9c2c93efaf89efd-12 (deflated 12%) +#8 4.522 adding: a1192de9547ae032a249d11ba15025528eca87e1 (deflated 33%) +#8 4.522 adding: a13a8286b3dbc8373df45b0c9612cca4373e100c-3 (stored 0%) +#8 4.522 adding: a17f01faa87824c25003558392368997bd6c71c4-7 (stored 0%) +#8 4.522 adding: a1b927fe9e1c6371481f1864fbfc957785a2d36f-13 (stored 0%) +#8 4.522 adding: a1f29e40e4d7480a006e947f529f7a61598f24b3-5 (deflated 8%) +#8 4.522 adding: a213c44193bc216e654d649d5f67917293c1c481-10 (deflated 13%) +#8 4.522 adding: a2ad1a5ad803adbca74065538437a75df3fd6dd8-3 (deflated 21%) +#8 4.522 adding: a2c50f4de00c400e3701834af7eb970812d419bb (deflated 48%) +#8 4.522 adding: a2d683c253b69748a63887345a4d1f3f67b95e69-13 (deflated 36%) +#8 4.522 adding: a418d16e2cce7707e30f1225603d389c1ec668fe-1 (deflated 50%) +#8 4.523 adding: a44e57b56c3c756d446b480add55252e75664cc7-11 (stored 0%) +#8 4.523 adding: a45aa2b6279cba59df6b2589438d29121392caae-9 (deflated 66%) +#8 4.523 adding: a45ca5e221b843e9ff18cca83d1b2c617f5fd988-5 (deflated 59%) +#8 4.523 adding: a4cf445095487d526b708fc248a4f9d7a3244574-5 (stored 0%) +#8 4.523 adding: a5440fc2c6de252949feb05875b5f45ef2b05111-3 (deflated 44%) +#8 4.523 adding: a5d4cd640187a72cfdb668543e43c752f1cd55ad-16 (deflated 83%) +#8 4.523 adding: a66d287adda20c17ceb5b7fbc86555a9433e67b4-12 (deflated 84%) +#8 4.523 adding: a687ef2b0a1edaec44f2d8c87602f6d2a692c167-5 (stored 0%) +#8 4.523 adding: a6c7238311116c551072dc422ffede2f5c26feae-10 (stored 0%) +#8 4.523 adding: a6dad6b29cb6a590dff7d6fd4aad52376c32e361-3 (stored 0%) +#8 4.524 adding: a78f9a63b324dcb2325e25e157770998a2ea4125-11 (deflated 54%) +#8 4.524 adding: a80f96edb36065f2f450d5cfe45bfead18cd8e9f-7 (deflated 57%) +#8 4.524 adding: a8cb1108c07fbc88bc80ce2c26c3218657d1ddf4-2 (deflated 10%) +#8 4.524 adding: a96a2c5c80258fb3ded89cc153bb28f5152ff35a-10 (stored 0%) +#8 4.524 adding: a9e1c899f1b47b4a7b10d9635ac142b4f03061e5-13 (deflated 19%) +#8 4.524 adding: aa27f405c90b122c66087b23f43cc3ddc1ebb3f5-9 (deflated 73%) +#8 4.524 adding: aaa2fd74fc40dc372b3f7d2e91bb4c939440d2b5-7 (stored 0%) +#8 4.524 adding: aaacd7997dad1e6beb7f5d0d4020648983564e84-7 (stored 0%) +#8 4.524 adding: ab30c660807ef32986f5a3a5d5a051ae63d39ff6-6 (deflated 30%) +#8 4.524 adding: abb812bb442488cb492aabaee5ab0645f16ed56b-16 (deflated 6%) +#8 4.524 adding: ac48948e3735aeb79f54fe4330733053b1d3889e-18 (deflated 36%) +#8 4.524 adding: accfc3232b5aaba773b2a445a7b17acf61447dc4-21 (deflated 33%) +#8 4.524 adding: adb5e463dcefeef7346fced90edb4425230451a4-2 (deflated 15%) +#8 4.524 adding: adca1432b1af30ffc67807e697c329e3c063f24f-10 (stored 0%) +#8 4.524 adding: adebe0c5893d4c86bdaf6084484233b704b72cac-10 (stored 0%) +#8 4.524 adding: adfde932c530bca9b8ad1a70e330844fd268e582-5 (stored 0%) +#8 4.524 adding: ae2580d5d0bb4bfdd0170f4c0301502be216a0a4-11 (stored 0%) +#8 4.524 adding: ae6a513e5575a21efad0f743d2ccd2c7a9d3a9ff-1 (stored 0%) +#8 4.525 adding: ae808f8648dd95b8ff7258b107f4e4bd4694e925-6 (stored 0%) +#8 4.525 adding: ae9cf1713976b5d1c62f8839bc4e382784ef7a11-4 (stored 0%) +#8 4.525 adding: aebd646686c2ce053c4fd2f64f802561927555b1-9 (deflated 56%) +#8 4.525 adding: aef2d887f85c2b2ad68c7fbf00bc88c564cd6cf9-3 (stored 0%) +#8 4.525 adding: aefb5cf21b14531b42fd4f0ec75ff21902dfdf58-2 (stored 0%) +#8 4.525 adding: af30177a31c32fca4d29a7f812ae379aa8bc143a-4 (stored 0%) +#8 4.526 adding: b0549d5d07d922ac30ef09ff983732439e2f2f04-2 (stored 0%) +#8 4.526 adding: b0734950a72c8bc9f10aed8329bc711c9d375f3d-15 (deflated 53%) +#8 4.527 adding: b09f62251cfa7d11b88ee4dbef715756241f37e0-11 (stored 0%) +#8 4.527 adding: b0d327f79d44195f260c56811e5dc6cd70106679-3 (deflated 42%) +#8 4.527 adding: b0dc929c44694e420e3b16c673d19e5b0a27aebf-2 (stored 0%) +#8 4.527 adding: b0e5f01cef9fbb6130c1178ef4b4d15de25006f0-10 (deflated 54%) +#8 4.527 adding: b12c087408bccff9ea3e967396411b07e9c7315b-15 (deflated 89%) +#8 4.527 adding: b199fb5b9a6ffd241186c3706eb6a7c7762b41c0-15 (deflated 17%) +#8 4.527 adding: b1a149c8e0366807443d483c3375daf470f6ae2e-3 (deflated 26%) +#8 4.527 adding: b2c90d34c7b30d200a4dd54f35ad4aed2d349b6b-4 (deflated 73%) +#8 4.527 adding: b323c7fc0fcebec82fd498173de6e52fcc8a732c-4 (stored 0%) +#8 4.527 adding: b33e332141d41f09687557e977a8451fe6e7d1e7-6 (stored 0%) +#8 4.527 adding: b360c84614bf9a024e469b473a34b26db2b83471-1 (stored 0%) +#8 4.527 adding: b468212f872f47a483d7077d267fc9c4801f9721-3 (deflated 65%) +#8 4.527 adding: b47955ee989229190dd841fc19e40f262a082d02-5 (deflated 23%) +#8 4.527 adding: b64118e8f44a3918ef999ca91e6f566de1a919be-3 (stored 0%) +#8 4.527 adding: b64493210e834c09867b8b74743cfeb16681afba-1 (stored 0%) +#8 4.527 adding: b672fc43b9052fec5a9d50355d3bb4763a439412-12 (stored 0%) +#8 4.527 adding: b6730a641dc47947f216259e331528e9ee860ed3-2 (deflated 51%) +#8 4.527 adding: b6a772e18395644186095f02e087ea44a1ddaf24-13 (stored 0%) +#8 4.527 adding: b6f8c23dc693b4c8ad96d174c0d71280f59572c9-9 (stored 0%) +#8 4.527 adding: b75aba7decff5fdc47d8f533ae7def8f6e05a02a-4 (deflated 80%) +#8 4.527 adding: b7ef1ce6fdc9b4b5d2c49293822297db632b576d-13 (deflated 23%) +#8 4.527 adding: b7f241e3b8438a557d7d7f0561d9837db8dbf957-3 (stored 0%) +#8 4.527 adding: b80e7d44a71da1d64f84e7185efd63ec87fd2e4d-12 (deflated 8%) +#8 4.527 adding: b8313f249ef9678d57d41f5ce8248159e31f1bbf-9 (stored 0%) +#8 4.527 adding: b889cfc6e96874a12a4f1dda98baa82d2e972d38-3 (stored 0%) +#8 4.527 adding: b8d15c0e7c0e527b77aafd9ac4d3495c81aa9f7e-7 (stored 0%) +#8 4.527 adding: b8f06852fd91637af044941628eedbc8aaebf951-12 (deflated 23%) +#8 4.527 adding: b91fc1e48ff5e4b912309d76874f2e9c27e3588b-4 (deflated 63%) +#8 4.527 adding: b988286db2daee4cd5e14a6ed83c3ad5adeba159-1 (deflated 4%) +#8 4.527 adding: b9b74cc11dc7997b835cfe046ab195486d66de0d-4 (deflated 33%) +#8 4.527 adding: b9cc539a19afcbd50c077649afba0da387854e30-12 (deflated 38%) +#8 4.527 adding: b9f560ca0982f61c308db91c1e45b8fd5ce63c8e-6 (stored 0%) +#8 4.527 adding: ba095a4a2b1d4b577714f3dcbaf58169f5dcbf4f-11 (stored 0%) +#8 4.527 adding: ba26fff0477f12295855f333121aaa466d37f7fe-13 (stored 0%) +#8 4.527 adding: ba8ab5a0280b953aa97435ff8946cbcbb2755a27-5 (stored 0%) +#8 4.527 adding: ba96ef06e30c673fc5ad67384b98e8da9fb81079-2 (stored 0%) +#8 4.527 adding: ba9bd5ea451ee133511cc80130d954fdf86f56d7-2 (deflated 79%) +#8 4.527 adding: bac291f07c4f3ff8dc3ac499ddbbac84cd793d69-5 (stored 0%) +#8 4.527 adding: bbc258f03cc056612f7d0404c4cae740df3532ca-7 (deflated 60%) +#8 4.527 adding: bd4d4c7cb99573b2d7b391b93e694ae961b7881d-18 (deflated 26%) +#8 4.527 adding: bd9ece71ab0524b1c959270f9293f3765a98270f-2 (deflated 67%) +#8 4.527 adding: bda69306aaa46756c74526aceea21cad935ac161-10 (deflated 29%) +#8 4.527 adding: bdc057f2406d60eaeb219021f38a9649ceb76833-6 (stored 0%) +#8 4.527 adding: bdc289654b94145353e4e9a175c6ee46a77f7f08-1 (deflated 13%) +#8 4.527 adding: be4d921c224feea80989c1f51bed2f6d984ac46a-1 (stored 0%) +#8 4.527 adding: bf89cf6a0e867212ce86ebaf50ff6f6cec5a3c70-5 (deflated 13%) +#8 4.527 adding: bf8b5ebba2a96b01f09b159839c6b6e16b91366f-14 (stored 0%) +#8 4.527 adding: bf95b5bf962d15fea9d8b2eb643b0d24ac2c7d36-12 (deflated 43%) +#8 4.527 adding: bfa267ab940dd2a01651f3381449498cdbbba08e-6 (stored 0%) +#8 4.527 adding: bfeaa9d519e836ebb2ac33eea9cd92d78b124dd0-10 (deflated 25%) +#8 4.528 adding: c03f7d811dc8d806e4c2df093f3bfb8042709594-10 (deflated 33%) +#8 4.528 adding: c04e75af1044eb1c3decf0f446ef3429d320e352-2 (stored 0%) +#8 4.528 adding: c0a23f992532c09e4a612510a8f70f23781c535a-13 (deflated 67%) +#8 4.528 adding: c1e616ec57a0388cff2766cd9f83684681f71f66-19 (stored 0%) +#8 4.528 adding: c2ae2888a1159eff423bc865d1afabf7e2047a5a-7 (deflated 24%) +#8 4.528 adding: c30b8945bc3f23be13192d36fd82d88ce048a3ba-1 (deflated 50%) +#8 4.528 adding: c33685182b20a242112f839f66c63a6a3489e528-3 (stored 0%) +#8 4.528 adding: c43d3b4fd942907217a2866ba7b84616b90eac42-9 (deflated 24%) +#8 4.528 adding: c4dd3c8cdd8d7c95603dd67f1cd873d5f9148b29-6 (stored 0%) +#8 4.528 adding: c4e6fa076a228084fad41f2fc3cf687e5c2e5e6a-1 (stored 0%) +#8 4.528 adding: c4f0f14b975d6dd4665c337c78064579a23bf9ea-9 (deflated 79%) +#8 4.528 adding: c4f6816bea1da52d11b46c51544353914d31ecbb-1 (stored 0%) +#8 4.528 adding: c5031cdc7c9287a045dc344453a57f33d3fc7771-5 (stored 0%) +#8 4.528 adding: c50558cd63c2dccfaf42984d974eb0365f702482-6 (deflated 7%) +#8 4.528 adding: c565811b39c8b0edcc566ab49f6613681ff12b37-15 (deflated 38%) +#8 4.528 adding: c5a3f0d73435381cc653622fb3557f2570a1c211-1 (stored 0%) +#8 4.528 adding: c5a8aca345adc898bb8a30f96e2fc586642816bc-4 (stored 0%) +#8 4.529 adding: c5f128126bf051cab28f5b5aa71cd2ffaafd80a9-7 (deflated 55%) +#8 4.529 adding: c659d3e414993b2e90186b61ef51313b78ef411d-8 (deflated 8%) +#8 4.529 adding: c688af3ce2e820e2290959cc76a683c8ff08c5ac-7 (stored 0%) +#8 4.529 adding: c6c441b143d10d42a2d822359d46de98cf4277ce-8 (deflated 33%) +#8 4.529 adding: c6d9a44d71abe180a4025ae4005313e09b917437-3 (stored 0%) +#8 4.529 adding: c78d3856b90f533df52078b940f9881de91a8b30-4 (deflated 65%) +#8 4.529 adding: c7a987f8a64fb3cc4d4af040c1347e905dc2ef51-18 (deflated 72%) +#8 4.529 adding: c7e32379862caa0816f13eb5620c80e1793fa2d5-1 (stored 0%) +#8 4.529 adding: c82fce1b5d5a0ae1d48540c5891d29869bc94e8f-2 (stored 0%) +#8 4.529 adding: c836e32af9d52891be771edd256742649ae14f7a-17 (deflated 58%) +#8 4.529 adding: c84366a31675b40a4735c7ef86fa73ba2bb7b702-3 (stored 0%) +#8 4.529 adding: c84a0b2c85271f359ba2409458e8979c02e06e58-2 (deflated 40%) +#8 4.529 adding: c89d78cb071f2547b39c90c397b7ab8037340090-6 (stored 0%) +#8 4.529 adding: c9514efb11186ae45593e51881048514d18958a0-16 (deflated 13%) +#8 4.530 adding: c9a661e19af518f3fa185041ec809b03d5ced2c2-6 (stored 0%) +#8 4.530 adding: c9c695c1c1750947dfcedfb5e435dab4e9ffe201-8 (stored 0%) +#8 4.530 adding: ca91a4008253a59c28751c79f33bae2bb316624a-8 (deflated 76%) +#8 4.530 adding: cafe2ae11976790b7b7e1d37b48c2f530928062b-4 (stored 0%) +#8 4.530 adding: cb16d7bebce65d6471892aad9fa8004ea4ee3a26-8 (deflated 14%) +#8 4.530 adding: cb170c51b9563b37cf3e5a2bce630aedcc4661aa-10 (stored 0%) +#8 4.530 adding: cb4881aacf12b429a63fa9e451570d3eaa101daa-7 (deflated 73%) +#8 4.530 adding: cb5651517aba043b794a734c00dc15c6c4e1b497-9 (stored 0%) +#8 4.530 adding: cc10acdc13a240b4d31226602dc44a1ddf8309e9-16 (deflated 61%) +#8 4.530 adding: cdac67fadc46453a4c036f676a91084a7e0c6bdf-6 (stored 0%) +#8 4.530 adding: cdae0df034c58fbb842df56b35f4bac6b14c9ff3-1 (deflated 73%) +#8 4.530 adding: cdbf93058add67d55ed2188bac6dc45f769911ea-17 (deflated 71%) +#8 4.530 adding: cdca6b8a0df5e66f7c10064b648ba26a07b29008-15 (deflated 26%) +#8 4.530 adding: ceddaebdc27eb53519ccc21a2aadb7465c1b2873-6 (deflated 75%) +#8 4.530 adding: cf026c07a6ca662f1eb8a0b4a159f9637672b8cc-1 (stored 0%) +#8 4.530 adding: cf4638caee3bf26269b20deedda3284db306ab42-8 (stored 0%) +#8 4.531 adding: cf51de8aab7037e11d0f2a5c46d91d189cb82010-7 (deflated 31%) +#8 4.531 adding: cf59132481654a036926ba59fe794ba8d1ccf8d5-8 (deflated 53%) +#8 4.531 adding: cf738b50b74cf2956a16d07a6906cf7bdaa29f4f-7 (stored 0%) +#8 4.531 adding: cf865652f6a450007b73abebcd7d64a8b8a8ad14 (deflated 35%) +#8 4.531 adding: d0868f3654c67638850a761157117507b6b218cf-15 (deflated 28%) +#8 4.531 adding: d0ac1626cb4713dd5e6b3ff63d818efac90ab4b3-7 (stored 0%) +#8 4.531 adding: d0bdaac616fde90741ff03d497608a645c2e7e83-17 (deflated 25%) +#8 4.531 adding: d15b1cbb60cc7c9cd87a1b9e455ab9218b7f09cf-3 (deflated 78%) +#8 4.531 adding: d17633acac2ef51358e98419794beab4e2600fd8-1 (stored 0%) +#8 4.531 adding: d178544bf78f99dcf933ea732a8124b92728121e-13 (deflated 44%) +#8 4.531 adding: d1f3b68e84aee407ab94b54256265afe99d7dd4c-5 (stored 0%) +#8 4.531 adding: d24a21eb297ea0ecfbad45301a8d4aa546dc1832-11 (deflated 13%) +#8 4.531 adding: d295b341110aa371c7a3711a9281fa88db34b249-10 (stored 0%) +#8 4.532 adding: d2ba865e608fae3f880ce438e67ce183164e529a-7 (stored 0%) +#8 4.532 adding: d3270f852a922a83e8e2dabb8535a68464ec5165-9 (stored 0%) +#8 4.532 adding: d340376c6f07f5e9469256c884f8d255247ae199-4 (deflated 8%) +#8 4.532 adding: d382a9cdf2785f6a723c1a9d6eabbdd6064a7309-1 (deflated 53%) +#8 4.532 adding: d38364dd04487e2386830508113e738883947f57-14 (deflated 80%) +#8 4.532 adding: d3cc16cc4a8ac959f2a3e37e619f188e67428e67-7 (deflated 78%) +#8 4.532 adding: d3fda45923fc41f4f826e577d3d0a1be1398f6dc-8 (deflated 67%) +#8 4.532 adding: d45321ac7d9bc63fc75aafbd8ac0f20374b3babd-16 (deflated 23%) +#8 4.532 adding: d4844449c48fcef24e6248d2a061a2fb88643918 (deflated 56%) +#8 4.532 adding: d5373393ebad57166270adf30cdade2b818e84b6-7 (stored 0%) +#8 4.532 adding: d5bd5db982c1405cda3eaddfb36777341e29ae84-8 (stored 0%) +#8 4.533 adding: d67d4422dccb731ed3fcb61ffdb76a979af68dde-3 (stored 0%) +#8 4.533 adding: d69d9e46c65f31278033282679154939dad53e77-2 (stored 0%) +#8 4.533 adding: d6a7fd49ae52c220844219d1b2c4f5e22b8d5adc-15 (stored 0%) +#8 4.533 adding: d6f522a8b6344d528e95b50ceb0a83e9700272f1-11 (stored 0%) +#8 4.533 adding: d7a62736f88b8477540655106c828f13b5f2b52f-13 (stored 0%) +#8 4.533 adding: d7a7a0858122b7b04b119e8ab5ed948b2e7986c3-3 (deflated 52%) +#8 4.533 adding: d7e54f597797854431febba71d7e081f33461f41-14 (stored 0%) +#8 4.533 adding: d86f8ac674bd329c55075ea594cc353fbc7a9dce-2 (stored 0%) +#8 4.533 adding: d8ee00948e54927b094d93e3bed821ba2e3de652-1 (stored 0%) +#8 4.533 adding: d9c8bd37ee99df0a3d1358967329a2708fe93018-11 (stored 0%) +#8 4.533 adding: d9c8fb01f81b8b3feb7ce263c419097e290ff0ef-10 (deflated 14%) +#8 4.533 adding: d9f438b708d3e2924796d445832abb3600b6aa19-1 (stored 0%) +#8 4.533 adding: da1363ddc351c12d7207dc742c33f4d7f63edae0-12 (stored 0%) +#8 4.533 adding: db0896822b6d3b7442ee21c410971d81f9f2988d-16 (deflated 51%) +#8 4.533 adding: db13b867432c0d81f6e959f018102c57a6c347a8-3 (stored 0%) +#8 4.533 adding: db949701eeb3980e6884b15423cdaae2d18b328e-11 (stored 0%) +#8 4.533 adding: db976c1ca9c72609cc306864d2f7e86794801ba4-11 (deflated 23%) +#8 4.533 adding: dbd67aa1862bb3110341f02fdf19a2f53394839e-7 (stored 0%) +#8 4.533 adding: dc84cae07655fe460c1baebe06175dd264d69b13-3 (stored 0%) +#8 4.533 adding: dc8f520cbb7abb0af9a05333f3f27e43b077b900-3 (deflated 63%) +#8 4.533 adding: dc92e42b4e412c1cf8da4bec46f425e567b5dcc6-7 (deflated 44%) +#8 4.533 adding: dcbed701bd727f64ca2424b0f0a6d9a5fcd45b37-16 (deflated 72%) +#8 4.533 adding: dd02fea1da50ed390e8ea3387e9e20c136dc7a75-9 (deflated 59%) +#8 4.533 adding: dd041d703749f5fba06869b66ea6d6f728376c17-1 (deflated 5%) +#8 4.533 adding: dd5ae1e91abafadfc10623e7fba723fd35f49bff-6 (stored 0%) +#8 4.534 adding: de0c155d0da46d87e99cd8f0ac6cb51662451552-4 (stored 0%) +#8 4.534 adding: de23395c9b8defc313937f7527523033a178b73d-8 (stored 0%) +#8 4.534 adding: de3d8c578a9777f1ac3e3dfec300f8d36fac6709-9 (stored 0%) +#8 4.534 adding: deb2028f24867887b90cd88b1c7bc4f6a9d274d2-10 (stored 0%) +#8 4.534 adding: debb40ce59f76cbbfd86d6ab39349634f761390b-2 (deflated 65%) +#8 4.534 adding: df698aec3bfffbdda144c51ac0007d7b09219d4c-1 (deflated 35%) +#8 4.534 adding: e08977e2f9ed59c540d9a4f74a12c42313f0815e-13 (stored 0%) +#8 4.534 adding: e0cc551e27d84e73e7d9b577ce6cd002144e29f1-4 (stored 0%) +#8 4.534 adding: e0de6c0979bf69ff760dec409662ee7faa6392e4 (deflated 53%) +#8 4.534 adding: e0ea29ec9200b248b822577eaa6347a2039ea6de-8 (stored 0%) +#8 4.534 adding: e0f39fed4f060ebb3bb3d9aa151632cc58093bc3-1 (deflated 21%) +#8 4.534 adding: e13b27fe5bed921584127c6ab407d0e1ca499e7e-10 (stored 0%) +#8 4.534 adding: e1749684774b35ee6a3472825e06168d5131abf6-1 (stored 0%) +#8 4.534 adding: e250b39a8f3fb932cc5b9e061ebaa22f78165bfc-1 (deflated 65%) +#8 4.534 adding: e2a2a61ca659692218fcb90faeb5ad026e88a6e7-8 (deflated 43%) +#8 4.534 adding: e2f3dab6783ff81fd32fde781ee8bd7c95f7466f-8 (stored 0%) +#8 4.534 adding: e3b3eab12e2fe15eb0ba277b53eee483403d4791-12 (deflated 31%) +#8 4.534 adding: e42ef86d2dd40d60877e75db01dc86eb6b685259-9 (stored 0%) +#8 4.535 adding: e47c0471a5edcdd64de973495e12f93ad28086a8-7 (stored 0%) +#8 4.535 adding: e47cbf6a45594b9381390e553441014962f16464-8 (stored 0%) +#8 4.535 adding: e57a9d6bd65e8bfed45ceb6cf10cef1ab95b36b7-10 (stored 0%) +#8 4.535 adding: e6168bf842f4c6cddd3f731deb1d14630b55b29c-16 (deflated 44%) +#8 4.536 adding: e6acb6735d4f6223ebe62356c5ffa76541475b39-8 (stored 0%) +#8 4.536 adding: e6bfed2c8ae3c5fc91913f8ca479cf1d4d26d32f-5 (stored 0%) +#8 4.536 adding: e6e361776c0e1df49cebb1c0d45a37916545b83b-8 (stored 0%) +#8 4.536 adding: e703676b2fbfa246722de1d9d35a5fe756876fe3-6 (deflated 86%) +#8 4.536 adding: e72c078a5d071e680754ec857eb29a9b115c0d5b-2 (deflated 76%) +#8 4.536 adding: e7460e6db102d6e81f7ba41d11ef75395fefc37d-6 (stored 0%) +#8 4.536 adding: e8aead2d2952fd5bfbec0da653f6041956a5bce5-1 (deflated 54%) +#8 4.536 adding: e8d8c90e8a77c794bec3bf6aeccc35af5c157925-7 (stored 0%) +#8 4.536 adding: e9083686627783707a9c940b2a395ca661ce781c-1 (stored 0%) +#8 4.536 adding: e90a3e38ea09af53e321bc16f2c207d9b1dbb67a-7 (stored 0%) +#8 4.536 adding: e91ec179eea4f7392dfd24e00b6bc9607c7c6b30-9 (stored 0%) +#8 4.536 adding: e97c46de11f67138b34cb9c7219d4cc6bb994de4-8 (stored 0%) +#8 4.536 adding: e9d7e378bba8da1ec669c6f0a25fe8966a472083-17 (stored 0%) +#8 4.536 adding: ead59e21162d6068e84715ae988b85313427f0b1-14 (deflated 78%) +#8 4.536 adding: eadd10b75501eb7e6ee162cdb19c58206e91786a-2 (deflated 12%) +#8 4.536 adding: eb13b9a2adea8f871fb697d4e24c0ca70373f37d-8 (deflated 4%) +#8 4.536 adding: eb577341290332a96704465ba1be7e80df869e7d (deflated 32%) +#8 4.536 adding: eb7d4ed012dc44e052f7a9eccf6f8bbdc9efac74-4 (stored 0%) +#8 4.536 adding: ebdc2288a14298f5f7adf08e069b39fc42cbd909-2 (stored 0%) +#8 4.537 adding: ebf39433de7dfa7448d0caf0821e08a65f151997-3 (deflated 77%) +#8 4.537 adding: ec1c05a31651ebe0e3d0970194abcbcd1e38a9f7-6 (stored 0%) +#8 4.537 adding: ec6fb5e81b2a4f8db2fedcde7ebdee0079e0551c-8 (deflated 76%) +#8 4.537 adding: eccacef75b05c7463c11337c273c700f0a2a4c12-1 (stored 0%) +#8 4.537 adding: ecdf853b0bb2cf06c638ce8a75aaa663f7eb45ae-5 (stored 0%) +#8 4.537 adding: eced42a20ee4dcf4e186127fbf2cec15951c6abf-11 (stored 0%) +#8 4.537 adding: ed52d3fac874be9cedd6baa4fa27cc074f70833e-2 (deflated 57%) +#8 4.537 adding: ed815f23adfefbd098b1a75ffa91809b2cc85fa5-2 (stored 0%) +#8 4.537 adding: edd3044dc63b93d377f53a386b071506a34448b0-12 (deflated 8%) +#8 4.537 adding: ee10fdd9faeb8d22cbb493be2e7a85018167028d-9 (stored 0%) +#8 4.537 adding: ee3a063257965095a47a9e4391c4e95fc09f6a1d-10 (deflated 64%) +#8 4.537 adding: ee9a8664c22b5617cf95e5162db9df93f3dddab4-8 (stored 0%) +#8 4.537 adding: eea637b5e8dd39dad85d44bb5990f44c3a0337a8-12 (deflated 72%) +#8 4.537 adding: eebad9080bfe3ed5e44e9ba37dc8dd21a34d69e4-7 (stored 0%) +#8 4.538 adding: f00274f7e90e1b616fa44dee2ecbc76e756c69ca-7 (stored 0%) +#8 4.538 adding: f0e39dfdea8e5277865fdecdf1dfc93d8f471254-13 (deflated 35%) +#8 4.538 adding: f142f2e97b3c3e21c5537a586b0d337889459d74-5 (stored 0%) +#8 4.538 adding: f16e440fed89a6e2be177d51a14e334f97e07052-5 (stored 0%) +#8 4.538 adding: f18e71cee314eb31d35d4a7564fae8fbe43367f2-12 (deflated 27%) +#8 4.538 adding: f2b1547759bcddbdc5e3fb701b26c010a1d9d4bf-9 (deflated 54%) +#8 4.538 adding: f2ea79bc0fdab89bde5e53730f46cdfa2af63e45-9 (stored 0%) +#8 4.538 adding: f2fd284b20b1d6f4e8d1fec6cd0c507e5b591ec1-9 (stored 0%) +#8 4.538 adding: f33e5108513801db12774aa369bbd07e99187ff9-2 (deflated 36%) +#8 4.538 adding: f3489e5a8db61b4214b01ccb6fcb52aa641c6b9d-6 (deflated 28%) +#8 4.538 adding: f361514574d432dce5494e4b8eec3bcd5d7a29f7-5 (stored 0%) +#8 4.538 adding: f36b4992ad09cabf13532279540d544f6f46e9b9-13 (deflated 17%) +#8 4.538 adding: f3a274d5e8b2e30faca77694532bdab05df0ad33-2 (stored 0%) +#8 4.538 adding: f5b1ce67afd9508a692f56aa2c2228223374402d-9 (deflated 6%) +#8 4.538 adding: f6032232e5cd8e077c0a75efa4a72666577dbc48-14 (deflated 13%) +#8 4.539 adding: f61b56055142ce131c0a12135caca9441cdf7e76-10 (stored 0%) +#8 4.539 adding: f6534891184aba5014df752a787a891e92a80e13-13 (deflated 26%) +#8 4.539 adding: f727f7ea4842f89bf1c941a2ba7f8c78c6e57f3f (deflated 56%) +#8 4.539 adding: f732262b5e764fd5e3a01ae21d0a5e68335c4333-7 (stored 0%) +#8 4.539 adding: f734665f8ea6629872aceaadb6e863e77fda1e87-11 (deflated 47%) +#8 4.539 adding: f78df310ddb375351154f265d0bfddb531a399f5-9 (stored 0%) +#8 4.539 adding: f7cad497b9084175681b9a9a27f9b33c672c3848-6 (deflated 50%) +#8 4.539 adding: f7de44a64c626450f8175ef236e4835d2c1e211a-14 (deflated 71%) +#8 4.539 adding: f8f66f65806876fe2aca59ecaca3af4246c968c8-9 (stored 0%) +#8 4.539 adding: f93a52d5e8dc53bed2cac041020ffafe0f7092c3-3 (deflated 57%) +#8 4.539 adding: f9471325fa419f60ab57140c4707b8f841b7cbb4-4 (deflated 55%) +#8 4.539 adding: fa9efdecf116677fcb223d4315ba2620fbb6bc5e-6 (deflated 88%) +#8 4.539 adding: faae86f612ef7411217e3898b67ea60f3af4a203-7 (deflated 20%) +#8 4.539 adding: fad7f5dc4415ce9d9565946ca95d45b66ebd324c-8 (deflated 25%) +#8 4.539 adding: fae18d6e4214a6d1e9f76e2909b8e0e1fe2e0125-4 (deflated 87%) +#8 4.539 adding: faec284e64310b78d635822ebcb1ca5481c85379 (stored 0%) +#8 4.539 adding: fb01c51d3ac719abef925faee2129975ef3dcb77-14 (deflated 7%) +#8 4.540 adding: fb3f6e6ca19bd8aa444fed368464d7e03a285da9-1 (stored 0%) +#8 4.540 adding: fb44fb54d909d2a3eb08c0d755b1c2c603389b20 (deflated 26%) +#8 4.540 adding: fb4c2c665e6c3df1dc842c7696d371b0df64cb01-1 (deflated 9%) +#8 4.540 adding: fb8af275c4c504259907f6581619828f75e454c3-2 (stored 0%) +#8 4.540 adding: fb936c0af24fb1e520aa8551892bb728df370251-6 (deflated 17%) +#8 4.540 adding: fbd8d7de0b83efb1225441bc568299dd6148e855-12 (deflated 53%) +#8 4.540 adding: fcf31c05940473b88a70c2c5cfcc83f7ea25fb96-8 (deflated 78%) +#8 4.540 adding: fd62c0d175e4b38f0111d65a8a422448311d4028-17 (deflated 26%) +#8 4.540 adding: fd7a2b83cb0ba8522402983cb3068c33624c6687-5 (stored 0%) +#8 4.540 adding: fd9d6764bfd12523773e4f88d49ea4fb4ea219cf-11 (stored 0%) +#8 4.540 adding: fdbc2149b277be7803d8e1981355a55e5ededa05-7 (deflated 13%) +#8 4.540 adding: fdf8ceb0e59fa3635d346d169217122afbd70670-12 (deflated 48%) +#8 4.540 adding: fe587d139137131943b5a3ab6b2fa818c977f051-11 (deflated 28%) +#8 4.540 adding: feb00bc0281d57bdfc1b1ca71ddf693269c14317-4 (deflated 29%) +#8 4.540 adding: ff1873372d5a40d9a5159777d4512c8642d17ca4-7 (deflated 13%) +#8 4.540 adding: ff20bf2cb9c3801e35e4693fb0f8a076baca8911-5 (deflated 40%) +#8 4.540 adding: ff520f68bb3eb6700468d0f6478d2f577e0aa054-7 (deflated 58%) +#8 4.540 adding: ffd0b54f870f5ac1f5004987cfb26b926b9ef2ba-8 (stored 0%) +#8 DONE 6.2s + +#9 [5/8] RUN git clone --depth 1 https://github.com/apache/commons-jxpath.git +#9 0.179 Cloning into 'commons-jxpath'... +#9 DONE 0.7s + +#10 [6/8] COPY build.sh /src/ +#10 DONE 0.0s + +#11 [7/8] COPY JXPathFuzzer.java /src/ +#11 DONE 0.0s + +#12 [8/8] WORKDIR /src/commons-jxpath +#12 DONE 0.0s + +#13 exporting to image +#13 exporting layers +#13 exporting layers 0.2s done +#13 writing image sha256:b93c72424da9e0c100b174df90bf8b5425e7b81b19927124a52b4d413cc279e5 done +#13 naming to gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 done +#13 DONE 0.2s + + 1 warning found (use docker --debug to expand): + - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 23) +/usr/bin/python3 infra/helper.py build_fuzzers --sanitizer address --clean -e MAVEN_OPTS='-Dmaven.repo.local=/work/m2' apache-commons-jxpath-osv-2023-719 /tmp/tmp7_yr1n03/repo-tars/commons-jxpath +INFO:root:Running: docker build -t gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 --file /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719/Dockerfile /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/projects/apache-commons-jxpath-osv-2023-719. +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 1.44kB done +#1 WARN: LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 23) +#1 DONE 0.0s + +#2 [internal] load metadata for gcr.io/oss-fuzz-base/base-builder-jvm:latest +#2 DONE 0.1s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [1/8] FROM gcr.io/oss-fuzz-base/base-builder-jvm:latest@sha256:b1da2e7c3d2b6744cf4154c3a2aa0ad3c676f1f5640ae73aa14870b926bb2e07 +#4 DONE 0.0s + +#5 [internal] load build context +#5 transferring context: 67B done +#5 DONE 0.0s + +#6 [7/8] COPY JXPathFuzzer.java /src/ +#6 CACHED + +#7 [2/8] RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && unzip maven.zip -d /src/maven && rm -rf maven.zip +#7 CACHED + +#8 [3/8] RUN git clone --depth 1 https://github.com/google/fuzzing && mv fuzzing/dictionaries/xml.dict /src/JXPathFuzzer.dict && rm -rf fuzzing +#8 CACHED + +#9 [4/8] RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus && zip -j /src/JXPathFuzzer_seed_corpus.zip go-fuzz-corpus/xml/corpus/* && rm -rf go-fuzz-corpus +#9 CACHED + +#10 [5/8] RUN git clone --depth 1 https://github.com/apache/commons-jxpath.git +#10 CACHED + +#11 [6/8] COPY build.sh /src/ +#11 CACHED + +#12 [8/8] WORKDIR /src/commons-jxpath +#12 CACHED + +#13 exporting to image +#13 exporting layers done +#13 writing image sha256:b93c72424da9e0c100b174df90bf8b5425e7b81b19927124a52b4d413cc279e5 done +#13 naming to gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 done +#13 DONE 0.0s + + 1 warning found (use docker --debug to expand): + - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 23) +INFO:root:Cleaning existing build artifacts. +INFO:root:Running: docker run --rm --privileged --shm-size=2g --platform linux/amd64 -i -v /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/out/apache-commons-jxpath-osv-2023-719/:/out -t gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 /bin/bash -c 'rm -rf /out/*'. +INFO:root:Running: docker run --rm --privileged --shm-size=2g --platform linux/amd64 -i -v /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/work/apache-commons-jxpath-osv-2023-719:/work -t gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719 /bin/bash -c 'rm -rf /work/*'. +rm: cannot remove '/work/m2': Device or resource busy +INFO:root:Running: docker run --rm --privileged --shm-size=2g --platform linux/amd64 -i -e FUZZING_ENGINE=libfuzzer -e SANITIZER=address -e ARCHITECTURE=x86_64 -e PROJECT_NAME=apache-commons-jxpath-osv-2023-719 -e HELPER=True -e FUZZING_LANGUAGE=jvm -e MAVEN_OPTS=-Dmaven.repo.local=/work/m2 -v /tmp/tmp7_yr1n03/repo-tars/commons-jxpath:/src/commons-jxpath -v /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/out/apache-commons-jxpath-osv-2023-719/:/out -v /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/work/apache-commons-jxpath-osv-2023-719:/work -t gcr.io/oss-fuzz/apache-commons-jxpath-osv-2023-719. +--------------------------------------------------------------- +vm.mmap_rnd_bits = 28 +--------------------------------------------------------------- +CC=clang +CXX=clang++ +CFLAGS=-O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -fno-sanitize=leak +CXXFLAGS=-O1 -fno-omit-frame-pointer -gline-tables-only -Wno-error=enum-constexpr-conversion -Wno-error=incompatible-function-pointer-types -Wno-error=int-conversion -Wno-error=deprecated-declarations -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=vla-cxx-extension -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=address -fsanitize-address-use-after-scope -fsanitize=fuzzer-no-link -stdlib=libc++ -fno-sanitize=leak +RUSTFLAGS=--cfg fuzzing -Zsanitizer=address -Cdebuginfo=1 -Cforce-frame-pointers +--------------------------------------------------------------- ++ mv /src/JXPathFuzzer_seed_corpus.zip /src/JXPathFuzzer.dict /out ++ MAVEN_ARGS='-Djavac.src.version=15 -Djavac.target.version=15 -DskipTests' ++ /src/maven/apache-maven-3.6.3/bin/mvn package org.apache.maven.plugins:maven-shade-plugin:3.2.4:shade -Djavac.src.version=15 -Djavac.target.version=15 -DskipTests +[INFO] Scanning for projects... +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom +Progress (1): 4.1/83 kB Progress (1): 8.2/83 kB Progress (1): 12/83 kB Progress (1): 16/83 kB Progress (1): 20/83 kB Progress (1): 25/83 kB Progress (1): 29/83 kB Progress (1): 33/83 kB Progress (1): 37/83 kB Progress (1): 41/83 kB Progress (1): 45/83 kB Progress (1): 49/83 kB Progress (1): 53/83 kB Progress (1): 57/83 kB Progress (1): 61/83 kB Progress (1): 66/83 kB Progress (1): 70/83 kB Progress (1): 74/83 kB Progress (1): 78/83 kB Progress (1): 82/83 kB Progress (1): 83 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/58/commons-parent-58.pom (83 kB at 195 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/29/apache-29.pom (21 kB at 493 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.3/junit-bom-5.9.3.pom (5.6 kB at 182 kB/s) +Downloading from apache.snapshots: https://repository.apache.org/snapshots/org/codehaus/mojo/javancss-maven-plugin/maven-metadata.xml +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/maven-metadata.xml +Progress (1): 440 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/maven-metadata.xml (440 B at 13 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/2.1/javancss-maven-plugin-2.1.pom +Progress (1): 4.1/7.5 kB Progress (1): 7.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/2.1/javancss-maven-plugin-2.1.pom (7.5 kB at 222 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom (24 kB at 716 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom (4.8 kB at 156 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/2.1/javancss-maven-plugin-2.1.jar +Progress (1): 4.1/36 kB Progress (1): 8.2/36 kB Progress (1): 12/36 kB Progress (1): 16/36 kB Progress (1): 20/36 kB Progress (1): 25/36 kB Progress (1): 29/36 kB Progress (1): 33/36 kB Progress (1): 36 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/javancss-maven-plugin/2.1/javancss-maven-plugin-2.1.jar (36 kB at 949 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.4/maven-shade-plugin-3.2.4.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.4/maven-shade-plugin-3.2.4.pom (11 kB at 336 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/34/maven-plugins-34.pom (11 kB at 324 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom +Progress (1): 4.1/43 kB Progress (1): 8.2/43 kB Progress (1): 12/43 kB Progress (1): 16/43 kB Progress (1): 20/43 kB Progress (1): 25/43 kB Progress (1): 29/43 kB Progress (1): 33/43 kB Progress (1): 37/43 kB Progress (1): 41/43 kB Progress (1): 43 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/34/maven-parent-34.pom (43 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/23/apache-23.pom (18 kB at 558 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.4/maven-shade-plugin-3.2.4.jar +Progress (1): 4.1/134 kB Progress (1): 8.2/134 kB Progress (1): 12/134 kB Progress (1): 16/134 kB Progress (1): 20/134 kB Progress (1): 25/134 kB Progress (1): 29/134 kB Progress (1): 33/134 kB Progress (1): 37/134 kB Progress (1): 41/134 kB Progress (1): 45/134 kB Progress (1): 49/134 kB Progress (1): 53/134 kB Progress (1): 57/134 kB Progress (1): 61/134 kB Progress (1): 66/134 kB Progress (1): 70/134 kB Progress (1): 74/134 kB Progress (1): 78/134 kB Progress (1): 82/134 kB Progress (1): 86/134 kB Progress (1): 90/134 kB Progress (1): 94/134 kB Progress (1): 98/134 kB Progress (1): 102/134 kB Progress (1): 106/134 kB Progress (1): 111/134 kB Progress (1): 115/134 kB Progress (1): 119/134 kB Progress (1): 123/134 kB Progress (1): 127/134 kB Progress (1): 131/134 kB Progress (1): 134 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.4/maven-shade-plugin-3.2.4.jar (134 kB at 2.5 MB/s) +[INFO] +[INFO] -------------------< commons-jxpath:commons-jxpath >-------------------- +[INFO] Building Apache Commons JXPath 1.4-SNAPSHOT +[INFO] --------------------------------[ jar ]--------------------------------- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.7.0/maven-remote-resources-plugin-1.7.0.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.7.0/maven-remote-resources-plugin-1.7.0.pom (13 kB at 368 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom (11 kB at 314 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom +Progress (1): 4.1/44 kB Progress (1): 8.2/44 kB Progress (1): 12/44 kB Progress (1): 16/44 kB Progress (1): 20/44 kB Progress (1): 25/44 kB Progress (1): 29/44 kB Progress (1): 33/44 kB Progress (1): 37/44 kB Progress (1): 41/44 kB Progress (1): 44 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 kB at 552 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.7.0/maven-remote-resources-plugin-1.7.0.jar +Progress (1): 4.1/71 kB Progress (1): 8.2/71 kB Progress (1): 12/71 kB Progress (1): 16/71 kB Progress (1): 20/71 kB Progress (1): 25/71 kB Progress (1): 29/71 kB Progress (1): 33/71 kB Progress (1): 37/71 kB Progress (1): 41/71 kB Progress (1): 45/71 kB Progress (1): 49/71 kB Progress (1): 53/71 kB Progress (1): 57/71 kB Progress (1): 61/71 kB Progress (1): 66/71 kB Progress (1): 70/71 kB Progress (1): 71 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.7.0/maven-remote-resources-plugin-1.7.0.jar (71 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.pom +Progress (1): 4.1/7.0 kB Progress (1): 7.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.pom (7.0 kB at 225 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/3.3.0/enforcer-3.3.0.pom +Progress (1): 4.1/8.2 kB Progress (1): 8.2/8.2 kB Progress (1): 8.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer/3.3.0/enforcer-3.3.0.pom (8.2 kB at 274 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom +Progress (1): 4.1/48 kB Progress (1): 8.2/48 kB Progress (1): 12/48 kB Progress (1): 16/48 kB Progress (1): 20/48 kB Progress (1): 24/48 kB Progress (1): 28/48 kB Progress (1): 32/48 kB Progress (1): 36/48 kB Progress (1): 40/48 kB Progress (1): 44/48 kB Progress (1): 48 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/39/maven-parent-39.pom (48 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.2/junit-bom-5.9.2.pom (5.6 kB at 182 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.jar +Progress (1): 4.1/39 kB Progress (1): 8.2/39 kB Progress (1): 12/39 kB Progress (1): 16/39 kB Progress (1): 20/39 kB Progress (1): 24/39 kB Progress (1): 28/39 kB Progress (1): 32/39 kB Progress (1): 36/39 kB Progress (1): 39 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-enforcer-plugin/3.3.0/maven-enforcer-plugin-3.3.0.jar (39 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.pom (20 kB at 621 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/36/maven-plugins-36.pom +Progress (1): 4.1/9.9 kB Progress (1): 8.2/9.9 kB Progress (1): 9.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/36/maven-plugins-36.pom (9.9 kB at 319 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/36/maven-parent-36.pom +Progress (1): 4.1/45 kB Progress (1): 8.2/45 kB Progress (1): 12/45 kB Progress (1): 16/45 kB Progress (1): 20/45 kB Progress (1): 24/45 kB Progress (1): 28/45 kB Progress (1): 32/45 kB Progress (1): 36/45 kB Progress (1): 40/45 kB Progress (1): 45/45 kB Progress (1): 45 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/36/maven-parent-36.pom (45 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/26/apache-26.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/26/apache-26.pom (21 kB at 663 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.jar +Progress (1): 4.1/119 kB Progress (1): 8.2/119 kB Progress (1): 12/119 kB Progress (1): 16/119 kB Progress (1): 20/119 kB Progress (1): 25/119 kB Progress (1): 29/119 kB Progress (1): 33/119 kB Progress (1): 37/119 kB Progress (1): 41/119 kB Progress (1): 45/119 kB Progress (1): 49/119 kB Progress (1): 53/119 kB Progress (1): 57/119 kB Progress (1): 61/119 kB Progress (1): 66/119 kB Progress (1): 70/119 kB Progress (1): 74/119 kB Progress (1): 78/119 kB Progress (1): 82/119 kB Progress (1): 86/119 kB Progress (1): 90/119 kB Progress (1): 94/119 kB Progress (1): 98/119 kB Progress (1): 102/119 kB Progress (1): 106/119 kB Progress (1): 111/119 kB Progress (1): 115/119 kB Progress (1): 119/119 kB Progress (1): 119 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-site-plugin/3.12.1/maven-site-plugin-3.12.1.jar (119 kB at 2.9 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.pom +Progress (1): 4.1/6.8 kB Progress (1): 6.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.pom (6.8 kB at 233 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/37/maven-plugins-37.pom +Progress (1): 4.1/9.9 kB Progress (1): 8.2/9.9 kB Progress (1): 9.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/37/maven-plugins-37.pom (9.9 kB at 330 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/37/maven-parent-37.pom +Progress (1): 4.1/46 kB Progress (1): 8.2/46 kB Progress (1): 12/46 kB Progress (1): 16/46 kB Progress (1): 20/46 kB Progress (1): 25/46 kB Progress (1): 29/46 kB Progress (1): 33/46 kB Progress (1): 37/46 kB Progress (1): 41/46 kB Progress (1): 45/46 kB Progress (1): 46 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/37/maven-parent-37.pom (46 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/27/apache-27.pom (20 kB at 657 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.jar +Progress (1): 4.1/27 kB Progress (1): 8.2/27 kB Progress (1): 12/27 kB Progress (1): 16/27 kB Progress (1): 20/27 kB Progress (1): 25/27 kB Progress (1): 27 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.3.0/maven-jar-plugin-3.3.0.jar (27 kB at 854 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.pom +Progress (1): 4.1/6.9 kB Progress (1): 6.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.pom (6.9 kB at 239 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.jar +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 25/32 kB Progress (1): 29/32 kB Progress (1): 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-source-plugin/3.2.1/maven-source-plugin-3.2.1.jar (32 kB at 1.0 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/spdx/spdx-maven-plugin/0.6.5/spdx-maven-plugin-0.6.5.pom +Progress (1): 4.1/9.5 kB Progress (1): 8.2/9.5 kB Progress (1): 9.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/spdx/spdx-maven-plugin/0.6.5/spdx-maven-plugin-0.6.5.pom (9.5 kB at 296 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/spdx/spdx-maven-plugin/0.6.5/spdx-maven-plugin-0.6.5.jar +Progress (1): 4.1/119 kB Progress (1): 8.2/119 kB Progress (1): 12/119 kB Progress (1): 16/119 kB Progress (1): 20/119 kB Progress (1): 25/119 kB Progress (1): 29/119 kB Progress (1): 33/119 kB Progress (1): 37/119 kB Progress (1): 41/119 kB Progress (1): 45/119 kB Progress (1): 49/119 kB Progress (1): 53/119 kB Progress (1): 57/119 kB Progress (1): 61/119 kB Progress (1): 66/119 kB Progress (1): 70/119 kB Progress (1): 74/119 kB Progress (1): 78/119 kB Progress (1): 82/119 kB Progress (1): 86/119 kB Progress (1): 90/119 kB Progress (1): 94/119 kB Progress (1): 98/119 kB Progress (1): 102/119 kB Progress (1): 106/119 kB Progress (1): 111/119 kB Progress (1): 115/119 kB Progress (1): 119/119 kB Progress (1): 119 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/spdx/spdx-maven-plugin/0.6.5/spdx-maven-plugin-0.6.5.jar (119 kB at 2.8 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.4.0/build-helper-maven-plugin-3.4.0.pom +Progress (1): 4.1/7.6 kB Progress (1): 7.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.4.0/build-helper-maven-plugin-3.4.0.pom (7.6 kB at 231 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/74/mojo-parent-74.pom +Progress (1): 4.1/36 kB Progress (1): 8.2/36 kB Progress (1): 12/36 kB Progress (1): 16/36 kB Progress (1): 20/36 kB Progress (1): 25/36 kB Progress (1): 29/36 kB Progress (1): 33/36 kB Progress (1): 36 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/74/mojo-parent-74.pom (36 kB at 1.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.4.0/build-helper-maven-plugin-3.4.0.jar +Progress (1): 4.1/70 kB Progress (1): 8.2/70 kB Progress (1): 12/70 kB Progress (1): 16/70 kB Progress (1): 20/70 kB Progress (1): 25/70 kB Progress (1): 29/70 kB Progress (1): 33/70 kB Progress (1): 37/70 kB Progress (1): 41/70 kB Progress (1): 45/70 kB Progress (1): 49/70 kB Progress (1): 53/70 kB Progress (1): 57/70 kB Progress (1): 61/70 kB Progress (1): 65/70 kB Progress (1): 69/70 kB Progress (1): 70 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/build-helper-maven-plugin/3.4.0/build-helper-maven-plugin-3.4.0.jar (70 kB at 1.8 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.23/animal-sniffer-maven-plugin-1.23.pom +Progress (1): 4.1/4.9 kB Progress (1): 4.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.23/animal-sniffer-maven-plugin-1.23.pom (4.9 kB at 158 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.23/animal-sniffer-parent-1.23.pom +Progress (1): 4.1/5.9 kB Progress (1): 5.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.23/animal-sniffer-parent-1.23.pom (5.9 kB at 186 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.23/animal-sniffer-maven-plugin-1.23.jar +Progress (1): 4.1/35 kB Progress (1): 8.2/35 kB Progress (1): 12/35 kB Progress (1): 16/35 kB Progress (1): 20/35 kB Progress (1): 25/35 kB Progress (1): 29/35 kB Progress (1): 33/35 kB Progress (1): 35 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-maven-plugin/1.23/animal-sniffer-maven-plugin-1.23.jar (35 kB at 909 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.10/jacoco-maven-plugin-0.8.10.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.10/jacoco-maven-plugin-0.8.10.pom (3.8 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.10/org.jacoco.build-0.8.10.pom +Progress (1): 4.1/44 kB Progress (1): 8.2/44 kB Progress (1): 12/44 kB Progress (1): 16/44 kB Progress (1): 20/44 kB Progress (1): 25/44 kB Progress (1): 29/44 kB Progress (1): 33/44 kB Progress (1): 37/44 kB Progress (1): 41/44 kB Progress (1): 44 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.10/org.jacoco.build-0.8.10.pom (44 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-bom/9.5/asm-bom-9.5.pom (3.2 kB at 115 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5.1/ow2-1.5.1.pom (11 kB at 364 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.10/jacoco-maven-plugin-0.8.10.jar +Progress (1): 4.1/56 kB Progress (1): 8.2/56 kB Progress (1): 12/56 kB Progress (1): 16/56 kB Progress (1): 20/56 kB Progress (1): 24/56 kB Progress (1): 28/56 kB Progress (1): 32/56 kB Progress (1): 36/56 kB Progress (1): 40/56 kB Progress (1): 45/56 kB Progress (1): 49/56 kB Progress (1): 53/56 kB Progress (1): 56 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.10/jacoco-maven-plugin-0.8.10.jar (56 kB at 1.7 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.15/apache-rat-plugin-0.15.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.15/apache-rat-plugin-0.15.pom (11 kB at 334 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-project/0.15/apache-rat-project-0.15.pom +Progress (1): 4.1/25 kB Progress (1): 8.2/25 kB Progress (1): 12/25 kB Progress (1): 16/25 kB Progress (1): 20/25 kB Progress (1): 24/25 kB Progress (1): 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-project/0.15/apache-rat-project-0.15.pom (25 kB at 767 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.15/apache-rat-plugin-0.15.jar +Progress (1): 4.1/58 kB Progress (1): 8.2/58 kB Progress (1): 12/58 kB Progress (1): 16/58 kB Progress (1): 20/58 kB Progress (1): 25/58 kB Progress (1): 29/58 kB Progress (1): 33/58 kB Progress (1): 37/58 kB Progress (1): 41/58 kB Progress (1): 45/58 kB Progress (1): 49/58 kB Progress (1): 53/58 kB Progress (1): 57/58 kB Progress (1): 58 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-plugin/0.15/apache-rat-plugin-0.15.jar (58 kB at 1.7 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom +Progress (1): 4.1/9.1 kB Progress (1): 8.2/9.1 kB Progress (1): 9.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom (9.1 kB at 294 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar +Progress (1): 4.1/41 kB Progress (1): 8.2/41 kB Progress (1): 12/41 kB Progress (1): 16/41 kB Progress (1): 20/41 kB Progress (1): 25/41 kB Progress (1): 29/41 kB Progress (1): 33/41 kB Progress (1): 37/41 kB Progress (1): 41/41 kB Progress (1): 41 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar (41 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/buildnumber-maven-plugin/3.1.0/buildnumber-maven-plugin-3.1.0.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/buildnumber-maven-plugin/3.1.0/buildnumber-maven-plugin-3.1.0.pom (13 kB at 404 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/buildnumber-maven-plugin/3.1.0/buildnumber-maven-plugin-3.1.0.jar +Progress (1): 4.1/46 kB Progress (1): 8.2/46 kB Progress (1): 12/46 kB Progress (1): 16/46 kB Progress (1): 20/46 kB Progress (1): 25/46 kB Progress (1): 29/46 kB Progress (1): 33/46 kB Progress (1): 37/46 kB Progress (1): 41/46 kB Progress (1): 45/46 kB Progress (1): 46 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/buildnumber-maven-plugin/3.1.0/buildnumber-maven-plugin-3.1.0.jar (46 kB at 1.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.0/maven-resources-plugin-3.3.0.pom +Progress (1): 4.1/8.5 kB Progress (1): 8.2/8.5 kB Progress (1): 8.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.0/maven-resources-plugin-3.3.0.pom (8.5 kB at 283 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.0/maven-resources-plugin-3.3.0.jar +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 24/32 kB Progress (1): 28/32 kB Progress (1): 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.3.0/maven-resources-plugin-3.3.0.jar (32 kB at 962 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom +Progress (1): 4.1/9.8 kB Progress (1): 8.2/9.8 kB Progress (1): 9.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.pom (9.8 kB at 307 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom +Progress (1): 4.1/8.1 kB Progress (1): 8.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/39/maven-plugins-39.pom (8.1 kB at 261 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar +Progress (1): 4.1/66 kB Progress (1): 8.2/66 kB Progress (1): 12/66 kB Progress (1): 16/66 kB Progress (1): 20/66 kB Progress (1): 24/66 kB Progress (1): 28/66 kB Progress (1): 32/66 kB Progress (1): 36/66 kB Progress (1): 40/66 kB Progress (1): 44/66 kB Progress (1): 49/66 kB Progress (1): 53/66 kB Progress (1): 57/66 kB Progress (1): 61/66 kB Progress (1): 65/66 kB Progress (1): 66 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.11.0/maven-compiler-plugin-3.11.0.jar (66 kB at 1.7 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/5.1.8/maven-bundle-plugin-5.1.8.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/5.1.8/maven-bundle-plugin-5.1.8.pom (11 kB at 199 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/7/felix-parent-7.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/7/felix-parent-7.pom (21 kB at 703 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/5.1.8/maven-bundle-plugin-5.1.8.jar +Progress (1): 4.1/212 kB Progress (1): 8.2/212 kB Progress (1): 12/212 kB Progress (1): 16/212 kB Progress (1): 20/212 kB Progress (1): 25/212 kB Progress (1): 29/212 kB Progress (1): 33/212 kB Progress (1): 37/212 kB Progress (1): 41/212 kB Progress (1): 45/212 kB Progress (1): 49/212 kB Progress (1): 53/212 kB Progress (1): 57/212 kB Progress (1): 61/212 kB Progress (1): 66/212 kB Progress (1): 70/212 kB Progress (1): 74/212 kB Progress (1): 78/212 kB Progress (1): 82/212 kB Progress (1): 86/212 kB Progress (1): 90/212 kB Progress (1): 94/212 kB Progress (1): 98/212 kB Progress (1): 102/212 kB Progress (1): 106/212 kB Progress (1): 111/212 kB Progress (1): 115/212 kB Progress (1): 119/212 kB Progress (1): 123/212 kB Progress (1): 127/212 kB Progress (1): 131/212 kB Progress (1): 135/212 kB Progress (1): 139/212 kB Progress (1): 143/212 kB Progress (1): 147/212 kB Progress (1): 152/212 kB Progress (1): 156/212 kB Progress (1): 160/212 kB Progress (1): 164/212 kB Progress (1): 168/212 kB Progress (1): 172/212 kB Progress (1): 176/212 kB Progress (1): 180/212 kB Progress (1): 184/212 kB Progress (1): 188/212 kB Progress (1): 193/212 kB Progress (1): 197/212 kB Progress (1): 201/212 kB Progress (1): 205/212 kB Progress (1): 209/212 kB Progress (1): 212 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/maven-bundle-plugin/5.1.8/maven-bundle-plugin-5.1.8.jar (212 kB at 4.6 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0/maven-surefire-plugin-3.0.0.pom +Progress (1): 4.1/5.9 kB Progress (1): 5.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0/maven-surefire-plugin-3.0.0.pom (5.9 kB at 185 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0/surefire-3.0.0.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/3.0.0/surefire-3.0.0.pom (22 kB at 641 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0/maven-surefire-plugin-3.0.0.jar +Progress (1): 4.1/43 kB Progress (1): 8.2/43 kB Progress (1): 12/43 kB Progress (1): 16/43 kB Progress (1): 20/43 kB Progress (1): 25/43 kB Progress (1): 29/43 kB Progress (1): 33/43 kB Progress (1): 37/43 kB Progress (1): 41/43 kB Progress (1): 43 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/3.0.0/maven-surefire-plugin-3.0.0.jar (43 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.7.9/cyclonedx-maven-plugin-2.7.9.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.7.9/cyclonedx-maven-plugin-2.7.9.pom (17 kB at 416 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.7.9/cyclonedx-maven-plugin-2.7.9.jar +Progress (1): 4.1/45 kB Progress (1): 8.2/45 kB Progress (1): 12/45 kB Progress (1): 16/45 kB Progress (1): 20/45 kB Progress (1): 25/45 kB Progress (1): 29/45 kB Progress (1): 33/45 kB Progress (1): 37/45 kB Progress (1): 41/45 kB Progress (1): 45/45 kB Progress (1): 45 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-maven-plugin/2.7.9/cyclonedx-maven-plugin-2.7.9.jar (45 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom +Progress (1): 157 B Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.pom (157 B at 4.9 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp-api/2.0/jsp-api-2.0.pom +Progress (1): 362 B Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp-api/2.0/jsp-api-2.0.pom (362 B at 11 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom +Progress (1): 156 B Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.pom (156 B at 5.2 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom +Progress (1): 4.1/27 kB Progress (1): 8.2/27 kB Progress (1): 12/27 kB Progress (1): 16/27 kB Progress (1): 20/27 kB Progress (1): 24/27 kB Progress (1): 27 kB Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom (27 kB at 901 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom +Progress (1): 766 B Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom (766 B at 27 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom (2.0 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/jdom/jdom/1.0/jdom-1.0.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/jdom/jdom/1.0/jdom-1.0.pom (1.2 kB at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.pom (18 kB at 621 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom +Progress (1): 4.1/78 kB Progress (1): 8.2/78 kB Progress (1): 12/78 kB Progress (1): 16/78 kB Progress (1): 20/78 kB Progress (1): 25/78 kB Progress (1): 29/78 kB Progress (1): 33/78 kB Progress (1): 37/78 kB Progress (1): 41/78 kB Progress (1): 45/78 kB Progress (1): 49/78 kB Progress (1): 53/78 kB Progress (1): 57/78 kB Progress (1): 61/78 kB Progress (1): 66/78 kB Progress (1): 70/78 kB Progress (1): 74/78 kB Progress (1): 78 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (78 kB at 2.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (15 kB at 484 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom (19 kB at 662 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom +Progress (1): 4.1/56 kB Progress (1): 8.2/56 kB Progress (1): 12/56 kB Progress (1): 16/56 kB Progress (1): 20/56 kB Progress (1): 25/56 kB Progress (1): 29/56 kB Progress (1): 33/56 kB Progress (1): 37/56 kB Progress (1): 41/56 kB Progress (1): 45/56 kB Progress (1): 49/56 kB Progress (1): 53/56 kB Progress (1): 56 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom (56 kB at 1.9 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom (14 kB at 466 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (12 kB at 428 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom +Progress (1): 4.1/62 kB Progress (1): 8.2/62 kB Progress (1): 12/62 kB Progress (1): 16/62 kB Progress (1): 20/62 kB Progress (1): 24/62 kB Progress (1): 28/62 kB Progress (1): 32/62 kB Progress (1): 36/62 kB Progress (1): 40/62 kB Progress (1): 45/62 kB Progress (1): 49/62 kB Progress (1): 53/62 kB Progress (1): 57/62 kB Progress (1): 61/62 kB Progress (1): 62 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/39/commons-parent-39.pom (62 kB at 1.9 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/16/apache-16.pom (15 kB at 497 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/mockrunner/mockrunner-jdk1.3-j2ee1.3/0.4/mockrunner-jdk1.3-j2ee1.3-0.4.pom +Progress (1): 3.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/mockrunner/mockrunner-jdk1.3-j2ee1.3/0.4/mockrunner-jdk1.3-j2ee1.3-0.4.pom (3.6 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom +Progress (1): 357 B Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.pom (357 B at 13 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom +Progress (1): 998 B Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.pom (998 B at 36 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/mockejb/mockejb/0.6-beta2/mockejb-0.6-beta2.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/mockejb/mockejb/0.6-beta2/mockejb-0.6-beta2.pom (1.2 kB at 39 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib-full/2.0.2/cglib-full-2.0.2.pom +Progress (1): 149 B Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib-full/2.0.2/cglib-full-2.0.2.pom (149 B at 5.1 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom +Progress (1): 156 B Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.pom (156 B at 5.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.0/xercesImpl-2.9.0.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.0/xercesImpl-2.9.0.pom (1.4 kB at 44 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/4/apache-4.pom (4.5 kB at 161 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.pom (1.8 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/3/apache-3.pom (3.4 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp-api/2.0/jsp-api-2.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar +Downloading from central: https://repo.maven.apache.org/maven2/jdom/jdom/1.0/jdom-1.0.jar +Progress (1): 4.1/105 kB Progress (1): 8.2/105 kB Progress (1): 12/105 kB Progress (1): 16/105 kB Progress (1): 20/105 kB Progress (1): 25/105 kB Progress (1): 29/105 kB Progress (1): 33/105 kB Progress (1): 37/105 kB Progress (1): 41/105 kB Progress (1): 45/105 kB Progress (1): 49/105 kB Progress (1): 53/105 kB Progress (1): 57/105 kB Progress (1): 61/105 kB Progress (1): 66/105 kB Progress (1): 70/105 kB Progress (1): 74/105 kB Progress (1): 78/105 kB Progress (1): 82/105 kB Progress (1): 86/105 kB Progress (1): 90/105 kB Progress (1): 94/105 kB Progress (1): 98/105 kB Progress (1): 102/105 kB Progress (1): 105 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar (105 kB at 1.6 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar +Progress (1): 2.8/50 kB Progress (2): 2.8/50 kB | 2.8/45 kB Progress (2): 5.5/50 kB | 2.8/45 kB Progress (2): 5.5/50 kB | 5.5/45 kB Progress (2): 5.5/50 kB | 8.3/45 kB Progress (2): 5.5/50 kB | 11/45 kB Progress (2): 5.5/50 kB | 14/45 kB Progress (2): 8.3/50 kB | 14/45 kB Progress (3): 8.3/50 kB | 14/45 kB | 2.8/385 kB Progress (3): 8.3/50 kB | 17/45 kB | 2.8/385 kB Progress (3): 8.3/50 kB | 17/45 kB | 5.5/385 kB Progress (3): 11/50 kB | 17/45 kB | 5.5/385 kB Progress (3): 14/50 kB | 17/45 kB | 5.5/385 kB Progress (3): 14/50 kB | 17/45 kB | 8.3/385 kB Progress (4): 14/50 kB | 17/45 kB | 8.3/385 kB | 4.1/247 kB Progress (4): 14/50 kB | 17/45 kB | 11/385 kB | 4.1/247 kB Progress (5): 14/50 kB | 17/45 kB | 11/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 17/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 19/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 22/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 25/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 28/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 30/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 33/45 kB | 14/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 33/45 kB | 18/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 33/45 kB | 22/385 kB | 4.1/247 kB | 4.1/153 kB Progress (5): 14/50 kB | 33/45 kB | 22/385 kB | 4.1/247 kB | 8.2/153 kB Progress (5): 14/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 8.2/153 kB Progress (5): 14/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 12/153 kB Progress (5): 14/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 17/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 20/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 23/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 25/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 28/50 kB | 33/45 kB | 22/385 kB | 8.2/247 kB | 16/153 kB Progress (5): 28/50 kB | 33/45 kB | 22/385 kB | 12/247 kB | 16/153 kB Progress (5): 28/50 kB | 33/45 kB | 22/385 kB | 16/247 kB | 16/153 kB Progress (5): 28/50 kB | 36/45 kB | 22/385 kB | 16/247 kB | 16/153 kB Progress (5): 28/50 kB | 36/45 kB | 26/385 kB | 16/247 kB | 16/153 kB Progress (5): 28/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 16/153 kB Progress (5): 31/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 16/153 kB Progress (5): 34/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 16/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 16/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 20/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 20/247 kB | 25/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 25/247 kB | 25/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 29/247 kB | 25/153 kB Progress (5): 36/50 kB | 36/45 kB | 26/385 kB | 33/247 kB | 25/153 kB Progress (5): 36/50 kB | 39/45 kB | 26/385 kB | 33/247 kB | 25/153 kB Progress (5): 36/50 kB | 39/45 kB | 30/385 kB | 33/247 kB | 25/153 kB Progress (5): 36/50 kB | 39/45 kB | 30/385 kB | 37/247 kB | 25/153 kB Progress (5): 36/50 kB | 39/45 kB | 30/385 kB | 41/247 kB | 25/153 kB Progress (5): 36/50 kB | 39/45 kB | 30/385 kB | 41/247 kB | 29/153 kB Progress (5): 39/50 kB | 39/45 kB | 30/385 kB | 41/247 kB | 29/153 kB Progress (5): 39/50 kB | 39/45 kB | 30/385 kB | 45/247 kB | 29/153 kB Progress (5): 39/50 kB | 39/45 kB | 30/385 kB | 49/247 kB | 29/153 kB Progress (5): 39/50 kB | 39/45 kB | 34/385 kB | 49/247 kB | 29/153 kB Progress (5): 39/50 kB | 39/45 kB | 34/385 kB | 53/247 kB | 29/153 kB Progress (5): 39/50 kB | 41/45 kB | 34/385 kB | 53/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 53/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 57/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 61/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 66/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 70/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 34/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 38/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 42/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 47/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 51/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 55/385 kB | 74/247 kB | 29/153 kB Progress (5): 39/50 kB | 44/45 kB | 55/385 kB | 74/247 kB | 33/153 kB Progress (5): 39/50 kB | 44/45 kB | 55/385 kB | 74/247 kB | 37/153 kB Progress (5): 39/50 kB | 44/45 kB | 55/385 kB | 74/247 kB | 41/153 kB Progress (5): 42/50 kB | 44/45 kB | 55/385 kB | 74/247 kB | 41/153 kB Progress (5): 42/50 kB | 44/45 kB | 59/385 kB | 74/247 kB | 41/153 kB Progress (5): 42/50 kB | 44/45 kB | 59/385 kB | 78/247 kB | 41/153 kB Progress (5): 42/50 kB | 44/45 kB | 63/385 kB | 78/247 kB | 41/153 kB Progress (5): 42/50 kB | 45 kB | 63/385 kB | 78/247 kB | 41/153 kB Progress (5): 42/50 kB | 45 kB | 67/385 kB | 78/247 kB | 41/153 kB Progress (5): 42/50 kB | 45 kB | 67/385 kB | 82/247 kB | 41/153 kB Progress (5): 45/50 kB | 45 kB | 67/385 kB | 82/247 kB | 41/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 41/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 45/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 49/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 53/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 57/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 61/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 66/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 82/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 86/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 90/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 94/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 67/385 kB | 98/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 71/385 kB | 98/247 kB | 70/153 kB Progress (5): 48/50 kB | 45 kB | 75/385 kB | 98/247 kB | 70/153 kB Progress (5): 50/50 kB | 45 kB | 75/385 kB | 98/247 kB | 70/153 kB Progress (5): 50 kB | 45 kB | 75/385 kB | 98/247 kB | 70/153 kB Progress (5): 50 kB | 45 kB | 79/385 kB | 98/247 kB | 70/153 kB Progress (5): 50 kB | 45 kB | 79/385 kB | 98/247 kB | 74/153 kB Progress (5): 50 kB | 45 kB | 79/385 kB | 98/247 kB | 78/153 kB Progress (5): 50 kB | 45 kB | 79/385 kB | 98/247 kB | 82/153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar (45 kB at 234 kB/s) +Progress (4): 50 kB | 79/385 kB | 102/247 kB | 82/153 kB Progress (4): 50 kB | 79/385 kB | 106/247 kB | 82/153 kB Progress (4): 50 kB | 79/385 kB | 111/247 kB | 82/153 kB Progress (4): 50 kB | 83/385 kB | 111/247 kB | 82/153 kB Progress (4): 50 kB | 83/385 kB | 115/247 kB | 82/153 kB Progress (4): 50 kB | 83/385 kB | 119/247 kB | 82/153 kB Progress (4): 50 kB | 83/385 kB | 119/247 kB | 86/153 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar +Progress (4): 50 kB | 87/385 kB | 119/247 kB | 86/153 kB Progress (4): 50 kB | 87/385 kB | 123/247 kB | 86/153 kB Progress (4): 50 kB | 87/385 kB | 127/247 kB | 86/153 kB Progress (4): 50 kB | 87/385 kB | 127/247 kB | 90/153 kB Progress (5): 50 kB | 87/385 kB | 127/247 kB | 90/153 kB | 4.1/62 kB Progress (5): 50 kB | 87/385 kB | 127/247 kB | 90/153 kB | 8.2/62 kB Progress (5): 50 kB | 87/385 kB | 127/247 kB | 90/153 kB | 12/62 kB Progress (5): 50 kB | 87/385 kB | 127/247 kB | 90/153 kB | 16/62 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/jsp-api/2.0/jsp-api-2.0.jar (50 kB at 221 kB/s) +Progress (4): 92/385 kB | 127/247 kB | 90/153 kB | 16/62 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar +Progress (4): 92/385 kB | 127/247 kB | 90/153 kB | 20/62 kB Progress (4): 92/385 kB | 127/247 kB | 94/153 kB | 20/62 kB Progress (4): 92/385 kB | 131/247 kB | 94/153 kB | 20/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 20/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 25/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 29/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 33/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 37/62 kB Progress (4): 92/385 kB | 131/247 kB | 98/153 kB | 41/62 kB Progress (4): 96/385 kB | 131/247 kB | 98/153 kB | 41/62 kB Progress (4): 100/385 kB | 131/247 kB | 98/153 kB | 41/62 kB Progress (4): 100/385 kB | 131/247 kB | 102/153 kB | 41/62 kB Progress (4): 100/385 kB | 131/247 kB | 106/153 kB | 41/62 kB Progress (4): 100/385 kB | 135/247 kB | 106/153 kB | 41/62 kB Progress (4): 100/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 104/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 108/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 112/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 116/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 120/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 124/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 128/385 kB | 135/247 kB | 111/153 kB | 41/62 kB Progress (4): 128/385 kB | 135/247 kB | 111/153 kB | 45/62 kB Progress (4): 128/385 kB | 135/247 kB | 111/153 kB | 49/62 kB Progress (4): 128/385 kB | 135/247 kB | 111/153 kB | 53/62 kB Progress (4): 128/385 kB | 135/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 139/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 143/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 147/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 152/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 156/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 160/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 164/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 168/247 kB | 115/153 kB | 53/62 kB Progress (4): 128/385 kB | 168/247 kB | 119/153 kB | 53/62 kB Progress (4): 128/385 kB | 168/247 kB | 123/153 kB | 53/62 kB Progress (4): 133/385 kB | 168/247 kB | 123/153 kB | 53/62 kB Progress (4): 137/385 kB | 168/247 kB | 123/153 kB | 53/62 kB Progress (4): 137/385 kB | 168/247 kB | 127/153 kB | 53/62 kB Progress (4): 137/385 kB | 168/247 kB | 131/153 kB | 53/62 kB Progress (4): 137/385 kB | 172/247 kB | 131/153 kB | 53/62 kB Progress (4): 137/385 kB | 172/247 kB | 131/153 kB | 57/62 kB Progress (4): 137/385 kB | 172/247 kB | 131/153 kB | 61/62 kB Progress (4): 137/385 kB | 172/247 kB | 131/153 kB | 62 kB Progress (4): 137/385 kB | 172/247 kB | 135/153 kB | 62 kB Progress (4): 137/385 kB | 172/247 kB | 139/153 kB | 62 kB Progress (5): 137/385 kB | 172/247 kB | 139/153 kB | 62 kB | 4.1/588 kB Progress (5): 137/385 kB | 172/247 kB | 139/153 kB | 62 kB | 8.2/588 kB Progress (5): 137/385 kB | 172/247 kB | 143/153 kB | 62 kB | 8.2/588 kB Progress (5): 137/385 kB | 176/247 kB | 143/153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 176/247 kB | 143/153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 180/247 kB | 143/153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 180/247 kB | 147/153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 180/247 kB | 152/153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 180/247 kB | 153 kB | 62 kB | 8.2/588 kB Progress (5): 141/385 kB | 180/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 141/385 kB | 184/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 141/385 kB | 188/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 141/385 kB | 193/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 141/385 kB | 197/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 145/385 kB | 197/247 kB | 153 kB | 62 kB | 12/588 kB Progress (5): 145/385 kB | 197/247 kB | 153 kB | 62 kB | 16/588 kB Progress (5): 145/385 kB | 201/247 kB | 153 kB | 62 kB | 16/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 16/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 20/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 24/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 28/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 32/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 36/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 40/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 44/588 kB Progress (5): 145/385 kB | 205/247 kB | 153 kB | 62 kB | 49/588 kB Progress (5): 149/385 kB | 205/247 kB | 153 kB | 62 kB | 49/588 kB Progress (5): 153/385 kB | 205/247 kB | 153 kB | 62 kB | 49/588 kB Progress (5): 157/385 kB | 205/247 kB | 153 kB | 62 kB | 49/588 kB Progress (5): 157/385 kB | 205/247 kB | 153 kB | 62 kB | 53/588 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar (62 kB at 221 kB/s) +Progress (4): 157/385 kB | 209/247 kB | 153 kB | 53/588 kB Progress (4): 157/385 kB | 209/247 kB | 153 kB | 57/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 57/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 61/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 65/588 kB Downloading from central: https://repo.maven.apache.org/maven2/com/mockrunner/mockrunner-jdk1.3-j2ee1.3/0.4/mockrunner-jdk1.3-j2ee1.3-0.4.jar +Progress (4): 161/385 kB | 209/247 kB | 153 kB | 69/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 73/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 77/588 kB Progress (4): 161/385 kB | 209/247 kB | 153 kB | 81/588 kB Progress (4): 161/385 kB | 213/247 kB | 153 kB | 81/588 kB Progress (4): 161/385 kB | 213/247 kB | 153 kB | 85/588 kB Progress (4): 161/385 kB | 213/247 kB | 153 kB | 89/588 kB Progress (4): 161/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 165/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 169/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 173/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 178/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 182/385 kB | 213/247 kB | 153 kB | 93/588 kB Progress (4): 186/385 kB | 213/247 kB | 153 kB | 93/588 kB Downloaded from central: https://repo.maven.apache.org/maven2/jdom/jdom/1.0/jdom-1.0.jar (153 kB at 518 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/mockejb/mockejb/0.6-beta2/mockejb-0.6-beta2.jar +Progress (3): 186/385 kB | 213/247 kB | 97/588 kB Progress (3): 186/385 kB | 213/247 kB | 101/588 kB Progress (3): 186/385 kB | 213/247 kB | 105/588 kB Progress (3): 186/385 kB | 213/247 kB | 110/588 kB Progress (3): 186/385 kB | 213/247 kB | 114/588 kB Progress (3): 186/385 kB | 213/247 kB | 118/588 kB Progress (3): 186/385 kB | 217/247 kB | 118/588 kB Progress (3): 186/385 kB | 221/247 kB | 118/588 kB Progress (3): 186/385 kB | 225/247 kB | 118/588 kB Progress (3): 186/385 kB | 229/247 kB | 118/588 kB Progress (3): 186/385 kB | 229/247 kB | 122/588 kB Progress (3): 186/385 kB | 229/247 kB | 126/588 kB Progress (3): 186/385 kB | 229/247 kB | 130/588 kB Progress (3): 190/385 kB | 229/247 kB | 130/588 kB Progress (3): 190/385 kB | 229/247 kB | 134/588 kB Progress (3): 190/385 kB | 233/247 kB | 134/588 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 4.1/432 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 8.2/432 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 12/432 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 16/432 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 20/432 kB Progress (4): 190/385 kB | 233/247 kB | 134/588 kB | 25/432 kB Progress (4): 190/385 kB | 233/247 kB | 138/588 kB | 25/432 kB Progress (4): 190/385 kB | 233/247 kB | 142/588 kB | 25/432 kB Progress (4): 190/385 kB | 233/247 kB | 146/588 kB | 25/432 kB Progress (4): 194/385 kB | 233/247 kB | 146/588 kB | 25/432 kB Progress (4): 198/385 kB | 233/247 kB | 146/588 kB | 25/432 kB Progress (4): 202/385 kB | 233/247 kB | 146/588 kB | 25/432 kB Progress (4): 202/385 kB | 233/247 kB | 146/588 kB | 29/432 kB Progress (4): 202/385 kB | 233/247 kB | 146/588 kB | 33/432 kB Progress (4): 202/385 kB | 233/247 kB | 146/588 kB | 37/432 kB Progress (4): 202/385 kB | 233/247 kB | 146/588 kB | 41/432 kB Progress (4): 202/385 kB | 238/247 kB | 146/588 kB | 41/432 kB Progress (4): 202/385 kB | 238/247 kB | 151/588 kB | 41/432 kB Progress (4): 206/385 kB | 238/247 kB | 151/588 kB | 41/432 kB Progress (5): 206/385 kB | 238/247 kB | 151/588 kB | 41/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 238/247 kB | 155/588 kB | 41/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 238/247 kB | 159/588 kB | 41/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 238/247 kB | 159/588 kB | 45/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 242/247 kB | 159/588 kB | 45/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 246/247 kB | 159/588 kB | 45/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 246/247 kB | 159/588 kB | 49/432 kB | 4.1/120 kB Progress (5): 206/385 kB | 246/247 kB | 163/588 kB | 49/432 kB | 4.1/120 kB Progress (5): 210/385 kB | 246/247 kB | 163/588 kB | 49/432 kB | 4.1/120 kB Progress (5): 210/385 kB | 246/247 kB | 167/588 kB | 49/432 kB | 4.1/120 kB Progress (5): 210/385 kB | 246/247 kB | 167/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 210/385 kB | 246/247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 214/385 kB | 246/247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 219/385 kB | 246/247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 223/385 kB | 246/247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 227/385 kB | 246/247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 227/385 kB | 247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 231/385 kB | 247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 235/385 kB | 247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 239/385 kB | 247 kB | 171/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 239/385 kB | 247 kB | 175/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 239/385 kB | 247 kB | 179/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 243/385 kB | 247 kB | 179/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 243/385 kB | 247 kB | 183/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 243/385 kB | 247 kB | 187/588 kB | 49/432 kB | 8.2/120 kB Progress (5): 243/385 kB | 247 kB | 187/588 kB | 53/432 kB | 8.2/120 kB Progress (5): 243/385 kB | 247 kB | 187/588 kB | 53/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 187/588 kB | 57/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 187/588 kB | 61/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 192/588 kB | 61/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 196/588 kB | 61/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 200/588 kB | 61/432 kB | 12/120 kB Progress (5): 243/385 kB | 247 kB | 204/588 kB | 61/432 kB | 12/120 kB Progress (5): 247/385 kB | 247 kB | 204/588 kB | 61/432 kB | 12/120 kB Progress (5): 247/385 kB | 247 kB | 208/588 kB | 61/432 kB | 12/120 kB Progress (5): 247/385 kB | 247 kB | 208/588 kB | 66/432 kB | 12/120 kB Progress (5): 247/385 kB | 247 kB | 208/588 kB | 66/432 kB | 16/120 kB Progress (5): 247/385 kB | 247 kB | 208/588 kB | 70/432 kB | 16/120 kB Progress (5): 247/385 kB | 247 kB | 212/588 kB | 70/432 kB | 16/120 kB Progress (5): 251/385 kB | 247 kB | 212/588 kB | 70/432 kB | 16/120 kB Progress (5): 255/385 kB | 247 kB | 212/588 kB | 70/432 kB | 16/120 kB Progress (5): 255/385 kB | 247 kB | 212/588 kB | 74/432 kB | 16/120 kB Progress (5): 255/385 kB | 247 kB | 212/588 kB | 74/432 kB | 20/120 kB Progress (5): 255/385 kB | 247 kB | 212/588 kB | 74/432 kB | 25/120 kB Progress (5): 255/385 kB | 247 kB | 212/588 kB | 78/432 kB | 25/120 kB Progress (5): 260/385 kB | 247 kB | 212/588 kB | 78/432 kB | 25/120 kB Progress (5): 260/385 kB | 247 kB | 216/588 kB | 78/432 kB | 25/120 kB Progress (5): 260/385 kB | 247 kB | 220/588 kB | 78/432 kB | 25/120 kB Progress (5): 264/385 kB | 247 kB | 220/588 kB | 78/432 kB | 25/120 kB Progress (5): 268/385 kB | 247 kB | 220/588 kB | 78/432 kB | 25/120 kB Progress (5): 272/385 kB | 247 kB | 220/588 kB | 78/432 kB | 25/120 kB Progress (5): 276/385 kB | 247 kB | 220/588 kB | 78/432 kB | 25/120 kB Progress (5): 276/385 kB | 247 kB | 220/588 kB | 82/432 kB | 25/120 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.9.4/commons-beanutils-1.9.4.jar (247 kB at 710 kB/s) +Progress (4): 276/385 kB | 220/588 kB | 82/432 kB | 29/120 kB Downloading from central: https://repo.maven.apache.org/maven2/cglib/cglib-full/2.0.2/cglib-full-2.0.2.jar +Progress (4): 276/385 kB | 220/588 kB | 86/432 kB | 29/120 kB Progress (4): 276/385 kB | 220/588 kB | 90/432 kB | 29/120 kB Progress (4): 276/385 kB | 220/588 kB | 94/432 kB | 29/120 kB Progress (4): 276/385 kB | 220/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 220/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 224/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 228/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 232/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 237/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 241/588 kB | 98/432 kB | 29/120 kB Progress (4): 280/385 kB | 245/588 kB | 98/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 98/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 102/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 106/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 111/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 115/432 kB | 29/120 kB Progress (4): 284/385 kB | 245/588 kB | 115/432 kB | 33/120 kB Progress (4): 284/385 kB | 245/588 kB | 119/432 kB | 33/120 kB Progress (4): 284/385 kB | 245/588 kB | 119/432 kB | 37/120 kB Progress (4): 288/385 kB | 245/588 kB | 119/432 kB | 37/120 kB Progress (4): 288/385 kB | 249/588 kB | 119/432 kB | 37/120 kB Progress (4): 288/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 292/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 296/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 300/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 305/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 309/385 kB | 253/588 kB | 119/432 kB | 37/120 kB Progress (4): 309/385 kB | 253/588 kB | 119/432 kB | 41/120 kB Progress (4): 309/385 kB | 253/588 kB | 119/432 kB | 45/120 kB Progress (4): 309/385 kB | 253/588 kB | 123/432 kB | 45/120 kB Progress (4): 309/385 kB | 253/588 kB | 127/432 kB | 45/120 kB Progress (4): 309/385 kB | 253/588 kB | 131/432 kB | 45/120 kB Progress (4): 313/385 kB | 253/588 kB | 131/432 kB | 45/120 kB Progress (4): 313/385 kB | 257/588 kB | 131/432 kB | 45/120 kB Progress (4): 317/385 kB | 257/588 kB | 131/432 kB | 45/120 kB Progress (5): 317/385 kB | 257/588 kB | 131/432 kB | 45/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 135/432 kB | 45/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 139/432 kB | 45/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 139/432 kB | 49/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 143/432 kB | 49/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 4.1/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 8.2/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 12/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 16/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 20/308 kB Progress (5): 317/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 25/308 kB Progress (5): 321/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 25/308 kB Progress (5): 325/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 257/588 kB | 147/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 261/588 kB | 147/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 261/588 kB | 152/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 261/588 kB | 156/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 265/588 kB | 156/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 269/588 kB | 156/432 kB | 49/120 kB | 25/308 kB Progress (5): 329/385 kB | 269/588 kB | 156/432 kB | 53/120 kB | 25/308 kB Progress (5): 329/385 kB | 269/588 kB | 156/432 kB | 57/120 kB | 25/308 kB Progress (5): 329/385 kB | 269/588 kB | 160/432 kB | 57/120 kB | 25/308 kB Progress (5): 329/385 kB | 269/588 kB | 164/432 kB | 57/120 kB | 25/308 kB Progress (5): 333/385 kB | 269/588 kB | 164/432 kB | 57/120 kB | 25/308 kB Progress (5): 333/385 kB | 269/588 kB | 164/432 kB | 57/120 kB | 29/308 kB Progress (5): 333/385 kB | 269/588 kB | 164/432 kB | 57/120 kB | 33/308 kB Progress (5): 337/385 kB | 269/588 kB | 164/432 kB | 57/120 kB | 33/308 kB Progress (5): 337/385 kB | 269/588 kB | 168/432 kB | 57/120 kB | 33/308 kB Progress (5): 337/385 kB | 269/588 kB | 168/432 kB | 61/120 kB | 33/308 kB Progress (5): 337/385 kB | 269/588 kB | 168/432 kB | 66/120 kB | 33/308 kB Progress (5): 337/385 kB | 273/588 kB | 168/432 kB | 66/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 168/432 kB | 66/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 168/432 kB | 70/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 172/432 kB | 70/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 176/432 kB | 70/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 33/308 kB Progress (5): 337/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 37/308 kB Progress (5): 341/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 37/308 kB Progress (5): 346/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 37/308 kB Progress (5): 346/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 41/308 kB Progress (5): 346/385 kB | 278/588 kB | 180/432 kB | 70/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 184/432 kB | 70/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 188/432 kB | 70/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 193/432 kB | 70/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 197/432 kB | 70/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 197/432 kB | 74/120 kB | 45/308 kB Progress (5): 346/385 kB | 278/588 kB | 197/432 kB | 78/120 kB | 45/308 kB Progress (5): 346/385 kB | 282/588 kB | 197/432 kB | 78/120 kB | 45/308 kB Progress (5): 346/385 kB | 286/588 kB | 197/432 kB | 78/120 kB | 45/308 kB Progress (5): 346/385 kB | 290/588 kB | 197/432 kB | 78/120 kB | 45/308 kB Progress (5): 346/385 kB | 294/588 kB | 197/432 kB | 78/120 kB | 45/308 kB Progress (5): 346/385 kB | 294/588 kB | 197/432 kB | 82/120 kB | 45/308 kB Progress (5): 346/385 kB | 294/588 kB | 201/432 kB | 82/120 kB | 45/308 kB Progress (5): 346/385 kB | 294/588 kB | 201/432 kB | 82/120 kB | 49/308 kB Progress (5): 350/385 kB | 294/588 kB | 201/432 kB | 82/120 kB | 49/308 kB Progress (5): 350/385 kB | 294/588 kB | 205/432 kB | 82/120 kB | 49/308 kB Progress (5): 350/385 kB | 294/588 kB | 205/432 kB | 82/120 kB | 53/308 kB Progress (5): 350/385 kB | 294/588 kB | 205/432 kB | 86/120 kB | 53/308 kB Progress (5): 350/385 kB | 294/588 kB | 205/432 kB | 90/120 kB | 53/308 kB Progress (5): 350/385 kB | 294/588 kB | 205/432 kB | 94/120 kB | 53/308 kB Progress (5): 350/385 kB | 298/588 kB | 205/432 kB | 94/120 kB | 53/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 94/120 kB | 53/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 98/120 kB | 53/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 102/120 kB | 53/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 102/120 kB | 57/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 102/120 kB | 61/308 kB Progress (5): 350/385 kB | 302/588 kB | 205/432 kB | 102/120 kB | 66/308 kB Progress (5): 350/385 kB | 302/588 kB | 209/432 kB | 102/120 kB | 66/308 kB Progress (5): 354/385 kB | 302/588 kB | 209/432 kB | 102/120 kB | 66/308 kB Progress (5): 358/385 kB | 302/588 kB | 209/432 kB | 102/120 kB | 66/308 kB Progress (5): 358/385 kB | 302/588 kB | 213/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 213/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 217/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 221/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 225/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 229/432 kB | 102/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 229/432 kB | 106/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 229/432 kB | 111/120 kB | 66/308 kB Progress (5): 362/385 kB | 302/588 kB | 229/432 kB | 111/120 kB | 70/308 kB Progress (5): 362/385 kB | 306/588 kB | 229/432 kB | 111/120 kB | 70/308 kB Progress (5): 362/385 kB | 306/588 kB | 229/432 kB | 111/120 kB | 74/308 kB Progress (5): 362/385 kB | 306/588 kB | 229/432 kB | 115/120 kB | 74/308 kB Progress (5): 362/385 kB | 306/588 kB | 233/432 kB | 115/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 233/432 kB | 115/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 238/432 kB | 115/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 242/432 kB | 115/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 246/432 kB | 115/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 246/432 kB | 119/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 250/432 kB | 119/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 254/432 kB | 119/120 kB | 74/308 kB Progress (5): 366/385 kB | 306/588 kB | 254/432 kB | 119/120 kB | 78/308 kB Progress (5): 366/385 kB | 306/588 kB | 254/432 kB | 119/120 kB | 80/308 kB Progress (5): 366/385 kB | 310/588 kB | 254/432 kB | 119/120 kB | 80/308 kB Progress (5): 366/385 kB | 314/588 kB | 254/432 kB | 119/120 kB | 80/308 kB Progress (5): 366/385 kB | 314/588 kB | 254/432 kB | 119/120 kB | 84/308 kB Progress (5): 366/385 kB | 314/588 kB | 258/432 kB | 119/120 kB | 84/308 kB Progress (5): 366/385 kB | 314/588 kB | 262/432 kB | 119/120 kB | 84/308 kB Progress (5): 366/385 kB | 314/588 kB | 262/432 kB | 120 kB | 84/308 kB Progress (5): 370/385 kB | 314/588 kB | 262/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 314/588 kB | 262/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 314/588 kB | 266/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 314/588 kB | 270/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 318/588 kB | 270/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 323/588 kB | 270/432 kB | 120 kB | 84/308 kB Progress (5): 374/385 kB | 323/588 kB | 270/432 kB | 120 kB | 88/308 kB Progress (5): 374/385 kB | 323/588 kB | 270/432 kB | 120 kB | 93/308 kB Progress (5): 374/385 kB | 323/588 kB | 270/432 kB | 120 kB | 97/308 kB Progress (5): 374/385 kB | 323/588 kB | 270/432 kB | 120 kB | 101/308 kB Progress (5): 374/385 kB | 327/588 kB | 270/432 kB | 120 kB | 101/308 kB Progress (5): 374/385 kB | 327/588 kB | 274/432 kB | 120 kB | 101/308 kB Progress (5): 374/385 kB | 327/588 kB | 279/432 kB | 120 kB | 101/308 kB Progress (5): 378/385 kB | 327/588 kB | 279/432 kB | 120 kB | 101/308 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/mockejb/mockejb/0.6-beta2/mockejb-0.6-beta2.jar (120 kB at 255 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.0/xercesImpl-2.9.0.jar +Progress (4): 378/385 kB | 327/588 kB | 283/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 287/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 291/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 295/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 299/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 303/432 kB | 101/308 kB Progress (4): 378/385 kB | 327/588 kB | 303/432 kB | 105/308 kB Progress (4): 378/385 kB | 327/588 kB | 303/432 kB | 109/308 kB Progress (4): 378/385 kB | 327/588 kB | 303/432 kB | 113/308 kB Progress (4): 378/385 kB | 331/588 kB | 303/432 kB | 113/308 kB Progress (4): 378/385 kB | 331/588 kB | 307/432 kB | 113/308 kB Progress (4): 378/385 kB | 331/588 kB | 311/432 kB | 113/308 kB Progress (4): 378/385 kB | 331/588 kB | 315/432 kB | 113/308 kB Progress (4): 378/385 kB | 331/588 kB | 315/432 kB | 117/308 kB Progress (4): 378/385 kB | 331/588 kB | 315/432 kB | 121/308 kB Progress (4): 382/385 kB | 331/588 kB | 315/432 kB | 121/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 121/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 125/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 129/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 133/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 138/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 142/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 146/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 150/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 154/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 158/308 kB Progress (4): 385 kB | 331/588 kB | 315/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 319/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 324/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 327/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 331/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 335/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 339/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 344/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 348/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 352/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 356/432 kB | 162/308 kB Progress (4): 385 kB | 331/588 kB | 360/432 kB | 162/308 kB Progress (4): 385 kB | 335/588 kB | 360/432 kB | 162/308 kB Progress (4): 385 kB | 335/588 kB | 364/432 kB | 162/308 kB Progress (4): 385 kB | 335/588 kB | 368/432 kB | 162/308 kB Progress (4): 385 kB | 335/588 kB | 372/432 kB | 162/308 kB Progress (4): 385 kB | 335/588 kB | 376/432 kB | 162/308 kB Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar (385 kB at 727 kB/s) +Progress (3): 335/588 kB | 376/432 kB | 166/308 kB Progress (3): 335/588 kB | 376/432 kB | 170/308 kB Progress (4): 335/588 kB | 376/432 kB | 170/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 170/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 170/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 170/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 174/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 179/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 183/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 187/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 191/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 376/432 kB | 195/308 kB | 0/1.2 MB Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar +Progress (4): 335/588 kB | 376/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 335/588 kB | 380/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 339/588 kB | 380/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 380/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 384/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 389/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 393/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 397/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 199/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 203/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 207/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 211/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0.1/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0.1/1.2 MB Progress (4): 343/588 kB | 401/432 kB | 215/308 kB | 0.1/1.2 MB Progress (4): 343/588 kB | 405/432 kB | 215/308 kB | 0.1/1.2 MB Progress (4): 343/588 kB | 409/432 kB | 215/308 kB | 0.1/1.2 MB Progress (5): 343/588 kB | 409/432 kB | 215/308 kB | 0.1/1.2 MB | 4.1/194 kB Progress (5): 347/588 kB | 409/432 kB | 215/308 kB | 0.1/1.2 MB | 4.1/194 kB Progress (5): 347/588 kB | 409/432 kB | 215/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 409/432 kB | 215/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 413/432 kB | 215/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 413/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 8.2/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 12/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 16/194 kB Progress (5): 347/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 20/194 kB Progress (5): 351/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 20/194 kB Progress (5): 355/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 20/194 kB Progress (5): 355/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 25/194 kB Progress (5): 355/588 kB | 417/432 kB | 220/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 421/432 kB | 220/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 425/432 kB | 220/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 425/432 kB | 224/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 425/432 kB | 228/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 430/432 kB | 228/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 29/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 33/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 37/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 41/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 41/194 kB Progress (5): 355/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 41/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.1/1.2 MB | 41/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 41/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 45/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 49/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 53/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 57/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 61/194 kB Progress (5): 359/588 kB | 432 kB | 228/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 359/588 kB | 432 kB | 232/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 359/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 359/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 364/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 368/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 372/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 372/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 372/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 66/194 kB Progress (5): 372/588 kB | 432 kB | 236/308 kB | 0.2/1.2 MB | 70/194 kB Progress (5): 372/588 kB | 432 kB | 240/308 kB | 0.2/1.2 MB | 70/194 kB Progress (5): 372/588 kB | 432 kB | 240/308 kB | 0.2/1.2 MB | 74/194 kB Progress (5): 372/588 kB | 432 kB | 240/308 kB | 0.2/1.2 MB | 78/194 kB Progress (5): 372/588 kB | 432 kB | 240/308 kB | 0.2/1.2 MB | 78/194 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/mockrunner/mockrunner-jdk1.3-j2ee1.3/0.4/mockrunner-jdk1.3-j2ee1.3-0.4.jar (432 kB at 695 kB/s) +Progress (4): 376/588 kB | 240/308 kB | 0.2/1.2 MB | 78/194 kB Progress (4): 380/588 kB | 240/308 kB | 0.2/1.2 MB | 78/194 kB Progress (4): 380/588 kB | 240/308 kB | 0.2/1.2 MB | 78/194 kB Progress (4): 380/588 kB | 240/308 kB | 0.2/1.2 MB | 82/194 kB Progress (4): 380/588 kB | 240/308 kB | 0.2/1.2 MB | 82/194 kB Progress (4): 380/588 kB | 244/308 kB | 0.2/1.2 MB | 82/194 kB Progress (4): 380/588 kB | 244/308 kB | 0.2/1.2 MB | 82/194 kB Progress (4): 380/588 kB | 244/308 kB | 0.2/1.2 MB | 82/194 kB Progress (4): 380/588 kB | 244/308 kB | 0.2/1.2 MB | 86/194 kB Progress (4): 380/588 kB | 244/308 kB | 0.2/1.2 MB | 90/194 kB Progress (4): 384/588 kB | 244/308 kB | 0.2/1.2 MB | 90/194 kB Progress (4): 388/588 kB | 244/308 kB | 0.2/1.2 MB | 90/194 kB Progress (4): 388/588 kB | 244/308 kB | 0.2/1.2 MB | 94/194 kB Progress (4): 388/588 kB | 244/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 244/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 244/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 248/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 252/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 252/308 kB | 0.2/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 252/308 kB | 0.3/1.2 MB | 98/194 kB Progress (4): 388/588 kB | 252/308 kB | 0.3/1.2 MB | 102/194 kB Progress (4): 388/588 kB | 252/308 kB | 0.3/1.2 MB | 106/194 kB Progress (4): 392/588 kB | 252/308 kB | 0.3/1.2 MB | 106/194 kB Progress (4): 392/588 kB | 252/308 kB | 0.3/1.2 MB | 111/194 kB Progress (4): 392/588 kB | 252/308 kB | 0.3/1.2 MB | 111/194 kB Progress (4): 392/588 kB | 256/308 kB | 0.3/1.2 MB | 111/194 kB Progress (4): 392/588 kB | 260/308 kB | 0.3/1.2 MB | 111/194 kB Progress (4): 392/588 kB | 260/308 kB | 0.3/1.2 MB | 115/194 kB Progress (4): 392/588 kB | 260/308 kB | 0.3/1.2 MB | 119/194 kB Progress (4): 392/588 kB | 260/308 kB | 0.3/1.2 MB | 123/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 123/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 127/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 131/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 135/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 139/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 143/194 kB Progress (4): 396/588 kB | 260/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 265/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 269/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 273/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 273/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 273/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 277/308 kB | 0.3/1.2 MB | 147/194 kB Progress (4): 396/588 kB | 277/308 kB | 0.3/1.2 MB | 152/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 152/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 277/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 281/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 285/308 kB | 0.3/1.2 MB | 156/194 kB Progress (4): 400/588 kB | 285/308 kB | 0.3/1.2 MB | 160/194 kB Progress (4): 404/588 kB | 285/308 kB | 0.3/1.2 MB | 160/194 kB Progress (4): 409/588 kB | 285/308 kB | 0.3/1.2 MB | 160/194 kB Progress (4): 409/588 kB | 285/308 kB | 0.3/1.2 MB | 164/194 kB Progress (4): 409/588 kB | 285/308 kB | 0.3/1.2 MB | 168/194 kB Progress (4): 409/588 kB | 285/308 kB | 0.3/1.2 MB | 168/194 kB Progress (4): 409/588 kB | 289/308 kB | 0.3/1.2 MB | 168/194 kB Progress (4): 409/588 kB | 289/308 kB | 0.3/1.2 MB | 168/194 kB Progress (4): 409/588 kB | 289/308 kB | 0.3/1.2 MB | 172/194 kB Progress (4): 409/588 kB | 289/308 kB | 0.3/1.2 MB | 176/194 kB Progress (4): 413/588 kB | 289/308 kB | 0.3/1.2 MB | 176/194 kB Progress (4): 413/588 kB | 289/308 kB | 0.3/1.2 MB | 180/194 kB Progress (4): 413/588 kB | 289/308 kB | 0.3/1.2 MB | 184/194 kB Progress (4): 413/588 kB | 289/308 kB | 0.3/1.2 MB | 184/194 kB Progress (4): 413/588 kB | 293/308 kB | 0.3/1.2 MB | 184/194 kB Progress (4): 413/588 kB | 293/308 kB | 0.3/1.2 MB | 184/194 kB Progress (4): 413/588 kB | 293/308 kB | 0.4/1.2 MB | 184/194 kB Progress (4): 413/588 kB | 293/308 kB | 0.4/1.2 MB | 188/194 kB Progress (4): 413/588 kB | 293/308 kB | 0.4/1.2 MB | 193/194 kB Progress (4): 417/588 kB | 293/308 kB | 0.4/1.2 MB | 193/194 kB Progress (4): 421/588 kB | 293/308 kB | 0.4/1.2 MB | 193/194 kB Progress (4): 421/588 kB | 293/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 421/588 kB | 293/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 421/588 kB | 293/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 421/588 kB | 297/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 421/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 421/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 425/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 429/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 433/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 437/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 301/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 306/308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 441/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 445/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 450/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 454/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 458/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 458/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 458/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 458/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 462/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 466/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 470/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Progress (4): 470/588 kB | 308 kB | 0.4/1.2 MB | 194 kB Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar (194 kB at 276 kB/s) +Progress (3): 470/588 kB | 308 kB | 0.4/1.2 MB Progress (3): 474/588 kB | 308 kB | 0.4/1.2 MB Progress (3): 478/588 kB | 308 kB | 0.4/1.2 MB Progress (3): 478/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 482/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 486/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 491/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 491/588 kB | 308 kB | 0.5/1.2 MB Progress (3): 495/588 kB | 308 kB | 0.5/1.2 MB Downloaded from central: https://repo.maven.apache.org/maven2/cglib/cglib-full/2.0.2/cglib-full-2.0.2.jar (308 kB at 430 kB/s) +Progress (2): 499/588 kB | 0.5/1.2 MB Progress (2): 499/588 kB | 0.5/1.2 MB Progress (2): 503/588 kB | 0.5/1.2 MB Progress (2): 507/588 kB | 0.5/1.2 MB Progress (2): 511/588 kB | 0.5/1.2 MB Progress (2): 515/588 kB | 0.5/1.2 MB Progress (2): 519/588 kB | 0.5/1.2 MB Progress (2): 523/588 kB | 0.5/1.2 MB Progress (2): 527/588 kB | 0.5/1.2 MB Progress (2): 527/588 kB | 0.5/1.2 MB Progress (2): 531/588 kB | 0.5/1.2 MB Progress (2): 536/588 kB | 0.5/1.2 MB Progress (2): 536/588 kB | 0.5/1.2 MB Progress (2): 536/588 kB | 0.5/1.2 MB Progress (2): 540/588 kB | 0.5/1.2 MB Progress (2): 544/588 kB | 0.5/1.2 MB Progress (2): 544/588 kB | 0.6/1.2 MB Progress (2): 548/588 kB | 0.6/1.2 MB Progress (2): 548/588 kB | 0.6/1.2 MB Progress (2): 548/588 kB | 0.6/1.2 MB Progress (2): 552/588 kB | 0.6/1.2 MB Progress (2): 552/588 kB | 0.6/1.2 MB Progress (2): 556/588 kB | 0.6/1.2 MB Progress (2): 556/588 kB | 0.6/1.2 MB Progress (2): 556/588 kB | 0.6/1.2 MB Progress (2): 560/588 kB | 0.6/1.2 MB Progress (2): 564/588 kB | 0.6/1.2 MB Progress (2): 564/588 kB | 0.6/1.2 MB Progress (2): 564/588 kB | 0.6/1.2 MB Progress (2): 568/588 kB | 0.6/1.2 MB Progress (2): 572/588 kB | 0.6/1.2 MB Progress (2): 577/588 kB | 0.6/1.2 MB Progress (2): 577/588 kB | 0.6/1.2 MB Progress (2): 577/588 kB | 0.6/1.2 MB Progress (2): 581/588 kB | 0.6/1.2 MB Progress (2): 585/588 kB | 0.6/1.2 MB Progress (2): 585/588 kB | 0.6/1.2 MB Progress (2): 588 kB | 0.6/1.2 MB Progress (2): 588 kB | 0.6/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.7/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Progress (2): 588 kB | 0.8/1.2 MB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (588 kB at 771 kB/s) +Progress (1): 0.8/1.2 MB Progress (1): 0.8/1.2 MB Progress (1): 0.8/1.2 MB Progress (1): 0.8/1.2 MB Progress (1): 0.8/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 0.9/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.0/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.1/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2/1.2 MB Progress (1): 1.2 MB Downloaded from central: https://repo.maven.apache.org/maven2/xerces/xercesImpl/2.9.0/xercesImpl-2.9.0.jar (1.2 MB at 1.5 MB/s) +[INFO] +[INFO] --- maven-enforcer-plugin:3.3.0:enforce (enforce-maven-version) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.pom +Progress (1): 3.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.pom (3.6 kB at 112 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.pom +Progress (1): 4.1/4.1 kB Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.pom (4.1 kB at 128 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.pom (2.2 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom +Progress (1): 4.1/30 kB Progress (1): 8.2/30 kB Progress (1): 12/30 kB Progress (1): 16/30 kB Progress (1): 20/30 kB Progress (1): 25/30 kB Progress (1): 29/30 kB Progress (1): 30 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.0.v20140518/aether-1.0.0.v20140518.pom (30 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.pom (1.9 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom +Progress (1): 4.1/8.8 kB Progress (1): 8.2/8.8 kB Progress (1): 8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.pom (8.8 kB at 313 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom +Progress (1): 4.1/25 kB Progress (1): 8.2/25 kB Progress (1): 12/25 kB Progress (1): 16/25 kB Progress (1): 20/25 kB Progress (1): 25/25 kB Progress (1): 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/10/plexus-10.pom (25 kB at 847 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom +Progress (1): 4.1/31 kB Progress (1): 8.2/31 kB Progress (1): 12/31 kB Progress (1): 16/31 kB Progress (1): 20/31 kB Progress (1): 25/31 kB Progress (1): 29/31 kB Progress (1): 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom (31 kB at 1.0 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom +Progress (1): 4.1/79 kB Progress (1): 8.2/79 kB Progress (1): 12/79 kB Progress (1): 16/79 kB Progress (1): 20/79 kB Progress (1): 25/79 kB Progress (1): 29/79 kB Progress (1): 33/79 kB Progress (1): 37/79 kB Progress (1): 41/79 kB Progress (1): 45/79 kB Progress (1): 49/79 kB Progress (1): 53/79 kB Progress (1): 57/79 kB Progress (1): 61/79 kB Progress (1): 66/79 kB Progress (1): 70/79 kB Progress (1): 74/79 kB Progress (1): 78/79 kB Progress (1): 79 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom (79 kB at 2.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom (5.1 kB at 182 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.pom (15 kB at 552 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom (20 kB at 658 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom (5.1 kB at 159 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.pom (5.0 kB at 122 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar +Progress (1): 4.1/145 kB Progress (2): 4.1/145 kB | 4.1/146 kB Progress (2): 8.2/145 kB | 4.1/146 kB Progress (2): 12/145 kB | 4.1/146 kB Progress (2): 12/145 kB | 8.2/146 kB Progress (3): 12/145 kB | 8.2/146 kB | 4.1/14 kB Progress (3): 12/145 kB | 12/146 kB | 4.1/14 kB Progress (3): 16/145 kB | 12/146 kB | 4.1/14 kB Progress (3): 16/145 kB | 16/146 kB | 4.1/14 kB Progress (3): 16/145 kB | 16/146 kB | 8.2/14 kB Progress (3): 16/145 kB | 16/146 kB | 12/14 kB Progress (3): 16/145 kB | 16/146 kB | 14 kB Progress (3): 16/145 kB | 20/146 kB | 14 kB Progress (3): 16/145 kB | 24/146 kB | 14 kB Progress (3): 16/145 kB | 28/146 kB | 14 kB Progress (3): 16/145 kB | 32/146 kB | 14 kB Progress (3): 16/145 kB | 36/146 kB | 14 kB Progress (3): 16/145 kB | 40/146 kB | 14 kB Progress (3): 20/145 kB | 40/146 kB | 14 kB Progress (3): 25/145 kB | 40/146 kB | 14 kB Progress (3): 29/145 kB | 40/146 kB | 14 kB Progress (3): 33/145 kB | 40/146 kB | 14 kB Progress (3): 33/145 kB | 44/146 kB | 14 kB Progress (3): 37/145 kB | 44/146 kB | 14 kB Progress (4): 37/145 kB | 44/146 kB | 14 kB | 4.1/587 kB Progress (4): 37/145 kB | 44/146 kB | 14 kB | 8.2/587 kB Progress (4): 37/145 kB | 44/146 kB | 14 kB | 12/587 kB Progress (4): 37/145 kB | 44/146 kB | 14 kB | 16/587 kB Progress (5): 37/145 kB | 44/146 kB | 14 kB | 16/587 kB | 4.1/269 kB Progress (5): 37/145 kB | 44/146 kB | 14 kB | 20/587 kB | 4.1/269 kB Progress (5): 41/145 kB | 44/146 kB | 14 kB | 20/587 kB | 4.1/269 kB Progress (5): 41/145 kB | 49/146 kB | 14 kB | 20/587 kB | 4.1/269 kB Progress (5): 45/145 kB | 49/146 kB | 14 kB | 20/587 kB | 4.1/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 20/587 kB | 4.1/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 25/587 kB | 4.1/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 25/587 kB | 8.2/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 25/587 kB | 12/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 25/587 kB | 16/269 kB Progress (5): 49/145 kB | 49/146 kB | 14 kB | 29/587 kB | 16/269 kB Progress (5): 53/145 kB | 49/146 kB | 14 kB | 29/587 kB | 16/269 kB Progress (5): 57/145 kB | 49/146 kB | 14 kB | 29/587 kB | 16/269 kB Progress (5): 61/145 kB | 49/146 kB | 14 kB | 29/587 kB | 16/269 kB Progress (5): 66/145 kB | 49/146 kB | 14 kB | 29/587 kB | 16/269 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-api/3.3.0/enforcer-api-3.3.0.jar (14 kB at 389 kB/s) +Progress (4): 66/145 kB | 53/146 kB | 29/587 kB | 16/269 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.jar +Progress (4): 70/145 kB | 53/146 kB | 29/587 kB | 16/269 kB Progress (4): 74/145 kB | 53/146 kB | 29/587 kB | 16/269 kB Progress (4): 74/145 kB | 53/146 kB | 33/587 kB | 16/269 kB Progress (4): 74/145 kB | 53/146 kB | 37/587 kB | 16/269 kB Progress (4): 74/145 kB | 53/146 kB | 37/587 kB | 20/269 kB Progress (4): 74/145 kB | 53/146 kB | 41/587 kB | 20/269 kB Progress (4): 78/145 kB | 53/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 53/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 57/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 61/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 65/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 69/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 73/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 77/146 kB | 41/587 kB | 20/269 kB Progress (4): 82/145 kB | 79/146 kB | 41/587 kB | 20/269 kB Progress (5): 82/145 kB | 79/146 kB | 41/587 kB | 20/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 41/587 kB | 20/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 45/587 kB | 20/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 45/587 kB | 24/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 45/587 kB | 28/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 45/587 kB | 32/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 45/587 kB | 36/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 49/587 kB | 36/269 kB | 4.1/354 kB Progress (5): 86/145 kB | 79/146 kB | 53/587 kB | 36/269 kB | 4.1/354 kB Progress (5): 90/145 kB | 79/146 kB | 53/587 kB | 36/269 kB | 4.1/354 kB Progress (5): 94/145 kB | 79/146 kB | 53/587 kB | 36/269 kB | 4.1/354 kB Progress (5): 94/145 kB | 79/146 kB | 53/587 kB | 36/269 kB | 8.2/354 kB Progress (5): 94/145 kB | 79/146 kB | 53/587 kB | 36/269 kB | 12/354 kB Progress (5): 94/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 12/354 kB Progress (5): 94/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 16/354 kB Progress (5): 94/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 20/354 kB Progress (5): 94/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 25/354 kB Progress (5): 94/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 53/587 kB | 36/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 53/587 kB | 40/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 53/587 kB | 44/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 53/587 kB | 49/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 53/587 kB | 53/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 57/587 kB | 53/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 61/587 kB | 53/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 64/587 kB | 53/269 kB | 29/354 kB Progress (5): 98/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 102/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 106/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 111/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 115/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 119/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 123/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 127/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 29/354 kB Progress (5): 127/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 33/354 kB Progress (5): 127/145 kB | 84/146 kB | 64/587 kB | 57/269 kB | 37/354 kB Progress (5): 127/145 kB | 88/146 kB | 64/587 kB | 57/269 kB | 37/354 kB Progress (5): 127/145 kB | 88/146 kB | 64/587 kB | 57/269 kB | 41/354 kB Progress (5): 131/145 kB | 88/146 kB | 64/587 kB | 57/269 kB | 41/354 kB Progress (5): 131/145 kB | 88/146 kB | 64/587 kB | 61/269 kB | 41/354 kB Progress (5): 131/145 kB | 88/146 kB | 68/587 kB | 61/269 kB | 41/354 kB Progress (5): 135/145 kB | 88/146 kB | 68/587 kB | 61/269 kB | 41/354 kB Progress (5): 135/145 kB | 88/146 kB | 68/587 kB | 61/269 kB | 45/354 kB Progress (5): 135/145 kB | 92/146 kB | 68/587 kB | 61/269 kB | 45/354 kB Progress (5): 135/145 kB | 92/146 kB | 68/587 kB | 61/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 68/587 kB | 61/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 72/587 kB | 61/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 72/587 kB | 65/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 72/587 kB | 69/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 72/587 kB | 73/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 72/587 kB | 77/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 76/587 kB | 77/269 kB | 49/354 kB Progress (5): 139/145 kB | 92/146 kB | 80/587 kB | 77/269 kB | 49/354 kB Progress (5): 143/145 kB | 92/146 kB | 80/587 kB | 77/269 kB | 49/354 kB Progress (5): 145 kB | 92/146 kB | 80/587 kB | 77/269 kB | 49/354 kB Progress (5): 145 kB | 92/146 kB | 80/587 kB | 77/269 kB | 53/354 kB Progress (5): 145 kB | 92/146 kB | 80/587 kB | 77/269 kB | 57/354 kB Progress (5): 145 kB | 96/146 kB | 80/587 kB | 77/269 kB | 57/354 kB Progress (5): 145 kB | 100/146 kB | 80/587 kB | 77/269 kB | 57/354 kB Progress (5): 145 kB | 100/146 kB | 80/587 kB | 77/269 kB | 61/354 kB Progress (5): 145 kB | 104/146 kB | 80/587 kB | 77/269 kB | 61/354 kB Progress (5): 145 kB | 104/146 kB | 84/587 kB | 77/269 kB | 61/354 kB Progress (5): 145 kB | 104/146 kB | 84/587 kB | 81/269 kB | 61/354 kB Progress (5): 145 kB | 104/146 kB | 88/587 kB | 81/269 kB | 61/354 kB Progress (5): 145 kB | 104/146 kB | 92/587 kB | 81/269 kB | 61/354 kB Progress (5): 145 kB | 108/146 kB | 92/587 kB | 81/269 kB | 61/354 kB Progress (5): 145 kB | 108/146 kB | 92/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 108/146 kB | 96/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 112/146 kB | 96/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 112/146 kB | 100/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 116/146 kB | 100/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 120/146 kB | 100/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 124/146 kB | 100/587 kB | 81/269 kB | 65/354 kB Progress (5): 145 kB | 124/146 kB | 100/587 kB | 85/269 kB | 65/354 kB Progress (5): 145 kB | 124/146 kB | 105/587 kB | 85/269 kB | 65/354 kB Progress (5): 145 kB | 124/146 kB | 109/587 kB | 85/269 kB | 65/354 kB Progress (5): 145 kB | 124/146 kB | 109/587 kB | 85/269 kB | 69/354 kB Progress (5): 145 kB | 124/146 kB | 109/587 kB | 85/269 kB | 73/354 kB Progress (5): 145 kB | 124/146 kB | 109/587 kB | 85/269 kB | 77/354 kB Progress (5): 145 kB | 124/146 kB | 113/587 kB | 85/269 kB | 77/354 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/enforcer/enforcer-rules/3.3.0/enforcer-rules-3.3.0.jar (145 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar +Progress (4): 129/146 kB | 113/587 kB | 85/269 kB | 77/354 kB Progress (4): 129/146 kB | 113/587 kB | 89/269 kB | 77/354 kB Progress (4): 129/146 kB | 113/587 kB | 93/269 kB | 77/354 kB Progress (4): 129/146 kB | 117/587 kB | 93/269 kB | 77/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 77/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 81/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 85/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 89/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 93/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 97/354 kB Progress (4): 129/146 kB | 121/587 kB | 93/269 kB | 101/354 kB Progress (4): 129/146 kB | 121/587 kB | 97/269 kB | 101/354 kB Progress (4): 133/146 kB | 121/587 kB | 97/269 kB | 101/354 kB Progress (4): 137/146 kB | 121/587 kB | 97/269 kB | 101/354 kB Progress (4): 137/146 kB | 121/587 kB | 97/269 kB | 106/354 kB Progress (4): 137/146 kB | 125/587 kB | 97/269 kB | 106/354 kB Progress (4): 137/146 kB | 129/587 kB | 97/269 kB | 106/354 kB Progress (4): 137/146 kB | 129/587 kB | 97/269 kB | 110/354 kB Progress (4): 137/146 kB | 129/587 kB | 97/269 kB | 114/354 kB Progress (4): 141/146 kB | 129/587 kB | 97/269 kB | 114/354 kB Progress (4): 141/146 kB | 129/587 kB | 101/269 kB | 114/354 kB Progress (4): 141/146 kB | 129/587 kB | 105/269 kB | 114/354 kB Progress (4): 141/146 kB | 129/587 kB | 109/269 kB | 114/354 kB Progress (4): 141/146 kB | 133/587 kB | 109/269 kB | 114/354 kB Progress (4): 141/146 kB | 137/587 kB | 109/269 kB | 114/354 kB Progress (4): 141/146 kB | 141/587 kB | 109/269 kB | 114/354 kB Progress (4): 141/146 kB | 146/587 kB | 109/269 kB | 114/354 kB Progress (4): 141/146 kB | 150/587 kB | 109/269 kB | 114/354 kB Progress (4): 145/146 kB | 150/587 kB | 109/269 kB | 114/354 kB Progress (4): 146 kB | 150/587 kB | 109/269 kB | 114/354 kB Progress (4): 146 kB | 150/587 kB | 109/269 kB | 118/354 kB Progress (4): 146 kB | 154/587 kB | 109/269 kB | 118/354 kB Progress (4): 146 kB | 158/587 kB | 109/269 kB | 118/354 kB Progress (4): 146 kB | 162/587 kB | 109/269 kB | 118/354 kB Progress (4): 146 kB | 162/587 kB | 114/269 kB | 118/354 kB Progress (5): 146 kB | 162/587 kB | 114/269 kB | 118/354 kB | 4.1/327 kB Progress (5): 146 kB | 162/587 kB | 114/269 kB | 118/354 kB | 8.2/327 kB Progress (5): 146 kB | 166/587 kB | 114/269 kB | 118/354 kB | 8.2/327 kB Progress (5): 146 kB | 166/587 kB | 114/269 kB | 122/354 kB | 8.2/327 kB Progress (5): 146 kB | 170/587 kB | 114/269 kB | 122/354 kB | 8.2/327 kB Progress (5): 146 kB | 174/587 kB | 114/269 kB | 122/354 kB | 8.2/327 kB Progress (5): 146 kB | 174/587 kB | 114/269 kB | 122/354 kB | 12/327 kB Progress (5): 146 kB | 174/587 kB | 114/269 kB | 122/354 kB | 16/327 kB Progress (5): 146 kB | 174/587 kB | 118/269 kB | 122/354 kB | 16/327 kB Progress (5): 146 kB | 174/587 kB | 118/269 kB | 122/354 kB | 20/327 kB Progress (5): 146 kB | 174/587 kB | 118/269 kB | 122/354 kB | 25/327 kB Progress (5): 146 kB | 174/587 kB | 118/269 kB | 122/354 kB | 29/327 kB Progress (5): 146 kB | 174/587 kB | 118/269 kB | 122/354 kB | 33/327 kB Progress (5): 146 kB | 178/587 kB | 118/269 kB | 122/354 kB | 33/327 kB Progress (5): 146 kB | 178/587 kB | 118/269 kB | 126/354 kB | 33/327 kB Progress (5): 146 kB | 178/587 kB | 118/269 kB | 130/354 kB | 33/327 kB Progress (5): 146 kB | 182/587 kB | 118/269 kB | 130/354 kB | 33/327 kB Progress (5): 146 kB | 187/587 kB | 118/269 kB | 130/354 kB | 33/327 kB Progress (5): 146 kB | 191/587 kB | 118/269 kB | 130/354 kB | 33/327 kB Progress (5): 146 kB | 195/587 kB | 118/269 kB | 130/354 kB | 33/327 kB Progress (5): 146 kB | 195/587 kB | 118/269 kB | 130/354 kB | 37/327 kB Progress (5): 146 kB | 195/587 kB | 122/269 kB | 130/354 kB | 37/327 kB Progress (5): 146 kB | 199/587 kB | 122/269 kB | 130/354 kB | 37/327 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.0.v20140518/aether-util-1.0.0.v20140518.jar (146 kB at 1.1 MB/s) +Progress (4): 199/587 kB | 122/269 kB | 130/354 kB | 41/327 kB Progress (4): 199/587 kB | 122/269 kB | 130/354 kB | 45/327 kB Progress (4): 199/587 kB | 122/269 kB | 134/354 kB | 45/327 kB Progress (4): 199/587 kB | 122/269 kB | 138/354 kB | 45/327 kB Progress (4): 199/587 kB | 122/269 kB | 138/354 kB | 49/327 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar +Progress (4): 203/587 kB | 122/269 kB | 138/354 kB | 49/327 kB Progress (4): 203/587 kB | 126/269 kB | 138/354 kB | 49/327 kB Progress (4): 203/587 kB | 130/269 kB | 138/354 kB | 49/327 kB Progress (4): 207/587 kB | 130/269 kB | 138/354 kB | 49/327 kB Progress (4): 211/587 kB | 130/269 kB | 138/354 kB | 49/327 kB Progress (4): 211/587 kB | 134/269 kB | 138/354 kB | 49/327 kB Progress (4): 211/587 kB | 134/269 kB | 138/354 kB | 53/327 kB Progress (4): 211/587 kB | 134/269 kB | 142/354 kB | 53/327 kB Progress (4): 211/587 kB | 134/269 kB | 142/354 kB | 57/327 kB Progress (4): 211/587 kB | 134/269 kB | 142/354 kB | 61/327 kB Progress (4): 211/587 kB | 138/269 kB | 142/354 kB | 61/327 kB Progress (4): 215/587 kB | 138/269 kB | 142/354 kB | 61/327 kB Progress (4): 215/587 kB | 142/269 kB | 142/354 kB | 61/327 kB Progress (4): 215/587 kB | 142/269 kB | 142/354 kB | 66/327 kB Progress (4): 215/587 kB | 142/269 kB | 142/354 kB | 70/327 kB Progress (4): 215/587 kB | 142/269 kB | 146/354 kB | 70/327 kB Progress (4): 215/587 kB | 142/269 kB | 151/354 kB | 70/327 kB Progress (4): 215/587 kB | 142/269 kB | 151/354 kB | 74/327 kB Progress (4): 215/587 kB | 146/269 kB | 151/354 kB | 74/327 kB Progress (4): 215/587 kB | 146/269 kB | 155/354 kB | 74/327 kB Progress (4): 215/587 kB | 150/269 kB | 155/354 kB | 74/327 kB Progress (4): 215/587 kB | 155/269 kB | 155/354 kB | 74/327 kB Progress (4): 219/587 kB | 155/269 kB | 155/354 kB | 74/327 kB Progress (5): 219/587 kB | 155/269 kB | 155/354 kB | 74/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 159/269 kB | 155/354 kB | 74/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 163/269 kB | 155/354 kB | 74/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 163/269 kB | 159/354 kB | 74/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 163/269 kB | 159/354 kB | 78/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 167/269 kB | 159/354 kB | 78/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 167/269 kB | 163/354 kB | 78/327 kB | 4.1/389 kB Progress (5): 219/587 kB | 167/269 kB | 163/354 kB | 78/327 kB | 8.2/389 kB Progress (5): 223/587 kB | 167/269 kB | 163/354 kB | 78/327 kB | 8.2/389 kB Progress (5): 223/587 kB | 167/269 kB | 163/354 kB | 78/327 kB | 12/389 kB Progress (5): 223/587 kB | 167/269 kB | 163/354 kB | 78/327 kB | 16/389 kB Progress (5): 223/587 kB | 167/269 kB | 167/354 kB | 78/327 kB | 16/389 kB Progress (5): 223/587 kB | 171/269 kB | 167/354 kB | 78/327 kB | 16/389 kB Progress (5): 223/587 kB | 171/269 kB | 167/354 kB | 82/327 kB | 16/389 kB Progress (5): 223/587 kB | 175/269 kB | 167/354 kB | 82/327 kB | 16/389 kB Progress (5): 223/587 kB | 179/269 kB | 167/354 kB | 82/327 kB | 16/389 kB Progress (5): 223/587 kB | 179/269 kB | 171/354 kB | 82/327 kB | 16/389 kB Progress (5): 223/587 kB | 183/269 kB | 171/354 kB | 82/327 kB | 16/389 kB Progress (5): 223/587 kB | 183/269 kB | 171/354 kB | 82/327 kB | 20/389 kB Progress (5): 227/587 kB | 183/269 kB | 171/354 kB | 82/327 kB | 20/389 kB Progress (5): 227/587 kB | 183/269 kB | 171/354 kB | 82/327 kB | 25/389 kB Progress (5): 227/587 kB | 183/269 kB | 171/354 kB | 82/327 kB | 29/389 kB Progress (5): 227/587 kB | 187/269 kB | 171/354 kB | 82/327 kB | 29/389 kB Progress (5): 227/587 kB | 191/269 kB | 171/354 kB | 82/327 kB | 29/389 kB Progress (5): 227/587 kB | 191/269 kB | 175/354 kB | 82/327 kB | 29/389 kB Progress (5): 227/587 kB | 191/269 kB | 179/354 kB | 82/327 kB | 29/389 kB Progress (5): 227/587 kB | 191/269 kB | 179/354 kB | 86/327 kB | 29/389 kB Progress (5): 227/587 kB | 191/269 kB | 183/354 kB | 86/327 kB | 29/389 kB Progress (5): 227/587 kB | 196/269 kB | 183/354 kB | 86/327 kB | 29/389 kB Progress (5): 227/587 kB | 196/269 kB | 183/354 kB | 86/327 kB | 33/389 kB Progress (5): 232/587 kB | 196/269 kB | 183/354 kB | 86/327 kB | 33/389 kB Progress (5): 236/587 kB | 196/269 kB | 183/354 kB | 86/327 kB | 33/389 kB Progress (5): 236/587 kB | 196/269 kB | 183/354 kB | 86/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 183/354 kB | 86/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 187/354 kB | 86/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 192/354 kB | 86/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 196/354 kB | 86/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 196/354 kB | 90/327 kB | 37/389 kB Progress (5): 236/587 kB | 200/269 kB | 200/354 kB | 90/327 kB | 37/389 kB Progress (5): 236/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 37/389 kB Progress (5): 236/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 41/389 kB Progress (5): 236/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 45/389 kB Progress (5): 240/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 45/389 kB Progress (5): 244/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 45/389 kB Progress (5): 244/587 kB | 204/269 kB | 200/354 kB | 90/327 kB | 49/389 kB Progress (5): 244/587 kB | 208/269 kB | 200/354 kB | 90/327 kB | 49/389 kB Progress (5): 244/587 kB | 208/269 kB | 204/354 kB | 90/327 kB | 49/389 kB Progress (5): 244/587 kB | 208/269 kB | 204/354 kB | 94/327 kB | 49/389 kB Progress (5): 244/587 kB | 208/269 kB | 208/354 kB | 94/327 kB | 49/389 kB Progress (5): 244/587 kB | 212/269 kB | 208/354 kB | 94/327 kB | 49/389 kB Progress (5): 244/587 kB | 212/269 kB | 208/354 kB | 94/327 kB | 53/389 kB Progress (5): 244/587 kB | 212/269 kB | 208/354 kB | 94/327 kB | 57/389 kB Progress (5): 248/587 kB | 212/269 kB | 208/354 kB | 94/327 kB | 57/389 kB Progress (5): 248/587 kB | 212/269 kB | 208/354 kB | 94/327 kB | 61/389 kB Progress (5): 248/587 kB | 216/269 kB | 208/354 kB | 94/327 kB | 61/389 kB Progress (5): 248/587 kB | 216/269 kB | 208/354 kB | 98/327 kB | 61/389 kB Progress (5): 248/587 kB | 216/269 kB | 212/354 kB | 98/327 kB | 61/389 kB Progress (5): 248/587 kB | 216/269 kB | 212/354 kB | 102/327 kB | 61/389 kB Progress (5): 248/587 kB | 220/269 kB | 212/354 kB | 102/327 kB | 61/389 kB Progress (5): 248/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 61/389 kB Progress (5): 248/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 66/389 kB Progress (5): 248/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 70/389 kB Progress (5): 248/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 74/389 kB Progress (5): 248/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 78/389 kB Progress (5): 252/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 78/389 kB Progress (5): 256/587 kB | 224/269 kB | 212/354 kB | 102/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 212/354 kB | 102/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 212/354 kB | 106/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 216/354 kB | 106/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 216/354 kB | 111/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 216/354 kB | 115/327 kB | 78/389 kB Progress (5): 256/587 kB | 228/269 kB | 216/354 kB | 119/327 kB | 78/389 kB Progress (5): 256/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 78/389 kB Progress (5): 260/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 78/389 kB Progress (5): 260/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 82/389 kB Progress (5): 260/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 86/389 kB Progress (5): 260/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 90/389 kB Progress (5): 264/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 90/389 kB Progress (5): 268/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 90/389 kB Progress (5): 273/587 kB | 232/269 kB | 216/354 kB | 119/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 119/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 123/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 127/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 131/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 135/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 139/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 143/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 216/354 kB | 147/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 220/354 kB | 147/327 kB | 90/389 kB Progress (5): 273/587 kB | 236/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 273/587 kB | 241/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 273/587 kB | 245/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 273/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 277/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 281/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 90/389 kB Progress (5): 281/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 94/389 kB Progress (5): 285/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 94/389 kB Progress (5): 285/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 98/389 kB Progress (5): 285/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 102/389 kB Progress (5): 285/587 kB | 249/269 kB | 220/354 kB | 152/327 kB | 106/389 kB Progress (5): 285/587 kB | 249/269 kB | 220/354 kB | 156/327 kB | 106/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 156/327 kB | 106/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 160/327 kB | 106/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 160/327 kB | 111/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 164/327 kB | 111/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 168/327 kB | 111/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 172/327 kB | 111/389 kB Progress (5): 285/587 kB | 249/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 253/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 257/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 261/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 265/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 269/269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 285/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 289/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 293/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 297/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 301/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 305/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 309/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 313/587 kB | 269 kB | 224/354 kB | 176/327 kB | 111/389 kB Progress (5): 313/587 kB | 269 kB | 224/354 kB | 180/327 kB | 111/389 kB Progress (5): 313/587 kB | 269 kB | 224/354 kB | 184/327 kB | 111/389 kB Progress (5): 313/587 kB | 269 kB | 224/354 kB | 188/327 kB | 111/389 kB Progress (5): 318/587 kB | 269 kB | 224/354 kB | 188/327 kB | 111/389 kB Progress (5): 318/587 kB | 269 kB | 224/354 kB | 188/327 kB | 115/389 kB Progress (5): 318/587 kB | 269 kB | 228/354 kB | 188/327 kB | 115/389 kB Progress (5): 318/587 kB | 269 kB | 228/354 kB | 188/327 kB | 119/389 kB Progress (5): 322/587 kB | 269 kB | 228/354 kB | 188/327 kB | 119/389 kB Progress (5): 326/587 kB | 269 kB | 228/354 kB | 188/327 kB | 119/389 kB Progress (5): 326/587 kB | 269 kB | 228/354 kB | 193/327 kB | 119/389 kB Progress (5): 330/587 kB | 269 kB | 228/354 kB | 193/327 kB | 119/389 kB Progress (5): 334/587 kB | 269 kB | 228/354 kB | 193/327 kB | 119/389 kB Progress (5): 334/587 kB | 269 kB | 228/354 kB | 193/327 kB | 123/389 kB Progress (5): 334/587 kB | 269 kB | 228/354 kB | 193/327 kB | 127/389 kB Progress (5): 334/587 kB | 269 kB | 228/354 kB | 193/327 kB | 131/389 kB Progress (5): 334/587 kB | 269 kB | 232/354 kB | 193/327 kB | 131/389 kB Progress (5): 334/587 kB | 269 kB | 237/354 kB | 193/327 kB | 131/389 kB Progress (5): 334/587 kB | 269 kB | 237/354 kB | 193/327 kB | 135/389 kB Progress (5): 334/587 kB | 269 kB | 237/354 kB | 193/327 kB | 139/389 kB Progress (5): 334/587 kB | 269 kB | 237/354 kB | 193/327 kB | 143/389 kB Progress (5): 338/587 kB | 269 kB | 237/354 kB | 193/327 kB | 143/389 kB Progress (5): 342/587 kB | 269 kB | 237/354 kB | 193/327 kB | 143/389 kB Progress (5): 346/587 kB | 269 kB | 237/354 kB | 193/327 kB | 143/389 kB Progress (5): 350/587 kB | 269 kB | 237/354 kB | 193/327 kB | 143/389 kB Progress (5): 350/587 kB | 269 kB | 237/354 kB | 197/327 kB | 143/389 kB Progress (5): 354/587 kB | 269 kB | 237/354 kB | 197/327 kB | 143/389 kB Progress (5): 359/587 kB | 269 kB | 237/354 kB | 197/327 kB | 143/389 kB Progress (5): 359/587 kB | 269 kB | 237/354 kB | 197/327 kB | 147/389 kB Progress (5): 359/587 kB | 269 kB | 237/354 kB | 197/327 kB | 152/389 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.1/plexus-utils-3.5.1.jar (269 kB at 1.1 MB/s) +Progress (4): 359/587 kB | 241/354 kB | 197/327 kB | 152/389 kB Progress (4): 359/587 kB | 241/354 kB | 197/327 kB | 156/389 kB Progress (4): 359/587 kB | 241/354 kB | 197/327 kB | 160/389 kB Progress (4): 359/587 kB | 241/354 kB | 197/327 kB | 164/389 kB Progress (4): 363/587 kB | 241/354 kB | 197/327 kB | 164/389 kB Progress (4): 363/587 kB | 241/354 kB | 201/327 kB | 164/389 kB Progress (4): 367/587 kB | 241/354 kB | 201/327 kB | 164/389 kB Progress (4): 371/587 kB | 241/354 kB | 201/327 kB | 164/389 kB Progress (4): 375/587 kB | 241/354 kB | 201/327 kB | 164/389 kB Progress (4): 375/587 kB | 241/354 kB | 201/327 kB | 168/389 kB Progress (4): 375/587 kB | 241/354 kB | 201/327 kB | 172/389 kB Progress (4): 375/587 kB | 241/354 kB | 201/327 kB | 176/389 kB Progress (4): 375/587 kB | 241/354 kB | 201/327 kB | 180/389 kB Progress (4): 375/587 kB | 245/354 kB | 201/327 kB | 180/389 kB Progress (4): 379/587 kB | 245/354 kB | 201/327 kB | 180/389 kB Progress (4): 379/587 kB | 245/354 kB | 205/327 kB | 180/389 kB Progress (4): 379/587 kB | 245/354 kB | 209/327 kB | 180/389 kB Progress (4): 379/587 kB | 245/354 kB | 209/327 kB | 184/389 kB Progress (4): 379/587 kB | 249/354 kB | 209/327 kB | 184/389 kB Progress (4): 379/587 kB | 253/354 kB | 209/327 kB | 184/389 kB Progress (4): 379/587 kB | 253/354 kB | 213/327 kB | 184/389 kB Progress (4): 379/587 kB | 253/354 kB | 217/327 kB | 184/389 kB Progress (4): 383/587 kB | 253/354 kB | 217/327 kB | 184/389 kB Progress (4): 383/587 kB | 253/354 kB | 221/327 kB | 184/389 kB Progress (4): 383/587 kB | 257/354 kB | 221/327 kB | 184/389 kB Progress (4): 383/587 kB | 257/354 kB | 221/327 kB | 188/389 kB Progress (4): 383/587 kB | 261/354 kB | 221/327 kB | 188/389 kB Progress (4): 383/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 387/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 391/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 395/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 399/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 404/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 408/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 412/587 kB | 261/354 kB | 225/327 kB | 188/389 kB Progress (4): 412/587 kB | 261/354 kB | 229/327 kB | 188/389 kB Progress (4): 412/587 kB | 261/354 kB | 233/327 kB | 188/389 kB Progress (4): 412/587 kB | 265/354 kB | 233/327 kB | 188/389 kB Progress (4): 412/587 kB | 265/354 kB | 233/327 kB | 193/389 kB Progress (4): 412/587 kB | 269/354 kB | 233/327 kB | 193/389 kB Progress (4): 412/587 kB | 273/354 kB | 233/327 kB | 193/389 kB Progress (4): 412/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 416/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 420/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 424/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 428/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 432/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 436/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 440/587 kB | 273/354 kB | 238/327 kB | 193/389 kB Progress (4): 440/587 kB | 278/354 kB | 238/327 kB | 193/389 kB Progress (4): 440/587 kB | 278/354 kB | 242/327 kB | 193/389 kB Progress (4): 440/587 kB | 278/354 kB | 242/327 kB | 197/389 kB Progress (4): 440/587 kB | 278/354 kB | 246/327 kB | 197/389 kB Progress (4): 440/587 kB | 282/354 kB | 246/327 kB | 197/389 kB Progress (4): 440/587 kB | 282/354 kB | 250/327 kB | 197/389 kB Progress (4): 440/587 kB | 282/354 kB | 254/327 kB | 197/389 kB Progress (4): 440/587 kB | 282/354 kB | 258/327 kB | 197/389 kB Progress (4): 445/587 kB | 282/354 kB | 258/327 kB | 197/389 kB Progress (4): 449/587 kB | 282/354 kB | 258/327 kB | 197/389 kB Progress (4): 453/587 kB | 282/354 kB | 258/327 kB | 197/389 kB Progress (4): 453/587 kB | 286/354 kB | 258/327 kB | 197/389 kB Progress (4): 453/587 kB | 290/354 kB | 258/327 kB | 197/389 kB Progress (4): 453/587 kB | 290/354 kB | 258/327 kB | 201/389 kB Progress (4): 453/587 kB | 290/354 kB | 258/327 kB | 205/389 kB Progress (4): 457/587 kB | 290/354 kB | 258/327 kB | 205/389 kB Progress (4): 457/587 kB | 290/354 kB | 258/327 kB | 209/389 kB Progress (4): 457/587 kB | 290/354 kB | 262/327 kB | 209/389 kB Progress (4): 457/587 kB | 290/354 kB | 266/327 kB | 209/389 kB Progress (4): 461/587 kB | 290/354 kB | 266/327 kB | 209/389 kB Progress (4): 461/587 kB | 294/354 kB | 266/327 kB | 209/389 kB Progress (4): 465/587 kB | 294/354 kB | 266/327 kB | 209/389 kB Progress (4): 465/587 kB | 294/354 kB | 270/327 kB | 209/389 kB Progress (4): 465/587 kB | 298/354 kB | 270/327 kB | 209/389 kB Progress (4): 465/587 kB | 302/354 kB | 270/327 kB | 209/389 kB Progress (4): 465/587 kB | 306/354 kB | 270/327 kB | 209/389 kB Progress (4): 465/587 kB | 306/354 kB | 270/327 kB | 213/389 kB Progress (4): 465/587 kB | 306/354 kB | 270/327 kB | 217/389 kB Progress (4): 465/587 kB | 310/354 kB | 270/327 kB | 217/389 kB Progress (4): 465/587 kB | 310/354 kB | 274/327 kB | 217/389 kB Progress (4): 465/587 kB | 314/354 kB | 274/327 kB | 217/389 kB Progress (4): 469/587 kB | 314/354 kB | 274/327 kB | 217/389 kB Progress (4): 469/587 kB | 314/354 kB | 279/327 kB | 217/389 kB Progress (4): 469/587 kB | 319/354 kB | 279/327 kB | 217/389 kB Progress (4): 469/587 kB | 323/354 kB | 279/327 kB | 217/389 kB Progress (4): 469/587 kB | 323/354 kB | 279/327 kB | 221/389 kB Progress (4): 469/587 kB | 323/354 kB | 279/327 kB | 225/389 kB Progress (4): 469/587 kB | 327/354 kB | 279/327 kB | 225/389 kB Progress (4): 469/587 kB | 327/354 kB | 283/327 kB | 225/389 kB Progress (4): 469/587 kB | 327/354 kB | 287/327 kB | 225/389 kB Progress (4): 469/587 kB | 327/354 kB | 291/327 kB | 225/389 kB Progress (4): 473/587 kB | 327/354 kB | 291/327 kB | 225/389 kB Progress (4): 473/587 kB | 327/354 kB | 295/327 kB | 225/389 kB Progress (4): 473/587 kB | 327/354 kB | 299/327 kB | 225/389 kB Progress (4): 473/587 kB | 331/354 kB | 299/327 kB | 225/389 kB Progress (4): 473/587 kB | 331/354 kB | 299/327 kB | 229/389 kB Progress (4): 473/587 kB | 331/354 kB | 303/327 kB | 229/389 kB Progress (4): 473/587 kB | 331/354 kB | 307/327 kB | 229/389 kB Progress (4): 473/587 kB | 335/354 kB | 307/327 kB | 229/389 kB Progress (4): 473/587 kB | 339/354 kB | 307/327 kB | 229/389 kB Progress (4): 473/587 kB | 339/354 kB | 311/327 kB | 229/389 kB Progress (4): 477/587 kB | 339/354 kB | 311/327 kB | 229/389 kB Progress (4): 477/587 kB | 339/354 kB | 315/327 kB | 229/389 kB Progress (4): 477/587 kB | 339/354 kB | 319/327 kB | 229/389 kB Progress (4): 477/587 kB | 339/354 kB | 324/327 kB | 229/389 kB Progress (4): 477/587 kB | 339/354 kB | 327 kB | 229/389 kB Progress (4): 477/587 kB | 343/354 kB | 327 kB | 229/389 kB Progress (4): 477/587 kB | 347/354 kB | 327 kB | 229/389 kB Progress (4): 477/587 kB | 347/354 kB | 327 kB | 233/389 kB Progress (4): 477/587 kB | 347/354 kB | 327 kB | 238/389 kB Progress (4): 477/587 kB | 351/354 kB | 327 kB | 238/389 kB Progress (4): 477/587 kB | 354 kB | 327 kB | 238/389 kB Progress (4): 481/587 kB | 354 kB | 327 kB | 238/389 kB Progress (4): 486/587 kB | 354 kB | 327 kB | 238/389 kB Progress (4): 486/587 kB | 354 kB | 327 kB | 242/389 kB Progress (4): 490/587 kB | 354 kB | 327 kB | 242/389 kB Progress (4): 490/587 kB | 354 kB | 327 kB | 246/389 kB Progress (4): 494/587 kB | 354 kB | 327 kB | 246/389 kB Progress (4): 498/587 kB | 354 kB | 327 kB | 246/389 kB Progress (4): 502/587 kB | 354 kB | 327 kB | 246/389 kB Progress (4): 502/587 kB | 354 kB | 327 kB | 250/389 kB Progress (4): 506/587 kB | 354 kB | 327 kB | 250/389 kB Progress (4): 506/587 kB | 354 kB | 327 kB | 254/389 kB Progress (4): 510/587 kB | 354 kB | 327 kB | 254/389 kB Progress (4): 510/587 kB | 354 kB | 327 kB | 258/389 kB Progress (4): 514/587 kB | 354 kB | 327 kB | 258/389 kB Progress (4): 514/587 kB | 354 kB | 327 kB | 262/389 kB Progress (4): 518/587 kB | 354 kB | 327 kB | 262/389 kB Progress (4): 518/587 kB | 354 kB | 327 kB | 266/389 kB Progress (4): 518/587 kB | 354 kB | 327 kB | 270/389 kB Progress (4): 522/587 kB | 354 kB | 327 kB | 270/389 kB Progress (4): 522/587 kB | 354 kB | 327 kB | 274/389 kB Progress (4): 522/587 kB | 354 kB | 327 kB | 279/389 kB Progress (4): 526/587 kB | 354 kB | 327 kB | 279/389 kB Progress (4): 531/587 kB | 354 kB | 327 kB | 279/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 279/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 283/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 287/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 291/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 295/389 kB Progress (4): 535/587 kB | 354 kB | 327 kB | 299/389 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar (327 kB at 957 kB/s) +Progress (3): 539/587 kB | 354 kB | 299/389 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.15/commons-codec-1.15.jar (354 kB at 1.0 MB/s) +Progress (2): 539/587 kB | 303/389 kB Progress (2): 539/587 kB | 307/389 kB Progress (2): 543/587 kB | 307/389 kB Progress (2): 543/587 kB | 311/389 kB Progress (2): 547/587 kB | 311/389 kB Progress (2): 551/587 kB | 311/389 kB Progress (2): 551/587 kB | 315/389 kB Progress (2): 551/587 kB | 319/389 kB Progress (2): 551/587 kB | 324/389 kB Progress (2): 555/587 kB | 324/389 kB Progress (2): 555/587 kB | 328/389 kB Progress (2): 559/587 kB | 328/389 kB Progress (2): 559/587 kB | 332/389 kB Progress (2): 563/587 kB | 332/389 kB Progress (2): 563/587 kB | 336/389 kB Progress (2): 563/587 kB | 340/389 kB Progress (2): 567/587 kB | 340/389 kB Progress (2): 572/587 kB | 340/389 kB Progress (2): 572/587 kB | 344/389 kB Progress (2): 576/587 kB | 344/389 kB Progress (2): 576/587 kB | 348/389 kB Progress (2): 576/587 kB | 352/389 kB Progress (2): 580/587 kB | 352/389 kB Progress (2): 584/587 kB | 352/389 kB Progress (2): 587 kB | 352/389 kB Progress (2): 587 kB | 356/389 kB Progress (2): 587 kB | 360/389 kB Progress (2): 587 kB | 365/389 kB Progress (2): 587 kB | 369/389 kB Progress (2): 587 kB | 373/389 kB Progress (2): 587 kB | 377/389 kB Progress (2): 587 kB | 381/389 kB Progress (2): 587 kB | 385/389 kB Progress (2): 587 kB | 389 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar (587 kB at 1.6 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache-extras/beanshell/bsh/2.0b6/bsh-2.0b6.jar (389 kB at 1.0 MB/s) +[INFO] Rule 0: org.apache.maven.enforcer.rules.version.RequireMavenVersion passed +[INFO] Rule 1: org.apache.maven.enforcer.rules.version.RequireJavaVersion passed +[INFO] +[INFO] --- maven-enforcer-plugin:3.3.0:enforce (enforce-java-version) @ commons-jxpath --- +[INFO] +[INFO] --- maven-enforcer-plugin:3.3.0:enforce (enforce-maven-3) @ commons-jxpath --- +[INFO] +[INFO] --- apache-rat-plugin:0.15:check (rat-check) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-core/0.15/apache-rat-core-0.15.pom +Progress (1): 4.1/4.6 kB Progress (1): 4.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-core/0.15/apache-rat-core-0.15.pom (4.6 kB at 140 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-api/0.15/apache-rat-api-0.15.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-api/0.15/apache-rat-api-0.15.pom (1.9 kB at 45 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.pom (24 kB at 721 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom +Progress (1): 4.1/72 kB Progress (1): 8.2/72 kB Progress (1): 12/72 kB Progress (1): 16/72 kB Progress (1): 20/72 kB Progress (1): 25/72 kB Progress (1): 29/72 kB Progress (1): 33/72 kB Progress (1): 37/72 kB Progress (1): 41/72 kB Progress (1): 45/72 kB Progress (1): 49/72 kB Progress (1): 53/72 kB Progress (1): 57/72 kB Progress (1): 61/72 kB Progress (1): 66/72 kB Progress (1): 70/72 kB Progress (1): 72 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/48/commons-parent-48.pom (72 kB at 1.5 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.pom (20 kB at 547 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.pom (15 kB at 467 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.pom (1.6 kB at 59 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.2.1/maven-2.2.1.pom (22 kB at 800 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 25/32 kB Progress (1): 29/32 kB Progress (1): 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/11/maven-parent-11.pom (32 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom +Progress (1): 4.1/4.1 kB Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/5/apache-5.pom (4.1 kB at 158 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom +Progress (1): 4.1/6.8 kB Progress (1): 6.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.15/plexus-utils-1.5.15.pom (6.8 kB at 245 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom (12 kB at 375 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.pom (3.1 kB at 119 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.pom (1.9 kB at 69 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom +Progress (1): 3.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.pom (3.9 kB at 136 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom +Progress (1): 492 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0.3/plexus-containers-1.0.3.pom (492 B at 17 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom +Progress (1): 4.1/5.7 kB Progress (1): 5.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.4/plexus-1.0.4.pom (5.7 kB at 212 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom +Progress (1): 4.1/6.9 kB Progress (1): 6.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom (6.9 kB at 254 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.pom (3.1 kB at 112 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom +Progress (1): 880 B Downloaded from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.pom (880 B at 30 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.pom (3.2 kB at 116 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.pom (2.8 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.pom (2.2 kB at 84 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom +Progress (1): 889 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.pom (889 B at 33 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom +Progress (1): 4.1/5.8 kB Progress (1): 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.14/plexus-components-1.1.14.pom (5.8 kB at 209 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.pom (2.2 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.pom (1.9 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.pom (4.5 kB at 156 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.11.1/doxia-1.11.1.pom (18 kB at 644 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.pom (1.6 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.pom (1.6 kB at 61 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.pom (3.0 kB at 106 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.0/plexus-containers-2.1.0.pom (4.8 kB at 178 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom +Progress (1): 4.1/23 kB Progress (1): 8.2/23 kB Progress (1): 12/23 kB Progress (1): 16/23 kB Progress (1): 20/23 kB Progress (1): 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (23 kB at 833 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.1/plexus-utils-3.1.1.pom (5.1 kB at 195 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/4.0/plexus-4.0.pom (22 kB at 768 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/10/forge-parent-10.pom (14 kB at 502 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom +Progress (1): 4.1/7.9 kB Progress (1): 7.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.6.0/plexus-classworlds-2.6.0.pom (7.9 kB at 293 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.pom (5.1 kB at 189 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.7/xbean-3.7.pom (15 kB at 572 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom +Progress (1): 4.1/5.5 kB Progress (1): 5.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-java5-flava/2.0/genesis-java5-flava-2.0.pom (5.5 kB at 203 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis-default-flava/2.0/genesis-default-flava-2.0.pom (18 kB at 660 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/geronimo/genesis/genesis/2.0/genesis-2.0.pom (18 kB at 682 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/6/apache-6.pom (13 kB at 474 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.pom (2.5 kB at 92 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom (1.6 kB at 46 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom +Progress (1): 4.1/5.2 kB Progress (1): 5.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.pom (5.2 kB at 199 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom +Progress (1): 750 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.pom (750 B at 28 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.pom (14 kB at 548 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom +Progress (1): 4.1/73 kB Progress (1): 8.2/73 kB Progress (1): 12/73 kB Progress (1): 16/73 kB Progress (1): 20/73 kB Progress (1): 25/73 kB Progress (1): 29/73 kB Progress (1): 33/73 kB Progress (1): 37/73 kB Progress (1): 41/73 kB Progress (1): 45/73 kB Progress (1): 49/73 kB Progress (1): 53/73 kB Progress (1): 57/73 kB Progress (1): 61/73 kB Progress (1): 66/73 kB Progress (1): 70/73 kB Progress (1): 73 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/45/commons-parent-45.pom (73 kB at 2.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom +Progress (1): 4.1/6.6 kB Progress (1): 6.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.pom (6.6 kB at 254 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom +Progress (1): 4.1/16 kB Progress (1): 8.2/16 kB Progress (1): 12/16 kB Progress (1): 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.13/httpcomponents-client-4.5.13.pom (16 kB at 607 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom +Progress (1): 4.1/35 kB Progress (1): 8.2/35 kB Progress (1): 12/35 kB Progress (1): 16/35 kB Progress (1): 20/35 kB Progress (1): 25/35 kB Progress (1): 29/35 kB Progress (1): 33/35 kB Progress (1): 35 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/11/httpcomponents-parent-11.pom (35 kB at 1.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.pom (5.0 kB at 184 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.13/httpcomponents-core-4.4.13.pom (13 kB at 488 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 kB at 517 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom +Progress (1): 4.1/68 kB Progress (1): 8.2/68 kB Progress (1): 12/68 kB Progress (1): 16/68 kB Progress (1): 20/68 kB Progress (1): 25/68 kB Progress (1): 29/68 kB Progress (1): 33/68 kB Progress (1): 37/68 kB Progress (1): 41/68 kB Progress (1): 45/68 kB Progress (1): 49/68 kB Progress (1): 53/68 kB Progress (1): 57/68 kB Progress (1): 61/68 kB Progress (1): 66/68 kB Progress (1): 68 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (68 kB at 2.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom +Progress (1): 4.1/16 kB Progress (1): 8.2/16 kB Progress (1): 12/16 kB Progress (1): 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom (16 kB at 580 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.pom (5.0 kB at 191 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.14/httpcomponents-core-4.4.14.pom (13 kB at 487 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.pom (3.4 kB at 131 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.11.1/doxia-sitetools-1.11.1.pom (14 kB at 503 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom +Progress (1): 750 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.pom (750 B at 28 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.0.0/plexus-containers-2.0.0.pom (4.8 kB at 178 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.pom (2.0 kB at 76 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.11.1/doxia-modules-1.11.1.pom (2.7 kB at 102 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom +Progress (1): 4.1/6.0 kB Progress (1): 6.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.pom (6.0 kB at 224 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.pom (2.4 kB at 88 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom +Progress (1): 4.1/9.3 kB Progress (1): 8.2/9.3 kB Progress (1): 9.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/15/maven-shared-components-15.pom (9.3 kB at 346 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom +Progress (1): 4.1/23 kB Progress (1): 8.2/23 kB Progress (1): 12/23 kB Progress (1): 16/23 kB Progress (1): 20/23 kB Progress (1): 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom (23 kB at 862 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/7/apache-7.pom (14 kB at 555 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.pom (1.4 kB at 51 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom +Progress (1): 4.1/9.6 kB Progress (1): 8.2/9.6 kB Progress (1): 9.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.0/doxia-1.0.pom (9.6 kB at 371 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 25/32 kB Progress (1): 29/32 kB Progress (1): 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/10/maven-parent-10.pom (32 kB at 214 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.pom (1.5 kB at 54 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.pom (1.2 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.pom (2.1 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.12/plexus-components-1.1.12.pom (3.0 kB at 116 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom +Progress (1): 4.1/8.2 kB Progress (1): 8.2/8.2 kB Progress (1): 8.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom (8.2 kB at 317 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom (2.3 kB at 87 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom +Progress (1): 4.1/9.0 kB Progress (1): 8.2/9.0 kB Progress (1): 9.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom (9.0 kB at 332 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom (2.7 kB at 106 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom +Progress (1): 4.1/7.7 kB Progress (1): 7.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.pom (7.7 kB at 275 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.pom (1.9 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.0/maven-3.0.pom (22 kB at 811 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/15/maven-parent-15.pom (24 kB at 857 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.4/plexus-utils-2.0.4.pom (3.3 kB at 128 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.6/plexus-2.0.6.pom (17 kB at 645 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.pom (3.0 kB at 113 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.pom (2.0 kB at 73 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom +Progress (1): 3.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.pom (3.5 kB at 129 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-30/plexus-containers-1.0-alpha-30.pom (1.9 kB at 73 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-9/plexus-classworlds-1.2-alpha-9.pom (3.2 kB at 119 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.pom (2.8 kB at 113 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/4.0/plexus-components-4.0.pom (2.7 kB at 102 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom +Progress (1): 4.1/6.1 kB Progress (1): 6.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.1/commons-collections-3.1.pom (6.1 kB at 217 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.pom (11 kB at 418 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.pom (13 kB at 447 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/9/commons-parent-9.pom (22 kB at 756 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.pom (14 kB at 518 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.pom (18 kB at 650 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom +Progress (1): 866 B Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom (866 B at 33 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom +Progress (1): 4.1/7.0 kB Progress (1): 7.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.pom (7.0 kB at 242 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom +Progress (1): 4.1/6.2 kB Progress (1): 6.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.pom (6.2 kB at 229 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom +Progress (1): 145 B Downloaded from central: https://repo.maven.apache.org/maven2/log4j/log4j/1.2.12/log4j-1.2.12.pom (145 B at 5.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom +Progress (1): 147 B Downloaded from central: https://repo.maven.apache.org/maven2/logkit/logkit/1.0.1/logkit-1.0.1.pom (147 B at 5.7 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom +Progress (1): 167 B Downloaded from central: https://repo.maven.apache.org/maven2/avalon-framework/avalon-framework/4.1.3/avalon-framework-4.1.3.pom (167 B at 6.4 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom +Progress (1): 4.1/6.0 kB Progress (1): 6.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.pom (6.0 kB at 231 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom +Progress (1): 974 B Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.6/commons-digester-1.6.pom (974 B at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.pom (2.3 kB at 89 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom +Progress (1): 163 B Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.0/commons-logging-1.0.pom (163 B at 6.3 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom +Progress (1): 171 B Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.0/commons-collections-2.0.pom (171 B at 6.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/2.1/commons-collections-2.1.pom (3.3 kB at 128 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.0.b2/xml-apis-1.0.b2.pom (2.2 kB at 86 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.pom (11 kB at 424 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom +Progress (1): 142 B Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.pom (142 B at 5.3 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom +Progress (1): 140 B Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.pom (140 B at 5.4 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.6.2/velocity-1.6.2.pom (11 kB at 393 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.pom (3.8 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/34/maven-shared-components-34.pom (5.1 kB at 182 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom +Progress (1): 4.1/5.8 kB Progress (1): 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.pom (5.8 kB at 208 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom +Progress (1): 4.1/8.2 kB Progress (1): 8.2/8.2 kB Progress (1): 8.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom (8.2 kB at 304 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/8/plexus-8.pom +Progress (1): 4.1/25 kB Progress (1): 8.2/25 kB Progress (1): 12/25 kB Progress (1): 16/25 kB Progress (1): 20/25 kB Progress (1): 25/25 kB Progress (1): 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/8/plexus-8.pom (25 kB at 909 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom +Progress (1): 4.1/23 kB Progress (1): 8.2/23 kB Progress (1): 12/23 kB Progress (1): 16/23 kB Progress (1): 20/23 kB Progress (1): 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.pom (23 kB at 865 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom +Progress (1): 4.1/65 kB Progress (1): 8.2/65 kB Progress (1): 12/65 kB Progress (1): 16/65 kB Progress (1): 20/65 kB Progress (1): 25/65 kB Progress (1): 29/65 kB Progress (1): 33/65 kB Progress (1): 37/65 kB Progress (1): 41/65 kB Progress (1): 45/65 kB Progress (1): 49/65 kB Progress (1): 53/65 kB Progress (1): 57/65 kB Progress (1): 61/65 kB Progress (1): 65 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/41/commons-parent-41.pom (65 kB at 2.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-core/0.15/apache-rat-core-0.15.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-api/0.15/apache-rat-api-0.15.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar +Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar +Progress (1): 4.1/133 kB Progress (1): 8.2/133 kB Progress (1): 12/133 kB Progress (1): 16/133 kB Progress (1): 20/133 kB Progress (1): 24/133 kB Progress (1): 28/133 kB Progress (1): 32/133 kB Progress (1): 36/133 kB Progress (1): 40/133 kB Progress (1): 44/133 kB Progress (1): 49/133 kB Progress (1): 53/133 kB Progress (1): 57/133 kB Progress (1): 61/133 kB Progress (1): 65/133 kB Progress (2): 65/133 kB | 4.1/10 kB Progress (2): 65/133 kB | 8.2/10 kB Progress (2): 65/133 kB | 10 kB Progress (2): 69/133 kB | 10 kB Progress (2): 73/133 kB | 10 kB Progress (2): 77/133 kB | 10 kB Progress (2): 81/133 kB | 10 kB Progress (2): 85/133 kB | 10 kB Progress (2): 90/133 kB | 10 kB Progress (2): 94/133 kB | 10 kB Progress (2): 98/133 kB | 10 kB Progress (2): 102/133 kB | 10 kB Progress (2): 106/133 kB | 10 kB Progress (2): 110/133 kB | 10 kB Progress (2): 114/133 kB | 10 kB Progress (2): 118/133 kB | 10 kB Progress (2): 122/133 kB | 10 kB Progress (2): 126/133 kB | 10 kB Progress (2): 130/133 kB | 10 kB Progress (2): 133 kB | 10 kB Progress (3): 133 kB | 10 kB | 0/1.0 MB Progress (3): 133 kB | 10 kB | 0/1.0 MB Progress (4): 133 kB | 10 kB | 0/1.0 MB | 4.1/58 kB Progress (4): 133 kB | 10 kB | 0/1.0 MB | 8.2/58 kB Progress (4): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB Progress (5): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB | 4.1/752 kB Progress (5): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB | 8.2/752 kB Progress (5): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB | 12/752 kB Progress (5): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB | 16/752 kB Progress (5): 133 kB | 10 kB | 0/1.0 MB | 12/58 kB | 20/752 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-api/0.15/apache-rat-api-0.15.jar (10 kB at 290 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar +Progress (4): 133 kB | 0/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 20/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 25/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 29/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 33/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 37/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 41/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 45/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 12/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 16/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 20/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 25/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 29/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 33/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 37/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 41/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 45/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 49/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 53/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 57/58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Progress (4): 133 kB | 0.1/1.0 MB | 58 kB | 49/752 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/rat/apache-rat-core/0.15/apache-rat-core-0.15.jar (133 kB at 2.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar +Progress (3): 0.1/1.0 MB | 58 kB | 53/752 kB Progress (3): 0.1/1.0 MB | 58 kB | 53/752 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 4.1/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 8.2/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 8.2/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 8.2/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 8.2/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 53/752 kB | 8.2/80 kB Progress (4): 0.1/1.0 MB | 58 kB | 57/752 kB | 8.2/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 57/752 kB | 8.2/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 57/752 kB | 12/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 57/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 57/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 61/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 16/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 20/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 25/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 64/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 68/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 72/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 76/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 80/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 29/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 33/80 kB Progress (4): 0.2/1.0 MB | 58 kB | 84/752 kB | 33/80 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.5.0/commons-cli-1.5.0.jar (58 kB at 897 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar +Progress (3): 0.2/1.0 MB | 88/752 kB | 33/80 kB Progress (3): 0.2/1.0 MB | 92/752 kB | 33/80 kB Progress (3): 0.2/1.0 MB | 92/752 kB | 33/80 kB Progress (3): 0.2/1.0 MB | 92/752 kB | 33/80 kB Progress (4): 0.2/1.0 MB | 92/752 kB | 33/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 33/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 33/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 37/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 41/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 92/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 96/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 101/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 105/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 45/80 kB | 4.1/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 45/80 kB | 8.2/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 45/80 kB | 12/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 45/80 kB | 16/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 45/80 kB | 16/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 49/80 kB | 16/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 49/80 kB | 16/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 49/80 kB | 16/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 49/80 kB | 20/68 kB Progress (4): 0.3/1.0 MB | 109/752 kB | 49/80 kB | 24/68 kB Progress (4): 0.3/1.0 MB | 113/752 kB | 49/80 kB | 24/68 kB Progress (4): 0.3/1.0 MB | 117/752 kB | 49/80 kB | 24/68 kB Progress (4): 0.3/1.0 MB | 121/752 kB | 49/80 kB | 24/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 49/80 kB | 24/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 49/80 kB | 28/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 49/80 kB | 32/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 49/80 kB | 32/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 53/80 kB | 32/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 53/80 kB | 32/68 kB Progress (4): 0.3/1.0 MB | 125/752 kB | 53/80 kB | 36/68 kB Progress (4): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 4.1/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 8.2/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 12/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 16/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 20/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 25/26 kB Progress (5): 0.3/1.0 MB | 129/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 133/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 137/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 141/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 146/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 150/752 kB | 53/80 kB | 36/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 150/752 kB | 53/80 kB | 40/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 150/752 kB | 53/80 kB | 40/68 kB | 26 kB Progress (5): 0.3/1.0 MB | 150/752 kB | 57/80 kB | 40/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 150/752 kB | 57/80 kB | 40/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 154/752 kB | 57/80 kB | 40/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 154/752 kB | 57/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 154/752 kB | 57/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 154/752 kB | 61/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 154/752 kB | 61/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 158/752 kB | 61/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 162/752 kB | 61/80 kB | 44/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 162/752 kB | 61/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 166/752 kB | 61/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 166/752 kB | 61/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 166/752 kB | 66/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 166/752 kB | 66/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 170/752 kB | 66/80 kB | 49/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 170/752 kB | 66/80 kB | 53/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 170/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.4/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.5/1.0 MB | 174/752 kB | 66/80 kB | 57/68 kB | 26 kB Progress (5): 0.5/1.0 MB | 174/752 kB | 70/80 kB | 57/68 kB | 26 kB Progress (5): 0.5/1.0 MB | 174/752 kB | 74/80 kB | 57/68 kB | 26 kB Progress (5): 0.5/1.0 MB | 174/752 kB | 78/80 kB | 57/68 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.2.1/maven-repository-metadata-2.2.1.jar (26 kB at 227 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar +Progress (4): 0.5/1.0 MB | 178/752 kB | 78/80 kB | 57/68 kB Progress (4): 0.5/1.0 MB | 182/752 kB | 78/80 kB | 57/68 kB Progress (4): 0.5/1.0 MB | 187/752 kB | 78/80 kB | 57/68 kB Progress (4): 0.5/1.0 MB | 191/752 kB | 78/80 kB | 57/68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 78/80 kB | 57/68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 78/80 kB | 61/68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 78/80 kB | 65/68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 78/80 kB | 68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 78/80 kB | 68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 195/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 199/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 199/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 203/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 203/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 207/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 211/752 kB | 80 kB | 68 kB Progress (4): 0.5/1.0 MB | 211/752 kB | 80 kB | 68 kB Progress (5): 0.5/1.0 MB | 211/752 kB | 80 kB | 68 kB | 4.1/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 4.1/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 8.2/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 12/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 16/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 20/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 20/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 20/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 20/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 20/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 25/194 kB Progress (5): 0.5/1.0 MB | 215/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 219/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 223/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 228/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 232/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 236/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 240/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 244/752 kB | 80 kB | 68 kB | 29/194 kB Progress (5): 0.5/1.0 MB | 248/752 kB | 80 kB | 68 kB | 29/194 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.2.1/maven-artifact-2.2.1.jar (80 kB at 558 kB/s) +Progress (4): 0.6/1.0 MB | 248/752 kB | 68 kB | 29/194 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.2.1/maven-artifact-manager-2.2.1.jar (68 kB at 466 kB/s) +Progress (3): 0.6/1.0 MB | 248/752 kB | 29/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 29/194 kB Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar +Progress (3): 0.6/1.0 MB | 252/752 kB | 33/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 37/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 41/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 45/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 49/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 53/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 57/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 57/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 61/194 kB Downloading from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar +Progress (3): 0.6/1.0 MB | 252/752 kB | 61/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 61/194 kB Progress (3): 0.6/1.0 MB | 252/752 kB | 66/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 66/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 70/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 74/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 74/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 74/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 74/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 74/194 kB Progress (3): 0.6/1.0 MB | 256/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 260/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 264/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 268/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 273/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 277/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 281/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 285/752 kB | 78/194 kB Progress (3): 0.6/1.0 MB | 285/752 kB | 82/194 kB Progress (3): 0.6/1.0 MB | 285/752 kB | 86/194 kB Progress (3): 0.6/1.0 MB | 285/752 kB | 86/194 kB Progress (3): 0.6/1.0 MB | 289/752 kB | 86/194 kB Progress (3): 0.6/1.0 MB | 293/752 kB | 86/194 kB Progress (4): 0.6/1.0 MB | 293/752 kB | 86/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 293/752 kB | 86/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 293/752 kB | 86/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 297/752 kB | 86/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 297/752 kB | 90/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 301/752 kB | 90/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 90/194 kB | 4.1/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 90/194 kB | 8.2/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 90/194 kB | 12/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 90/194 kB | 16/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 94/194 kB | 16/38 kB Progress (4): 0.6/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB Progress (4): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB Progress (5): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB | 4.1/332 kB Progress (5): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB | 8.2/332 kB Progress (5): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB | 12/332 kB Progress (5): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 16/38 kB | 16/332 kB Progress (5): 0.7/1.0 MB | 305/752 kB | 98/194 kB | 20/38 kB | 16/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 98/194 kB | 20/38 kB | 16/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 16/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 20/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 25/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 25/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 25/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 29/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 20/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 24/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 309/752 kB | 102/194 kB | 28/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 314/752 kB | 102/194 kB | 28/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 314/752 kB | 106/194 kB | 28/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 318/752 kB | 106/194 kB | 28/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 28/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 32/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 33/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 37/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 41/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 45/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 49/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 53/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 57/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 61/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 36/38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 322/752 kB | 106/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 106/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 111/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 115/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 119/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 123/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 123/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 66/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 70/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 74/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 78/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 82/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 127/194 kB | 38 kB | 86/332 kB Progress (5): 0.7/1.0 MB | 326/752 kB | 131/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 131/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 135/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 139/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 143/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 147/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 152/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 326/752 kB | 156/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 330/752 kB | 156/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 156/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 160/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 164/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 38 kB | 86/332 kB Progress (5): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 38 kB | 86/332 kB Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar (38 kB at 179 kB/s) +Progress (4): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 90/332 kB Progress (4): 0.8/1.0 MB | 334/752 kB | 168/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 334/752 kB | 172/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 334/752 kB | 176/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 334/752 kB | 180/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 334/752 kB | 180/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 338/752 kB | 180/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 180/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 180/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 184/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 188/194 kB | 94/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 188/194 kB | 98/332 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar +Progress (4): 0.8/1.0 MB | 342/752 kB | 188/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 342/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 346/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 350/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 354/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 193/194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 102/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 106/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 111/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 115/332 kB Progress (4): 0.8/1.0 MB | 359/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 359/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 359/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 363/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 119/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 123/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 127/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 131/332 kB Progress (4): 0.9/1.0 MB | 367/752 kB | 194 kB | 131/332 kB Progress (4): 0.9/1.0 MB | 371/752 kB | 194 kB | 131/332 kB Progress (4): 0.9/1.0 MB | 371/752 kB | 194 kB | 131/332 kB Progress (4): 0.9/1.0 MB | 371/752 kB | 194 kB | 135/332 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9-stable-1/plexus-container-default-1.0-alpha-9-stable-1.jar (194 kB at 768 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar +Progress (4): 0.9/1.0 MB | 371/752 kB | 135/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 371/752 kB | 139/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 371/752 kB | 139/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 139/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 139/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 143/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 147/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 147/332 kB | 4.1/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 147/332 kB | 8.2/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 147/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 152/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 156/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 375/752 kB | 160/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 379/752 kB | 160/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 12/88 kB Progress (4): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB | 4.1/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB | 4.1/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB | 8.2/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB | 12/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 16/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 20/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 24/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 383/752 kB | 160/332 kB | 28/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 387/752 kB | 160/332 kB | 28/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 387/752 kB | 164/332 kB | 28/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 387/752 kB | 164/332 kB | 32/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 16/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 20/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 25/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 29/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 33/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 37/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 391/752 kB | 164/332 kB | 32/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 164/332 kB | 32/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 164/332 kB | 36/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 164/332 kB | 40/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 164/332 kB | 44/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 164/332 kB | 49/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 168/332 kB | 49/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 168/332 kB | 53/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 395/752 kB | 168/332 kB | 57/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 400/752 kB | 168/332 kB | 57/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 41/156 kB Progress (5): 0.9/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 45/156 kB Progress (5): 0.9/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 49/156 kB Progress (5): 0.9/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 53/156 kB Progress (5): 0.9/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 57/156 kB Progress (5): 1.0/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 57/156 kB Progress (5): 1.0/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 61/156 kB Progress (5): 1.0/1.0 MB | 404/752 kB | 168/332 kB | 57/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 168/332 kB | 57/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 168/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 172/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 176/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 180/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 184/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 188/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 61/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 408/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 412/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 416/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 420/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 424/752 kB | 193/332 kB | 65/88 kB | 64/156 kB Progress (5): 1.0/1.0 MB | 424/752 kB | 193/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 193/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 193/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 197/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 201/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 205/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 209/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 213/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 217/332 kB | 65/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 217/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 221/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 225/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 225/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0/1.0 MB | 428/752 kB | 225/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0 MB | 428/752 kB | 225/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0 MB | 432/752 kB | 225/332 kB | 69/88 kB | 68/156 kB Progress (5): 1.0 MB | 432/752 kB | 225/332 kB | 69/88 kB | 73/156 kB Progress (5): 1.0 MB | 436/752 kB | 225/332 kB | 69/88 kB | 73/156 kB Progress (5): 1.0 MB | 436/752 kB | 225/332 kB | 69/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 229/332 kB | 69/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 233/332 kB | 69/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 233/332 kB | 73/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 238/332 kB | 73/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 242/332 kB | 73/88 kB | 77/156 kB Progress (5): 1.0 MB | 436/752 kB | 242/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 436/752 kB | 246/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 436/752 kB | 250/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 436/752 kB | 254/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 436/752 kB | 258/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 441/752 kB | 258/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 441/752 kB | 262/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 441/752 kB | 266/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 81/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 85/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 89/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 93/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 97/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 101/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 73/88 kB | 105/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 77/88 kB | 105/156 kB Progress (5): 1.0 MB | 441/752 kB | 270/332 kB | 77/88 kB | 109/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 109/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 114/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 118/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 122/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 126/156 kB Progress (5): 1.0 MB | 441/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar (1.0 MB at 3.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar +Progress (4): 445/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 449/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 453/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 457/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 461/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 465/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 469/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 473/752 kB | 274/332 kB | 77/88 kB | 130/156 kB Progress (4): 473/752 kB | 274/332 kB | 77/88 kB | 134/156 kB Progress (4): 473/752 kB | 274/332 kB | 77/88 kB | 138/156 kB Progress (4): 473/752 kB | 274/332 kB | 77/88 kB | 142/156 kB Progress (4): 473/752 kB | 274/332 kB | 77/88 kB | 146/156 kB Progress (4): 473/752 kB | 279/332 kB | 77/88 kB | 146/156 kB Progress (4): 473/752 kB | 283/332 kB | 77/88 kB | 146/156 kB Progress (4): 473/752 kB | 287/332 kB | 77/88 kB | 146/156 kB Progress (4): 473/752 kB | 291/332 kB | 77/88 kB | 146/156 kB Progress (4): 473/752 kB | 291/332 kB | 81/88 kB | 146/156 kB Progress (4): 473/752 kB | 295/332 kB | 81/88 kB | 146/156 kB Progress (4): 477/752 kB | 295/332 kB | 81/88 kB | 146/156 kB Progress (4): 481/752 kB | 295/332 kB | 81/88 kB | 146/156 kB Progress (4): 481/752 kB | 295/332 kB | 81/88 kB | 150/156 kB Progress (4): 486/752 kB | 295/332 kB | 81/88 kB | 150/156 kB Progress (4): 486/752 kB | 299/332 kB | 81/88 kB | 150/156 kB Progress (4): 486/752 kB | 299/332 kB | 85/88 kB | 150/156 kB Progress (4): 486/752 kB | 299/332 kB | 88 kB | 150/156 kB Progress (5): 486/752 kB | 299/332 kB | 88 kB | 150/156 kB | 4.1/49 kB Progress (5): 486/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 490/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 494/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 498/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 502/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 506/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 510/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 514/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 518/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 522/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 527/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 531/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 535/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 539/752 kB | 299/332 kB | 88 kB | 150/156 kB | 8.2/49 kB Progress (5): 539/752 kB | 299/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 543/752 kB | 299/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 543/752 kB | 303/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 543/752 kB | 307/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 543/752 kB | 311/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 543/752 kB | 315/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 547/752 kB | 315/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 551/752 kB | 315/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 555/752 kB | 315/332 kB | 88 kB | 154/156 kB | 8.2/49 kB Progress (5): 555/752 kB | 315/332 kB | 88 kB | 154/156 kB | 12/49 kB Progress (5): 555/752 kB | 315/332 kB | 88 kB | 154/156 kB | 16/49 kB Progress (5): 555/752 kB | 315/332 kB | 88 kB | 156 kB | 16/49 kB Progress (5): 559/752 kB | 315/332 kB | 88 kB | 156 kB | 16/49 kB Progress (5): 563/752 kB | 315/332 kB | 88 kB | 156 kB | 16/49 kB Progress (5): 567/752 kB | 315/332 kB | 88 kB | 156 kB | 16/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 16/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 20/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 24/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 28/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 32/49 kB Progress (5): 572/752 kB | 315/332 kB | 88 kB | 156 kB | 36/49 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.2.1/maven-model-2.2.1.jar (88 kB at 242 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar +Progress (4): 572/752 kB | 319/332 kB | 156 kB | 36/49 kB Progress (4): 572/752 kB | 324/332 kB | 156 kB | 36/49 kB Progress (4): 572/752 kB | 324/332 kB | 156 kB | 40/49 kB Progress (4): 572/752 kB | 324/332 kB | 156 kB | 44/49 kB Progress (4): 576/752 kB | 324/332 kB | 156 kB | 44/49 kB Progress (4): 580/752 kB | 324/332 kB | 156 kB | 44/49 kB Progress (4): 580/752 kB | 324/332 kB | 156 kB | 49/49 kB Progress (4): 580/752 kB | 324/332 kB | 156 kB | 49 kB Progress (4): 584/752 kB | 324/332 kB | 156 kB | 49 kB Progress (4): 588/752 kB | 324/332 kB | 156 kB | 49 kB Progress (4): 592/752 kB | 324/332 kB | 156 kB | 49 kB Progress (4): 592/752 kB | 328/332 kB | 156 kB | 49 kB Progress (4): 592/752 kB | 332 kB | 156 kB | 49 kB Progress (4): 596/752 kB | 332 kB | 156 kB | 49 kB Progress (4): 600/752 kB | 332 kB | 156 kB | 49 kB Progress (4): 604/752 kB | 332 kB | 156 kB | 49 kB Progress (4): 608/752 kB | 332 kB | 156 kB | 49 kB Progress (4): 613/752 kB | 332 kB | 156 kB | 49 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.2.1/maven-project-2.2.1.jar (156 kB at 412 kB/s) +Progress (3): 617/752 kB | 332 kB | 49 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar +Progress (4): 617/752 kB | 332 kB | 49 kB | 4.1/35 kB Progress (4): 621/752 kB | 332 kB | 49 kB | 4.1/35 kB Downloaded from central: https://repo.maven.apache.org/maven2/backport-util-concurrent/backport-util-concurrent/3.1/backport-util-concurrent-3.1.jar (332 kB at 851 kB/s) +Progress (3): 621/752 kB | 49 kB | 8.2/35 kB Progress (3): 621/752 kB | 49 kB | 12/35 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.2.1/maven-settings-2.2.1.jar (49 kB at 123 kB/s) +Progress (2): 625/752 kB | 12/35 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar +Progress (3): 625/752 kB | 12/35 kB | 4.1/30 kB Progress (3): 625/752 kB | 12/35 kB | 8.2/30 kB Progress (3): 625/752 kB | 12/35 kB | 12/30 kB Progress (3): 625/752 kB | 12/35 kB | 16/30 kB Progress (3): 625/752 kB | 16/35 kB | 16/30 kB Progress (3): 625/752 kB | 16/35 kB | 20/30 kB Progress (3): 625/752 kB | 16/35 kB | 25/30 kB Progress (3): 629/752 kB | 16/35 kB | 25/30 kB Progress (3): 633/752 kB | 16/35 kB | 25/30 kB Progress (3): 633/752 kB | 20/35 kB | 25/30 kB Progress (3): 633/752 kB | 25/35 kB | 25/30 kB Progress (3): 637/752 kB | 25/35 kB | 25/30 kB Progress (3): 637/752 kB | 29/35 kB | 25/30 kB Progress (3): 637/752 kB | 29/35 kB | 29/30 kB Progress (3): 637/752 kB | 29/35 kB | 30 kB Progress (3): 637/752 kB | 33/35 kB | 30 kB Progress (3): 641/752 kB | 33/35 kB | 30 kB Progress (3): 645/752 kB | 33/35 kB | 30 kB Progress (3): 645/752 kB | 35 kB | 30 kB Progress (4): 645/752 kB | 35 kB | 30 kB | 4.1/51 kB Progress (5): 645/752 kB | 35 kB | 30 kB | 4.1/51 kB | 4.1/218 kB Progress (5): 645/752 kB | 35 kB | 30 kB | 4.1/51 kB | 8.2/218 kB Progress (5): 649/752 kB | 35 kB | 30 kB | 4.1/51 kB | 8.2/218 kB Progress (5): 653/752 kB | 35 kB | 30 kB | 4.1/51 kB | 8.2/218 kB Progress (5): 653/752 kB | 35 kB | 30 kB | 8.2/51 kB | 8.2/218 kB Progress (5): 658/752 kB | 35 kB | 30 kB | 8.2/51 kB | 8.2/218 kB Progress (5): 658/752 kB | 35 kB | 30 kB | 8.2/51 kB | 12/218 kB Progress (5): 658/752 kB | 35 kB | 30 kB | 8.2/51 kB | 16/218 kB Progress (5): 658/752 kB | 35 kB | 30 kB | 8.2/51 kB | 20/218 kB Progress (5): 658/752 kB | 35 kB | 30 kB | 12/51 kB | 20/218 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.2.1/maven-plugin-registry-2.2.1.jar (30 kB at 69 kB/s) +Progress (4): 662/752 kB | 35 kB | 12/51 kB | 20/218 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.jar +Progress (4): 662/752 kB | 35 kB | 12/51 kB | 25/218 kB Progress (4): 662/752 kB | 35 kB | 16/51 kB | 25/218 kB Progress (4): 662/752 kB | 35 kB | 16/51 kB | 29/218 kB Progress (4): 662/752 kB | 35 kB | 16/51 kB | 33/218 kB Progress (4): 666/752 kB | 35 kB | 16/51 kB | 33/218 kB Progress (4): 670/752 kB | 35 kB | 16/51 kB | 33/218 kB Progress (4): 670/752 kB | 35 kB | 16/51 kB | 37/218 kB Progress (4): 670/752 kB | 35 kB | 16/51 kB | 41/218 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.2.1/maven-profile-2.2.1.jar (35 kB at 80 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar +Progress (3): 670/752 kB | 16/51 kB | 45/218 kB Progress (3): 670/752 kB | 16/51 kB | 49/218 kB Progress (3): 670/752 kB | 16/51 kB | 53/218 kB Progress (3): 670/752 kB | 16/51 kB | 57/218 kB Progress (3): 670/752 kB | 16/51 kB | 61/218 kB Progress (3): 674/752 kB | 16/51 kB | 61/218 kB Progress (3): 674/752 kB | 20/51 kB | 61/218 kB Progress (3): 678/752 kB | 20/51 kB | 61/218 kB Progress (3): 682/752 kB | 20/51 kB | 61/218 kB Progress (3): 686/752 kB | 20/51 kB | 61/218 kB Progress (4): 686/752 kB | 20/51 kB | 61/218 kB | 4.1/12 kB Progress (4): 686/752 kB | 20/51 kB | 61/218 kB | 8.2/12 kB Progress (4): 686/752 kB | 20/51 kB | 66/218 kB | 8.2/12 kB Progress (4): 686/752 kB | 20/51 kB | 70/218 kB | 8.2/12 kB Progress (4): 686/752 kB | 20/51 kB | 70/218 kB | 12 kB Progress (5): 686/752 kB | 20/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 690/752 kB | 20/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 690/752 kB | 25/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 690/752 kB | 29/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 694/752 kB | 29/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 699/752 kB | 29/51 kB | 70/218 kB | 12 kB | 4.1/4.2 kB Progress (5): 699/752 kB | 29/51 kB | 70/218 kB | 12 kB | 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.11.1/doxia-logging-api-1.11.1.jar (12 kB at 25 kB/s) +Progress (4): 699/752 kB | 29/51 kB | 74/218 kB | 4.2 kB Progress (4): 699/752 kB | 29/51 kB | 78/218 kB | 4.2 kB Progress (4): 699/752 kB | 29/51 kB | 82/218 kB | 4.2 kB Progress (4): 699/752 kB | 29/51 kB | 86/218 kB | 4.2 kB Progress (4): 699/752 kB | 29/51 kB | 90/218 kB | 4.2 kB Progress (4): 699/752 kB | 29/51 kB | 94/218 kB | 4.2 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar +Progress (4): 703/752 kB | 29/51 kB | 94/218 kB | 4.2 kB Progress (4): 703/752 kB | 33/51 kB | 94/218 kB | 4.2 kB Progress (4): 707/752 kB | 33/51 kB | 94/218 kB | 4.2 kB Progress (4): 711/752 kB | 33/51 kB | 94/218 kB | 4.2 kB Progress (4): 715/752 kB | 33/51 kB | 94/218 kB | 4.2 kB Progress (4): 719/752 kB | 33/51 kB | 94/218 kB | 4.2 kB Progress (4): 719/752 kB | 33/51 kB | 98/218 kB | 4.2 kB Progress (4): 719/752 kB | 33/51 kB | 102/218 kB | 4.2 kB Progress (4): 723/752 kB | 33/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 33/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 37/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 41/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 45/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 49/51 kB | 102/218 kB | 4.2 kB Progress (4): 727/752 kB | 51 kB | 102/218 kB | 4.2 kB Progress (4): 731/752 kB | 51 kB | 102/218 kB | 4.2 kB Progress (4): 735/752 kB | 51 kB | 102/218 kB | 4.2 kB Progress (4): 735/752 kB | 51 kB | 106/218 kB | 4.2 kB Progress (4): 735/752 kB | 51 kB | 111/218 kB | 4.2 kB Progress (4): 735/752 kB | 51 kB | 115/218 kB | 4.2 kB Progress (4): 735/752 kB | 51 kB | 119/218 kB | 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.0/plexus-component-annotations-2.1.0.jar (4.2 kB at 8.6 kB/s) +Progress (3): 740/752 kB | 51 kB | 119/218 kB Progress (3): 740/752 kB | 51 kB | 123/218 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar +Progress (4): 740/752 kB | 51 kB | 123/218 kB | 4.1/183 kB Progress (4): 740/752 kB | 51 kB | 127/218 kB | 4.1/183 kB Progress (4): 744/752 kB | 51 kB | 127/218 kB | 4.1/183 kB Progress (4): 748/752 kB | 51 kB | 127/218 kB | 4.1/183 kB Progress (4): 748/752 kB | 51 kB | 131/218 kB | 4.1/183 kB Progress (4): 748/752 kB | 51 kB | 135/218 kB | 4.1/183 kB Progress (4): 748/752 kB | 51 kB | 135/218 kB | 8.2/183 kB Progress (4): 748/752 kB | 51 kB | 135/218 kB | 12/183 kB Progress (4): 748/752 kB | 51 kB | 139/218 kB | 12/183 kB Progress (4): 748/752 kB | 51 kB | 143/218 kB | 12/183 kB Progress (4): 748/752 kB | 51 kB | 147/218 kB | 12/183 kB Progress (4): 752/752 kB | 51 kB | 147/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 147/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 152/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 156/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 160/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 164/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 168/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 172/218 kB | 12/183 kB Progress (4): 752 kB | 51 kB | 172/218 kB | 16/183 kB Progress (4): 752 kB | 51 kB | 172/218 kB | 20/183 kB Progress (4): 752 kB | 51 kB | 172/218 kB | 25/183 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.11/plexus-interpolation-1.11.jar (51 kB at 100 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar +Progress (3): 752 kB | 172/218 kB | 29/183 kB Progress (3): 752 kB | 176/218 kB | 29/183 kB Progress (3): 752 kB | 176/218 kB | 33/183 kB Progress (3): 752 kB | 180/218 kB | 33/183 kB Progress (3): 752 kB | 184/218 kB | 33/183 kB Progress (4): 752 kB | 184/218 kB | 33/183 kB | 4.1/780 kB Progress (4): 752 kB | 188/218 kB | 33/183 kB | 4.1/780 kB Progress (4): 752 kB | 188/218 kB | 37/183 kB | 4.1/780 kB Progress (4): 752 kB | 188/218 kB | 37/183 kB | 8.2/780 kB Progress (4): 752 kB | 193/218 kB | 37/183 kB | 8.2/780 kB Progress (4): 752 kB | 193/218 kB | 37/183 kB | 12/780 kB Progress (4): 752 kB | 193/218 kB | 41/183 kB | 12/780 kB Progress (4): 752 kB | 193/218 kB | 41/183 kB | 16/780 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar (752 kB at 1.4 MB/s) +Progress (3): 197/218 kB | 41/183 kB | 16/780 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar +Progress (3): 197/218 kB | 45/183 kB | 16/780 kB Progress (3): 197/218 kB | 49/183 kB | 16/780 kB Progress (3): 197/218 kB | 53/183 kB | 16/780 kB Progress (3): 197/218 kB | 53/183 kB | 20/780 kB Progress (3): 197/218 kB | 57/183 kB | 20/780 kB Progress (3): 197/218 kB | 61/183 kB | 20/780 kB Progress (3): 197/218 kB | 64/183 kB | 20/780 kB Progress (3): 201/218 kB | 64/183 kB | 20/780 kB Progress (4): 201/218 kB | 64/183 kB | 20/780 kB | 4.1/335 kB Progress (4): 201/218 kB | 64/183 kB | 20/780 kB | 8.2/335 kB Progress (4): 201/218 kB | 64/183 kB | 25/780 kB | 8.2/335 kB Progress (4): 201/218 kB | 64/183 kB | 25/780 kB | 12/335 kB Progress (4): 201/218 kB | 68/183 kB | 25/780 kB | 12/335 kB Progress (4): 205/218 kB | 68/183 kB | 25/780 kB | 12/335 kB Progress (4): 209/218 kB | 68/183 kB | 25/780 kB | 12/335 kB Progress (4): 209/218 kB | 72/183 kB | 25/780 kB | 12/335 kB Progress (4): 209/218 kB | 76/183 kB | 25/780 kB | 12/335 kB Progress (4): 209/218 kB | 80/183 kB | 25/780 kB | 12/335 kB Progress (4): 209/218 kB | 80/183 kB | 25/780 kB | 16/335 kB Progress (4): 209/218 kB | 80/183 kB | 29/780 kB | 16/335 kB Progress (4): 209/218 kB | 80/183 kB | 29/780 kB | 20/335 kB Progress (4): 209/218 kB | 84/183 kB | 29/780 kB | 20/335 kB Progress (4): 209/218 kB | 88/183 kB | 29/780 kB | 20/335 kB Progress (5): 209/218 kB | 88/183 kB | 29/780 kB | 20/335 kB | 4.1/328 kB Progress (5): 209/218 kB | 92/183 kB | 29/780 kB | 20/335 kB | 4.1/328 kB Progress (5): 213/218 kB | 92/183 kB | 29/780 kB | 20/335 kB | 4.1/328 kB Progress (5): 213/218 kB | 97/183 kB | 29/780 kB | 20/335 kB | 4.1/328 kB Progress (5): 213/218 kB | 97/183 kB | 29/780 kB | 20/335 kB | 8.2/328 kB Progress (5): 213/218 kB | 97/183 kB | 29/780 kB | 20/335 kB | 12/328 kB Progress (5): 213/218 kB | 97/183 kB | 29/780 kB | 24/335 kB | 12/328 kB Progress (5): 213/218 kB | 97/183 kB | 33/780 kB | 24/335 kB | 12/328 kB Progress (5): 213/218 kB | 97/183 kB | 33/780 kB | 28/335 kB | 12/328 kB Progress (5): 213/218 kB | 97/183 kB | 33/780 kB | 32/335 kB | 12/328 kB Progress (5): 213/218 kB | 97/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 213/218 kB | 101/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 101/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 105/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 109/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 113/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 117/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 121/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 125/183 kB | 33/780 kB | 32/335 kB | 16/328 kB Progress (5): 217/218 kB | 125/183 kB | 33/780 kB | 32/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 33/780 kB | 36/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 37/780 kB | 36/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 37/780 kB | 40/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 37/780 kB | 44/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 37/780 kB | 49/335 kB | 20/328 kB Progress (5): 217/218 kB | 125/183 kB | 37/780 kB | 53/335 kB | 20/328 kB Progress (5): 217/218 kB | 129/183 kB | 37/780 kB | 53/335 kB | 20/328 kB Progress (5): 217/218 kB | 129/183 kB | 37/780 kB | 53/335 kB | 25/328 kB Progress (5): 218 kB | 129/183 kB | 37/780 kB | 53/335 kB | 25/328 kB Progress (5): 218 kB | 133/183 kB | 37/780 kB | 53/335 kB | 25/328 kB Progress (5): 218 kB | 133/183 kB | 37/780 kB | 53/335 kB | 29/328 kB Progress (5): 218 kB | 133/183 kB | 37/780 kB | 53/335 kB | 33/328 kB Progress (5): 218 kB | 133/183 kB | 37/780 kB | 53/335 kB | 37/328 kB Progress (5): 218 kB | 138/183 kB | 37/780 kB | 53/335 kB | 37/328 kB Progress (5): 218 kB | 138/183 kB | 37/780 kB | 57/335 kB | 37/328 kB Progress (5): 218 kB | 138/183 kB | 41/780 kB | 57/335 kB | 37/328 kB Progress (5): 218 kB | 138/183 kB | 41/780 kB | 61/335 kB | 37/328 kB Progress (5): 218 kB | 142/183 kB | 41/780 kB | 61/335 kB | 37/328 kB Progress (5): 218 kB | 142/183 kB | 41/780 kB | 61/335 kB | 41/328 kB Progress (5): 218 kB | 142/183 kB | 41/780 kB | 61/335 kB | 45/328 kB Progress (5): 218 kB | 146/183 kB | 41/780 kB | 61/335 kB | 45/328 kB Progress (5): 218 kB | 146/183 kB | 41/780 kB | 65/335 kB | 45/328 kB Progress (5): 218 kB | 146/183 kB | 45/780 kB | 65/335 kB | 45/328 kB Progress (5): 218 kB | 146/183 kB | 45/780 kB | 69/335 kB | 45/328 kB Progress (5): 218 kB | 146/183 kB | 45/780 kB | 73/335 kB | 45/328 kB Progress (5): 218 kB | 150/183 kB | 45/780 kB | 73/335 kB | 45/328 kB Progress (5): 218 kB | 150/183 kB | 45/780 kB | 73/335 kB | 49/328 kB Progress (5): 218 kB | 154/183 kB | 45/780 kB | 73/335 kB | 49/328 kB Progress (5): 218 kB | 154/183 kB | 45/780 kB | 73/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 45/780 kB | 77/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 49/780 kB | 77/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 53/780 kB | 77/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 57/780 kB | 77/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 61/780 kB | 77/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 61/780 kB | 81/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 61/780 kB | 85/335 kB | 53/328 kB Progress (5): 218 kB | 154/183 kB | 61/780 kB | 85/335 kB | 57/328 kB Progress (5): 218 kB | 158/183 kB | 61/780 kB | 85/335 kB | 57/328 kB Progress (5): 218 kB | 158/183 kB | 61/780 kB | 85/335 kB | 61/328 kB Progress (5): 218 kB | 158/183 kB | 61/780 kB | 90/335 kB | 61/328 kB Progress (5): 218 kB | 158/183 kB | 66/780 kB | 90/335 kB | 61/328 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar (218 kB at 377 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar +Progress (4): 158/183 kB | 70/780 kB | 90/335 kB | 61/328 kB Progress (4): 158/183 kB | 70/780 kB | 94/335 kB | 61/328 kB Progress (4): 158/183 kB | 70/780 kB | 94/335 kB | 66/328 kB Progress (4): 158/183 kB | 70/780 kB | 94/335 kB | 70/328 kB Progress (4): 162/183 kB | 70/780 kB | 94/335 kB | 70/328 kB Progress (4): 162/183 kB | 70/780 kB | 94/335 kB | 74/328 kB Progress (4): 162/183 kB | 70/780 kB | 94/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 94/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 98/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 102/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 106/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 110/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 114/335 kB | 78/328 kB Progress (4): 166/183 kB | 70/780 kB | 118/335 kB | 78/328 kB Progress (4): 166/183 kB | 74/780 kB | 118/335 kB | 78/328 kB Progress (4): 166/183 kB | 78/780 kB | 118/335 kB | 78/328 kB Progress (4): 166/183 kB | 78/780 kB | 122/335 kB | 78/328 kB Progress (4): 166/183 kB | 78/780 kB | 126/335 kB | 78/328 kB Progress (4): 170/183 kB | 78/780 kB | 126/335 kB | 78/328 kB Progress (4): 174/183 kB | 78/780 kB | 126/335 kB | 78/328 kB Progress (4): 178/183 kB | 78/780 kB | 126/335 kB | 78/328 kB Progress (4): 178/183 kB | 78/780 kB | 126/335 kB | 82/328 kB Progress (4): 178/183 kB | 78/780 kB | 126/335 kB | 86/328 kB Progress (4): 183/183 kB | 78/780 kB | 126/335 kB | 86/328 kB Progress (4): 183 kB | 78/780 kB | 126/335 kB | 86/328 kB Progress (4): 183 kB | 78/780 kB | 130/335 kB | 86/328 kB Progress (4): 183 kB | 82/780 kB | 130/335 kB | 86/328 kB Progress (4): 183 kB | 82/780 kB | 135/335 kB | 86/328 kB Progress (4): 183 kB | 82/780 kB | 139/335 kB | 86/328 kB Progress (4): 183 kB | 82/780 kB | 143/335 kB | 86/328 kB Progress (4): 183 kB | 82/780 kB | 143/335 kB | 90/328 kB Progress (5): 183 kB | 82/780 kB | 143/335 kB | 90/328 kB | 4.1/60 kB Progress (5): 183 kB | 82/780 kB | 143/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 82/780 kB | 147/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 82/780 kB | 151/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 86/780 kB | 151/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 90/780 kB | 151/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 94/328 kB | 4.1/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 98/328 kB | 4.1/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 102/328 kB | 4.1/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 102/328 kB | 8.2/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 102/328 kB | 12/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 106/328 kB | 12/60 kB Progress (5): 183 kB | 90/780 kB | 155/335 kB | 111/328 kB | 12/60 kB Progress (5): 183 kB | 90/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (5): 183 kB | 94/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.3/commons-text-1.3.jar (183 kB at 296 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar +Progress (4): 98/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (4): 102/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (4): 106/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (4): 111/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 159/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 163/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 167/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 171/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 176/335 kB | 111/328 kB | 12/60 kB Progress (4): 115/780 kB | 176/335 kB | 115/328 kB | 12/60 kB Progress (4): 115/780 kB | 176/335 kB | 115/328 kB | 16/60 kB Progress (4): 115/780 kB | 176/335 kB | 119/328 kB | 16/60 kB Progress (4): 115/780 kB | 176/335 kB | 119/328 kB | 20/60 kB Progress (4): 115/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 119/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 123/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 127/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 131/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 135/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 139/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 143/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 147/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 152/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 180/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 184/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 188/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 192/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 196/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 200/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 204/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 208/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 212/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 217/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 221/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 225/335 kB | 119/328 kB | 20/60 kB Progress (4): 156/780 kB | 225/335 kB | 119/328 kB | 24/60 kB Progress (4): 156/780 kB | 225/335 kB | 123/328 kB | 24/60 kB Progress (4): 156/780 kB | 225/335 kB | 123/328 kB | 28/60 kB Progress (4): 156/780 kB | 225/335 kB | 123/328 kB | 32/60 kB Progress (4): 156/780 kB | 225/335 kB | 123/328 kB | 36/60 kB Progress (4): 156/780 kB | 225/335 kB | 123/328 kB | 40/60 kB Progress (4): 160/780 kB | 225/335 kB | 123/328 kB | 40/60 kB Progress (4): 160/780 kB | 225/335 kB | 123/328 kB | 44/60 kB Progress (4): 160/780 kB | 225/335 kB | 127/328 kB | 44/60 kB Progress (4): 160/780 kB | 225/335 kB | 131/328 kB | 44/60 kB Progress (4): 160/780 kB | 229/335 kB | 131/328 kB | 44/60 kB Progress (4): 160/780 kB | 229/335 kB | 131/328 kB | 49/60 kB Progress (5): 160/780 kB | 229/335 kB | 131/328 kB | 49/60 kB | 4.1/17 kB Progress (5): 164/780 kB | 229/335 kB | 131/328 kB | 49/60 kB | 4.1/17 kB Progress (5): 168/780 kB | 229/335 kB | 131/328 kB | 49/60 kB | 4.1/17 kB Progress (5): 168/780 kB | 229/335 kB | 131/328 kB | 49/60 kB | 8.2/17 kB Progress (5): 168/780 kB | 229/335 kB | 131/328 kB | 49/60 kB | 12/17 kB Progress (5): 168/780 kB | 229/335 kB | 131/328 kB | 53/60 kB | 12/17 kB Progress (5): 168/780 kB | 229/335 kB | 135/328 kB | 53/60 kB | 12/17 kB Progress (5): 168/780 kB | 229/335 kB | 139/328 kB | 53/60 kB | 12/17 kB Progress (5): 168/780 kB | 233/335 kB | 139/328 kB | 53/60 kB | 12/17 kB Progress (5): 168/780 kB | 233/335 kB | 143/328 kB | 53/60 kB | 12/17 kB Progress (5): 168/780 kB | 233/335 kB | 143/328 kB | 57/60 kB | 12/17 kB Progress (5): 168/780 kB | 233/335 kB | 143/328 kB | 60 kB | 12/17 kB Progress (5): 168/780 kB | 233/335 kB | 143/328 kB | 60 kB | 16/17 kB Progress (5): 172/780 kB | 233/335 kB | 143/328 kB | 60 kB | 16/17 kB Progress (5): 176/780 kB | 233/335 kB | 143/328 kB | 60 kB | 16/17 kB Progress (5): 180/780 kB | 233/335 kB | 143/328 kB | 60 kB | 16/17 kB Progress (5): 184/780 kB | 233/335 kB | 143/328 kB | 60 kB | 16/17 kB Progress (5): 184/780 kB | 233/335 kB | 143/328 kB | 60 kB | 17 kB Progress (5): 184/780 kB | 233/335 kB | 147/328 kB | 60 kB | 17 kB Progress (5): 184/780 kB | 233/335 kB | 152/328 kB | 60 kB | 17 kB Progress (5): 184/780 kB | 233/335 kB | 156/328 kB | 60 kB | 17 kB Progress (5): 184/780 kB | 237/335 kB | 156/328 kB | 60 kB | 17 kB Progress (5): 184/780 kB | 241/335 kB | 156/328 kB | 60 kB | 17 kB Progress (5): 188/780 kB | 241/335 kB | 156/328 kB | 60 kB | 17 kB Progress (5): 193/780 kB | 241/335 kB | 156/328 kB | 60 kB | 17 kB Progress (5): 193/780 kB | 241/335 kB | 160/328 kB | 60 kB | 17 kB Progress (5): 193/780 kB | 245/335 kB | 160/328 kB | 60 kB | 17 kB Progress (5): 193/780 kB | 245/335 kB | 164/328 kB | 60 kB | 17 kB Progress (5): 197/780 kB | 245/335 kB | 164/328 kB | 60 kB | 17 kB Progress (5): 197/780 kB | 245/335 kB | 168/328 kB | 60 kB | 17 kB Progress (5): 197/780 kB | 249/335 kB | 168/328 kB | 60 kB | 17 kB Progress (5): 197/780 kB | 249/335 kB | 172/328 kB | 60 kB | 17 kB Progress (5): 197/780 kB | 249/335 kB | 176/328 kB | 60 kB | 17 kB Progress (5): 201/780 kB | 249/335 kB | 176/328 kB | 60 kB | 17 kB Progress (5): 205/780 kB | 249/335 kB | 176/328 kB | 60 kB | 17 kB Progress (5): 205/780 kB | 249/335 kB | 180/328 kB | 60 kB | 17 kB Progress (5): 205/780 kB | 249/335 kB | 184/328 kB | 60 kB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar (60 kB at 90 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.jar +Progress (4): 205/780 kB | 253/335 kB | 184/328 kB | 17 kB Progress (4): 205/780 kB | 257/335 kB | 184/328 kB | 17 kB Progress (4): 205/780 kB | 262/335 kB | 184/328 kB | 17 kB Progress (4): 205/780 kB | 262/335 kB | 188/328 kB | 17 kB Progress (4): 205/780 kB | 262/335 kB | 193/328 kB | 17 kB Progress (4): 209/780 kB | 262/335 kB | 193/328 kB | 17 kB Progress (4): 209/780 kB | 262/335 kB | 197/328 kB | 17 kB Progress (4): 209/780 kB | 262/335 kB | 201/328 kB | 17 kB Progress (4): 209/780 kB | 266/335 kB | 201/328 kB | 17 kB Progress (4): 209/780 kB | 270/335 kB | 201/328 kB | 17 kB Progress (4): 209/780 kB | 274/335 kB | 201/328 kB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar (17 kB at 26 kB/s) +Progress (3): 209/780 kB | 278/335 kB | 201/328 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar +Progress (3): 209/780 kB | 278/335 kB | 205/328 kB Progress (3): 213/780 kB | 278/335 kB | 205/328 kB Progress (3): 213/780 kB | 278/335 kB | 209/328 kB Progress (3): 213/780 kB | 278/335 kB | 213/328 kB Progress (3): 213/780 kB | 282/335 kB | 213/328 kB Progress (3): 213/780 kB | 282/335 kB | 217/328 kB Progress (3): 217/780 kB | 282/335 kB | 217/328 kB Progress (3): 221/780 kB | 282/335 kB | 217/328 kB Progress (3): 225/780 kB | 282/335 kB | 217/328 kB Progress (3): 225/780 kB | 282/335 kB | 221/328 kB Progress (3): 225/780 kB | 286/335 kB | 221/328 kB Progress (3): 225/780 kB | 286/335 kB | 225/328 kB Progress (3): 229/780 kB | 286/335 kB | 225/328 kB Progress (3): 233/780 kB | 286/335 kB | 225/328 kB Progress (3): 233/780 kB | 286/335 kB | 229/328 kB Progress (3): 233/780 kB | 286/335 kB | 233/328 kB Progress (3): 233/780 kB | 286/335 kB | 238/328 kB Progress (3): 233/780 kB | 286/335 kB | 242/328 kB Progress (3): 233/780 kB | 286/335 kB | 246/328 kB Progress (3): 233/780 kB | 286/335 kB | 250/328 kB Progress (3): 233/780 kB | 286/335 kB | 254/328 kB Progress (3): 233/780 kB | 286/335 kB | 258/328 kB Progress (3): 233/780 kB | 290/335 kB | 258/328 kB Progress (3): 233/780 kB | 294/335 kB | 258/328 kB Progress (3): 238/780 kB | 294/335 kB | 258/328 kB Progress (4): 238/780 kB | 294/335 kB | 258/328 kB | 4.1/12 kB Progress (4): 238/780 kB | 294/335 kB | 258/328 kB | 8.2/12 kB Progress (4): 238/780 kB | 294/335 kB | 262/328 kB | 8.2/12 kB Progress (4): 238/780 kB | 294/335 kB | 262/328 kB | 12 kB Progress (4): 238/780 kB | 298/335 kB | 262/328 kB | 12 kB Progress (4): 238/780 kB | 303/335 kB | 262/328 kB | 12 kB Progress (4): 238/780 kB | 307/335 kB | 262/328 kB | 12 kB Progress (4): 238/780 kB | 311/335 kB | 262/328 kB | 12 kB Progress (4): 242/780 kB | 311/335 kB | 262/328 kB | 12 kB Progress (4): 242/780 kB | 315/335 kB | 262/328 kB | 12 kB Progress (4): 246/780 kB | 315/335 kB | 262/328 kB | 12 kB Progress (4): 250/780 kB | 315/335 kB | 262/328 kB | 12 kB Progress (4): 250/780 kB | 315/335 kB | 266/328 kB | 12 kB Progress (4): 250/780 kB | 315/335 kB | 270/328 kB | 12 kB Progress (4): 250/780 kB | 315/335 kB | 274/328 kB | 12 kB Progress (4): 254/780 kB | 315/335 kB | 274/328 kB | 12 kB Progress (4): 258/780 kB | 315/335 kB | 274/328 kB | 12 kB Progress (4): 262/780 kB | 315/335 kB | 274/328 kB | 12 kB Progress (4): 266/780 kB | 315/335 kB | 274/328 kB | 12 kB Progress (5): 266/780 kB | 315/335 kB | 274/328 kB | 12 kB | 4.1/47 kB Progress (5): 266/780 kB | 319/335 kB | 274/328 kB | 12 kB | 4.1/47 kB Progress (5): 266/780 kB | 319/335 kB | 274/328 kB | 12 kB | 8.2/47 kB Progress (5): 266/780 kB | 319/335 kB | 274/328 kB | 12 kB | 12/47 kB Progress (5): 266/780 kB | 319/335 kB | 274/328 kB | 12 kB | 16/47 kB Progress (5): 266/780 kB | 319/335 kB | 279/328 kB | 12 kB | 16/47 kB Progress (5): 270/780 kB | 319/335 kB | 279/328 kB | 12 kB | 16/47 kB Progress (5): 274/780 kB | 319/335 kB | 279/328 kB | 12 kB | 16/47 kB Progress (5): 274/780 kB | 319/335 kB | 283/328 kB | 12 kB | 16/47 kB Progress (5): 274/780 kB | 319/335 kB | 283/328 kB | 12 kB | 20/47 kB Progress (5): 274/780 kB | 323/335 kB | 283/328 kB | 12 kB | 20/47 kB Progress (5): 274/780 kB | 323/335 kB | 283/328 kB | 12 kB | 25/47 kB Progress (5): 274/780 kB | 323/335 kB | 283/328 kB | 12 kB | 29/47 kB Progress (5): 274/780 kB | 323/335 kB | 283/328 kB | 12 kB | 33/47 kB Progress (5): 274/780 kB | 323/335 kB | 287/328 kB | 12 kB | 33/47 kB Progress (5): 274/780 kB | 323/335 kB | 291/328 kB | 12 kB | 33/47 kB Progress (5): 279/780 kB | 323/335 kB | 291/328 kB | 12 kB | 33/47 kB Progress (5): 279/780 kB | 323/335 kB | 295/328 kB | 12 kB | 33/47 kB Progress (5): 279/780 kB | 323/335 kB | 295/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 295/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 299/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 303/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 307/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 311/328 kB | 12 kB | 37/47 kB Progress (5): 279/780 kB | 327/335 kB | 311/328 kB | 12 kB | 41/47 kB Progress (5): 279/780 kB | 327/335 kB | 311/328 kB | 12 kB | 45/47 kB Progress (5): 279/780 kB | 327/335 kB | 311/328 kB | 12 kB | 47 kB Progress (5): 283/780 kB | 327/335 kB | 311/328 kB | 12 kB | 47 kB Progress (5): 287/780 kB | 327/335 kB | 311/328 kB | 12 kB | 47 kB Progress (5): 291/780 kB | 327/335 kB | 311/328 kB | 12 kB | 47 kB Progress (5): 291/780 kB | 327/335 kB | 315/328 kB | 12 kB | 47 kB Progress (5): 291/780 kB | 327/335 kB | 319/328 kB | 12 kB | 47 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.11.1/doxia-sink-api-1.11.1.jar (12 kB at 17 kB/s) +Progress (4): 291/780 kB | 331/335 kB | 319/328 kB | 47 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar +Progress (4): 291/780 kB | 331/335 kB | 324/328 kB | 47 kB Progress (4): 295/780 kB | 331/335 kB | 324/328 kB | 47 kB Progress (4): 295/780 kB | 331/335 kB | 328/328 kB | 47 kB Progress (4): 295/780 kB | 331/335 kB | 328 kB | 47 kB Progress (4): 299/780 kB | 331/335 kB | 328 kB | 47 kB Progress (4): 299/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 303/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 307/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 311/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 315/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 319/780 kB | 335 kB | 328 kB | 47 kB Progress (4): 324/780 kB | 335 kB | 328 kB | 47 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar (47 kB at 66 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar +Progress (3): 328/780 kB | 335 kB | 328 kB Progress (3): 332/780 kB | 335 kB | 328 kB Progress (3): 336/780 kB | 335 kB | 328 kB Progress (3): 340/780 kB | 335 kB | 328 kB Progress (3): 344/780 kB | 335 kB | 328 kB Progress (3): 348/780 kB | 335 kB | 328 kB Progress (3): 352/780 kB | 335 kB | 328 kB Progress (3): 356/780 kB | 335 kB | 328 kB Progress (3): 360/780 kB | 335 kB | 328 kB Progress (3): 365/780 kB | 335 kB | 328 kB Progress (3): 369/780 kB | 335 kB | 328 kB Progress (3): 373/780 kB | 335 kB | 328 kB Progress (3): 377/780 kB | 335 kB | 328 kB Progress (3): 381/780 kB | 335 kB | 328 kB Progress (3): 385/780 kB | 335 kB | 328 kB Progress (3): 389/780 kB | 335 kB | 328 kB Progress (3): 393/780 kB | 335 kB | 328 kB Progress (3): 397/780 kB | 335 kB | 328 kB Progress (3): 401/780 kB | 335 kB | 328 kB Progress (4): 401/780 kB | 335 kB | 328 kB | 4.1/12 kB Progress (4): 406/780 kB | 335 kB | 328 kB | 4.1/12 kB Progress (4): 406/780 kB | 335 kB | 328 kB | 8.2/12 kB Progress (4): 406/780 kB | 335 kB | 328 kB | 12/12 kB Progress (4): 410/780 kB | 335 kB | 328 kB | 12/12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 454 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar +Progress (3): 414/780 kB | 335 kB | 12/12 kB Progress (3): 414/780 kB | 335 kB | 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (335 kB at 459 kB/s) +Progress (2): 418/780 kB | 12 kB Progress (3): 418/780 kB | 12 kB | 4.1/12 kB Progress (3): 418/780 kB | 12 kB | 8.2/12 kB Progress (3): 422/780 kB | 12 kB | 8.2/12 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar +Progress (3): 426/780 kB | 12 kB | 8.2/12 kB Progress (3): 430/780 kB | 12 kB | 8.2/12 kB Progress (3): 430/780 kB | 12 kB | 12 kB Progress (3): 434/780 kB | 12 kB | 12 kB Progress (3): 438/780 kB | 12 kB | 12 kB Progress (3): 442/780 kB | 12 kB | 12 kB Progress (3): 446/780 kB | 12 kB | 12 kB Progress (3): 451/780 kB | 12 kB | 12 kB Progress (3): 455/780 kB | 12 kB | 12 kB Progress (3): 459/780 kB | 12 kB | 12 kB Progress (3): 463/780 kB | 12 kB | 12 kB Progress (4): 463/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 467/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 471/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 475/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 479/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 483/780 kB | 12 kB | 12 kB | 4.1/65 kB Progress (4): 483/780 kB | 12 kB | 12 kB | 8.2/65 kB Progress (4): 483/780 kB | 12 kB | 12 kB | 12/65 kB Progress (4): 487/780 kB | 12 kB | 12 kB | 12/65 kB Progress (4): 487/780 kB | 12 kB | 12 kB | 16/65 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.2.1/maven-plugin-api-2.2.1.jar (12 kB at 17 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar +Progress (4): 487/780 kB | 12 kB | 16/65 kB | 4.1/16 kB Progress (4): 487/780 kB | 12 kB | 16/65 kB | 8.2/16 kB Progress (4): 487/780 kB | 12 kB | 16/65 kB | 12/16 kB Progress (4): 487/780 kB | 12 kB | 16/65 kB | 16 kB Progress (4): 487/780 kB | 12 kB | 20/65 kB | 16 kB Progress (4): 492/780 kB | 12 kB | 20/65 kB | 16 kB Progress (4): 496/780 kB | 12 kB | 20/65 kB | 16 kB Progress (4): 496/780 kB | 12 kB | 24/65 kB | 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 16 kB/s) +Progress (3): 496/780 kB | 28/65 kB | 16 kB Progress (3): 500/780 kB | 28/65 kB | 16 kB Progress (3): 500/780 kB | 32/65 kB | 16 kB Progress (3): 500/780 kB | 36/65 kB | 16 kB Progress (3): 500/780 kB | 40/65 kB | 16 kB Progress (3): 500/780 kB | 44/65 kB | 16 kB Progress (3): 500/780 kB | 49/65 kB | 16 kB Progress (3): 500/780 kB | 53/65 kB | 16 kB Progress (3): 500/780 kB | 57/65 kB | 16 kB Progress (3): 500/780 kB | 61/65 kB | 16 kB Progress (3): 500/780 kB | 65/65 kB | 16 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar +Progress (3): 500/780 kB | 65 kB | 16 kB Progress (3): 504/780 kB | 65 kB | 16 kB Progress (3): 508/780 kB | 65 kB | 16 kB Progress (3): 512/780 kB | 65 kB | 16 kB Progress (3): 516/780 kB | 65 kB | 16 kB Progress (3): 520/780 kB | 65 kB | 16 kB Progress (3): 524/780 kB | 65 kB | 16 kB Progress (3): 528/780 kB | 65 kB | 16 kB Progress (3): 532/780 kB | 65 kB | 16 kB Progress (3): 537/780 kB | 65 kB | 16 kB Progress (4): 537/780 kB | 65 kB | 16 kB | 4.1/18 kB Progress (4): 537/780 kB | 65 kB | 16 kB | 8.2/18 kB Progress (4): 541/780 kB | 65 kB | 16 kB | 8.2/18 kB Progress (4): 541/780 kB | 65 kB | 16 kB | 12/18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar (16 kB at 21 kB/s) +Progress (3): 545/780 kB | 65 kB | 12/18 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar +Progress (3): 545/780 kB | 65 kB | 16/18 kB Progress (3): 549/780 kB | 65 kB | 16/18 kB Progress (3): 549/780 kB | 65 kB | 18 kB Progress (3): 553/780 kB | 65 kB | 18 kB Progress (3): 557/780 kB | 65 kB | 18 kB Progress (3): 561/780 kB | 65 kB | 18 kB Progress (3): 565/780 kB | 65 kB | 18 kB Progress (3): 569/780 kB | 65 kB | 18 kB Progress (3): 573/780 kB | 65 kB | 18 kB Progress (3): 578/780 kB | 65 kB | 18 kB Progress (3): 582/780 kB | 65 kB | 18 kB Progress (3): 586/780 kB | 65 kB | 18 kB Progress (3): 590/780 kB | 65 kB | 18 kB Progress (3): 594/780 kB | 65 kB | 18 kB Progress (3): 598/780 kB | 65 kB | 18 kB Progress (3): 602/780 kB | 65 kB | 18 kB Progress (3): 606/780 kB | 65 kB | 18 kB Progress (3): 610/780 kB | 65 kB | 18 kB Progress (3): 614/780 kB | 65 kB | 18 kB Progress (4): 614/780 kB | 65 kB | 18 kB | 4.1/8.1 kB Progress (4): 618/780 kB | 65 kB | 18 kB | 4.1/8.1 kB Progress (4): 618/780 kB | 65 kB | 18 kB | 8.1 kB Progress (4): 623/780 kB | 65 kB | 18 kB | 8.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar (65 kB at 84 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar +Progress (3): 627/780 kB | 18 kB | 8.1 kB Progress (3): 631/780 kB | 18 kB | 8.1 kB Progress (3): 635/780 kB | 18 kB | 8.1 kB Progress (3): 639/780 kB | 18 kB | 8.1 kB Progress (3): 643/780 kB | 18 kB | 8.1 kB Progress (3): 647/780 kB | 18 kB | 8.1 kB Progress (3): 651/780 kB | 18 kB | 8.1 kB Progress (3): 655/780 kB | 18 kB | 8.1 kB Progress (3): 659/780 kB | 18 kB | 8.1 kB Progress (3): 664/780 kB | 18 kB | 8.1 kB Progress (3): 668/780 kB | 18 kB | 8.1 kB Progress (4): 668/780 kB | 18 kB | 8.1 kB | 4.1/450 kB Progress (4): 672/780 kB | 18 kB | 8.1 kB | 4.1/450 kB Progress (4): 676/780 kB | 18 kB | 8.1 kB | 4.1/450 kB Progress (4): 676/780 kB | 18 kB | 8.1 kB | 8.2/450 kB Progress (4): 676/780 kB | 18 kB | 8.1 kB | 12/450 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar (18 kB at 23 kB/s) +Progress (3): 680/780 kB | 8.1 kB | 12/450 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar +Progress (3): 680/780 kB | 8.1 kB | 16/450 kB Progress (3): 680/780 kB | 8.1 kB | 20/450 kB Progress (3): 680/780 kB | 8.1 kB | 25/450 kB Progress (3): 680/780 kB | 8.1 kB | 29/450 kB Progress (3): 684/780 kB | 8.1 kB | 29/450 kB Progress (3): 688/780 kB | 8.1 kB | 29/450 kB Progress (3): 692/780 kB | 8.1 kB | 29/450 kB Progress (3): 696/780 kB | 8.1 kB | 29/450 kB Progress (3): 700/780 kB | 8.1 kB | 29/450 kB Progress (3): 705/780 kB | 8.1 kB | 29/450 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 10 kB/s) +Progress (2): 705/780 kB | 33/450 kB Progress (2): 705/780 kB | 37/450 kB Progress (2): 705/780 kB | 41/450 kB Progress (2): 705/780 kB | 45/450 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar +Progress (2): 709/780 kB | 45/450 kB Progress (3): 709/780 kB | 45/450 kB | 4.1/262 kB Progress (3): 713/780 kB | 45/450 kB | 4.1/262 kB Progress (3): 713/780 kB | 49/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 49/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 53/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 57/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 61/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 66/450 kB | 4.1/262 kB Progress (3): 717/780 kB | 66/450 kB | 8.2/262 kB Progress (3): 717/780 kB | 66/450 kB | 12/262 kB Progress (3): 721/780 kB | 66/450 kB | 12/262 kB Progress (3): 721/780 kB | 70/450 kB | 12/262 kB Progress (3): 721/780 kB | 74/450 kB | 12/262 kB Progress (3): 721/780 kB | 74/450 kB | 16/262 kB Progress (3): 721/780 kB | 78/450 kB | 16/262 kB Progress (3): 725/780 kB | 78/450 kB | 16/262 kB Progress (4): 725/780 kB | 78/450 kB | 16/262 kB | 4.1/347 kB Progress (4): 725/780 kB | 78/450 kB | 20/262 kB | 4.1/347 kB Progress (4): 725/780 kB | 78/450 kB | 20/262 kB | 8.2/347 kB Progress (4): 725/780 kB | 78/450 kB | 20/262 kB | 12/347 kB Progress (4): 729/780 kB | 78/450 kB | 20/262 kB | 12/347 kB Progress (4): 733/780 kB | 78/450 kB | 20/262 kB | 12/347 kB Progress (4): 737/780 kB | 78/450 kB | 20/262 kB | 12/347 kB Progress (4): 737/780 kB | 82/450 kB | 20/262 kB | 12/347 kB Progress (4): 737/780 kB | 86/450 kB | 20/262 kB | 12/347 kB Progress (4): 741/780 kB | 86/450 kB | 20/262 kB | 12/347 kB Progress (4): 745/780 kB | 86/450 kB | 20/262 kB | 12/347 kB Progress (4): 745/780 kB | 86/450 kB | 20/262 kB | 16/347 kB Progress (4): 745/780 kB | 86/450 kB | 25/262 kB | 16/347 kB Progress (4): 745/780 kB | 86/450 kB | 29/262 kB | 16/347 kB Progress (4): 750/780 kB | 86/450 kB | 29/262 kB | 16/347 kB Progress (4): 754/780 kB | 86/450 kB | 29/262 kB | 16/347 kB Progress (5): 754/780 kB | 86/450 kB | 29/262 kB | 16/347 kB | 4.1/189 kB Progress (5): 754/780 kB | 90/450 kB | 29/262 kB | 16/347 kB | 4.1/189 kB Progress (5): 758/780 kB | 90/450 kB | 29/262 kB | 16/347 kB | 4.1/189 kB Progress (5): 758/780 kB | 90/450 kB | 29/262 kB | 16/347 kB | 8.2/189 kB Progress (5): 758/780 kB | 90/450 kB | 29/262 kB | 16/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 33/262 kB | 16/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 33/262 kB | 20/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 37/262 kB | 20/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 41/262 kB | 20/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 45/262 kB | 20/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 49/262 kB | 20/347 kB | 12/189 kB Progress (5): 758/780 kB | 90/450 kB | 49/262 kB | 20/347 kB | 16/189 kB Progress (5): 762/780 kB | 90/450 kB | 49/262 kB | 20/347 kB | 16/189 kB Progress (5): 762/780 kB | 94/450 kB | 49/262 kB | 20/347 kB | 16/189 kB Progress (5): 766/780 kB | 94/450 kB | 49/262 kB | 20/347 kB | 16/189 kB Progress (5): 766/780 kB | 94/450 kB | 49/262 kB | 20/347 kB | 20/189 kB Progress (5): 766/780 kB | 94/450 kB | 53/262 kB | 20/347 kB | 20/189 kB Progress (5): 766/780 kB | 94/450 kB | 53/262 kB | 25/347 kB | 20/189 kB Progress (5): 766/780 kB | 94/450 kB | 57/262 kB | 25/347 kB | 20/189 kB Progress (5): 766/780 kB | 94/450 kB | 57/262 kB | 25/347 kB | 25/189 kB Progress (5): 770/780 kB | 94/450 kB | 57/262 kB | 25/347 kB | 25/189 kB Progress (5): 770/780 kB | 98/450 kB | 57/262 kB | 25/347 kB | 25/189 kB Progress (5): 770/780 kB | 102/450 kB | 57/262 kB | 25/347 kB | 25/189 kB Progress (5): 774/780 kB | 102/450 kB | 57/262 kB | 25/347 kB | 25/189 kB Progress (5): 774/780 kB | 102/450 kB | 57/262 kB | 25/347 kB | 29/189 kB Progress (5): 774/780 kB | 102/450 kB | 57/262 kB | 25/347 kB | 33/189 kB Progress (5): 774/780 kB | 102/450 kB | 61/262 kB | 25/347 kB | 33/189 kB Progress (5): 774/780 kB | 102/450 kB | 61/262 kB | 29/347 kB | 33/189 kB Progress (5): 774/780 kB | 102/450 kB | 61/262 kB | 33/347 kB | 33/189 kB Progress (5): 774/780 kB | 102/450 kB | 61/262 kB | 33/347 kB | 37/189 kB Progress (5): 778/780 kB | 102/450 kB | 61/262 kB | 33/347 kB | 37/189 kB Progress (5): 778/780 kB | 106/450 kB | 61/262 kB | 33/347 kB | 37/189 kB Progress (5): 778/780 kB | 111/450 kB | 61/262 kB | 33/347 kB | 37/189 kB Progress (5): 780 kB | 111/450 kB | 61/262 kB | 33/347 kB | 37/189 kB Progress (5): 780 kB | 111/450 kB | 61/262 kB | 37/347 kB | 37/189 kB Progress (5): 780 kB | 111/450 kB | 61/262 kB | 41/347 kB | 37/189 kB Progress (5): 780 kB | 111/450 kB | 61/262 kB | 41/347 kB | 41/189 kB Progress (5): 780 kB | 111/450 kB | 66/262 kB | 41/347 kB | 41/189 kB Progress (5): 780 kB | 111/450 kB | 66/262 kB | 45/347 kB | 41/189 kB Progress (5): 780 kB | 111/450 kB | 66/262 kB | 49/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 66/262 kB | 49/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 66/262 kB | 53/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 66/262 kB | 57/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 70/262 kB | 57/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 74/262 kB | 57/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 78/262 kB | 57/347 kB | 41/189 kB Progress (5): 780 kB | 115/450 kB | 78/262 kB | 57/347 kB | 45/189 kB Progress (5): 780 kB | 115/450 kB | 78/262 kB | 61/347 kB | 45/189 kB Progress (5): 780 kB | 119/450 kB | 78/262 kB | 61/347 kB | 45/189 kB Progress (5): 780 kB | 119/450 kB | 78/262 kB | 65/347 kB | 45/189 kB Progress (5): 780 kB | 119/450 kB | 82/262 kB | 65/347 kB | 45/189 kB Progress (5): 780 kB | 119/450 kB | 82/262 kB | 65/347 kB | 49/189 kB Progress (5): 780 kB | 119/450 kB | 82/262 kB | 69/347 kB | 49/189 kB Progress (5): 780 kB | 119/450 kB | 82/262 kB | 73/347 kB | 49/189 kB Progress (5): 780 kB | 123/450 kB | 82/262 kB | 73/347 kB | 49/189 kB Progress (5): 780 kB | 127/450 kB | 82/262 kB | 73/347 kB | 49/189 kB Progress (5): 780 kB | 127/450 kB | 82/262 kB | 77/347 kB | 49/189 kB Progress (5): 780 kB | 127/450 kB | 86/262 kB | 77/347 kB | 49/189 kB Progress (5): 780 kB | 127/450 kB | 90/262 kB | 77/347 kB | 49/189 kB Progress (5): 780 kB | 127/450 kB | 90/262 kB | 77/347 kB | 53/189 kB Progress (5): 780 kB | 127/450 kB | 94/262 kB | 77/347 kB | 53/189 kB Progress (5): 780 kB | 127/450 kB | 94/262 kB | 81/347 kB | 53/189 kB Progress (5): 780 kB | 131/450 kB | 94/262 kB | 81/347 kB | 53/189 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar (780 kB at 916 kB/s) +Progress (4): 135/450 kB | 94/262 kB | 81/347 kB | 53/189 kB Progress (4): 139/450 kB | 94/262 kB | 81/347 kB | 53/189 kB Progress (4): 139/450 kB | 94/262 kB | 85/347 kB | 53/189 kB Progress (4): 139/450 kB | 94/262 kB | 89/347 kB | 53/189 kB Progress (4): 139/450 kB | 98/262 kB | 89/347 kB | 53/189 kB Progress (4): 139/450 kB | 102/262 kB | 89/347 kB | 53/189 kB Progress (4): 139/450 kB | 102/262 kB | 89/347 kB | 57/189 kB Progress (4): 139/450 kB | 102/262 kB | 89/347 kB | 61/189 kB Progress (4): 139/450 kB | 106/262 kB | 89/347 kB | 61/189 kB Progress (4): 139/450 kB | 106/262 kB | 93/347 kB | 61/189 kB Progress (4): 139/450 kB | 106/262 kB | 97/347 kB | 61/189 kB Progress (4): 143/450 kB | 106/262 kB | 97/347 kB | 61/189 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar +Progress (4): 147/450 kB | 106/262 kB | 97/347 kB | 61/189 kB Progress (4): 147/450 kB | 106/262 kB | 101/347 kB | 61/189 kB Progress (4): 147/450 kB | 111/262 kB | 101/347 kB | 61/189 kB Progress (4): 147/450 kB | 111/262 kB | 101/347 kB | 64/189 kB Progress (4): 147/450 kB | 111/262 kB | 106/347 kB | 64/189 kB Progress (4): 147/450 kB | 111/262 kB | 110/347 kB | 64/189 kB Progress (4): 152/450 kB | 111/262 kB | 110/347 kB | 64/189 kB Progress (4): 156/450 kB | 111/262 kB | 110/347 kB | 64/189 kB Progress (4): 156/450 kB | 111/262 kB | 114/347 kB | 64/189 kB Progress (4): 156/450 kB | 111/262 kB | 114/347 kB | 68/189 kB Progress (4): 156/450 kB | 115/262 kB | 114/347 kB | 68/189 kB Progress (4): 156/450 kB | 115/262 kB | 114/347 kB | 72/189 kB Progress (4): 156/450 kB | 115/262 kB | 114/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 118/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 122/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 126/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 130/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 134/347 kB | 76/189 kB Progress (4): 156/450 kB | 115/262 kB | 138/347 kB | 76/189 kB Progress (4): 160/450 kB | 115/262 kB | 138/347 kB | 76/189 kB Progress (4): 164/450 kB | 115/262 kB | 138/347 kB | 76/189 kB Progress (4): 168/450 kB | 115/262 kB | 138/347 kB | 76/189 kB Progress (4): 172/450 kB | 115/262 kB | 138/347 kB | 76/189 kB Progress (4): 172/450 kB | 115/262 kB | 138/347 kB | 80/189 kB Progress (4): 172/450 kB | 115/262 kB | 138/347 kB | 84/189 kB Progress (4): 172/450 kB | 119/262 kB | 138/347 kB | 84/189 kB Progress (4): 172/450 kB | 123/262 kB | 138/347 kB | 84/189 kB Progress (5): 172/450 kB | 123/262 kB | 138/347 kB | 84/189 kB | 4.1/144 kB Progress (5): 172/450 kB | 123/262 kB | 138/347 kB | 84/189 kB | 8.2/144 kB Progress (5): 176/450 kB | 123/262 kB | 138/347 kB | 84/189 kB | 8.2/144 kB Progress (5): 176/450 kB | 123/262 kB | 142/347 kB | 84/189 kB | 8.2/144 kB Progress (5): 176/450 kB | 123/262 kB | 146/347 kB | 84/189 kB | 8.2/144 kB Progress (5): 180/450 kB | 123/262 kB | 146/347 kB | 84/189 kB | 8.2/144 kB Progress (5): 180/450 kB | 123/262 kB | 146/347 kB | 84/189 kB | 12/144 kB Progress (5): 180/450 kB | 127/262 kB | 146/347 kB | 84/189 kB | 12/144 kB Progress (5): 180/450 kB | 127/262 kB | 146/347 kB | 88/189 kB | 12/144 kB Progress (5): 180/450 kB | 127/262 kB | 146/347 kB | 92/189 kB | 12/144 kB Progress (5): 180/450 kB | 131/262 kB | 146/347 kB | 92/189 kB | 12/144 kB Progress (5): 180/450 kB | 131/262 kB | 146/347 kB | 92/189 kB | 16/144 kB Progress (5): 184/450 kB | 131/262 kB | 146/347 kB | 92/189 kB | 16/144 kB Progress (5): 184/450 kB | 131/262 kB | 151/347 kB | 92/189 kB | 16/144 kB Progress (5): 184/450 kB | 131/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 131/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 135/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 139/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 143/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 147/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 152/262 kB | 151/347 kB | 92/189 kB | 20/144 kB Progress (5): 188/450 kB | 152/262 kB | 151/347 kB | 97/189 kB | 20/144 kB Progress (5): 188/450 kB | 152/262 kB | 151/347 kB | 101/189 kB | 20/144 kB Progress (5): 188/450 kB | 152/262 kB | 151/347 kB | 105/189 kB | 20/144 kB Progress (5): 188/450 kB | 152/262 kB | 151/347 kB | 109/189 kB | 20/144 kB Progress (5): 188/450 kB | 156/262 kB | 151/347 kB | 109/189 kB | 20/144 kB Progress (5): 193/450 kB | 156/262 kB | 151/347 kB | 109/189 kB | 20/144 kB Progress (5): 193/450 kB | 156/262 kB | 151/347 kB | 109/189 kB | 25/144 kB Progress (5): 193/450 kB | 156/262 kB | 155/347 kB | 109/189 kB | 25/144 kB Progress (5): 193/450 kB | 156/262 kB | 159/347 kB | 109/189 kB | 25/144 kB Progress (5): 193/450 kB | 156/262 kB | 163/347 kB | 109/189 kB | 25/144 kB Progress (5): 193/450 kB | 156/262 kB | 167/347 kB | 109/189 kB | 25/144 kB Progress (5): 193/450 kB | 156/262 kB | 167/347 kB | 109/189 kB | 29/144 kB Progress (5): 197/450 kB | 156/262 kB | 167/347 kB | 109/189 kB | 29/144 kB Progress (5): 197/450 kB | 160/262 kB | 167/347 kB | 109/189 kB | 29/144 kB Progress (5): 197/450 kB | 164/262 kB | 167/347 kB | 109/189 kB | 29/144 kB Progress (5): 197/450 kB | 168/262 kB | 167/347 kB | 109/189 kB | 29/144 kB Progress (5): 197/450 kB | 168/262 kB | 167/347 kB | 113/189 kB | 29/144 kB Progress (5): 197/450 kB | 168/262 kB | 167/347 kB | 117/189 kB | 29/144 kB Progress (5): 201/450 kB | 168/262 kB | 167/347 kB | 117/189 kB | 29/144 kB Progress (5): 201/450 kB | 168/262 kB | 167/347 kB | 117/189 kB | 33/144 kB Progress (5): 201/450 kB | 168/262 kB | 171/347 kB | 117/189 kB | 33/144 kB Progress (5): 201/450 kB | 168/262 kB | 175/347 kB | 117/189 kB | 33/144 kB Progress (5): 201/450 kB | 168/262 kB | 175/347 kB | 121/189 kB | 33/144 kB Progress (5): 201/450 kB | 168/262 kB | 175/347 kB | 125/189 kB | 33/144 kB Progress (5): 201/450 kB | 168/262 kB | 175/347 kB | 129/189 kB | 33/144 kB Progress (5): 205/450 kB | 168/262 kB | 175/347 kB | 129/189 kB | 33/144 kB Progress (5): 205/450 kB | 168/262 kB | 175/347 kB | 133/189 kB | 33/144 kB Progress (5): 205/450 kB | 172/262 kB | 175/347 kB | 133/189 kB | 33/144 kB Progress (5): 205/450 kB | 176/262 kB | 175/347 kB | 133/189 kB | 33/144 kB Progress (5): 205/450 kB | 176/262 kB | 175/347 kB | 138/189 kB | 33/144 kB Progress (5): 205/450 kB | 176/262 kB | 175/347 kB | 142/189 kB | 33/144 kB Progress (5): 209/450 kB | 176/262 kB | 175/347 kB | 142/189 kB | 33/144 kB Progress (5): 209/450 kB | 176/262 kB | 179/347 kB | 142/189 kB | 33/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 33/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 37/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 41/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 45/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 49/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 53/144 kB Progress (5): 209/450 kB | 176/262 kB | 183/347 kB | 142/189 kB | 57/144 kB Progress (5): 209/450 kB | 176/262 kB | 187/347 kB | 142/189 kB | 57/144 kB Progress (5): 209/450 kB | 176/262 kB | 192/347 kB | 142/189 kB | 57/144 kB Progress (5): 209/450 kB | 176/262 kB | 196/347 kB | 142/189 kB | 57/144 kB Progress (5): 213/450 kB | 176/262 kB | 196/347 kB | 142/189 kB | 57/144 kB Progress (5): 217/450 kB | 176/262 kB | 196/347 kB | 142/189 kB | 57/144 kB Progress (5): 217/450 kB | 176/262 kB | 196/347 kB | 146/189 kB | 57/144 kB Progress (5): 217/450 kB | 180/262 kB | 196/347 kB | 146/189 kB | 57/144 kB Progress (5): 217/450 kB | 180/262 kB | 196/347 kB | 150/189 kB | 57/144 kB Progress (5): 221/450 kB | 180/262 kB | 196/347 kB | 150/189 kB | 57/144 kB Progress (5): 221/450 kB | 180/262 kB | 200/347 kB | 150/189 kB | 57/144 kB Progress (5): 221/450 kB | 180/262 kB | 204/347 kB | 150/189 kB | 57/144 kB Progress (5): 221/450 kB | 180/262 kB | 204/347 kB | 150/189 kB | 61/144 kB Progress (5): 221/450 kB | 180/262 kB | 208/347 kB | 150/189 kB | 61/144 kB Progress (5): 221/450 kB | 180/262 kB | 212/347 kB | 150/189 kB | 61/144 kB Progress (5): 225/450 kB | 180/262 kB | 212/347 kB | 150/189 kB | 61/144 kB Progress (5): 225/450 kB | 180/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 229/450 kB | 180/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 229/450 kB | 184/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 229/450 kB | 188/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 233/450 kB | 188/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 154/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 158/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 162/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 166/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 170/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 212/347 kB | 174/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 216/347 kB | 174/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 220/347 kB | 174/189 kB | 61/144 kB Progress (5): 238/450 kB | 188/262 kB | 220/347 kB | 174/189 kB | 65/144 kB Progress (5): 238/450 kB | 188/262 kB | 224/347 kB | 174/189 kB | 65/144 kB Progress (5): 238/450 kB | 188/262 kB | 224/347 kB | 178/189 kB | 65/144 kB Progress (5): 238/450 kB | 188/262 kB | 224/347 kB | 183/189 kB | 65/144 kB Progress (5): 242/450 kB | 188/262 kB | 224/347 kB | 183/189 kB | 65/144 kB Progress (5): 242/450 kB | 188/262 kB | 224/347 kB | 187/189 kB | 65/144 kB Progress (5): 242/450 kB | 193/262 kB | 224/347 kB | 187/189 kB | 65/144 kB Progress (5): 242/450 kB | 193/262 kB | 224/347 kB | 189 kB | 65/144 kB Progress (5): 242/450 kB | 197/262 kB | 224/347 kB | 189 kB | 65/144 kB Progress (5): 246/450 kB | 197/262 kB | 224/347 kB | 189 kB | 65/144 kB Progress (5): 246/450 kB | 197/262 kB | 228/347 kB | 189 kB | 65/144 kB Progress (5): 246/450 kB | 197/262 kB | 228/347 kB | 189 kB | 70/144 kB Progress (5): 246/450 kB | 197/262 kB | 232/347 kB | 189 kB | 70/144 kB Progress (5): 250/450 kB | 197/262 kB | 232/347 kB | 189 kB | 70/144 kB Progress (5): 250/450 kB | 201/262 kB | 232/347 kB | 189 kB | 70/144 kB Progress (5): 254/450 kB | 201/262 kB | 232/347 kB | 189 kB | 70/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 70/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 74/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 78/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 82/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 86/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 90/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 94/144 kB Progress (5): 254/450 kB | 201/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 258/450 kB | 201/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 262/450 kB | 201/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 262/450 kB | 205/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 262/450 kB | 209/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 262/450 kB | 213/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 262/450 kB | 217/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 266/450 kB | 217/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 270/450 kB | 217/262 kB | 237/347 kB | 189 kB | 98/144 kB Progress (5): 270/450 kB | 217/262 kB | 237/347 kB | 189 kB | 102/144 kB Progress (5): 270/450 kB | 217/262 kB | 237/347 kB | 189 kB | 106/144 kB Progress (5): 270/450 kB | 217/262 kB | 241/347 kB | 189 kB | 106/144 kB Progress (5): 270/450 kB | 217/262 kB | 241/347 kB | 189 kB | 111/144 kB Progress (5): 274/450 kB | 217/262 kB | 241/347 kB | 189 kB | 111/144 kB Progress (5): 274/450 kB | 221/262 kB | 241/347 kB | 189 kB | 111/144 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar (189 kB at 196 kB/s) +Progress (4): 274/450 kB | 225/262 kB | 241/347 kB | 111/144 kB Progress (4): 279/450 kB | 225/262 kB | 241/347 kB | 111/144 kB Progress (4): 279/450 kB | 225/262 kB | 241/347 kB | 115/144 kB Progress (4): 279/450 kB | 225/262 kB | 245/347 kB | 115/144 kB Progress (4): 283/450 kB | 225/262 kB | 245/347 kB | 115/144 kB Progress (4): 283/450 kB | 229/262 kB | 245/347 kB | 115/144 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar +Progress (4): 283/450 kB | 233/262 kB | 245/347 kB | 115/144 kB Progress (4): 283/450 kB | 233/262 kB | 249/347 kB | 115/144 kB Progress (4): 283/450 kB | 233/262 kB | 253/347 kB | 115/144 kB Progress (4): 283/450 kB | 233/262 kB | 257/347 kB | 115/144 kB Progress (4): 283/450 kB | 233/262 kB | 261/347 kB | 115/144 kB Progress (4): 287/450 kB | 233/262 kB | 261/347 kB | 115/144 kB Progress (4): 291/450 kB | 233/262 kB | 261/347 kB | 115/144 kB Progress (4): 291/450 kB | 233/262 kB | 261/347 kB | 119/144 kB Progress (4): 291/450 kB | 233/262 kB | 261/347 kB | 123/144 kB Progress (4): 291/450 kB | 233/262 kB | 261/347 kB | 127/144 kB Progress (4): 291/450 kB | 233/262 kB | 261/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 261/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 265/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 269/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 273/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 278/347 kB | 131/144 kB Progress (4): 295/450 kB | 233/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 238/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 242/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 246/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 250/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 254/262 kB | 282/347 kB | 131/144 kB Progress (4): 295/450 kB | 254/262 kB | 286/347 kB | 131/144 kB Progress (4): 295/450 kB | 254/262 kB | 290/347 kB | 131/144 kB Progress (4): 299/450 kB | 254/262 kB | 290/347 kB | 131/144 kB Progress (4): 303/450 kB | 254/262 kB | 290/347 kB | 131/144 kB Progress (4): 303/450 kB | 254/262 kB | 290/347 kB | 135/144 kB Progress (4): 307/450 kB | 254/262 kB | 290/347 kB | 135/144 kB Progress (5): 307/450 kB | 254/262 kB | 290/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 311/450 kB | 254/262 kB | 290/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 311/450 kB | 254/262 kB | 294/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 311/450 kB | 258/262 kB | 294/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 311/450 kB | 258/262 kB | 298/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 311/450 kB | 258/262 kB | 302/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 135/144 kB | 4.1/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 135/144 kB | 8.2/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 135/144 kB | 12/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 135/144 kB | 16/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 139/144 kB | 16/90 kB Progress (5): 315/450 kB | 258/262 kB | 302/347 kB | 139/144 kB | 20/90 kB Progress (5): 319/450 kB | 258/262 kB | 302/347 kB | 139/144 kB | 20/90 kB Progress (5): 319/450 kB | 258/262 kB | 306/347 kB | 139/144 kB | 20/90 kB Progress (5): 319/450 kB | 258/262 kB | 310/347 kB | 139/144 kB | 20/90 kB Progress (5): 319/450 kB | 262 kB | 310/347 kB | 139/144 kB | 20/90 kB Progress (5): 319/450 kB | 262 kB | 314/347 kB | 139/144 kB | 20/90 kB Progress (5): 324/450 kB | 262 kB | 314/347 kB | 139/144 kB | 20/90 kB Progress (5): 324/450 kB | 262 kB | 314/347 kB | 139/144 kB | 24/90 kB Progress (5): 324/450 kB | 262 kB | 314/347 kB | 143/144 kB | 24/90 kB Progress (5): 324/450 kB | 262 kB | 314/347 kB | 144 kB | 24/90 kB Progress (5): 324/450 kB | 262 kB | 314/347 kB | 144 kB | 28/90 kB Progress (5): 328/450 kB | 262 kB | 314/347 kB | 144 kB | 28/90 kB Progress (5): 328/450 kB | 262 kB | 319/347 kB | 144 kB | 28/90 kB Progress (5): 328/450 kB | 262 kB | 323/347 kB | 144 kB | 28/90 kB Progress (5): 328/450 kB | 262 kB | 327/347 kB | 144 kB | 28/90 kB Progress (5): 332/450 kB | 262 kB | 327/347 kB | 144 kB | 28/90 kB Progress (5): 332/450 kB | 262 kB | 327/347 kB | 144 kB | 32/90 kB Progress (5): 332/450 kB | 262 kB | 327/347 kB | 144 kB | 36/90 kB Progress (5): 332/450 kB | 262 kB | 327/347 kB | 144 kB | 40/90 kB Progress (5): 336/450 kB | 262 kB | 327/347 kB | 144 kB | 40/90 kB Progress (5): 336/450 kB | 262 kB | 331/347 kB | 144 kB | 40/90 kB Progress (5): 336/450 kB | 262 kB | 335/347 kB | 144 kB | 40/90 kB Progress (5): 336/450 kB | 262 kB | 339/347 kB | 144 kB | 40/90 kB Progress (5): 336/450 kB | 262 kB | 343/347 kB | 144 kB | 40/90 kB Progress (5): 340/450 kB | 262 kB | 343/347 kB | 144 kB | 40/90 kB Progress (5): 340/450 kB | 262 kB | 343/347 kB | 144 kB | 44/90 kB Progress (5): 340/450 kB | 262 kB | 343/347 kB | 144 kB | 49/90 kB Progress (5): 344/450 kB | 262 kB | 343/347 kB | 144 kB | 49/90 kB Progress (5): 344/450 kB | 262 kB | 347 kB | 144 kB | 49/90 kB Progress (5): 348/450 kB | 262 kB | 347 kB | 144 kB | 49/90 kB Progress (5): 352/450 kB | 262 kB | 347 kB | 144 kB | 49/90 kB Progress (5): 352/450 kB | 262 kB | 347 kB | 144 kB | 53/90 kB Progress (5): 356/450 kB | 262 kB | 347 kB | 144 kB | 53/90 kB Progress (5): 356/450 kB | 262 kB | 347 kB | 144 kB | 57/90 kB Progress (5): 360/450 kB | 262 kB | 347 kB | 144 kB | 57/90 kB Progress (5): 365/450 kB | 262 kB | 347 kB | 144 kB | 57/90 kB Progress (5): 369/450 kB | 262 kB | 347 kB | 144 kB | 57/90 kB Progress (5): 369/450 kB | 262 kB | 347 kB | 144 kB | 61/90 kB Progress (5): 369/450 kB | 262 kB | 347 kB | 144 kB | 65/90 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.4/commons-lang-2.4.jar (262 kB at 261 kB/s) +Progress (4): 369/450 kB | 347 kB | 144 kB | 69/90 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-digester/commons-digester/1.8/commons-digester-1.8.jar (144 kB at 143 kB/s) +Progress (3): 373/450 kB | 347 kB | 69/90 kB Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar +Progress (3): 373/450 kB | 347 kB | 73/90 kB Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar +Progress (3): 373/450 kB | 347 kB | 77/90 kB Progress (3): 373/450 kB | 347 kB | 81/90 kB Progress (3): 373/450 kB | 347 kB | 85/90 kB Progress (3): 373/450 kB | 347 kB | 90/90 kB Progress (3): 377/450 kB | 347 kB | 90/90 kB Progress (3): 381/450 kB | 347 kB | 90/90 kB Progress (3): 381/450 kB | 347 kB | 90 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 341 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar +Progress (2): 385/450 kB | 90 kB Progress (2): 389/450 kB | 90 kB Progress (2): 393/450 kB | 90 kB Progress (2): 397/450 kB | 90 kB Progress (2): 401/450 kB | 90 kB Progress (2): 406/450 kB | 90 kB Progress (2): 410/450 kB | 90 kB Progress (2): 414/450 kB | 90 kB Progress (2): 418/450 kB | 90 kB Progress (2): 422/450 kB | 90 kB Progress (2): 426/450 kB | 90 kB Progress (2): 430/450 kB | 90 kB Progress (2): 434/450 kB | 90 kB Progress (2): 438/450 kB | 90 kB Progress (2): 442/450 kB | 90 kB Progress (2): 446/450 kB | 90 kB Progress (2): 450 kB | 90 kB Progress (3): 450 kB | 90 kB | 4.1/65 kB Progress (3): 450 kB | 90 kB | 8.2/65 kB Progress (3): 450 kB | 90 kB | 12/65 kB Progress (3): 450 kB | 90 kB | 16/65 kB Progress (3): 450 kB | 90 kB | 20/65 kB Progress (3): 450 kB | 90 kB | 25/65 kB Progress (3): 450 kB | 90 kB | 29/65 kB Progress (3): 450 kB | 90 kB | 33/65 kB Progress (4): 450 kB | 90 kB | 33/65 kB | 4.1/457 kB Progress (4): 450 kB | 90 kB | 37/65 kB | 4.1/457 kB Progress (4): 450 kB | 90 kB | 37/65 kB | 8.2/457 kB Progress (4): 450 kB | 90 kB | 41/65 kB | 8.2/457 kB Progress (4): 450 kB | 90 kB | 41/65 kB | 12/457 kB Progress (4): 450 kB | 90 kB | 41/65 kB | 16/457 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 88 kB/s) +Progress (3): 450 kB | 45/65 kB | 16/457 kB Progress (3): 450 kB | 49/65 kB | 16/457 kB Progress (3): 450 kB | 53/65 kB | 16/457 kB Progress (3): 450 kB | 53/65 kB | 20/457 kB Progress (3): 450 kB | 57/65 kB | 20/457 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar +Progress (4): 450 kB | 57/65 kB | 20/457 kB | 4.1/11 kB Progress (4): 450 kB | 57/65 kB | 20/457 kB | 8.2/11 kB Progress (4): 450 kB | 57/65 kB | 20/457 kB | 11 kB Progress (4): 450 kB | 61/65 kB | 20/457 kB | 11 kB Progress (4): 450 kB | 65 kB | 20/457 kB | 11 kB Progress (4): 450 kB | 65 kB | 24/457 kB | 11 kB Progress (4): 450 kB | 65 kB | 28/457 kB | 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 434 kB/s) +Progress (3): 65 kB | 32/457 kB | 11 kB Progress (3): 65 kB | 36/457 kB | 11 kB Progress (3): 65 kB | 40/457 kB | 11 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar +Progress (3): 65 kB | 44/457 kB | 11 kB Progress (3): 65 kB | 49/457 kB | 11 kB Progress (3): 65 kB | 53/457 kB | 11 kB Progress (3): 65 kB | 57/457 kB | 11 kB Progress (3): 65 kB | 61/457 kB | 11 kB Progress (3): 65 kB | 65/457 kB | 11 kB Progress (3): 65 kB | 69/457 kB | 11 kB Progress (3): 65 kB | 73/457 kB | 11 kB Progress (3): 65 kB | 77/457 kB | 11 kB Progress (3): 65 kB | 80/457 kB | 11 kB Progress (3): 65 kB | 84/457 kB | 11 kB Progress (3): 65 kB | 88/457 kB | 11 kB Progress (3): 65 kB | 92/457 kB | 11 kB Progress (3): 65 kB | 97/457 kB | 11 kB Progress (3): 65 kB | 101/457 kB | 11 kB Progress (4): 65 kB | 101/457 kB | 11 kB | 4.1/153 kB Progress (4): 65 kB | 105/457 kB | 11 kB | 4.1/153 kB Progress (4): 65 kB | 109/457 kB | 11 kB | 4.1/153 kB Progress (4): 65 kB | 109/457 kB | 11 kB | 8.2/153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar (11 kB at 10 kB/s) +Progress (3): 65 kB | 113/457 kB | 8.2/153 kB Progress (3): 65 kB | 117/457 kB | 8.2/153 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar +Progress (4): 65 kB | 117/457 kB | 8.2/153 kB | 4.1/267 kB Progress (4): 65 kB | 117/457 kB | 8.2/153 kB | 8.2/267 kB Progress (4): 65 kB | 117/457 kB | 8.2/153 kB | 12/267 kB Progress (4): 65 kB | 117/457 kB | 8.2/153 kB | 16/267 kB Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 62 kB/s) +Progress (3): 117/457 kB | 12/153 kB | 16/267 kB Progress (3): 117/457 kB | 12/153 kB | 20/267 kB Progress (3): 117/457 kB | 12/153 kB | 25/267 kB Progress (3): 121/457 kB | 12/153 kB | 25/267 kB Progress (3): 125/457 kB | 12/153 kB | 25/267 kB Progress (3): 125/457 kB | 12/153 kB | 29/267 kB Progress (3): 125/457 kB | 12/153 kB | 33/267 kB Progress (3): 125/457 kB | 16/153 kB | 33/267 kB Progress (3): 125/457 kB | 16/153 kB | 37/267 kB Progress (3): 129/457 kB | 16/153 kB | 37/267 kB Progress (3): 129/457 kB | 16/153 kB | 41/267 kB Progress (3): 129/457 kB | 16/153 kB | 45/267 kB Progress (3): 129/457 kB | 20/153 kB | 45/267 kB Progress (3): 129/457 kB | 20/153 kB | 49/267 kB Progress (3): 133/457 kB | 20/153 kB | 49/267 kB Progress (3): 138/457 kB | 20/153 kB | 49/267 kB Progress (3): 138/457 kB | 20/153 kB | 53/267 kB Progress (3): 138/457 kB | 20/153 kB | 57/267 kB Progress (3): 138/457 kB | 25/153 kB | 57/267 kB Progress (3): 138/457 kB | 29/153 kB | 57/267 kB Progress (3): 138/457 kB | 33/153 kB | 57/267 kB Progress (4): 138/457 kB | 33/153 kB | 57/267 kB | 4.1/480 kB Progress (4): 138/457 kB | 33/153 kB | 61/267 kB | 4.1/480 kB Progress (4): 138/457 kB | 33/153 kB | 64/267 kB | 4.1/480 kB Progress (4): 142/457 kB | 33/153 kB | 64/267 kB | 4.1/480 kB Progress (4): 146/457 kB | 33/153 kB | 64/267 kB | 4.1/480 kB Progress (4): 146/457 kB | 33/153 kB | 64/267 kB | 8.2/480 kB Progress (4): 146/457 kB | 37/153 kB | 64/267 kB | 8.2/480 kB Progress (4): 146/457 kB | 41/153 kB | 64/267 kB | 8.2/480 kB Progress (4): 146/457 kB | 41/153 kB | 64/267 kB | 12/480 kB Progress (4): 146/457 kB | 41/153 kB | 64/267 kB | 16/480 kB Progress (4): 150/457 kB | 41/153 kB | 64/267 kB | 16/480 kB Progress (4): 150/457 kB | 41/153 kB | 68/267 kB | 16/480 kB Progress (4): 150/457 kB | 41/153 kB | 72/267 kB | 16/480 kB Progress (4): 154/457 kB | 41/153 kB | 72/267 kB | 16/480 kB Progress (4): 154/457 kB | 41/153 kB | 72/267 kB | 20/480 kB Progress (4): 154/457 kB | 41/153 kB | 72/267 kB | 24/480 kB Progress (4): 154/457 kB | 41/153 kB | 72/267 kB | 28/480 kB Progress (4): 154/457 kB | 45/153 kB | 72/267 kB | 28/480 kB Progress (4): 154/457 kB | 49/153 kB | 72/267 kB | 28/480 kB Progress (4): 154/457 kB | 49/153 kB | 72/267 kB | 32/480 kB Progress (4): 158/457 kB | 49/153 kB | 72/267 kB | 32/480 kB Progress (4): 162/457 kB | 49/153 kB | 72/267 kB | 32/480 kB Progress (4): 162/457 kB | 49/153 kB | 72/267 kB | 36/480 kB Progress (4): 162/457 kB | 49/153 kB | 72/267 kB | 40/480 kB Progress (4): 162/457 kB | 49/153 kB | 76/267 kB | 40/480 kB Progress (4): 162/457 kB | 49/153 kB | 81/267 kB | 40/480 kB Progress (4): 162/457 kB | 49/153 kB | 81/267 kB | 44/480 kB Progress (4): 162/457 kB | 49/153 kB | 81/267 kB | 49/480 kB Progress (4): 166/457 kB | 49/153 kB | 81/267 kB | 49/480 kB Progress (4): 170/457 kB | 49/153 kB | 81/267 kB | 49/480 kB Progress (4): 170/457 kB | 53/153 kB | 81/267 kB | 49/480 kB Progress (4): 170/457 kB | 57/153 kB | 81/267 kB | 49/480 kB Progress (4): 174/457 kB | 57/153 kB | 81/267 kB | 49/480 kB Progress (4): 178/457 kB | 57/153 kB | 81/267 kB | 49/480 kB Progress (4): 178/457 kB | 57/153 kB | 81/267 kB | 53/480 kB Progress (4): 183/457 kB | 57/153 kB | 81/267 kB | 53/480 kB Progress (4): 187/457 kB | 57/153 kB | 81/267 kB | 53/480 kB Progress (4): 187/457 kB | 57/153 kB | 85/267 kB | 53/480 kB Progress (4): 187/457 kB | 57/153 kB | 89/267 kB | 53/480 kB Progress (4): 191/457 kB | 57/153 kB | 89/267 kB | 53/480 kB Progress (4): 191/457 kB | 57/153 kB | 89/267 kB | 57/480 kB Progress (4): 191/457 kB | 57/153 kB | 89/267 kB | 61/480 kB Progress (4): 191/457 kB | 57/153 kB | 89/267 kB | 65/480 kB Progress (4): 191/457 kB | 57/153 kB | 89/267 kB | 69/480 kB Progress (4): 191/457 kB | 61/153 kB | 89/267 kB | 69/480 kB Progress (4): 191/457 kB | 64/153 kB | 89/267 kB | 69/480 kB Progress (4): 191/457 kB | 64/153 kB | 89/267 kB | 73/480 kB Progress (4): 191/457 kB | 64/153 kB | 89/267 kB | 77/480 kB Progress (4): 195/457 kB | 64/153 kB | 89/267 kB | 77/480 kB Progress (4): 195/457 kB | 64/153 kB | 89/267 kB | 81/480 kB Progress (4): 195/457 kB | 64/153 kB | 93/267 kB | 81/480 kB Progress (4): 195/457 kB | 64/153 kB | 97/267 kB | 81/480 kB Progress (4): 195/457 kB | 64/153 kB | 97/267 kB | 85/480 kB Progress (4): 199/457 kB | 64/153 kB | 97/267 kB | 85/480 kB Progress (4): 199/457 kB | 68/153 kB | 97/267 kB | 85/480 kB Progress (4): 203/457 kB | 68/153 kB | 97/267 kB | 85/480 kB Progress (4): 203/457 kB | 68/153 kB | 97/267 kB | 90/480 kB Progress (4): 203/457 kB | 68/153 kB | 97/267 kB | 94/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 94/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 98/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 102/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 106/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 110/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 114/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 118/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 122/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 126/480 kB Progress (4): 203/457 kB | 68/153 kB | 101/267 kB | 130/480 kB Progress (4): 207/457 kB | 68/153 kB | 101/267 kB | 130/480 kB Progress (4): 207/457 kB | 68/153 kB | 101/267 kB | 135/480 kB Progress (4): 207/457 kB | 72/153 kB | 101/267 kB | 135/480 kB Progress (4): 207/457 kB | 72/153 kB | 101/267 kB | 139/480 kB Progress (4): 207/457 kB | 72/153 kB | 101/267 kB | 143/480 kB Progress (4): 211/457 kB | 72/153 kB | 101/267 kB | 143/480 kB Progress (4): 211/457 kB | 72/153 kB | 105/267 kB | 143/480 kB Progress (4): 215/457 kB | 72/153 kB | 105/267 kB | 143/480 kB Progress (4): 219/457 kB | 72/153 kB | 105/267 kB | 143/480 kB Progress (4): 224/457 kB | 72/153 kB | 105/267 kB | 143/480 kB Progress (4): 228/457 kB | 72/153 kB | 105/267 kB | 143/480 kB Progress (4): 228/457 kB | 72/153 kB | 105/267 kB | 147/480 kB Progress (4): 228/457 kB | 76/153 kB | 105/267 kB | 147/480 kB Progress (4): 228/457 kB | 76/153 kB | 105/267 kB | 151/480 kB Progress (4): 232/457 kB | 76/153 kB | 105/267 kB | 151/480 kB Progress (4): 232/457 kB | 76/153 kB | 109/267 kB | 151/480 kB Progress (4): 232/457 kB | 76/153 kB | 113/267 kB | 151/480 kB Progress (4): 236/457 kB | 76/153 kB | 113/267 kB | 151/480 kB Progress (4): 240/457 kB | 76/153 kB | 113/267 kB | 151/480 kB Progress (4): 240/457 kB | 76/153 kB | 113/267 kB | 155/480 kB Progress (4): 240/457 kB | 76/153 kB | 113/267 kB | 159/480 kB Progress (4): 240/457 kB | 76/153 kB | 113/267 kB | 163/480 kB Progress (4): 240/457 kB | 80/153 kB | 113/267 kB | 163/480 kB Progress (4): 240/457 kB | 80/153 kB | 113/267 kB | 167/480 kB Progress (4): 240/457 kB | 80/153 kB | 117/267 kB | 167/480 kB Progress (4): 244/457 kB | 80/153 kB | 117/267 kB | 167/480 kB Progress (4): 248/457 kB | 80/153 kB | 117/267 kB | 167/480 kB Progress (4): 248/457 kB | 80/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 84/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 88/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 92/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 96/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 100/153 kB | 122/267 kB | 167/480 kB Progress (4): 248/457 kB | 100/153 kB | 122/267 kB | 171/480 kB Progress (4): 248/457 kB | 105/153 kB | 122/267 kB | 171/480 kB Progress (4): 248/457 kB | 109/153 kB | 122/267 kB | 171/480 kB Progress (4): 248/457 kB | 113/153 kB | 122/267 kB | 171/480 kB Progress (4): 248/457 kB | 113/153 kB | 126/267 kB | 171/480 kB Progress (4): 252/457 kB | 113/153 kB | 126/267 kB | 171/480 kB Progress (4): 256/457 kB | 113/153 kB | 126/267 kB | 171/480 kB Progress (4): 256/457 kB | 113/153 kB | 130/267 kB | 171/480 kB Progress (4): 256/457 kB | 117/153 kB | 130/267 kB | 171/480 kB Progress (4): 256/457 kB | 117/153 kB | 130/267 kB | 176/480 kB Progress (4): 256/457 kB | 121/153 kB | 130/267 kB | 176/480 kB Progress (4): 256/457 kB | 125/153 kB | 130/267 kB | 176/480 kB Progress (4): 256/457 kB | 125/153 kB | 134/267 kB | 176/480 kB Progress (4): 256/457 kB | 125/153 kB | 138/267 kB | 176/480 kB Progress (4): 256/457 kB | 125/153 kB | 142/267 kB | 176/480 kB Progress (4): 256/457 kB | 125/153 kB | 146/267 kB | 176/480 kB Progress (4): 260/457 kB | 125/153 kB | 146/267 kB | 176/480 kB Progress (4): 260/457 kB | 125/153 kB | 150/267 kB | 176/480 kB Progress (4): 260/457 kB | 125/153 kB | 154/267 kB | 176/480 kB Progress (4): 260/457 kB | 129/153 kB | 154/267 kB | 176/480 kB Progress (4): 260/457 kB | 129/153 kB | 154/267 kB | 180/480 kB Progress (4): 260/457 kB | 129/153 kB | 154/267 kB | 184/480 kB Progress (4): 260/457 kB | 129/153 kB | 154/267 kB | 188/480 kB Progress (4): 260/457 kB | 133/153 kB | 154/267 kB | 188/480 kB Progress (4): 260/457 kB | 137/153 kB | 154/267 kB | 188/480 kB Progress (4): 260/457 kB | 137/153 kB | 158/267 kB | 188/480 kB Progress (4): 260/457 kB | 137/153 kB | 162/267 kB | 188/480 kB Progress (4): 264/457 kB | 137/153 kB | 162/267 kB | 188/480 kB Progress (4): 264/457 kB | 141/153 kB | 162/267 kB | 188/480 kB Progress (4): 264/457 kB | 141/153 kB | 162/267 kB | 192/480 kB Progress (4): 264/457 kB | 141/153 kB | 167/267 kB | 192/480 kB Progress (4): 264/457 kB | 141/153 kB | 171/267 kB | 192/480 kB Progress (4): 264/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 269/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 273/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 277/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 281/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 285/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 289/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 293/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 297/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 301/457 kB | 145/153 kB | 171/267 kB | 192/480 kB Progress (4): 301/457 kB | 145/153 kB | 175/267 kB | 192/480 kB Progress (4): 301/457 kB | 145/153 kB | 179/267 kB | 192/480 kB Progress (4): 301/457 kB | 145/153 kB | 179/267 kB | 196/480 kB Progress (4): 301/457 kB | 145/153 kB | 179/267 kB | 200/480 kB Progress (4): 301/457 kB | 145/153 kB | 179/267 kB | 204/480 kB Progress (4): 301/457 kB | 145/153 kB | 183/267 kB | 204/480 kB Progress (4): 301/457 kB | 145/153 kB | 187/267 kB | 204/480 kB Progress (4): 305/457 kB | 145/153 kB | 187/267 kB | 204/480 kB Progress (4): 305/457 kB | 150/153 kB | 187/267 kB | 204/480 kB Progress (4): 310/457 kB | 150/153 kB | 187/267 kB | 204/480 kB Progress (4): 314/457 kB | 150/153 kB | 187/267 kB | 204/480 kB Progress (4): 318/457 kB | 150/153 kB | 187/267 kB | 204/480 kB Progress (4): 318/457 kB | 150/153 kB | 191/267 kB | 204/480 kB Progress (4): 318/457 kB | 150/153 kB | 195/267 kB | 204/480 kB Progress (4): 318/457 kB | 150/153 kB | 195/267 kB | 208/480 kB Progress (4): 318/457 kB | 150/153 kB | 199/267 kB | 208/480 kB Progress (4): 318/457 kB | 150/153 kB | 203/267 kB | 208/480 kB Progress (4): 318/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 322/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 326/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 330/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 334/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 338/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 342/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 346/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 351/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 355/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 359/457 kB | 150/153 kB | 208/267 kB | 208/480 kB Progress (4): 359/457 kB | 153 kB | 208/267 kB | 208/480 kB Progress (4): 363/457 kB | 153 kB | 208/267 kB | 208/480 kB Progress (4): 363/457 kB | 153 kB | 212/267 kB | 208/480 kB Progress (4): 363/457 kB | 153 kB | 212/267 kB | 212/480 kB Progress (4): 363/457 kB | 153 kB | 216/267 kB | 212/480 kB Progress (4): 367/457 kB | 153 kB | 216/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 216/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 220/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 224/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 228/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 232/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 236/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 240/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 244/267 kB | 212/480 kB Progress (4): 371/457 kB | 153 kB | 244/267 kB | 217/480 kB Progress (4): 371/457 kB | 153 kB | 244/267 kB | 221/480 kB Progress (4): 375/457 kB | 153 kB | 244/267 kB | 221/480 kB Progress (4): 375/457 kB | 153 kB | 244/267 kB | 225/480 kB Progress (4): 375/457 kB | 153 kB | 248/267 kB | 225/480 kB Progress (4): 375/457 kB | 153 kB | 253/267 kB | 225/480 kB Progress (4): 379/457 kB | 153 kB | 253/267 kB | 225/480 kB Progress (4): 383/457 kB | 153 kB | 253/267 kB | 225/480 kB Progress (4): 387/457 kB | 153 kB | 253/267 kB | 225/480 kB Progress (4): 391/457 kB | 153 kB | 253/267 kB | 225/480 kB Progress (4): 396/457 kB | 153 kB | 253/267 kB | 225/480 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.4/maven-shared-utils-3.3.4.jar (153 kB at 131 kB/s) +Progress (3): 396/457 kB | 253/267 kB | 229/480 kB Progress (3): 396/457 kB | 253/267 kB | 233/480 kB Progress (3): 396/457 kB | 257/267 kB | 233/480 kB Progress (3): 396/457 kB | 261/267 kB | 233/480 kB Progress (3): 396/457 kB | 265/267 kB | 233/480 kB Progress (3): 396/457 kB | 267 kB | 233/480 kB Progress (3): 400/457 kB | 267 kB | 233/480 kB Progress (3): 404/457 kB | 267 kB | 233/480 kB Progress (3): 408/457 kB | 267 kB | 233/480 kB Progress (3): 408/457 kB | 267 kB | 237/480 kB Progress (3): 408/457 kB | 267 kB | 241/480 kB Progress (3): 412/457 kB | 267 kB | 241/480 kB Progress (3): 416/457 kB | 267 kB | 241/480 kB Progress (3): 416/457 kB | 267 kB | 245/480 kB Progress (3): 416/457 kB | 267 kB | 249/480 kB Progress (3): 416/457 kB | 267 kB | 253/480 kB Progress (3): 416/457 kB | 267 kB | 257/480 kB Progress (3): 420/457 kB | 267 kB | 257/480 kB Progress (3): 424/457 kB | 267 kB | 257/480 kB Progress (3): 424/457 kB | 267 kB | 262/480 kB Progress (3): 424/457 kB | 267 kB | 266/480 kB Progress (3): 428/457 kB | 267 kB | 266/480 kB Progress (3): 432/457 kB | 267 kB | 266/480 kB Progress (3): 432/457 kB | 267 kB | 270/480 kB Progress (3): 432/457 kB | 267 kB | 274/480 kB Progress (3): 437/457 kB | 267 kB | 274/480 kB Progress (3): 441/457 kB | 267 kB | 274/480 kB Progress (3): 441/457 kB | 267 kB | 278/480 kB Progress (3): 441/457 kB | 267 kB | 282/480 kB Progress (3): 441/457 kB | 267 kB | 286/480 kB Progress (3): 441/457 kB | 267 kB | 290/480 kB Progress (3): 441/457 kB | 267 kB | 294/480 kB Progress (3): 441/457 kB | 267 kB | 298/480 kB Progress (3): 441/457 kB | 267 kB | 303/480 kB Progress (3): 441/457 kB | 267 kB | 307/480 kB Progress (3): 441/457 kB | 267 kB | 311/480 kB Progress (3): 441/457 kB | 267 kB | 315/480 kB Progress (3): 441/457 kB | 267 kB | 319/480 kB Progress (3): 441/457 kB | 267 kB | 323/480 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.jar (267 kB at 223 kB/s) +Progress (2): 445/457 kB | 323/480 kB Progress (2): 449/457 kB | 323/480 kB Progress (2): 453/457 kB | 323/480 kB Progress (2): 457 kB | 323/480 kB Progress (2): 457 kB | 327/480 kB Progress (2): 457 kB | 331/480 kB Progress (2): 457 kB | 335/480 kB Progress (2): 457 kB | 339/480 kB Progress (2): 457 kB | 343/480 kB Progress (2): 457 kB | 348/480 kB Progress (2): 457 kB | 352/480 kB Progress (2): 457 kB | 356/480 kB Progress (2): 457 kB | 360/480 kB Progress (2): 457 kB | 364/480 kB Progress (2): 457 kB | 368/480 kB Progress (2): 457 kB | 372/480 kB Progress (2): 457 kB | 376/480 kB Progress (2): 457 kB | 380/480 kB Progress (2): 457 kB | 384/480 kB Progress (2): 457 kB | 389/480 kB Progress (2): 457 kB | 393/480 kB Progress (2): 457 kB | 397/480 kB Progress (2): 457 kB | 401/480 kB Progress (2): 457 kB | 405/480 kB Progress (2): 457 kB | 409/480 kB Progress (2): 457 kB | 413/480 kB Progress (2): 457 kB | 417/480 kB Progress (2): 457 kB | 421/480 kB Progress (2): 457 kB | 425/480 kB Progress (2): 457 kB | 429/480 kB Progress (2): 457 kB | 434/480 kB Progress (2): 457 kB | 438/480 kB Progress (2): 457 kB | 442/480 kB Progress (2): 457 kB | 446/480 kB Progress (2): 457 kB | 450/480 kB Progress (2): 457 kB | 454/480 kB Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 375 kB/s) +Progress (1): 458/480 kB Progress (1): 462/480 kB Progress (1): 466/480 kB Progress (1): 470/480 kB Progress (1): 475/480 kB Progress (1): 479/480 kB Progress (1): 480 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar (480 kB at 388 kB/s) +[INFO] Enabled default license matchers. +[INFO] Will parse SCM ignores for exclusions... +[INFO] Parsing exclusions from /src/commons-jxpath/.gitignore +[INFO] Finished adding exclusions from SCM ignore files. +[INFO] 67 implicit excludes. +[INFO] 15 explicit excludes. +[INFO] 290 resources included +[INFO] Rat check: Summary over all files. Unapproved: 0, unknown: 0, generated: 0, approved: 284 licenses. +[INFO] +[INFO] --- build-helper-maven-plugin:3.4.0:parse-version (parse-version) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.pom (4.5 kB at 155 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom +Progress (1): 4.1/4.9 kB Progress (1): 4.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/36/maven-shared-components-36.pom (4.9 kB at 163 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.pom (2.7 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.36/slf4j-parent-1.7.36.pom (14 kB at 503 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar +Progress (1): 4.1/36 kB Progress (2): 4.1/36 kB | 4.1/41 kB Progress (2): 4.1/36 kB | 8.2/41 kB Progress (2): 8.2/36 kB | 8.2/41 kB Progress (2): 8.2/36 kB | 12/41 kB Progress (2): 12/36 kB | 12/41 kB Progress (2): 12/36 kB | 16/41 kB Progress (2): 16/36 kB | 16/41 kB Progress (2): 16/36 kB | 20/41 kB Progress (2): 16/36 kB | 24/41 kB Progress (2): 16/36 kB | 28/41 kB Progress (2): 20/36 kB | 28/41 kB Progress (2): 20/36 kB | 32/41 kB Progress (2): 24/36 kB | 32/41 kB Progress (2): 28/36 kB | 32/41 kB Progress (2): 28/36 kB | 36/41 kB Progress (2): 32/36 kB | 36/41 kB Progress (2): 36/36 kB | 36/41 kB Progress (2): 36/36 kB | 40/41 kB Progress (2): 36/36 kB | 41 kB Progress (2): 36 kB | 41 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar (41 kB at 1.0 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/3.1.0/file-management-3.1.0.jar (36 kB at 865 kB/s) +[INFO] +[INFO] --- maven-antrun-plugin:3.1.0:run (javadoc.resources) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.pom +Progress (1): 4.1/8.0 kB Progress (1): 8.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.pom (8.0 kB at 265 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.12/ant-1.10.12.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.12/ant-1.10.12.pom (17 kB at 590 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.12/ant-parent-1.10.12.pom +Progress (1): 4.1/6.5 kB Progress (1): 6.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.10.12/ant-parent-1.10.12.pom (6.5 kB at 242 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.pom (3.2 kB at 117 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.12/ant-1.10.12.jar +Progress (1): 4.1/19 kB Progress (2): 4.1/19 kB | 4.1/264 kB Progress (2): 4.1/19 kB | 8.2/264 kB Progress (2): 4.1/19 kB | 12/264 kB Progress (3): 4.1/19 kB | 12/264 kB | 0/2.3 MB Progress (3): 4.1/19 kB | 16/264 kB | 0/2.3 MB Progress (3): 8.2/19 kB | 16/264 kB | 0/2.3 MB Progress (3): 12/19 kB | 16/264 kB | 0/2.3 MB Progress (3): 16/19 kB | 16/264 kB | 0/2.3 MB Progress (3): 19 kB | 16/264 kB | 0/2.3 MB Progress (3): 19 kB | 20/264 kB | 0/2.3 MB Progress (3): 19 kB | 25/264 kB | 0/2.3 MB Progress (3): 19 kB | 29/264 kB | 0/2.3 MB Progress (3): 19 kB | 33/264 kB | 0/2.3 MB Progress (3): 19 kB | 37/264 kB | 0/2.3 MB Progress (3): 19 kB | 41/264 kB | 0/2.3 MB Progress (3): 19 kB | 45/264 kB | 0/2.3 MB Progress (3): 19 kB | 45/264 kB | 0/2.3 MB Progress (3): 19 kB | 49/264 kB | 0/2.3 MB Progress (3): 19 kB | 49/264 kB | 0/2.3 MB Progress (3): 19 kB | 53/264 kB | 0/2.3 MB Progress (3): 19 kB | 57/264 kB | 0/2.3 MB Progress (3): 19 kB | 61/264 kB | 0/2.3 MB Progress (3): 19 kB | 65/264 kB | 0/2.3 MB Progress (3): 19 kB | 65/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 69/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 73/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 77/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 81/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 81/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 85/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 90/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 94/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 98/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 98/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 102/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 102/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 106/264 kB | 0.1/2.3 MB Progress (3): 19 kB | 110/264 kB | 0.1/2.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant-launcher/1.10.12/ant-launcher-1.10.12.jar (19 kB at 567 kB/s) +Progress (2): 114/264 kB | 0.1/2.3 MB Progress (2): 114/264 kB | 0.1/2.3 MB Progress (2): 118/264 kB | 0.1/2.3 MB Progress (2): 122/264 kB | 0.1/2.3 MB Progress (2): 122/264 kB | 0.1/2.3 MB Progress (2): 126/264 kB | 0.1/2.3 MB Progress (2): 131/264 kB | 0.1/2.3 MB Progress (2): 131/264 kB | 0.2/2.3 MB Progress (2): 135/264 kB | 0.2/2.3 MB Progress (2): 139/264 kB | 0.2/2.3 MB Progress (2): 139/264 kB | 0.2/2.3 MB Progress (2): 143/264 kB | 0.2/2.3 MB Progress (2): 147/264 kB | 0.2/2.3 MB Progress (2): 147/264 kB | 0.2/2.3 MB Progress (2): 151/264 kB | 0.2/2.3 MB Progress (2): 151/264 kB | 0.2/2.3 MB Progress (2): 155/264 kB | 0.2/2.3 MB Progress (2): 159/264 kB | 0.2/2.3 MB Progress (2): 163/264 kB | 0.2/2.3 MB Progress (2): 163/264 kB | 0.2/2.3 MB Progress (2): 167/264 kB | 0.2/2.3 MB Progress (2): 172/264 kB | 0.2/2.3 MB Progress (2): 176/264 kB | 0.2/2.3 MB Progress (2): 176/264 kB | 0.2/2.3 MB Progress (2): 176/264 kB | 0.3/2.3 MB Progress (2): 180/264 kB | 0.3/2.3 MB Progress (2): 180/264 kB | 0.3/2.3 MB Progress (2): 184/264 kB | 0.3/2.3 MB Progress (2): 188/264 kB | 0.3/2.3 MB Progress (2): 192/264 kB | 0.3/2.3 MB Progress (2): 192/264 kB | 0.3/2.3 MB Progress (2): 196/264 kB | 0.3/2.3 MB Progress (2): 200/264 kB | 0.3/2.3 MB Progress (2): 200/264 kB | 0.3/2.3 MB Progress (2): 204/264 kB | 0.3/2.3 MB Progress (2): 208/264 kB | 0.3/2.3 MB Progress (2): 212/264 kB | 0.3/2.3 MB Progress (2): 212/264 kB | 0.3/2.3 MB Progress (2): 217/264 kB | 0.3/2.3 MB Progress (2): 221/264 kB | 0.3/2.3 MB Progress (2): 225/264 kB | 0.3/2.3 MB Progress (2): 225/264 kB | 0.3/2.3 MB Progress (2): 229/264 kB | 0.3/2.3 MB Progress (2): 229/264 kB | 0.4/2.3 MB Progress (2): 233/264 kB | 0.4/2.3 MB Progress (2): 237/264 kB | 0.4/2.3 MB Progress (2): 237/264 kB | 0.4/2.3 MB Progress (2): 241/264 kB | 0.4/2.3 MB Progress (2): 241/264 kB | 0.4/2.3 MB Progress (2): 245/264 kB | 0.4/2.3 MB Progress (2): 245/264 kB | 0.4/2.3 MB Progress (2): 249/264 kB | 0.4/2.3 MB Progress (2): 253/264 kB | 0.4/2.3 MB Progress (2): 253/264 kB | 0.4/2.3 MB Progress (2): 258/264 kB | 0.4/2.3 MB Progress (2): 262/264 kB | 0.4/2.3 MB Progress (2): 264 kB | 0.4/2.3 MB Progress (2): 264 kB | 0.4/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.5/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.6/2.3 MB Progress (2): 264 kB | 0.7/2.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.4.1/plexus-utils-3.4.1.jar (264 kB at 3.5 MB/s) +Progress (1): 0.7/2.3 MB Progress (1): 0.7/2.3 MB Progress (1): 0.7/2.3 MB Progress (1): 0.7/2.3 MB Progress (1): 0.7/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.8/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 0.9/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.0/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.1/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.2/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.3/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.4/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.5/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.6/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.7/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.8/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 1.9/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.0/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.1/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.2/2.3 MB Progress (1): 2.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/ant/ant/1.10.12/ant-1.10.12.jar (2.3 MB at 13 MB/s) +[INFO] Executing tasks +[INFO] [copy] Copying 2 files to /src/commons-jxpath/target/apidocs/META-INF +[INFO] Executed tasks +[INFO] +[INFO] --- maven-remote-resources-plugin:1.7.0:process (process-resource-bundles) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.pom (12 kB at 314 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.pom (2.0 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.pom (1.9 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom +Progress (1): 4.1/7.9 kB Progress (1): 7.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.5.6/slf4j-parent-1.5.6.pom (7.9 kB at 273 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.pom (3.0 kB at 103 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.pom (2.2 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.pom (1.9 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.2.1/maven-reporting-2.2.1.pom (1.4 kB at 38 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.pom (2.0 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1/doxia-1.1.pom (15 kB at 446 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.pom (1.6 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.pom (1.7 kB at 55 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom +Progress (1): 4.1/8.0 kB Progress (1): 8.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.pom (8.0 kB at 249 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom +Progress (1): 4.1/25 kB Progress (1): 8.2/25 kB Progress (1): 12/25 kB Progress (1): 16/25 kB Progress (1): 20/25 kB Progress (1): 25/25 kB Progress (1): 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/11/commons-parent-11.pom (25 kB at 850 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.pom (2.1 kB at 74 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom +Progress (1): 4.1/7.1 kB Progress (1): 7.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.pom (7.1 kB at 263 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.pom (3.3 kB at 128 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.pom (3.0 kB at 110 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom +Progress (1): 4.1/6.8 kB Progress (1): 6.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/12/spice-parent-12.pom (6.8 kB at 252 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/4/forge-parent-4.pom (8.4 kB at 323 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.5/plexus-utils-1.5.5.pom (5.1 kB at 198 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.pom (2.1 kB at 79 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.pom (4.5 kB at 172 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5.1 kB at 196 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom +Progress (1): 3.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.pom (3.9 kB at 144 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom +Progress (1): 4.1/6.6 kB Progress (1): 6.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.pom (6.6 kB at 229 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.pom (1.9 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.pom (2.2 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom +Progress (1): 910 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.pom (910 B at 23 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom +Progress (1): 4.1/5.4 kB Progress (1): 5.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.18/plexus-components-1.1.18.pom (5.4 kB at 173 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.7/plexus-2.0.7.pom (17 kB at 524 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom +Progress (1): 770 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom (770 B at 23 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom (5.0 kB at 186 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.pom (1.9 kB at 69 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.pom (2.3 kB at 82 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom +Progress (1): 4.1/5.4 kB Progress (1): 5.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.pom (5.4 kB at 199 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-plexus/1.4.2/guice-plexus-1.4.2.pom (3.1 kB at 112 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-bean/1.4.2/guice-bean-1.4.2.pom (2.6 kB at 100 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject/1.4.2/sisu-inject-1.4.2.pom (1.2 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom +Progress (1): 4.1/7.8 kB Progress (1): 7.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-parent/1.4.2/sisu-parent-1.4.2.pom (7.8 kB at 299 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/6/forge-parent-6.pom (11 kB at 398 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.pom (4.0 kB at 148 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.pom (3.3 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom +Progress (1): 4.1/5.5 kB Progress (1): 5.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.pom (5.5 kB at 195 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7.pom (11 kB at 410 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.pom (2.2 kB at 83 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.pom (2.5 kB at 82 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.pom (1.7 kB at 62 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom +Progress (1): 4.1/7.7 kB Progress (1): 7.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-parent/1.7/aether-parent-1.7.pom (7.7 kB at 286 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.pom (2.1 kB at 79 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom +Progress (1): 3.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.pom (3.7 kB at 142 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.pom (1.7 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (5.6 kB at 188 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom +Progress (1): 4.1/4.6 kB Progress (1): 4.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/30/maven-shared-components-30.pom (4.6 kB at 158 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom +Progress (1): 4.1/41 kB Progress (1): 8.2/41 kB Progress (1): 12/41 kB Progress (1): 16/41 kB Progress (1): 20/41 kB Progress (1): 24/41 kB Progress (1): 28/41 kB Progress (1): 32/41 kB Progress (1): 36/41 kB Progress (1): 40/41 kB Progress (1): 41 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/30/maven-parent-30.pom (41 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.pom (13 kB at 492 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.pom (4.8 kB at 179 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.pom (4.5 kB at 168 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 kB at 528 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.pom (18 kB at 701 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (15 kB at 538 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom (1.9 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (2.6 kB at 98 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom +Progress (1): 4.1/6.0 kB Progress (1): 6.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.pom (6.0 kB at 214 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom +Progress (1): 4.1/9.3 kB Progress (1): 8.2/9.3 kB Progress (1): 9.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/12/maven-shared-components-12.pom (9.3 kB at 359 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom +Progress (1): 4.1/23 kB Progress (1): 8.2/23 kB Progress (1): 12/23 kB Progress (1): 16/23 kB Progress (1): 20/23 kB Progress (1): 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom (23 kB at 838 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.pom (3.8 kB at 139 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom +Progress (1): 4.1/8.7 kB Progress (1): 8.2/8.7 kB Progress (1): 8.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/17/maven-shared-components-17.pom (8.7 kB at 322 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom +Progress (1): 4.1/26 kB Progress (1): 8.2/26 kB Progress (1): 12/26 kB Progress (1): 16/26 kB Progress (1): 20/26 kB Progress (1): 24/26 kB Progress (1): 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/21/maven-parent-21.pom (26 kB at 941 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/10/apache-10.pom (15 kB at 448 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.8/maven-artifact-2.0.8.pom (1.6 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.8/maven-2.0.8.pom (12 kB at 465 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/6/maven-parent-6.pom (20 kB at 771 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.6/plexus-utils-1.4.6.pom (2.3 kB at 87 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.8/maven-model-2.0.8.pom (3.1 kB at 90 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.8/maven-project-2.0.8.pom (2.7 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.8/maven-settings-2.0.8.pom (2.1 kB at 79 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.8/maven-profile-2.0.8.pom (2.0 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.8/maven-artifact-manager-2.0.8.pom (2.7 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.8/maven-repository-metadata-2.0.8.pom (1.9 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.8/maven-plugin-registry-2.0.8.pom (2.0 kB at 74 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.8/maven-plugin-api-2.0.8.pom (1.5 kB at 57 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.5.5/plexus-container-default-1.5.5.pom (2.8 kB at 102 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.5.5/plexus-containers-1.5.5.pom (4.2 kB at 157 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.2/plexus-classworlds-2.2.2.pom (4.0 kB at 149 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.3/plexus-2.0.3.pom (15 kB at 573 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.4/xbean-reflect-3.4.pom (2.8 kB at 108 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean/3.4/xbean-3.4.pom (19 kB at 662 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom +Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.pom (5.3 kB at 206 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom +Progress (1): 747 B Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.2/junit-3.8.2.pom (747 B at 29 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.1/plexus-utils-2.1.pom (4.0 kB at 155 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/16/spice-parent-16.pom (8.4 kB at 321 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/5/forge-parent-5.pom (8.4 kB at 288 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom +Progress (1): 4.1/5.7 kB Progress (1): 5.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom (5.7 kB at 203 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom (5.6 kB at 215 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom +Progress (1): 4.1/5.1 kB Progress (1): 5.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/21/maven-shared-components-21.pom (5.1 kB at 182 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom +Progress (1): 4.1/37 kB Progress (1): 8.2/37 kB Progress (1): 12/37 kB Progress (1): 16/37 kB Progress (1): 20/37 kB Progress (1): 25/37 kB Progress (1): 29/37 kB Progress (1): 33/37 kB Progress (1): 37/37 kB Progress (1): 37 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/25/maven-parent-25.pom (37 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/15/apache-15.pom (15 kB at 544 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom +Progress (1): 4.1/10 kB Progress (1): 8.2/10 kB Progress (1): 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.4/commons-io-2.4.pom (10 kB at 407 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom +Progress (1): 4.1/48 kB Progress (1): 8.2/48 kB Progress (1): 12/48 kB Progress (1): 16/48 kB Progress (1): 20/48 kB Progress (1): 24/48 kB Progress (1): 28/48 kB Progress (1): 32/48 kB Progress (1): 36/48 kB Progress (1): 40/48 kB Progress (1): 44/48 kB Progress (1): 48 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/25/commons-parent-25.pom (48 kB at 1.8 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/9/apache-9.pom (15 kB at 561 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom +Progress (1): 965 B Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/2.0.1/jsr305-2.0.1.pom (965 B at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom +Progress (1): 4.1/4.1 kB Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (4.1 kB at 153 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom (1.5 kB at 59 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.3.1/plexus-components-1.3.1.pom (3.1 kB at 106 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.1/plexus-3.3.1.pom (20 kB at 757 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom +Progress (1): 4.1/6.8 kB Progress (1): 6.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/17/spice-parent-17.pom (6.8 kB at 270 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (3.2 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (8.4 kB at 321 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom +Progress (1): 4.1/8.1 kB Progress (1): 8.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8.1 kB at 310 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-resources/1.0.1/plexus-resources-1.0.1.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-resources/1.0.1/plexus-resources-1.0.1.pom (1.3 kB at 45 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.8/plexus-utils-3.0.8.pom (3.1 kB at 121 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.2/plexus-3.2.pom (19 kB at 670 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom +Progress (1): 4.1/4.7 kB Progress (1): 4.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom (4.7 kB at 173 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar +Progress (1): 4.1/178 kB Progress (1): 8.2/178 kB Progress (1): 12/178 kB Progress (1): 16/178 kB Progress (2): 16/178 kB | 4.1/22 kB Progress (2): 20/178 kB | 4.1/22 kB Progress (2): 20/178 kB | 8.2/22 kB Progress (2): 25/178 kB | 8.2/22 kB Progress (2): 29/178 kB | 8.2/22 kB Progress (2): 29/178 kB | 12/22 kB Progress (2): 29/178 kB | 16/22 kB Progress (2): 29/178 kB | 20/22 kB Progress (2): 29/178 kB | 22 kB Progress (3): 29/178 kB | 22 kB | 4.1/17 kB Progress (3): 33/178 kB | 22 kB | 4.1/17 kB Progress (3): 37/178 kB | 22 kB | 4.1/17 kB Progress (3): 41/178 kB | 22 kB | 4.1/17 kB Progress (3): 45/178 kB | 22 kB | 4.1/17 kB Progress (3): 49/178 kB | 22 kB | 4.1/17 kB Progress (4): 49/178 kB | 22 kB | 4.1/17 kB | 4.1/22 kB Progress (4): 49/178 kB | 22 kB | 8.2/17 kB | 4.1/22 kB Progress (4): 53/178 kB | 22 kB | 8.2/17 kB | 4.1/22 kB Progress (4): 53/178 kB | 22 kB | 8.2/17 kB | 8.2/22 kB Progress (4): 53/178 kB | 22 kB | 8.2/17 kB | 12/22 kB Progress (5): 53/178 kB | 22 kB | 8.2/17 kB | 12/22 kB | 4.1/8.8 kB Progress (5): 53/178 kB | 22 kB | 8.2/17 kB | 16/22 kB | 4.1/8.8 kB Progress (5): 57/178 kB | 22 kB | 8.2/17 kB | 16/22 kB | 4.1/8.8 kB Progress (5): 57/178 kB | 22 kB | 12/17 kB | 16/22 kB | 4.1/8.8 kB Progress (5): 61/178 kB | 22 kB | 12/17 kB | 16/22 kB | 4.1/8.8 kB Progress (5): 61/178 kB | 22 kB | 12/17 kB | 20/22 kB | 4.1/8.8 kB Progress (5): 61/178 kB | 22 kB | 12/17 kB | 20/22 kB | 8.2/8.8 kB Progress (5): 61/178 kB | 22 kB | 12/17 kB | 20/22 kB | 8.8 kB Progress (5): 61/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 66/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 70/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 74/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 78/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 82/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 86/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 90/178 kB | 22 kB | 12/17 kB | 22 kB | 8.8 kB Progress (5): 90/178 kB | 22 kB | 16/17 kB | 22 kB | 8.8 kB Progress (5): 90/178 kB | 22 kB | 17 kB | 22 kB | 8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.2.1/maven-plugin-parameter-documenter-2.2.1.jar (22 kB at 616 kB/s) +Progress (4): 94/178 kB | 17 kB | 22 kB | 8.8 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar +Progress (4): 98/178 kB | 17 kB | 22 kB | 8.8 kB Progress (4): 102/178 kB | 17 kB | 22 kB | 8.8 kB Progress (4): 106/178 kB | 17 kB | 22 kB | 8.8 kB Progress (4): 111/178 kB | 17 kB | 22 kB | 8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-jdk14/1.5.6/slf4j-jdk14-1.5.6.jar (8.8 kB at 200 kB/s) +Progress (3): 115/178 kB | 17 kB | 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.5.6/slf4j-api-1.5.6.jar (22 kB at 496 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar +Progress (2): 119/178 kB | 17 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar +Progress (2): 123/178 kB | 17 kB Progress (2): 127/178 kB | 17 kB Progress (2): 131/178 kB | 17 kB Progress (2): 135/178 kB | 17 kB Progress (2): 139/178 kB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.5.6/jcl-over-slf4j-1.5.6.jar (17 kB at 348 kB/s) +Progress (1): 143/178 kB Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar +Progress (1): 147/178 kB Progress (1): 152/178 kB Progress (1): 156/178 kB Progress (1): 160/178 kB Progress (1): 164/178 kB Progress (1): 168/178 kB Progress (1): 172/178 kB Progress (1): 176/178 kB Progress (1): 178 kB Progress (2): 178 kB | 4.1/9.8 kB Progress (2): 178 kB | 8.2/9.8 kB Progress (2): 178 kB | 9.8 kB Progress (3): 178 kB | 9.8 kB | 4.1/13 kB Progress (3): 178 kB | 9.8 kB | 8.2/13 kB Progress (3): 178 kB | 9.8 kB | 12/13 kB Progress (3): 178 kB | 9.8 kB | 13 kB Progress (4): 178 kB | 9.8 kB | 13 kB | 4.1/11 kB Progress (4): 178 kB | 9.8 kB | 13 kB | 8.2/11 kB Progress (4): 178 kB | 9.8 kB | 13 kB | 11 kB Progress (5): 178 kB | 9.8 kB | 13 kB | 11 kB | 4.1/121 kB Progress (5): 178 kB | 9.8 kB | 13 kB | 11 kB | 8.2/121 kB Progress (5): 178 kB | 9.8 kB | 13 kB | 11 kB | 12/121 kB Progress (5): 178 kB | 9.8 kB | 13 kB | 11 kB | 16/121 kB Progress (5): 178 kB | 9.8 kB | 13 kB | 11 kB | 20/121 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.2.1/maven-reporting-api-2.2.1.jar (9.8 kB at 144 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.2.1/maven-core-2.2.1.jar (178 kB at 2.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar +Progress (3): 13 kB | 11 kB | 24/121 kB Progress (3): 13 kB | 11 kB | 28/121 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar +Progress (3): 13 kB | 11 kB | 32/121 kB Progress (3): 13 kB | 11 kB | 36/121 kB Progress (3): 13 kB | 11 kB | 40/121 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1/doxia-sink-api-1.1.jar (13 kB at 171 kB/s) +Progress (2): 11 kB | 44/121 kB Progress (2): 11 kB | 49/121 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1/doxia-logging-api-1.1.jar (11 kB at 147 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar +Progress (1): 53/121 kB Progress (1): 57/121 kB Progress (1): 61/121 kB Progress (1): 65/121 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar +Progress (1): 69/121 kB Progress (1): 73/121 kB Progress (1): 77/121 kB Progress (1): 81/121 kB Progress (1): 85/121 kB Progress (1): 90/121 kB Progress (1): 94/121 kB Progress (1): 98/121 kB Progress (1): 102/121 kB Progress (2): 102/121 kB | 4.1/13 kB Progress (2): 106/121 kB | 4.1/13 kB Progress (2): 110/121 kB | 4.1/13 kB Progress (2): 114/121 kB | 4.1/13 kB Progress (2): 114/121 kB | 8.2/13 kB Progress (2): 114/121 kB | 12/13 kB Progress (2): 114/121 kB | 13 kB Progress (2): 118/121 kB | 13 kB Progress (2): 121 kB | 13 kB Progress (3): 121 kB | 13 kB | 4.1/41 kB Progress (3): 121 kB | 13 kB | 8.2/41 kB Progress (4): 121 kB | 13 kB | 8.2/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 12/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 16/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 20/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 24/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 28/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 32/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 36/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 40/41 kB | 4.1/13 kB Progress (4): 121 kB | 13 kB | 41 kB | 4.1/13 kB Progress (5): 121 kB | 13 kB | 41 kB | 4.1/13 kB | 4.1/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 4.1/13 kB | 8.2/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 4.1/13 kB | 12/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 8.2/13 kB | 12/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 8.2/13 kB | 16/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 12/13 kB | 16/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 12/13 kB | 20/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 13 kB | 20/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 13 kB | 24/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 13 kB | 28/39 kB Progress (5): 121 kB | 13 kB | 41 kB | 13 kB | 32/39 kB Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar (121 kB at 1.2 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.2.1/maven-error-diagnostics-2.2.1.jar (13 kB at 125 kB/s) +Progress (3): 41 kB | 13 kB | 36/39 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar +Progress (3): 41 kB | 13 kB | 39 kB Downloading from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar +Downloaded from central: https://repo.maven.apache.org/maven2/commons-cli/commons-cli/1.2/commons-cli-1.2.jar (41 kB at 374 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/plexus-interactivity-api-1.0-alpha-4.jar (13 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar +Progress (2): 39 kB | 4.1/10 kB Progress (2): 39 kB | 8.2/10 kB Progress (2): 39 kB | 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.2.1/maven-plugin-descriptor-2.2.1.jar (39 kB at 333 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar +Progress (2): 10 kB | 4.1/38 kB Progress (2): 10 kB | 8.2/38 kB Progress (2): 10 kB | 12/38 kB Progress (2): 10 kB | 16/38 kB Progress (2): 10 kB | 20/38 kB Progress (2): 10 kB | 24/38 kB Progress (2): 10 kB | 28/38 kB Progress (2): 10 kB | 32/38 kB Progress (2): 10 kB | 36/38 kB Progress (2): 10 kB | 38 kB Progress (3): 10 kB | 38 kB | 4.1/29 kB Progress (3): 10 kB | 38 kB | 8.2/29 kB Progress (3): 10 kB | 38 kB | 12/29 kB Progress (3): 10 kB | 38 kB | 16/29 kB Progress (3): 10 kB | 38 kB | 20/29 kB Progress (3): 10 kB | 38 kB | 25/29 kB Progress (3): 10 kB | 38 kB | 29 kB Progress (4): 10 kB | 38 kB | 29 kB | 4.1/13 kB Progress (4): 10 kB | 38 kB | 29 kB | 8.2/13 kB Progress (4): 10 kB | 38 kB | 29 kB | 12/13 kB Progress (4): 10 kB | 38 kB | 29 kB | 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.2.1/maven-monitor-2.2.1.jar (10 kB at 80 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar +Progress (4): 38 kB | 29 kB | 13 kB | 4.1/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 8.2/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 12/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 16/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 20/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 24/26 kB Progress (4): 38 kB | 29 kB | 13 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/classworlds/classworlds/1.1/classworlds-1.1.jar (38 kB at 280 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.3/plexus-sec-dispatcher-1.3.jar (29 kB at 208 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-cipher/1.4/plexus-cipher-1.4.jar (13 kB at 95 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar +Progress (2): 26 kB | 4.1/167 kB Progress (2): 26 kB | 8.2/167 kB Progress (2): 26 kB | 12/167 kB Progress (2): 26 kB | 16/167 kB Progress (2): 26 kB | 20/167 kB Progress (2): 26 kB | 25/167 kB Progress (2): 26 kB | 29/167 kB Progress (2): 26 kB | 33/167 kB Progress (3): 26 kB | 33/167 kB | 4.1/196 kB Progress (3): 26 kB | 33/167 kB | 8.2/196 kB Progress (3): 26 kB | 33/167 kB | 12/196 kB Progress (3): 26 kB | 33/167 kB | 16/196 kB Progress (3): 26 kB | 33/167 kB | 20/196 kB Progress (3): 26 kB | 33/167 kB | 25/196 kB Progress (3): 26 kB | 33/167 kB | 29/196 kB Progress (3): 26 kB | 37/167 kB | 29/196 kB Progress (3): 26 kB | 41/167 kB | 29/196 kB Progress (4): 26 kB | 41/167 kB | 29/196 kB | 4.1/615 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.0/maven-archiver-3.5.0.jar (26 kB at 153 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar +Progress (4): 41/167 kB | 29/196 kB | 4.1/615 kB | 4.1/76 kB Progress (4): 41/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 45/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 49/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 53/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 57/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 61/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 65/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 69/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 73/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 77/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 29/196 kB | 4.1/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 29/196 kB | 8.2/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 29/196 kB | 12/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 29/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 33/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 37/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 41/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 45/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 49/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 53/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 57/196 kB | 16/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 57/196 kB | 20/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 57/196 kB | 25/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 57/196 kB | 29/615 kB | 8.2/76 kB Progress (4): 81/167 kB | 57/196 kB | 29/615 kB | 12/76 kB Progress (4): 85/167 kB | 57/196 kB | 29/615 kB | 12/76 kB Progress (4): 89/167 kB | 57/196 kB | 29/615 kB | 12/76 kB Progress (5): 89/167 kB | 57/196 kB | 29/615 kB | 12/76 kB | 4.1/58 kB Progress (5): 89/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 4.1/58 kB Progress (5): 89/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 8.2/58 kB Progress (5): 89/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 12/58 kB Progress (5): 93/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 12/58 kB Progress (5): 98/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 12/58 kB Progress (5): 98/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 16/58 kB Progress (5): 98/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 20/58 kB Progress (5): 98/167 kB | 57/196 kB | 29/615 kB | 16/76 kB | 25/58 kB Progress (5): 98/167 kB | 57/196 kB | 29/615 kB | 20/76 kB | 25/58 kB Progress (5): 98/167 kB | 61/196 kB | 29/615 kB | 20/76 kB | 25/58 kB Progress (5): 98/167 kB | 61/196 kB | 33/615 kB | 20/76 kB | 25/58 kB Progress (5): 98/167 kB | 61/196 kB | 33/615 kB | 25/76 kB | 25/58 kB Progress (5): 98/167 kB | 61/196 kB | 33/615 kB | 29/76 kB | 25/58 kB Progress (5): 98/167 kB | 61/196 kB | 33/615 kB | 29/76 kB | 29/58 kB Progress (5): 98/167 kB | 61/196 kB | 33/615 kB | 29/76 kB | 33/58 kB Progress (5): 102/167 kB | 61/196 kB | 33/615 kB | 29/76 kB | 33/58 kB Progress (5): 102/167 kB | 61/196 kB | 33/615 kB | 33/76 kB | 33/58 kB Progress (5): 102/167 kB | 61/196 kB | 33/615 kB | 33/76 kB | 37/58 kB Progress (5): 102/167 kB | 61/196 kB | 33/615 kB | 33/76 kB | 41/58 kB Progress (5): 102/167 kB | 61/196 kB | 33/615 kB | 33/76 kB | 45/58 kB Progress (5): 102/167 kB | 65/196 kB | 33/615 kB | 33/76 kB | 45/58 kB Progress (5): 102/167 kB | 65/196 kB | 37/615 kB | 33/76 kB | 45/58 kB Progress (5): 102/167 kB | 69/196 kB | 37/615 kB | 33/76 kB | 45/58 kB Progress (5): 102/167 kB | 69/196 kB | 37/615 kB | 33/76 kB | 49/58 kB Progress (5): 106/167 kB | 69/196 kB | 37/615 kB | 33/76 kB | 49/58 kB Progress (5): 110/167 kB | 69/196 kB | 37/615 kB | 33/76 kB | 49/58 kB Progress (5): 110/167 kB | 69/196 kB | 37/615 kB | 37/76 kB | 49/58 kB Progress (5): 110/167 kB | 69/196 kB | 37/615 kB | 41/76 kB | 49/58 kB Progress (5): 114/167 kB | 69/196 kB | 37/615 kB | 41/76 kB | 49/58 kB Progress (5): 114/167 kB | 69/196 kB | 37/615 kB | 41/76 kB | 53/58 kB Progress (5): 114/167 kB | 69/196 kB | 37/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 73/196 kB | 37/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 73/196 kB | 41/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 73/196 kB | 45/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 77/196 kB | 45/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 82/196 kB | 45/615 kB | 41/76 kB | 57/58 kB Progress (5): 114/167 kB | 82/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 86/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 90/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 94/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 98/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 102/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 114/167 kB | 106/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 118/167 kB | 106/196 kB | 45/615 kB | 41/76 kB | 58 kB Progress (5): 118/167 kB | 106/196 kB | 45/615 kB | 45/76 kB | 58 kB Progress (5): 118/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 122/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 126/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 130/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 134/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 139/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 143/167 kB | 106/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 143/167 kB | 110/196 kB | 45/615 kB | 49/76 kB | 58 kB Progress (5): 143/167 kB | 110/196 kB | 49/615 kB | 49/76 kB | 58 kB Progress (5): 143/167 kB | 114/196 kB | 49/615 kB | 49/76 kB | 58 kB Progress (5): 147/167 kB | 114/196 kB | 49/615 kB | 49/76 kB | 58 kB Progress (5): 147/167 kB | 114/196 kB | 49/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 118/196 kB | 49/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 123/196 kB | 49/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 127/196 kB | 49/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 49/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 53/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 53/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 57/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 61/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 66/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 70/76 kB | 58 kB Progress (5): 147/167 kB | 131/196 kB | 57/615 kB | 74/76 kB | 58 kB Progress (5): 151/167 kB | 131/196 kB | 57/615 kB | 74/76 kB | 58 kB Progress (5): 151/167 kB | 131/196 kB | 57/615 kB | 76 kB | 58 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (58 kB at 225 kB/s) +Progress (4): 151/167 kB | 131/196 kB | 61/615 kB | 76 kB Progress (4): 151/167 kB | 131/196 kB | 64/615 kB | 76 kB Progress (4): 151/167 kB | 135/196 kB | 64/615 kB | 76 kB Progress (4): 151/167 kB | 139/196 kB | 64/615 kB | 76 kB Progress (4): 151/167 kB | 143/196 kB | 64/615 kB | 76 kB Progress (4): 151/167 kB | 143/196 kB | 68/615 kB | 76 kB Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar +Progress (4): 155/167 kB | 143/196 kB | 68/615 kB | 76 kB Progress (4): 159/167 kB | 143/196 kB | 68/615 kB | 76 kB Progress (4): 163/167 kB | 143/196 kB | 68/615 kB | 76 kB Progress (4): 167 kB | 143/196 kB | 68/615 kB | 76 kB Progress (4): 167 kB | 143/196 kB | 72/615 kB | 76 kB Progress (4): 167 kB | 143/196 kB | 76/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 76/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 80/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 84/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 88/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 92/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 96/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 100/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 105/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 109/615 kB | 76 kB Progress (4): 167 kB | 147/196 kB | 113/615 kB | 76 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.2.0/plexus-io-3.2.0.jar (76 kB at 275 kB/s) +Progress (3): 167 kB | 151/196 kB | 113/615 kB Progress (3): 167 kB | 151/196 kB | 117/615 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar +Progress (3): 167 kB | 155/196 kB | 117/615 kB Progress (3): 167 kB | 155/196 kB | 121/615 kB Progress (3): 167 kB | 155/196 kB | 125/615 kB Progress (3): 167 kB | 155/196 kB | 129/615 kB Progress (3): 167 kB | 159/196 kB | 129/615 kB Progress (3): 167 kB | 163/196 kB | 129/615 kB Progress (4): 167 kB | 163/196 kB | 129/615 kB | 4.1/109 kB Progress (4): 167 kB | 163/196 kB | 129/615 kB | 8.2/109 kB Progress (4): 167 kB | 163/196 kB | 133/615 kB | 8.2/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 8.2/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 12/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 16/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 20/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 25/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 29/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 33/109 kB Progress (4): 167 kB | 163/196 kB | 137/615 kB | 37/109 kB Progress (4): 167 kB | 168/196 kB | 137/615 kB | 37/109 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar (167 kB at 565 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar +Progress (3): 172/196 kB | 137/615 kB | 37/109 kB Progress (3): 176/196 kB | 137/615 kB | 37/109 kB Progress (4): 176/196 kB | 137/615 kB | 37/109 kB | 4.1/14 kB Progress (4): 176/196 kB | 137/615 kB | 37/109 kB | 8.2/14 kB Progress (4): 176/196 kB | 137/615 kB | 37/109 kB | 12/14 kB Progress (4): 176/196 kB | 141/615 kB | 37/109 kB | 12/14 kB Progress (4): 176/196 kB | 146/615 kB | 37/109 kB | 12/14 kB Progress (4): 176/196 kB | 146/615 kB | 37/109 kB | 14 kB Progress (4): 176/196 kB | 150/615 kB | 37/109 kB | 14 kB Progress (4): 176/196 kB | 154/615 kB | 37/109 kB | 14 kB Progress (4): 176/196 kB | 158/615 kB | 37/109 kB | 14 kB Progress (4): 176/196 kB | 162/615 kB | 37/109 kB | 14 kB Progress (4): 180/196 kB | 162/615 kB | 37/109 kB | 14 kB Progress (4): 180/196 kB | 162/615 kB | 41/109 kB | 14 kB Progress (4): 180/196 kB | 162/615 kB | 45/109 kB | 14 kB Progress (4): 180/196 kB | 166/615 kB | 45/109 kB | 14 kB Progress (4): 180/196 kB | 170/615 kB | 45/109 kB | 14 kB Progress (4): 180/196 kB | 170/615 kB | 49/109 kB | 14 kB Progress (4): 184/196 kB | 170/615 kB | 49/109 kB | 14 kB Progress (4): 188/196 kB | 170/615 kB | 49/109 kB | 14 kB Progress (4): 188/196 kB | 170/615 kB | 53/109 kB | 14 kB Progress (4): 192/196 kB | 170/615 kB | 53/109 kB | 14 kB Progress (4): 196/196 kB | 170/615 kB | 53/109 kB | 14 kB Progress (4): 196/196 kB | 174/615 kB | 53/109 kB | 14 kB Progress (4): 196/196 kB | 178/615 kB | 53/109 kB | 14 kB Progress (4): 196/196 kB | 182/615 kB | 53/109 kB | 14 kB Progress (4): 196/196 kB | 186/615 kB | 53/109 kB | 14 kB Progress (5): 196/196 kB | 186/615 kB | 53/109 kB | 14 kB | 4.1/32 kB Progress (5): 196/196 kB | 186/615 kB | 53/109 kB | 14 kB | 8.2/32 kB Progress (5): 196 kB | 186/615 kB | 53/109 kB | 14 kB | 8.2/32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-resolver/1.0/maven-artifact-resolver-1.0.jar (14 kB at 43 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar +Progress (4): 196 kB | 186/615 kB | 57/109 kB | 8.2/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 12/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 16/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 20/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 24/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 28/32 kB Progress (4): 196 kB | 186/615 kB | 57/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 57/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 61/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 65/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 69/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 73/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 78/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 82/109 kB | 32 kB Progress (4): 196 kB | 191/615 kB | 86/109 kB | 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.0/plexus-archiver-4.2.0.jar (196 kB at 599 kB/s) +Progress (3): 195/615 kB | 86/109 kB | 32 kB Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar +Progress (3): 195/615 kB | 90/109 kB | 32 kB Progress (3): 199/615 kB | 90/109 kB | 32 kB Progress (3): 203/615 kB | 90/109 kB | 32 kB Progress (3): 207/615 kB | 90/109 kB | 32 kB Progress (3): 207/615 kB | 94/109 kB | 32 kB Progress (3): 207/615 kB | 98/109 kB | 32 kB Progress (3): 211/615 kB | 98/109 kB | 32 kB Progress (3): 211/615 kB | 102/109 kB | 32 kB Progress (3): 211/615 kB | 106/109 kB | 32 kB Progress (3): 211/615 kB | 109 kB | 32 kB Progress (3): 215/615 kB | 109 kB | 32 kB Progress (3): 219/615 kB | 109 kB | 32 kB Progress (3): 223/615 kB | 109 kB | 32 kB Progress (3): 227/615 kB | 109 kB | 32 kB Progress (4): 227/615 kB | 109 kB | 32 kB | 4.1/51 kB Progress (4): 227/615 kB | 109 kB | 32 kB | 8.2/51 kB Progress (4): 227/615 kB | 109 kB | 32 kB | 12/51 kB Progress (4): 232/615 kB | 109 kB | 32 kB | 12/51 kB Progress (4): 232/615 kB | 109 kB | 32 kB | 16/51 kB Progress (4): 236/615 kB | 109 kB | 32 kB | 16/51 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.4/maven-common-artifact-filters-1.4.jar (32 kB at 93 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-resources/1.0.1/plexus-resources-1.0.1.jar +Progress (3): 240/615 kB | 109 kB | 16/51 kB Progress (3): 240/615 kB | 109 kB | 20/51 kB Progress (3): 240/615 kB | 109 kB | 25/51 kB Progress (3): 240/615 kB | 109 kB | 29/51 kB Progress (3): 244/615 kB | 109 kB | 29/51 kB Progress (3): 244/615 kB | 109 kB | 33/51 kB Progress (3): 248/615 kB | 109 kB | 33/51 kB Progress (3): 248/615 kB | 109 kB | 37/51 kB Progress (3): 248/615 kB | 109 kB | 41/51 kB Progress (4): 248/615 kB | 109 kB | 41/51 kB | 4.1/8.5 kB Progress (4): 248/615 kB | 109 kB | 41/51 kB | 8.2/8.5 kB Progress (4): 252/615 kB | 109 kB | 41/51 kB | 8.2/8.5 kB Progress (4): 252/615 kB | 109 kB | 41/51 kB | 8.5 kB Progress (4): 252/615 kB | 109 kB | 45/51 kB | 8.5 kB Progress (4): 252/615 kB | 109 kB | 49/51 kB | 8.5 kB Progress (4): 252/615 kB | 109 kB | 51 kB | 8.5 kB Progress (4): 256/615 kB | 109 kB | 51 kB | 8.5 kB Progress (4): 260/615 kB | 109 kB | 51 kB | 8.5 kB Progress (4): 264/615 kB | 109 kB | 51 kB | 8.5 kB Progress (4): 268/615 kB | 109 kB | 51 kB | 8.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar (109 kB at 309 kB/s) +Progress (3): 273/615 kB | 51 kB | 8.5 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar +Progress (3): 277/615 kB | 51 kB | 8.5 kB Progress (3): 281/615 kB | 51 kB | 8.5 kB Progress (3): 285/615 kB | 51 kB | 8.5 kB Progress (3): 289/615 kB | 51 kB | 8.5 kB Progress (3): 293/615 kB | 51 kB | 8.5 kB Progress (3): 297/615 kB | 51 kB | 8.5 kB Progress (3): 301/615 kB | 51 kB | 8.5 kB Progress (3): 305/615 kB | 51 kB | 8.5 kB Progress (3): 309/615 kB | 51 kB | 8.5 kB Progress (4): 309/615 kB | 51 kB | 8.5 kB | 4.1/22 kB Progress (4): 313/615 kB | 51 kB | 8.5 kB | 4.1/22 kB Progress (4): 318/615 kB | 51 kB | 8.5 kB | 4.1/22 kB Progress (4): 318/615 kB | 51 kB | 8.5 kB | 8.2/22 kB Progress (4): 322/615 kB | 51 kB | 8.5 kB | 8.2/22 kB Progress (4): 326/615 kB | 51 kB | 8.5 kB | 8.2/22 kB Progress (4): 326/615 kB | 51 kB | 8.5 kB | 12/22 kB Progress (4): 326/615 kB | 51 kB | 8.5 kB | 16/22 kB Progress (4): 326/615 kB | 51 kB | 8.5 kB | 20/22 kB Progress (4): 326/615 kB | 51 kB | 8.5 kB | 22 kB Progress (4): 330/615 kB | 51 kB | 8.5 kB | 22 kB Progress (4): 334/615 kB | 51 kB | 8.5 kB | 22 kB Progress (4): 338/615 kB | 51 kB | 8.5 kB | 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar (51 kB at 140 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar +Progress (3): 342/615 kB | 8.5 kB | 22 kB Progress (3): 346/615 kB | 8.5 kB | 22 kB Progress (3): 350/615 kB | 8.5 kB | 22 kB Progress (3): 354/615 kB | 8.5 kB | 22 kB Progress (3): 359/615 kB | 8.5 kB | 22 kB Progress (3): 363/615 kB | 8.5 kB | 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (8.5 kB at 23 kB/s) +Progress (2): 367/615 kB | 22 kB Progress (2): 371/615 kB | 22 kB Progress (3): 371/615 kB | 22 kB | 4.1/85 kB Progress (3): 375/615 kB | 22 kB | 4.1/85 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar +Progress (3): 379/615 kB | 22 kB | 4.1/85 kB Progress (3): 383/615 kB | 22 kB | 4.1/85 kB Progress (3): 383/615 kB | 22 kB | 8.2/85 kB Progress (3): 383/615 kB | 22 kB | 12/85 kB Progress (3): 383/615 kB | 22 kB | 16/85 kB Progress (3): 383/615 kB | 22 kB | 20/85 kB Progress (3): 383/615 kB | 22 kB | 25/85 kB Progress (3): 387/615 kB | 22 kB | 25/85 kB Progress (3): 387/615 kB | 22 kB | 29/85 kB Progress (3): 391/615 kB | 22 kB | 29/85 kB Progress (3): 391/615 kB | 22 kB | 33/85 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-resources/1.0.1/plexus-resources-1.0.1.jar (22 kB at 58 kB/s) +Progress (3): 391/615 kB | 33/85 kB | 4.1/262 kB Progress (3): 391/615 kB | 37/85 kB | 4.1/262 kB Progress (3): 395/615 kB | 37/85 kB | 4.1/262 kB Progress (3): 395/615 kB | 41/85 kB | 4.1/262 kB Progress (3): 395/615 kB | 41/85 kB | 8.2/262 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar +Progress (4): 395/615 kB | 41/85 kB | 8.2/262 kB | 4.1/209 kB Progress (4): 395/615 kB | 41/85 kB | 8.2/262 kB | 8.2/209 kB Progress (4): 395/615 kB | 41/85 kB | 12/262 kB | 8.2/209 kB Progress (4): 395/615 kB | 41/85 kB | 16/262 kB | 8.2/209 kB Progress (4): 395/615 kB | 45/85 kB | 16/262 kB | 8.2/209 kB Progress (4): 399/615 kB | 45/85 kB | 16/262 kB | 8.2/209 kB Progress (4): 404/615 kB | 45/85 kB | 16/262 kB | 8.2/209 kB Progress (4): 404/615 kB | 49/85 kB | 16/262 kB | 8.2/209 kB Progress (4): 404/615 kB | 49/85 kB | 16/262 kB | 12/209 kB Progress (4): 408/615 kB | 49/85 kB | 16/262 kB | 12/209 kB Progress (4): 408/615 kB | 49/85 kB | 20/262 kB | 12/209 kB Progress (4): 412/615 kB | 49/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 49/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 53/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 57/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 61/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 66/85 kB | 20/262 kB | 12/209 kB Progress (4): 416/615 kB | 66/85 kB | 20/262 kB | 16/209 kB Progress (4): 416/615 kB | 70/85 kB | 20/262 kB | 16/209 kB Progress (4): 416/615 kB | 70/85 kB | 20/262 kB | 20/209 kB Progress (4): 416/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 420/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 424/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 428/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 432/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 436/615 kB | 70/85 kB | 20/262 kB | 25/209 kB Progress (4): 436/615 kB | 70/85 kB | 25/262 kB | 25/209 kB Progress (4): 440/615 kB | 70/85 kB | 25/262 kB | 25/209 kB Progress (4): 440/615 kB | 70/85 kB | 25/262 kB | 29/209 kB Progress (4): 440/615 kB | 70/85 kB | 25/262 kB | 33/209 kB Progress (4): 440/615 kB | 74/85 kB | 25/262 kB | 33/209 kB Progress (4): 440/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 445/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 449/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 453/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 457/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 461/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 465/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 469/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 473/615 kB | 74/85 kB | 25/262 kB | 37/209 kB Progress (4): 473/615 kB | 74/85 kB | 29/262 kB | 37/209 kB Progress (5): 473/615 kB | 74/85 kB | 29/262 kB | 37/209 kB | 4.1/575 kB Progress (5): 473/615 kB | 74/85 kB | 29/262 kB | 37/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 74/85 kB | 29/262 kB | 41/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 74/85 kB | 29/262 kB | 45/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 74/85 kB | 29/262 kB | 49/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 78/85 kB | 29/262 kB | 49/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 82/85 kB | 29/262 kB | 49/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 82/85 kB | 29/262 kB | 53/209 kB | 8.2/575 kB Progress (5): 473/615 kB | 82/85 kB | 29/262 kB | 53/209 kB | 12/575 kB Progress (5): 477/615 kB | 82/85 kB | 29/262 kB | 53/209 kB | 12/575 kB Progress (5): 477/615 kB | 82/85 kB | 33/262 kB | 53/209 kB | 12/575 kB Progress (5): 481/615 kB | 82/85 kB | 33/262 kB | 53/209 kB | 12/575 kB Progress (5): 481/615 kB | 82/85 kB | 33/262 kB | 53/209 kB | 16/575 kB Progress (5): 481/615 kB | 82/85 kB | 33/262 kB | 57/209 kB | 16/575 kB Progress (5): 481/615 kB | 82/85 kB | 33/262 kB | 61/209 kB | 16/575 kB Progress (5): 481/615 kB | 82/85 kB | 33/262 kB | 65/209 kB | 16/575 kB Progress (5): 481/615 kB | 85 kB | 33/262 kB | 65/209 kB | 16/575 kB Progress (5): 481/615 kB | 85 kB | 33/262 kB | 69/209 kB | 16/575 kB Progress (5): 481/615 kB | 85 kB | 33/262 kB | 74/209 kB | 16/575 kB Progress (5): 481/615 kB | 85 kB | 33/262 kB | 74/209 kB | 20/575 kB Progress (5): 481/615 kB | 85 kB | 33/262 kB | 74/209 kB | 25/575 kB Progress (5): 486/615 kB | 85 kB | 33/262 kB | 74/209 kB | 25/575 kB Progress (5): 486/615 kB | 85 kB | 37/262 kB | 74/209 kB | 25/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 74/209 kB | 25/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 74/209 kB | 29/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 74/209 kB | 33/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 78/209 kB | 33/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 82/209 kB | 33/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 82/209 kB | 37/575 kB Progress (5): 490/615 kB | 85 kB | 37/262 kB | 82/209 kB | 41/575 kB Progress (5): 494/615 kB | 85 kB | 37/262 kB | 82/209 kB | 41/575 kB Progress (5): 498/615 kB | 85 kB | 37/262 kB | 82/209 kB | 41/575 kB Progress (5): 502/615 kB | 85 kB | 37/262 kB | 82/209 kB | 41/575 kB Progress (5): 502/615 kB | 85 kB | 41/262 kB | 82/209 kB | 41/575 kB Progress (5): 502/615 kB | 85 kB | 45/262 kB | 82/209 kB | 41/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 82/209 kB | 41/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 82/209 kB | 45/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 82/209 kB | 49/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 86/209 kB | 49/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 90/209 kB | 49/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 94/209 kB | 49/575 kB Progress (5): 506/615 kB | 85 kB | 45/262 kB | 98/209 kB | 49/575 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.jar (85 kB at 198 kB/s) +Progress (4): 510/615 kB | 45/262 kB | 98/209 kB | 49/575 kB Progress (4): 514/615 kB | 45/262 kB | 98/209 kB | 49/575 kB Progress (4): 518/615 kB | 45/262 kB | 98/209 kB | 49/575 kB Progress (4): 522/615 kB | 45/262 kB | 98/209 kB | 49/575 kB Progress (4): 522/615 kB | 49/262 kB | 98/209 kB | 49/575 kB Progress (4): 526/615 kB | 49/262 kB | 98/209 kB | 49/575 kB Progress (4): 531/615 kB | 49/262 kB | 98/209 kB | 49/575 kB Progress (4): 535/615 kB | 49/262 kB | 98/209 kB | 49/575 kB Progress (4): 535/615 kB | 53/262 kB | 98/209 kB | 49/575 kB Progress (4): 535/615 kB | 57/262 kB | 98/209 kB | 49/575 kB Progress (4): 535/615 kB | 57/262 kB | 102/209 kB | 49/575 kB Progress (4): 535/615 kB | 57/262 kB | 106/209 kB | 49/575 kB Progress (4): 535/615 kB | 57/262 kB | 106/209 kB | 53/575 kB Progress (4): 535/615 kB | 57/262 kB | 106/209 kB | 57/575 kB Progress (4): 535/615 kB | 57/262 kB | 110/209 kB | 57/575 kB Progress (4): 535/615 kB | 57/262 kB | 114/209 kB | 57/575 kB Progress (4): 535/615 kB | 61/262 kB | 114/209 kB | 57/575 kB Progress (4): 535/615 kB | 64/262 kB | 114/209 kB | 57/575 kB Progress (4): 539/615 kB | 64/262 kB | 114/209 kB | 57/575 kB Progress (4): 543/615 kB | 64/262 kB | 114/209 kB | 57/575 kB Progress (4): 547/615 kB | 64/262 kB | 114/209 kB | 57/575 kB Progress (4): 547/615 kB | 64/262 kB | 119/209 kB | 57/575 kB Progress (4): 547/615 kB | 64/262 kB | 123/209 kB | 57/575 kB Progress (4): 547/615 kB | 64/262 kB | 123/209 kB | 61/575 kB Progress (4): 547/615 kB | 64/262 kB | 127/209 kB | 61/575 kB Progress (4): 551/615 kB | 64/262 kB | 127/209 kB | 61/575 kB Progress (4): 551/615 kB | 68/262 kB | 127/209 kB | 61/575 kB Progress (4): 551/615 kB | 72/262 kB | 127/209 kB | 61/575 kB Progress (4): 555/615 kB | 72/262 kB | 127/209 kB | 61/575 kB Progress (4): 555/615 kB | 72/262 kB | 131/209 kB | 61/575 kB Progress (4): 555/615 kB | 72/262 kB | 131/209 kB | 66/575 kB Progress (4): 559/615 kB | 72/262 kB | 131/209 kB | 66/575 kB Progress (4): 563/615 kB | 72/262 kB | 131/209 kB | 66/575 kB Progress (4): 563/615 kB | 77/262 kB | 131/209 kB | 66/575 kB Progress (4): 567/615 kB | 77/262 kB | 131/209 kB | 66/575 kB Progress (4): 572/615 kB | 77/262 kB | 131/209 kB | 66/575 kB Progress (4): 572/615 kB | 77/262 kB | 135/209 kB | 66/575 kB Progress (4): 572/615 kB | 77/262 kB | 139/209 kB | 66/575 kB Progress (4): 576/615 kB | 77/262 kB | 139/209 kB | 66/575 kB Progress (4): 576/615 kB | 77/262 kB | 139/209 kB | 70/575 kB Progress (4): 576/615 kB | 77/262 kB | 139/209 kB | 74/575 kB Progress (4): 580/615 kB | 77/262 kB | 139/209 kB | 74/575 kB Progress (4): 580/615 kB | 81/262 kB | 139/209 kB | 74/575 kB Progress (4): 580/615 kB | 81/262 kB | 143/209 kB | 74/575 kB Progress (4): 580/615 kB | 85/262 kB | 143/209 kB | 74/575 kB Progress (4): 580/615 kB | 89/262 kB | 143/209 kB | 74/575 kB Progress (4): 580/615 kB | 93/262 kB | 143/209 kB | 74/575 kB Progress (4): 584/615 kB | 93/262 kB | 143/209 kB | 74/575 kB Progress (4): 584/615 kB | 93/262 kB | 143/209 kB | 78/575 kB Progress (4): 588/615 kB | 93/262 kB | 143/209 kB | 78/575 kB Progress (4): 588/615 kB | 97/262 kB | 143/209 kB | 78/575 kB Progress (4): 588/615 kB | 97/262 kB | 147/209 kB | 78/575 kB Progress (4): 588/615 kB | 101/262 kB | 147/209 kB | 78/575 kB Progress (4): 588/615 kB | 101/262 kB | 151/209 kB | 78/575 kB Progress (4): 592/615 kB | 101/262 kB | 151/209 kB | 78/575 kB Progress (4): 592/615 kB | 101/262 kB | 151/209 kB | 82/575 kB Progress (4): 596/615 kB | 101/262 kB | 151/209 kB | 82/575 kB Progress (4): 596/615 kB | 101/262 kB | 155/209 kB | 82/575 kB Progress (4): 596/615 kB | 105/262 kB | 155/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 155/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 160/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 164/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 168/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 172/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 176/209 kB | 82/575 kB Progress (4): 596/615 kB | 109/262 kB | 180/209 kB | 82/575 kB Progress (4): 600/615 kB | 109/262 kB | 180/209 kB | 82/575 kB Progress (4): 600/615 kB | 109/262 kB | 180/209 kB | 86/575 kB Progress (4): 604/615 kB | 109/262 kB | 180/209 kB | 86/575 kB Progress (4): 604/615 kB | 109/262 kB | 184/209 kB | 86/575 kB Progress (4): 604/615 kB | 109/262 kB | 188/209 kB | 86/575 kB Progress (4): 604/615 kB | 113/262 kB | 188/209 kB | 86/575 kB Progress (4): 608/615 kB | 113/262 kB | 188/209 kB | 86/575 kB Progress (4): 608/615 kB | 113/262 kB | 188/209 kB | 90/575 kB Progress (4): 608/615 kB | 113/262 kB | 192/209 kB | 90/575 kB Progress (4): 608/615 kB | 113/262 kB | 196/209 kB | 90/575 kB Progress (4): 608/615 kB | 117/262 kB | 196/209 kB | 90/575 kB Progress (4): 612/615 kB | 117/262 kB | 196/209 kB | 90/575 kB Progress (4): 612/615 kB | 122/262 kB | 196/209 kB | 90/575 kB Progress (4): 612/615 kB | 126/262 kB | 196/209 kB | 90/575 kB Progress (4): 612/615 kB | 126/262 kB | 200/209 kB | 90/575 kB Progress (4): 612/615 kB | 126/262 kB | 200/209 kB | 94/575 kB Progress (4): 612/615 kB | 126/262 kB | 200/209 kB | 98/575 kB Progress (4): 612/615 kB | 126/262 kB | 205/209 kB | 98/575 kB Progress (4): 612/615 kB | 130/262 kB | 205/209 kB | 98/575 kB Progress (4): 615 kB | 130/262 kB | 205/209 kB | 98/575 kB Progress (4): 615 kB | 130/262 kB | 209/209 kB | 98/575 kB Progress (4): 615 kB | 130/262 kB | 209 kB | 98/575 kB Progress (4): 615 kB | 130/262 kB | 209 kB | 102/575 kB Progress (4): 615 kB | 134/262 kB | 209 kB | 102/575 kB Progress (4): 615 kB | 134/262 kB | 209 kB | 106/575 kB Progress (4): 615 kB | 134/262 kB | 209 kB | 111/575 kB Progress (4): 615 kB | 138/262 kB | 209 kB | 111/575 kB Progress (4): 615 kB | 138/262 kB | 209 kB | 115/575 kB Progress (4): 615 kB | 138/262 kB | 209 kB | 119/575 kB Progress (4): 615 kB | 138/262 kB | 209 kB | 123/575 kB Progress (4): 615 kB | 142/262 kB | 209 kB | 123/575 kB Progress (4): 615 kB | 142/262 kB | 209 kB | 127/575 kB Progress (4): 615 kB | 146/262 kB | 209 kB | 127/575 kB Progress (4): 615 kB | 146/262 kB | 209 kB | 131/575 kB Progress (4): 615 kB | 146/262 kB | 209 kB | 135/575 kB Progress (4): 615 kB | 150/262 kB | 209 kB | 135/575 kB Progress (4): 615 kB | 150/262 kB | 209 kB | 139/575 kB Progress (4): 615 kB | 150/262 kB | 209 kB | 143/575 kB Progress (4): 615 kB | 154/262 kB | 209 kB | 143/575 kB Progress (4): 615 kB | 154/262 kB | 209 kB | 147/575 kB Progress (4): 615 kB | 158/262 kB | 209 kB | 147/575 kB Progress (4): 615 kB | 158/262 kB | 209 kB | 152/575 kB Progress (4): 615 kB | 163/262 kB | 209 kB | 152/575 kB Progress (4): 615 kB | 163/262 kB | 209 kB | 156/575 kB Progress (4): 615 kB | 163/262 kB | 209 kB | 160/575 kB Progress (4): 615 kB | 167/262 kB | 209 kB | 160/575 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.19/commons-compress-1.19.jar (615 kB at 1.2 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.5/commons-io-2.5.jar (209 kB at 415 kB/s) +Progress (2): 167/262 kB | 164/575 kB Progress (2): 167/262 kB | 168/575 kB Progress (2): 171/262 kB | 168/575 kB Progress (2): 175/262 kB | 168/575 kB Progress (2): 175/262 kB | 172/575 kB Progress (2): 175/262 kB | 176/575 kB Progress (2): 179/262 kB | 176/575 kB Progress (2): 179/262 kB | 180/575 kB Progress (2): 179/262 kB | 184/575 kB Progress (2): 179/262 kB | 188/575 kB Progress (2): 183/262 kB | 188/575 kB Progress (2): 187/262 kB | 188/575 kB Progress (2): 187/262 kB | 193/575 kB Progress (2): 191/262 kB | 193/575 kB Progress (2): 191/262 kB | 197/575 kB Progress (2): 191/262 kB | 201/575 kB Progress (2): 191/262 kB | 205/575 kB Progress (2): 191/262 kB | 209/575 kB Progress (2): 195/262 kB | 209/575 kB Progress (2): 199/262 kB | 209/575 kB Progress (2): 199/262 kB | 213/575 kB Progress (2): 203/262 kB | 213/575 kB Progress (2): 208/262 kB | 213/575 kB Progress (2): 208/262 kB | 217/575 kB Progress (2): 208/262 kB | 221/575 kB Progress (2): 212/262 kB | 221/575 kB Progress (2): 216/262 kB | 221/575 kB Progress (2): 216/262 kB | 225/575 kB Progress (2): 216/262 kB | 229/575 kB Progress (2): 220/262 kB | 229/575 kB Progress (2): 224/262 kB | 229/575 kB Progress (2): 224/262 kB | 233/575 kB Progress (2): 228/262 kB | 233/575 kB Progress (2): 228/262 kB | 238/575 kB Progress (2): 232/262 kB | 238/575 kB Progress (2): 232/262 kB | 242/575 kB Progress (2): 236/262 kB | 242/575 kB Progress (2): 240/262 kB | 242/575 kB Progress (2): 240/262 kB | 246/575 kB Progress (2): 240/262 kB | 250/575 kB Progress (2): 244/262 kB | 250/575 kB Progress (2): 244/262 kB | 254/575 kB Progress (2): 249/262 kB | 254/575 kB Progress (2): 249/262 kB | 258/575 kB Progress (2): 253/262 kB | 258/575 kB Progress (2): 257/262 kB | 258/575 kB Progress (2): 257/262 kB | 262/575 kB Progress (2): 261/262 kB | 262/575 kB Progress (2): 261/262 kB | 266/575 kB Progress (2): 262 kB | 266/575 kB Progress (2): 262 kB | 270/575 kB Progress (2): 262 kB | 274/575 kB Progress (2): 262 kB | 279/575 kB Progress (2): 262 kB | 283/575 kB Progress (2): 262 kB | 287/575 kB Progress (2): 262 kB | 291/575 kB Progress (2): 262 kB | 295/575 kB Progress (2): 262 kB | 299/575 kB Progress (2): 262 kB | 303/575 kB Progress (2): 262 kB | 307/575 kB Progress (2): 262 kB | 311/575 kB Progress (2): 262 kB | 315/575 kB Progress (2): 262 kB | 319/575 kB Progress (2): 262 kB | 324/575 kB Progress (2): 262 kB | 328/575 kB Progress (2): 262 kB | 332/575 kB Progress (2): 262 kB | 336/575 kB Progress (2): 262 kB | 340/575 kB Progress (2): 262 kB | 344/575 kB Progress (2): 262 kB | 348/575 kB Progress (2): 262 kB | 352/575 kB Progress (2): 262 kB | 356/575 kB Progress (2): 262 kB | 360/575 kB Progress (2): 262 kB | 365/575 kB Progress (2): 262 kB | 369/575 kB Progress (2): 262 kB | 373/575 kB Progress (2): 262 kB | 377/575 kB Progress (2): 262 kB | 381/575 kB Progress (2): 262 kB | 385/575 kB Progress (2): 262 kB | 389/575 kB Progress (2): 262 kB | 393/575 kB Progress (2): 262 kB | 397/575 kB Progress (2): 262 kB | 401/575 kB Progress (2): 262 kB | 406/575 kB Progress (2): 262 kB | 410/575 kB Progress (2): 262 kB | 414/575 kB Progress (2): 262 kB | 418/575 kB Progress (2): 262 kB | 422/575 kB Progress (2): 262 kB | 426/575 kB Progress (2): 262 kB | 430/575 kB Progress (2): 262 kB | 434/575 kB Progress (2): 262 kB | 438/575 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar (262 kB at 481 kB/s) +Progress (1): 442/575 kB Progress (1): 446/575 kB Progress (1): 451/575 kB Progress (1): 455/575 kB Progress (1): 459/575 kB Progress (1): 463/575 kB Progress (1): 467/575 kB Progress (1): 471/575 kB Progress (1): 475/575 kB Progress (1): 479/575 kB Progress (1): 483/575 kB Progress (1): 487/575 kB Progress (1): 492/575 kB Progress (1): 496/575 kB Progress (1): 500/575 kB Progress (1): 504/575 kB Progress (1): 508/575 kB Progress (1): 512/575 kB Progress (1): 516/575 kB Progress (1): 520/575 kB Progress (1): 524/575 kB Progress (1): 528/575 kB Progress (1): 532/575 kB Progress (1): 537/575 kB Progress (1): 541/575 kB Progress (1): 545/575 kB Progress (1): 549/575 kB Progress (1): 553/575 kB Progress (1): 557/575 kB Progress (1): 561/575 kB Progress (1): 565/575 kB Progress (1): 569/575 kB Progress (1): 573/575 kB Progress (1): 575 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar (575 kB at 999 kB/s) +[INFO] Skipping remote resources execution. +[INFO] +[INFO] --- buildnumber-maven-plugin:3.1.0:create (default) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.13.0/maven-scm-api-1.13.0.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.13.0/maven-scm-api-1.13.0.pom (1.6 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.13.0/maven-scm-1.13.0.pom +Progress (1): 4.1/26 kB Progress (1): 8.2/26 kB Progress (1): 12/26 kB Progress (1): 16/26 kB Progress (1): 20/26 kB Progress (1): 25/26 kB Progress (1): 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.13.0/maven-scm-1.13.0.pom (26 kB at 855 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.pom +Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.1/plexus-utils-3.3.1.pom (5.3 kB at 198 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-manager-plexus/1.13.0/maven-scm-manager-plexus-1.13.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-manager-plexus/1.13.0/maven-scm-manager-plexus-1.13.0.pom (2.2 kB at 75 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-managers/1.13.0/maven-scm-managers-1.13.0.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-managers/1.13.0/maven-scm-managers-1.13.0.pom (1.5 kB at 55 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-bazaar/1.13.0/maven-scm-provider-bazaar-1.13.0.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-bazaar/1.13.0/maven-scm-provider-bazaar-1.13.0.pom (2.0 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.13.0/maven-scm-providers-1.13.0.pom +Progress (1): 3.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.13.0/maven-scm-providers-1.13.0.pom (3.6 kB at 129 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svnexe/1.13.0/maven-scm-provider-svnexe-1.13.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svnexe/1.13.0/maven-scm-provider-svnexe-1.13.0.pom (2.7 kB at 101 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-svn/1.13.0/maven-scm-providers-svn-1.13.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-svn/1.13.0/maven-scm-providers-svn-1.13.0.pom (2.2 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.13.0/maven-scm-provider-svn-commons-1.13.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.13.0/maven-scm-provider-svn-commons-1.13.0.pom (2.7 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.pom (17 kB at 648 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom +Progress (1): 4.1/31 kB Progress (1): 8.2/31 kB Progress (1): 12/31 kB Progress (1): 16/31 kB Progress (1): 20/31 kB Progress (1): 25/31 kB Progress (1): 29/31 kB Progress (1): 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/17/commons-parent-17.pom (31 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.13.0/maven-scm-provider-gitexe-1.13.0.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.13.0/maven-scm-provider-gitexe-1.13.0.pom (2.6 kB at 96 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.13.0/maven-scm-providers-git-1.13.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-git/1.13.0/maven-scm-providers-git-1.13.0.pom (2.2 kB at 69 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git-commons/1.13.0/maven-scm-provider-git-commons-1.13.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git-commons/1.13.0/maven-scm-provider-git-commons-1.13.0.pom (2.7 kB at 90 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvsexe/1.13.0/maven-scm-provider-cvsexe-1.13.0.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvsexe/1.13.0/maven-scm-provider-cvsexe-1.13.0.pom (2.8 kB at 84 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-cvs/1.13.0/maven-scm-providers-cvs-1.13.0.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-cvs/1.13.0/maven-scm-providers-cvs-1.13.0.pom (1.8 kB at 63 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvs-commons/1.13.0/maven-scm-provider-cvs-commons-1.13.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvs-commons/1.13.0/maven-scm-provider-cvs-commons-1.13.0.pom (2.4 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-starteam/1.13.0/maven-scm-provider-starteam-1.13.0.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-starteam/1.13.0/maven-scm-provider-starteam-1.13.0.pom (2.6 kB at 52 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-clearcase/1.13.0/maven-scm-provider-clearcase-1.13.0.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-clearcase/1.13.0/maven-scm-provider-clearcase-1.13.0.pom (2.6 kB at 93 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-perforce/1.13.0/maven-scm-provider-perforce-1.13.0.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-perforce/1.13.0/maven-scm-provider-perforce-1.13.0.pom (2.6 kB at 86 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-hg/1.13.0/maven-scm-provider-hg-1.13.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-hg/1.13.0/maven-scm-provider-hg-1.13.0.pom (2.4 kB at 80 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/maven-scm-provider-svnjava/maven-scm-provider-svnjava/2.2.1/maven-scm-provider-svnjava-2.2.1.pom +Progress (1): 4.1/9.8 kB Progress (1): 8.2/9.8 kB Progress (1): 9.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/maven-scm-provider-svnjava/maven-scm-provider-svnjava/2.2.1/maven-scm-provider-svnjava-2.2.1.pom (9.8 kB at 326 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom +Progress (1): 4.1/6.6 kB Progress (1): 6.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 253 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.12.2/maven-scm-provider-svn-commons-1.12.2.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.12.2/maven-scm-provider-svn-commons-1.12.2.pom (2.7 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-svn/1.12.2/maven-scm-providers-svn-1.12.2.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers-svn/1.12.2/maven-scm-providers-svn-1.12.2.pom (2.2 kB at 75 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.12.2/maven-scm-providers-1.12.2.pom +Progress (1): 3.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-providers/1.12.2/maven-scm-providers-1.12.2.pom (3.6 kB at 120 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.12.2/maven-scm-1.12.2.pom +Progress (1): 4.1/26 kB Progress (1): 8.2/26 kB Progress (1): 12/26 kB Progress (1): 16/26 kB Progress (1): 20/26 kB Progress (1): 24/26 kB Progress (1): 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm/1.12.2/maven-scm-1.12.2.pom (26 kB at 851 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.12.2/maven-scm-api-1.12.2.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.12.2/maven-scm-api-1.12.2.pom (1.6 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.11.0/jna-5.11.0.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.11.0/jna-5.11.0.pom (2.0 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/tmatesoft/svnkit/svnkit/1.10.11/svnkit-1.10.11.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tmatesoft/svnkit/svnkit/1.10.11/svnkit-1.10.11.pom (3.8 kB at 131 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-core/2.9.2/sshd-core-2.9.2.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-core/2.9.2/sshd-core-2.9.2.pom (12 kB at 471 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd/2.9.2/sshd-2.9.2.pom +Progress (1): 4.1/77 kB Progress (1): 8.2/77 kB Progress (1): 12/77 kB Progress (1): 16/77 kB Progress (1): 20/77 kB Progress (1): 24/77 kB Progress (1): 28/77 kB Progress (1): 32/77 kB Progress (1): 36/77 kB Progress (1): 40/77 kB Progress (1): 44/77 kB Progress (1): 49/77 kB Progress (1): 53/77 kB Progress (1): 57/77 kB Progress (1): 61/77 kB Progress (1): 65/77 kB Progress (1): 69/77 kB Progress (1): 73/77 kB Progress (1): 77/77 kB Progress (1): 77 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd/2.9.2/sshd-2.9.2.pom (77 kB at 2.5 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.2/testcontainers-bom-1.16.2.pom +Progress (1): 4.1/7.2 kB Progress (1): 7.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.2/testcontainers-bom-1.16.2.pom (7.2 kB at 268 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.3.20/spring-framework-bom-5.3.20.pom +Progress (1): 4.1/5.7 kB Progress (1): 5.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.3.20/spring-framework-bom-5.3.20.pom (5.7 kB at 218 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-common/2.9.2/sshd-common-2.9.2.pom +Progress (1): 4.1/4.7 kB Progress (1): 4.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-common/2.9.2/sshd-common-2.9.2.pom (4.7 kB at 162 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 153 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 511 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.32/jcl-over-slf4j-1.7.32.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.32/jcl-over-slf4j-1.7.32.pom (1.2 kB at 44 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.pom +Progress (1): 4.1/6.8 kB Progress (1): 6.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.pom (6.8 kB at 242 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/de/regnis/q/sequence/sequence-library/1.0.4/sequence-library-1.0.4.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/de/regnis/q/sequence/sequence-library/1.0.4/sequence-library-1.0.4.pom (1.7 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/tmatesoft/sqljet/sqljet/1.1.15/sqljet-1.1.15.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tmatesoft/sqljet/sqljet/1.1.15/sqljet-1.1.15.pom (2.8 kB at 101 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.4/antlr-runtime-3.4.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.4/antlr-runtime-3.4.pom (3.1 kB at 120 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.4/antlr-master-3.4.pom +Progress (1): 4.1/9.4 kB Progress (1): 8.2/9.4 kB Progress (1): 9.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.4/antlr-master-3.4.pom (9.4 kB at 361 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom (4.8 kB at 186 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom (1.6 kB at 61 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.pom (1.8 kB at 67 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build222/trilead-ssh2-1.0.0-build222.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build222/trilead-ssh2-1.0.0-build222.pom (1.2 kB at 45 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.connector-factory/0.0.9/jsch.agentproxy.connector-factory-0.0.9.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.connector-factory/0.0.9/jsch.agentproxy.connector-factory-0.0.9.pom (1.7 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy/0.0.9/jsch.agentproxy-0.0.9.pom +Progress (1): 4.1/4.3 kB Progress (1): 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy/0.0.9/jsch.agentproxy-0.0.9.pom (4.3 kB at 167 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/6/oss-parent-6.pom (4.8 kB at 179 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.core/0.0.9/jsch.agentproxy.core-0.0.9.pom +Progress (1): 804 B Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.core/0.0.9/jsch.agentproxy.core-0.0.9.pom (804 B at 30 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-jna/0.0.9/jsch.agentproxy.usocket-jna-0.0.9.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-jna/0.0.9/jsch.agentproxy.usocket-jna-0.0.9.pom (1.3 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-nc/0.0.9/jsch.agentproxy.usocket-nc-0.0.9.pom +Progress (1): 996 B Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-nc/0.0.9/jsch.agentproxy.usocket-nc-0.0.9.pom (996 B at 40 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.sshagent/0.0.9/jsch.agentproxy.sshagent-0.0.9.pom +Progress (1): 971 B Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.sshagent/0.0.9/jsch.agentproxy.sshagent-0.0.9.pom (971 B at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.pageant/0.0.9/jsch.agentproxy.pageant-0.0.9.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.pageant/0.0.9/jsch.agentproxy.pageant-0.0.9.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.svnkit-trilead-ssh2/0.0.9/jsch.agentproxy.svnkit-trilead-ssh2-0.0.9.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.svnkit-trilead-ssh2/0.0.9/jsch.agentproxy.svnkit-trilead-ssh2-0.0.9.pom (1.1 kB at 44 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build217/trilead-ssh2-1.0.0-build217.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build217/trilead-ssh2-1.0.0-build217.pom (1.1 kB at 43 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/lz4/lz4-java/1.4.1/lz4-java-1.4.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/lz4/lz4-java/1.4.1/lz4-java-1.4.1.pom (2.0 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.pom (3.0 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom +Progress (1): 4.1/9.4 kB Progress (1): 8.2/9.4 kB Progress (1): 9.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom (9.4 kB at 347 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom (13 kB at 464 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.13.0/maven-scm-api-1.13.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-bazaar/1.13.0/maven-scm-provider-bazaar-1.13.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-manager-plexus/1.13.0/maven-scm-manager-plexus-1.13.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svnexe/1.13.0/maven-scm-provider-svnexe-1.13.0.jar +Progress (1): 4.1/112 kB Progress (1): 8.2/112 kB Progress (1): 12/112 kB Progress (1): 16/112 kB Progress (1): 20/112 kB Progress (1): 25/112 kB Progress (1): 29/112 kB Progress (1): 33/112 kB Progress (1): 37/112 kB Progress (1): 41/112 kB Progress (1): 45/112 kB Progress (1): 49/112 kB Progress (1): 53/112 kB Progress (1): 57/112 kB Progress (1): 61/112 kB Progress (1): 66/112 kB Progress (1): 70/112 kB Progress (1): 74/112 kB Progress (1): 78/112 kB Progress (1): 82/112 kB Progress (2): 82/112 kB | 4.1/57 kB Progress (2): 82/112 kB | 8.2/57 kB Progress (2): 82/112 kB | 12/57 kB Progress (3): 82/112 kB | 12/57 kB | 4.1/11 kB Progress (3): 82/112 kB | 12/57 kB | 8.2/11 kB Progress (3): 82/112 kB | 12/57 kB | 11 kB Progress (3): 86/112 kB | 12/57 kB | 11 kB Progress (4): 86/112 kB | 12/57 kB | 11 kB | 4.1/284 kB Progress (4): 86/112 kB | 12/57 kB | 11 kB | 8.2/284 kB Progress (4): 86/112 kB | 12/57 kB | 11 kB | 12/284 kB Progress (4): 86/112 kB | 12/57 kB | 11 kB | 16/284 kB Progress (4): 90/112 kB | 12/57 kB | 11 kB | 16/284 kB Progress (4): 94/112 kB | 12/57 kB | 11 kB | 16/284 kB Progress (5): 94/112 kB | 12/57 kB | 11 kB | 16/284 kB | 4.1/84 kB Progress (5): 94/112 kB | 16/57 kB | 11 kB | 16/284 kB | 4.1/84 kB Progress (5): 94/112 kB | 16/57 kB | 11 kB | 16/284 kB | 8.2/84 kB Progress (5): 94/112 kB | 16/57 kB | 11 kB | 16/284 kB | 12/84 kB Progress (5): 94/112 kB | 16/57 kB | 11 kB | 16/284 kB | 16/84 kB Progress (5): 98/112 kB | 16/57 kB | 11 kB | 16/284 kB | 16/84 kB Progress (5): 98/112 kB | 16/57 kB | 11 kB | 20/284 kB | 16/84 kB Progress (5): 102/112 kB | 16/57 kB | 11 kB | 20/284 kB | 16/84 kB Progress (5): 106/112 kB | 16/57 kB | 11 kB | 20/284 kB | 16/84 kB Progress (5): 111/112 kB | 16/57 kB | 11 kB | 20/284 kB | 16/84 kB Progress (5): 112 kB | 16/57 kB | 11 kB | 20/284 kB | 16/84 kB Progress (5): 112 kB | 16/57 kB | 11 kB | 20/284 kB | 20/84 kB Progress (5): 112 kB | 20/57 kB | 11 kB | 20/284 kB | 20/84 kB Progress (5): 112 kB | 25/57 kB | 11 kB | 20/284 kB | 20/84 kB Progress (5): 112 kB | 25/57 kB | 11 kB | 20/284 kB | 24/84 kB Progress (5): 112 kB | 25/57 kB | 11 kB | 25/284 kB | 24/84 kB Progress (5): 112 kB | 25/57 kB | 11 kB | 25/284 kB | 28/84 kB Progress (5): 112 kB | 29/57 kB | 11 kB | 25/284 kB | 28/84 kB Progress (5): 112 kB | 29/57 kB | 11 kB | 25/284 kB | 32/84 kB Progress (5): 112 kB | 29/57 kB | 11 kB | 29/284 kB | 32/84 kB Progress (5): 112 kB | 29/57 kB | 11 kB | 33/284 kB | 32/84 kB Progress (5): 112 kB | 33/57 kB | 11 kB | 33/284 kB | 32/84 kB Progress (5): 112 kB | 33/57 kB | 11 kB | 33/284 kB | 36/84 kB Progress (5): 112 kB | 33/57 kB | 11 kB | 37/284 kB | 36/84 kB Progress (5): 112 kB | 33/57 kB | 11 kB | 41/284 kB | 36/84 kB Progress (5): 112 kB | 37/57 kB | 11 kB | 41/284 kB | 36/84 kB Progress (5): 112 kB | 41/57 kB | 11 kB | 41/284 kB | 36/84 kB Progress (5): 112 kB | 41/57 kB | 11 kB | 41/284 kB | 40/84 kB Progress (5): 112 kB | 41/57 kB | 11 kB | 45/284 kB | 40/84 kB Progress (5): 112 kB | 45/57 kB | 11 kB | 45/284 kB | 40/84 kB Progress (5): 112 kB | 49/57 kB | 11 kB | 45/284 kB | 40/84 kB Progress (5): 112 kB | 53/57 kB | 11 kB | 45/284 kB | 40/84 kB Progress (5): 112 kB | 57 kB | 11 kB | 45/284 kB | 40/84 kB Progress (5): 112 kB | 57 kB | 11 kB | 45/284 kB | 44/84 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-manager-plexus/1.13.0/maven-scm-manager-plexus-1.13.0.jar (11 kB at 275 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.13.0/maven-scm-provider-gitexe-1.13.0.jar +Progress (4): 112 kB | 57 kB | 49/284 kB | 44/84 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-api/1.13.0/maven-scm-api-1.13.0.jar (112 kB at 2.7 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar +Progress (3): 57 kB | 49/284 kB | 49/84 kB Progress (3): 57 kB | 53/284 kB | 49/84 kB Progress (3): 57 kB | 57/284 kB | 49/84 kB Progress (3): 57 kB | 61/284 kB | 49/84 kB Progress (3): 57 kB | 66/284 kB | 49/84 kB Progress (3): 57 kB | 66/284 kB | 53/84 kB Progress (3): 57 kB | 66/284 kB | 57/84 kB Progress (3): 57 kB | 66/284 kB | 61/84 kB Progress (3): 57 kB | 66/284 kB | 65/84 kB Progress (3): 57 kB | 70/284 kB | 65/84 kB Progress (3): 57 kB | 74/284 kB | 65/84 kB Progress (3): 57 kB | 78/284 kB | 65/84 kB Progress (3): 57 kB | 78/284 kB | 69/84 kB Progress (3): 57 kB | 82/284 kB | 69/84 kB Progress (3): 57 kB | 86/284 kB | 69/84 kB Progress (3): 57 kB | 90/284 kB | 69/84 kB Progress (3): 57 kB | 90/284 kB | 73/84 kB Progress (3): 57 kB | 94/284 kB | 73/84 kB Progress (3): 57 kB | 98/284 kB | 73/84 kB Progress (3): 57 kB | 98/284 kB | 77/84 kB Progress (3): 57 kB | 102/284 kB | 77/84 kB Progress (3): 57 kB | 106/284 kB | 77/84 kB Progress (3): 57 kB | 111/284 kB | 77/84 kB Progress (3): 57 kB | 111/284 kB | 81/84 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-bazaar/1.13.0/maven-scm-provider-bazaar-1.13.0.jar (57 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git-commons/1.13.0/maven-scm-provider-git-commons-1.13.0.jar +Progress (2): 115/284 kB | 81/84 kB Progress (2): 119/284 kB | 81/84 kB Progress (2): 119/284 kB | 84 kB Progress (2): 123/284 kB | 84 kB Progress (2): 127/284 kB | 84 kB Progress (3): 127/284 kB | 84 kB | 4.1/72 kB Progress (4): 127/284 kB | 84 kB | 4.1/72 kB | 4.1/215 kB Progress (4): 127/284 kB | 84 kB | 8.2/72 kB | 4.1/215 kB Progress (4): 127/284 kB | 84 kB | 12/72 kB | 4.1/215 kB Progress (4): 127/284 kB | 84 kB | 16/72 kB | 4.1/215 kB Progress (4): 131/284 kB | 84 kB | 16/72 kB | 4.1/215 kB Progress (4): 135/284 kB | 84 kB | 16/72 kB | 4.1/215 kB Progress (4): 135/284 kB | 84 kB | 16/72 kB | 8.2/215 kB Progress (4): 135/284 kB | 84 kB | 16/72 kB | 12/215 kB Progress (4): 139/284 kB | 84 kB | 16/72 kB | 12/215 kB Progress (4): 143/284 kB | 84 kB | 16/72 kB | 12/215 kB Progress (4): 147/284 kB | 84 kB | 16/72 kB | 12/215 kB Progress (4): 147/284 kB | 84 kB | 20/72 kB | 12/215 kB Progress (4): 147/284 kB | 84 kB | 25/72 kB | 12/215 kB Progress (4): 147/284 kB | 84 kB | 29/72 kB | 12/215 kB Progress (4): 147/284 kB | 84 kB | 29/72 kB | 16/215 kB Progress (4): 147/284 kB | 84 kB | 33/72 kB | 16/215 kB Progress (4): 147/284 kB | 84 kB | 37/72 kB | 16/215 kB Progress (4): 152/284 kB | 84 kB | 37/72 kB | 16/215 kB Progress (4): 156/284 kB | 84 kB | 37/72 kB | 16/215 kB Progress (5): 156/284 kB | 84 kB | 37/72 kB | 16/215 kB | 4.1/36 kB Progress (5): 156/284 kB | 84 kB | 37/72 kB | 16/215 kB | 8.2/36 kB Progress (5): 156/284 kB | 84 kB | 41/72 kB | 16/215 kB | 8.2/36 kB Progress (5): 156/284 kB | 84 kB | 45/72 kB | 16/215 kB | 8.2/36 kB Progress (5): 156/284 kB | 84 kB | 49/72 kB | 16/215 kB | 8.2/36 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svnexe/1.13.0/maven-scm-provider-svnexe-1.13.0.jar (84 kB at 1.2 MB/s) +Progress (4): 156/284 kB | 49/72 kB | 20/215 kB | 8.2/36 kB Progress (4): 156/284 kB | 49/72 kB | 25/215 kB | 8.2/36 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.13.0/maven-scm-provider-svn-commons-1.13.0.jar +Progress (4): 156/284 kB | 53/72 kB | 25/215 kB | 8.2/36 kB Progress (4): 156/284 kB | 57/72 kB | 25/215 kB | 8.2/36 kB Progress (4): 156/284 kB | 61/72 kB | 25/215 kB | 8.2/36 kB Progress (4): 156/284 kB | 61/72 kB | 25/215 kB | 12/36 kB Progress (4): 156/284 kB | 61/72 kB | 25/215 kB | 16/36 kB Progress (4): 160/284 kB | 61/72 kB | 25/215 kB | 16/36 kB Progress (4): 164/284 kB | 61/72 kB | 25/215 kB | 16/36 kB Progress (4): 164/284 kB | 61/72 kB | 25/215 kB | 20/36 kB Progress (4): 164/284 kB | 61/72 kB | 25/215 kB | 25/36 kB Progress (4): 164/284 kB | 66/72 kB | 25/215 kB | 25/36 kB Progress (4): 164/284 kB | 70/72 kB | 25/215 kB | 25/36 kB Progress (4): 164/284 kB | 70/72 kB | 29/215 kB | 25/36 kB Progress (4): 164/284 kB | 70/72 kB | 33/215 kB | 25/36 kB Progress (4): 164/284 kB | 72 kB | 33/215 kB | 25/36 kB Progress (4): 164/284 kB | 72 kB | 33/215 kB | 29/36 kB Progress (4): 164/284 kB | 72 kB | 33/215 kB | 33/36 kB Progress (4): 168/284 kB | 72 kB | 33/215 kB | 33/36 kB Progress (4): 168/284 kB | 72 kB | 33/215 kB | 36 kB Progress (4): 168/284 kB | 72 kB | 37/215 kB | 36 kB Progress (4): 168/284 kB | 72 kB | 41/215 kB | 36 kB Progress (4): 172/284 kB | 72 kB | 41/215 kB | 36 kB Progress (4): 172/284 kB | 72 kB | 45/215 kB | 36 kB Progress (4): 172/284 kB | 72 kB | 49/215 kB | 36 kB Progress (4): 176/284 kB | 72 kB | 49/215 kB | 36 kB Progress (4): 176/284 kB | 72 kB | 53/215 kB | 36 kB Progress (4): 176/284 kB | 72 kB | 57/215 kB | 36 kB Progress (4): 180/284 kB | 72 kB | 57/215 kB | 36 kB Progress (4): 180/284 kB | 72 kB | 61/215 kB | 36 kB Progress (5): 180/284 kB | 72 kB | 61/215 kB | 36 kB | 4.1/39 kB Progress (5): 184/284 kB | 72 kB | 61/215 kB | 36 kB | 4.1/39 kB Progress (5): 184/284 kB | 72 kB | 66/215 kB | 36 kB | 4.1/39 kB Progress (5): 184/284 kB | 72 kB | 66/215 kB | 36 kB | 8.2/39 kB Progress (5): 184/284 kB | 72 kB | 66/215 kB | 36 kB | 12/39 kB Progress (5): 184/284 kB | 72 kB | 70/215 kB | 36 kB | 12/39 kB Progress (5): 184/284 kB | 72 kB | 74/215 kB | 36 kB | 12/39 kB Progress (5): 188/284 kB | 72 kB | 74/215 kB | 36 kB | 12/39 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-gitexe/1.13.0/maven-scm-provider-gitexe-1.13.0.jar (72 kB at 738 kB/s) +Progress (4): 188/284 kB | 74/215 kB | 36 kB | 16/39 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvsexe/1.13.0/maven-scm-provider-cvsexe-1.13.0.jar +Progress (4): 188/284 kB | 78/215 kB | 36 kB | 16/39 kB Progress (4): 188/284 kB | 82/215 kB | 36 kB | 16/39 kB Progress (4): 193/284 kB | 82/215 kB | 36 kB | 16/39 kB Progress (4): 193/284 kB | 82/215 kB | 36 kB | 20/39 kB Progress (4): 197/284 kB | 82/215 kB | 36 kB | 20/39 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-git-commons/1.13.0/maven-scm-provider-git-commons-1.13.0.jar (36 kB at 348 kB/s) +Progress (3): 197/284 kB | 86/215 kB | 20/39 kB Progress (3): 197/284 kB | 90/215 kB | 20/39 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvs-commons/1.13.0/maven-scm-provider-cvs-commons-1.13.0.jar +Progress (3): 201/284 kB | 90/215 kB | 20/39 kB Progress (3): 201/284 kB | 90/215 kB | 25/39 kB Progress (3): 201/284 kB | 90/215 kB | 29/39 kB Progress (3): 201/284 kB | 90/215 kB | 33/39 kB Progress (3): 205/284 kB | 90/215 kB | 33/39 kB Progress (3): 205/284 kB | 94/215 kB | 33/39 kB Progress (3): 209/284 kB | 94/215 kB | 33/39 kB Progress (3): 209/284 kB | 94/215 kB | 37/39 kB Progress (3): 209/284 kB | 94/215 kB | 39 kB Progress (3): 213/284 kB | 94/215 kB | 39 kB Progress (3): 217/284 kB | 94/215 kB | 39 kB Progress (3): 217/284 kB | 98/215 kB | 39 kB Progress (3): 217/284 kB | 102/215 kB | 39 kB Progress (3): 217/284 kB | 106/215 kB | 39 kB Progress (3): 217/284 kB | 111/215 kB | 39 kB Progress (4): 217/284 kB | 111/215 kB | 39 kB | 4.1/31 kB Progress (4): 217/284 kB | 115/215 kB | 39 kB | 4.1/31 kB Progress (4): 217/284 kB | 119/215 kB | 39 kB | 4.1/31 kB Progress (4): 221/284 kB | 119/215 kB | 39 kB | 4.1/31 kB Progress (4): 221/284 kB | 123/215 kB | 39 kB | 4.1/31 kB Progress (4): 221/284 kB | 127/215 kB | 39 kB | 4.1/31 kB Progress (4): 221/284 kB | 127/215 kB | 39 kB | 8.2/31 kB Progress (4): 221/284 kB | 131/215 kB | 39 kB | 8.2/31 kB Progress (4): 221/284 kB | 135/215 kB | 39 kB | 8.2/31 kB Progress (4): 225/284 kB | 135/215 kB | 39 kB | 8.2/31 kB Progress (4): 225/284 kB | 139/215 kB | 39 kB | 8.2/31 kB Progress (4): 225/284 kB | 143/215 kB | 39 kB | 8.2/31 kB Progress (4): 225/284 kB | 143/215 kB | 39 kB | 12/31 kB Progress (4): 225/284 kB | 147/215 kB | 39 kB | 12/31 kB Progress (4): 225/284 kB | 152/215 kB | 39 kB | 12/31 kB Progress (4): 229/284 kB | 152/215 kB | 39 kB | 12/31 kB Progress (5): 229/284 kB | 152/215 kB | 39 kB | 12/31 kB | 4.1/80 kB Progress (5): 229/284 kB | 156/215 kB | 39 kB | 12/31 kB | 4.1/80 kB Progress (5): 229/284 kB | 156/215 kB | 39 kB | 16/31 kB | 4.1/80 kB Progress (5): 229/284 kB | 160/215 kB | 39 kB | 16/31 kB | 4.1/80 kB Progress (5): 229/284 kB | 160/215 kB | 39 kB | 16/31 kB | 8.2/80 kB Progress (5): 233/284 kB | 160/215 kB | 39 kB | 16/31 kB | 8.2/80 kB Progress (5): 233/284 kB | 160/215 kB | 39 kB | 16/31 kB | 12/80 kB Progress (5): 233/284 kB | 160/215 kB | 39 kB | 16/31 kB | 16/80 kB Progress (5): 233/284 kB | 164/215 kB | 39 kB | 16/31 kB | 16/80 kB Progress (5): 233/284 kB | 164/215 kB | 39 kB | 20/31 kB | 16/80 kB Progress (5): 233/284 kB | 168/215 kB | 39 kB | 20/31 kB | 16/80 kB Progress (5): 233/284 kB | 172/215 kB | 39 kB | 20/31 kB | 16/80 kB Progress (5): 233/284 kB | 176/215 kB | 39 kB | 20/31 kB | 16/80 kB Progress (5): 233/284 kB | 176/215 kB | 39 kB | 20/31 kB | 20/80 kB Progress (5): 238/284 kB | 176/215 kB | 39 kB | 20/31 kB | 20/80 kB Progress (5): 242/284 kB | 176/215 kB | 39 kB | 20/31 kB | 20/80 kB Progress (5): 242/284 kB | 176/215 kB | 39 kB | 20/31 kB | 24/80 kB Progress (5): 242/284 kB | 176/215 kB | 39 kB | 20/31 kB | 28/80 kB Progress (5): 242/284 kB | 176/215 kB | 39 kB | 20/31 kB | 32/80 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-svn-commons/1.13.0/maven-scm-provider-svn-commons-1.13.0.jar (39 kB at 295 kB/s) +Progress (4): 242/284 kB | 180/215 kB | 20/31 kB | 32/80 kB Progress (4): 242/284 kB | 180/215 kB | 25/31 kB | 32/80 kB Progress (4): 242/284 kB | 184/215 kB | 25/31 kB | 32/80 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-starteam/1.13.0/maven-scm-provider-starteam-1.13.0.jar +Progress (4): 246/284 kB | 184/215 kB | 25/31 kB | 32/80 kB Progress (4): 246/284 kB | 184/215 kB | 25/31 kB | 36/80 kB Progress (4): 246/284 kB | 184/215 kB | 25/31 kB | 40/80 kB Progress (4): 246/284 kB | 188/215 kB | 25/31 kB | 40/80 kB Progress (4): 246/284 kB | 188/215 kB | 29/31 kB | 40/80 kB Progress (4): 246/284 kB | 193/215 kB | 29/31 kB | 40/80 kB Progress (4): 246/284 kB | 193/215 kB | 29/31 kB | 44/80 kB Progress (4): 250/284 kB | 193/215 kB | 29/31 kB | 44/80 kB Progress (4): 250/284 kB | 193/215 kB | 29/31 kB | 49/80 kB Progress (4): 250/284 kB | 197/215 kB | 29/31 kB | 49/80 kB Progress (4): 250/284 kB | 201/215 kB | 29/31 kB | 49/80 kB Progress (4): 250/284 kB | 201/215 kB | 31 kB | 49/80 kB Progress (4): 250/284 kB | 205/215 kB | 31 kB | 49/80 kB Progress (4): 250/284 kB | 205/215 kB | 31 kB | 53/80 kB Progress (4): 250/284 kB | 205/215 kB | 31 kB | 57/80 kB Progress (4): 250/284 kB | 205/215 kB | 31 kB | 61/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 61/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 65/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 69/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 73/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 77/80 kB Progress (4): 254/284 kB | 205/215 kB | 31 kB | 80 kB Progress (4): 254/284 kB | 209/215 kB | 31 kB | 80 kB Progress (4): 254/284 kB | 213/215 kB | 31 kB | 80 kB Progress (5): 254/284 kB | 213/215 kB | 31 kB | 80 kB | 4.1/74 kB Progress (5): 258/284 kB | 213/215 kB | 31 kB | 80 kB | 4.1/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 4.1/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 8.2/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 12/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 16/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 20/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 25/74 kB Progress (5): 262/284 kB | 213/215 kB | 31 kB | 80 kB | 29/74 kB Progress (5): 262/284 kB | 215 kB | 31 kB | 80 kB | 29/74 kB Progress (5): 262/284 kB | 215 kB | 31 kB | 80 kB | 33/74 kB Progress (5): 266/284 kB | 215 kB | 31 kB | 80 kB | 33/74 kB Progress (5): 266/284 kB | 215 kB | 31 kB | 80 kB | 37/74 kB Progress (5): 266/284 kB | 215 kB | 31 kB | 80 kB | 41/74 kB Progress (5): 270/284 kB | 215 kB | 31 kB | 80 kB | 41/74 kB Progress (5): 274/284 kB | 215 kB | 31 kB | 80 kB | 41/74 kB Progress (5): 274/284 kB | 215 kB | 31 kB | 80 kB | 45/74 kB Progress (5): 279/284 kB | 215 kB | 31 kB | 80 kB | 45/74 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvsexe/1.13.0/maven-scm-provider-cvsexe-1.13.0.jar (31 kB at 186 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-clearcase/1.13.0/maven-scm-provider-clearcase-1.13.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-cvs-commons/1.13.0/maven-scm-provider-cvs-commons-1.13.0.jar (80 kB at 482 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-perforce/1.13.0/maven-scm-provider-perforce-1.13.0.jar +Progress (3): 283/284 kB | 215 kB | 45/74 kB Progress (3): 284 kB | 215 kB | 45/74 kB Progress (3): 284 kB | 215 kB | 49/74 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.jar (215 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-hg/1.13.0/maven-scm-provider-hg-1.13.0.jar +Progress (2): 284 kB | 53/74 kB Progress (2): 284 kB | 57/74 kB Progress (2): 284 kB | 61/74 kB Progress (2): 284 kB | 66/74 kB Progress (2): 284 kB | 70/74 kB Progress (2): 284 kB | 74 kB Progress (3): 284 kB | 74 kB | 4.1/86 kB Progress (3): 284 kB | 74 kB | 8.2/86 kB Progress (4): 284 kB | 74 kB | 8.2/86 kB | 4.1/70 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.6/commons-lang-2.6.jar (284 kB at 1.6 MB/s) +Progress (3): 74 kB | 12/86 kB | 4.1/70 kB Progress (3): 74 kB | 16/86 kB | 4.1/70 kB Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/maven-scm-provider-svnjava/maven-scm-provider-svnjava/2.2.1/maven-scm-provider-svnjava-2.2.1.jar +Progress (3): 74 kB | 16/86 kB | 8.2/70 kB Progress (3): 74 kB | 16/86 kB | 12/70 kB Progress (3): 74 kB | 20/86 kB | 12/70 kB Progress (4): 74 kB | 20/86 kB | 12/70 kB | 4.1/68 kB Progress (4): 74 kB | 25/86 kB | 12/70 kB | 4.1/68 kB Progress (4): 74 kB | 29/86 kB | 12/70 kB | 4.1/68 kB Progress (4): 74 kB | 29/86 kB | 16/70 kB | 4.1/68 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-starteam/1.13.0/maven-scm-provider-starteam-1.13.0.jar (74 kB at 381 kB/s) +Progress (3): 33/86 kB | 16/70 kB | 4.1/68 kB Progress (3): 33/86 kB | 16/70 kB | 8.2/68 kB Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.11.0/jna-5.11.0.jar +Progress (3): 33/86 kB | 20/70 kB | 8.2/68 kB Progress (3): 33/86 kB | 25/70 kB | 8.2/68 kB Progress (3): 33/86 kB | 29/70 kB | 8.2/68 kB Progress (3): 33/86 kB | 33/70 kB | 8.2/68 kB Progress (3): 37/86 kB | 33/70 kB | 8.2/68 kB Progress (3): 37/86 kB | 33/70 kB | 12/68 kB Progress (3): 41/86 kB | 33/70 kB | 12/68 kB Progress (3): 41/86 kB | 37/70 kB | 12/68 kB Progress (3): 41/86 kB | 41/70 kB | 12/68 kB Progress (3): 41/86 kB | 45/70 kB | 12/68 kB Progress (4): 41/86 kB | 45/70 kB | 12/68 kB | 4.1/69 kB Progress (4): 41/86 kB | 45/70 kB | 12/68 kB | 8.2/69 kB Progress (4): 41/86 kB | 49/70 kB | 12/68 kB | 8.2/69 kB Progress (4): 45/86 kB | 49/70 kB | 12/68 kB | 8.2/69 kB Progress (4): 49/86 kB | 49/70 kB | 12/68 kB | 8.2/69 kB Progress (4): 49/86 kB | 49/70 kB | 16/68 kB | 8.2/69 kB Progress (4): 49/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 53/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 57/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 61/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 66/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 70/86 kB | 49/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 70/86 kB | 53/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 74/86 kB | 53/70 kB | 20/68 kB | 8.2/69 kB Progress (4): 74/86 kB | 53/70 kB | 20/68 kB | 12/69 kB Progress (4): 74/86 kB | 53/70 kB | 20/68 kB | 16/69 kB Progress (4): 78/86 kB | 53/70 kB | 20/68 kB | 16/69 kB Progress (4): 78/86 kB | 53/70 kB | 20/68 kB | 20/69 kB Progress (4): 78/86 kB | 57/70 kB | 20/68 kB | 20/69 kB Progress (4): 78/86 kB | 57/70 kB | 25/68 kB | 20/69 kB Progress (5): 78/86 kB | 57/70 kB | 25/68 kB | 20/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 57/70 kB | 29/68 kB | 20/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 57/70 kB | 29/68 kB | 25/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 57/70 kB | 29/68 kB | 29/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 57/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 61/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 78/86 kB | 66/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 82/86 kB | 66/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 86 kB | 66/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 86 kB | 70/70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 29/68 kB | 33/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 29/68 kB | 37/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 29/68 kB | 41/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 29/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 33/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 37/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 37/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 41/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 45/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 49/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 53/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 57/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 61/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 66/69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 45/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 49/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 53/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 57/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 61/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 66/68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (5): 86 kB | 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-perforce/1.13.0/maven-scm-provider-perforce-1.13.0.jar (86 kB at 346 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/tmatesoft/svnkit/svnkit/1.10.11/svnkit-1.10.11.jar +Progress (4): 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (4): 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Progress (4): 70 kB | 68 kB | 69 kB | 0.1/1.8 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-clearcase/1.13.0/maven-scm-provider-clearcase-1.13.0.jar (70 kB at 281 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-core/2.9.2/sshd-core-2.9.2.jar +Progress (3): 68 kB | 69 kB | 0.1/1.8 MB Progress (3): 68 kB | 69 kB | 0.1/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Progress (3): 68 kB | 69 kB | 0.2/1.8 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/maven-scm-provider-svnjava/maven-scm-provider-svnjava/2.2.1/maven-scm-provider-svnjava-2.2.1.jar (69 kB at 272 kB/s) +Progress (2): 68 kB | 0.2/1.8 MB Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/scm/maven-scm-provider-hg/1.13.0/maven-scm-provider-hg-1.13.0.jar (68 kB at 264 kB/s) +Progress (1): 0.2/1.8 MB Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.32/jcl-over-slf4j-1.7.32.jar +Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.3/1.8 MB Progress (1): 0.4/1.8 MB Progress (2): 0.4/1.8 MB | 8.2/950 kB Progress (2): 0.4/1.8 MB | 8.2/950 kB Progress (2): 0.4/1.8 MB | 16/950 kB Progress (2): 0.4/1.8 MB | 16/950 kB Progress (2): 0.4/1.8 MB | 25/950 kB Progress (2): 0.4/1.8 MB | 33/950 kB Progress (2): 0.4/1.8 MB | 41/950 kB Progress (2): 0.4/1.8 MB | 41/950 kB Progress (2): 0.4/1.8 MB | 41/950 kB Progress (2): 0.4/1.8 MB | 41/950 kB Progress (2): 0.4/1.8 MB | 41/950 kB Progress (3): 0.4/1.8 MB | 41/950 kB | 4.1/42 kB Progress (3): 0.4/1.8 MB | 41/950 kB | 8.2/42 kB Progress (3): 0.4/1.8 MB | 41/950 kB | 12/42 kB Progress (4): 0.4/1.8 MB | 41/950 kB | 12/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 16/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 20/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 24/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 28/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 28/42 kB | 0/4.3 MB Progress (4): 0.4/1.8 MB | 41/950 kB | 28/42 kB | 0/4.3 MB Progress (5): 0.4/1.8 MB | 41/950 kB | 28/42 kB | 0/4.3 MB | 4.1/17 kB Progress (5): 0.4/1.8 MB | 41/950 kB | 28/42 kB | 0/4.3 MB | 8.2/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 28/42 kB | 0/4.3 MB | 8.2/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 28/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 28/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 28/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 32/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 32/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 36/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.4/1.8 MB | 49/950 kB | 36/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.5/1.8 MB | 49/950 kB | 36/42 kB | 0/4.3 MB | 12/17 kB Progress (5): 0.5/1.8 MB | 49/950 kB | 36/42 kB | 0/4.3 MB | 16/17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 36/42 kB | 0/4.3 MB | 16/17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 36/42 kB | 0/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 36/42 kB | 0/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 36/42 kB | 0/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 36/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 57/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 40/42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 66/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 74/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 74/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 74/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 74/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 74/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 82/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 82/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 90/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.5/1.8 MB | 90/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 90/950 kB | 42 kB | 0.1/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 90/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 90/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 90/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 98/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 98/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 106/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Progress (5): 0.6/1.8 MB | 106/950 kB | 42 kB | 0.2/4.3 MB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/jcl-over-slf4j/1.7.32/jcl-over-slf4j-1.7.32.jar (17 kB at 54 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-common/2.9.2/sshd-common-2.9.2.jar +Progress (4): 0.6/1.8 MB | 106/950 kB | 42 kB | 0.2/4.3 MB Progress (4): 0.6/1.8 MB | 115/950 kB | 42 kB | 0.2/4.3 MB Progress (4): 0.6/1.8 MB | 115/950 kB | 42 kB | 0.2/4.3 MB Progress (4): 0.6/1.8 MB | 115/950 kB | 42 kB | 0.2/4.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar (42 kB at 133 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar +Progress (3): 0.6/1.8 MB | 123/950 kB | 0.2/4.3 MB Progress (3): 0.6/1.8 MB | 131/950 kB | 0.2/4.3 MB Progress (3): 0.6/1.8 MB | 131/950 kB | 0.2/4.3 MB Progress (3): 0.6/1.8 MB | 131/950 kB | 0.2/4.3 MB Progress (3): 0.6/1.8 MB | 131/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 139/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 139/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 139/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 147/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 147/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 156/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 164/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 164/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 172/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 180/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 180/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 180/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 188/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 188/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 188/950 kB | 0.3/4.3 MB Progress (3): 0.6/1.8 MB | 197/950 kB | 0.3/4.3 MB Progress (3): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB Progress (3): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB Progress (3): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB Progress (3): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB Progress (4): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB | 8.2/945 kB Progress (4): 0.7/1.8 MB | 197/950 kB | 0.3/4.3 MB | 16/945 kB Progress (4): 0.7/1.8 MB | 205/950 kB | 0.3/4.3 MB | 16/945 kB Progress (4): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 16/945 kB Progress (4): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 25/945 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 25/945 kB | 4.1/63 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 25/945 kB | 4.1/63 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 25/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 25/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 205/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 213/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 213/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 221/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 33/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 41/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 49/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 49/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 57/945 kB | 8.2/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 57/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 66/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.4/4.3 MB | 66/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 229/950 kB | 0.5/4.3 MB | 66/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 66/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 74/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 74/945 kB | 12/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 74/945 kB | 16/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 74/945 kB | 16/63 kB Progress (5): 0.7/1.8 MB | 238/950 kB | 0.5/4.3 MB | 82/945 kB | 16/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 16/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 16/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 20/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 20/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 24/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 28/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.7/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 246/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 254/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 262/950 kB | 0.5/4.3 MB | 82/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 262/950 kB | 0.5/4.3 MB | 90/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 262/950 kB | 0.5/4.3 MB | 98/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 270/950 kB | 0.5/4.3 MB | 98/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 32/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 36/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 40/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 45/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 45/63 kB Progress (5): 0.8/1.8 MB | 279/950 kB | 0.5/4.3 MB | 98/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 98/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 106/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 106/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 106/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 115/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 287/950 kB | 0.5/4.3 MB | 115/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 295/950 kB | 0.5/4.3 MB | 115/945 kB | 49/63 kB Progress (5): 0.8/1.8 MB | 295/950 kB | 0.5/4.3 MB | 115/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 295/950 kB | 0.6/4.3 MB | 115/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 115/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 123/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 131/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 131/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 139/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 147/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 303/950 kB | 0.6/4.3 MB | 147/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 147/945 kB | 53/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 147/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 147/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 156/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 156/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 164/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 311/950 kB | 0.6/4.3 MB | 164/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 319/950 kB | 0.6/4.3 MB | 164/945 kB | 57/63 kB Progress (5): 0.8/1.8 MB | 319/950 kB | 0.6/4.3 MB | 164/945 kB | 61/63 kB Progress (5): 0.8/1.8 MB | 319/950 kB | 0.6/4.3 MB | 164/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.6/4.3 MB | 164/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 164/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 172/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 180/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 180/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 188/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 328/950 kB | 0.7/4.3 MB | 197/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 197/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 205/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 213/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.7/4.3 MB | 221/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 336/950 kB | 0.8/4.3 MB | 221/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 344/950 kB | 0.8/4.3 MB | 221/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 344/950 kB | 0.8/4.3 MB | 221/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 344/950 kB | 0.8/4.3 MB | 229/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 344/950 kB | 0.8/4.3 MB | 229/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 344/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 352/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 360/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 360/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 369/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 377/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 385/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 393/950 kB | 0.8/4.3 MB | 238/945 kB | 63 kB Progress (5): 0.8/1.8 MB | 393/950 kB | 0.8/4.3 MB | 246/945 kB | 63 kB Progress (5): 0.9/1.8 MB | 393/950 kB | 0.8/4.3 MB | 246/945 kB | 63 kB Progress (5): 0.9/1.8 MB | 393/950 kB | 0.8/4.3 MB | 254/945 kB | 63 kB Progress (5): 0.9/1.8 MB | 393/950 kB | 0.8/4.3 MB | 254/945 kB | 63 kB Progress (5): 0.9/1.8 MB | 393/950 kB | 0.8/4.3 MB | 254/945 kB | 63 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar (63 kB at 163 kB/s) +Progress (4): 0.9/1.8 MB | 401/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 410/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 410/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 418/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 426/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 434/950 kB | 0.8/4.3 MB | 254/945 kB Downloading from central: https://repo.maven.apache.org/maven2/de/regnis/q/sequence/sequence-library/1.0.4/sequence-library-1.0.4.jar +Progress (4): 0.9/1.8 MB | 434/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 434/950 kB | 0.8/4.3 MB | 254/945 kB Progress (4): 0.9/1.8 MB | 434/950 kB | 0.8/4.3 MB | 262/945 kB Progress (4): 0.9/1.8 MB | 434/950 kB | 0.8/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 442/950 kB | 0.8/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 442/950 kB | 0.9/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 451/950 kB | 0.9/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 270/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 279/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 279/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 287/945 kB Progress (4): 0.9/1.8 MB | 459/950 kB | 0.9/4.3 MB | 287/945 kB Progress (4): 0.9/1.8 MB | 467/950 kB | 0.9/4.3 MB | 287/945 kB Progress (4): 0.9/1.8 MB | 467/950 kB | 0.9/4.3 MB | 295/945 kB Progress (4): 0.9/1.8 MB | 467/950 kB | 0.9/4.3 MB | 295/945 kB Progress (4): 0.9/1.8 MB | 467/950 kB | 0.9/4.3 MB | 303/945 kB Progress (4): 0.9/1.8 MB | 475/950 kB | 0.9/4.3 MB | 303/945 kB Progress (4): 0.9/1.8 MB | 483/950 kB | 0.9/4.3 MB | 303/945 kB Progress (4): 0.9/1.8 MB | 483/950 kB | 0.9/4.3 MB | 303/945 kB Progress (4): 0.9/1.8 MB | 492/950 kB | 0.9/4.3 MB | 303/945 kB Progress (4): 0.9/1.8 MB | 492/950 kB | 0.9/4.3 MB | 311/945 kB Progress (4): 0.9/1.8 MB | 492/950 kB | 0.9/4.3 MB | 311/945 kB Progress (4): 0.9/1.8 MB | 492/950 kB | 0.9/4.3 MB | 319/945 kB Progress (4): 0.9/1.8 MB | 500/950 kB | 0.9/4.3 MB | 319/945 kB Progress (4): 0.9/1.8 MB | 508/950 kB | 0.9/4.3 MB | 319/945 kB Progress (4): 0.9/1.8 MB | 508/950 kB | 1.0/4.3 MB | 319/945 kB Progress (4): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 319/945 kB Progress (4): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 319/945 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 319/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 328/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 328/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 328/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.0/4.3 MB | 328/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.1/4.3 MB | 328/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.1/4.3 MB | 336/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.1/4.3 MB | 336/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.1/4.3 MB | 344/945 kB | 4.1/72 kB Progress (5): 0.9/1.8 MB | 516/950 kB | 1.1/4.3 MB | 344/945 kB | 8.2/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 344/945 kB | 8.2/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 344/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 352/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 352/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 352/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 352/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 360/945 kB | 12/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 360/945 kB | 16/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 360/945 kB | 16/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 360/945 kB | 20/72 kB Progress (5): 0.9/1.8 MB | 524/950 kB | 1.1/4.3 MB | 360/945 kB | 24/72 kB Progress (5): 0.9/1.8 MB | 532/950 kB | 1.1/4.3 MB | 360/945 kB | 24/72 kB Progress (5): 0.9/1.8 MB | 532/950 kB | 1.1/4.3 MB | 360/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 360/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 28/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 32/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 32/72 kB Progress (5): 1.0/1.8 MB | 532/950 kB | 1.1/4.3 MB | 369/945 kB | 32/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.1/4.3 MB | 369/945 kB | 32/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.1/4.3 MB | 369/945 kB | 32/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.1/4.3 MB | 369/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 369/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 377/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 385/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 393/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 401/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 410/945 kB | 36/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 410/945 kB | 40/72 kB Progress (5): 1.0/1.8 MB | 541/950 kB | 1.2/4.3 MB | 410/945 kB | 40/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 410/945 kB | 40/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 410/945 kB | 40/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 418/945 kB | 40/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 418/945 kB | 44/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 418/945 kB | 44/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 426/945 kB | 44/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 426/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 426/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 549/950 kB | 1.2/4.3 MB | 434/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 434/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 49/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 53/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 53/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 57/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 61/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 442/945 kB | 61/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 451/945 kB | 61/72 kB Progress (5): 1.0/1.8 MB | 557/950 kB | 1.2/4.3 MB | 451/945 kB | 61/72 kB Progress (5): 1.0/1.8 MB | 565/950 kB | 1.2/4.3 MB | 451/945 kB | 61/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 451/945 kB | 61/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 459/945 kB | 61/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 459/945 kB | 65/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 459/945 kB | 65/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 459/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 467/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 475/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 565/950 kB | 1.2/4.3 MB | 475/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 475/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 475/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 483/945 kB | 69/72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 483/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 492/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.2/4.3 MB | 500/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.3/4.3 MB | 500/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 573/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 508/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 582/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 590/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 598/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 606/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 614/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 614/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 614/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 623/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 623/950 kB | 1.3/4.3 MB | 516/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 623/950 kB | 1.3/4.3 MB | 524/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 623/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 631/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.1/1.8 MB | 631/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 631/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 639/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 647/950 kB | 1.3/4.3 MB | 532/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 647/950 kB | 1.3/4.3 MB | 541/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 655/950 kB | 1.3/4.3 MB | 541/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 655/950 kB | 1.3/4.3 MB | 541/945 kB | 72 kB Progress (5): 1.2/1.8 MB | 664/950 kB | 1.3/4.3 MB | 541/945 kB | 72 kB Downloaded from central: https://repo.maven.apache.org/maven2/de/regnis/q/sequence/sequence-library/1.0.4/sequence-library-1.0.4.jar (72 kB at 150 kB/s) +Progress (4): 1.2/1.8 MB | 664/950 kB | 1.3/4.3 MB | 549/945 kB Progress (4): 1.2/1.8 MB | 664/950 kB | 1.3/4.3 MB | 549/945 kB Progress (4): 1.2/1.8 MB | 664/950 kB | 1.3/4.3 MB | 557/945 kB Downloading from central: https://repo.maven.apache.org/maven2/org/tmatesoft/sqljet/sqljet/1.1.15/sqljet-1.1.15.jar +Progress (4): 1.2/1.8 MB | 672/950 kB | 1.3/4.3 MB | 557/945 kB Progress (4): 1.2/1.8 MB | 672/950 kB | 1.4/4.3 MB | 557/945 kB Progress (4): 1.2/1.8 MB | 672/950 kB | 1.4/4.3 MB | 557/945 kB Progress (4): 1.2/1.8 MB | 680/950 kB | 1.4/4.3 MB | 557/945 kB Progress (4): 1.2/1.8 MB | 680/950 kB | 1.4/4.3 MB | 565/945 kB Progress (4): 1.2/1.8 MB | 680/950 kB | 1.4/4.3 MB | 565/945 kB Progress (4): 1.2/1.8 MB | 680/950 kB | 1.4/4.3 MB | 573/945 kB Progress (4): 1.2/1.8 MB | 680/950 kB | 1.4/4.3 MB | 573/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.4/4.3 MB | 573/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.4/4.3 MB | 573/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.4/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.4/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.4/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 688/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 696/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 705/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 705/950 kB | 1.5/4.3 MB | 582/945 kB Progress (4): 1.2/1.8 MB | 705/950 kB | 1.5/4.3 MB | 590/945 kB Progress (4): 1.2/1.8 MB | 705/950 kB | 1.5/4.3 MB | 590/945 kB Progress (4): 1.2/1.8 MB | 713/950 kB | 1.5/4.3 MB | 590/945 kB Progress (4): 1.2/1.8 MB | 713/950 kB | 1.5/4.3 MB | 590/945 kB Progress (5): 1.2/1.8 MB | 713/950 kB | 1.5/4.3 MB | 590/945 kB | 4.1/762 kB Progress (5): 1.2/1.8 MB | 713/950 kB | 1.5/4.3 MB | 590/945 kB | 8.2/762 kB Progress (5): 1.2/1.8 MB | 721/950 kB | 1.5/4.3 MB | 590/945 kB | 8.2/762 kB Progress (5): 1.2/1.8 MB | 721/950 kB | 1.5/4.3 MB | 590/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 721/950 kB | 1.5/4.3 MB | 590/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 721/950 kB | 1.5/4.3 MB | 598/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 721/950 kB | 1.5/4.3 MB | 598/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 721/950 kB | 1.5/4.3 MB | 598/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 729/950 kB | 1.5/4.3 MB | 598/945 kB | 8.2/762 kB Progress (5): 1.3/1.8 MB | 729/950 kB | 1.5/4.3 MB | 598/945 kB | 12/762 kB Progress (5): 1.3/1.8 MB | 729/950 kB | 1.5/4.3 MB | 598/945 kB | 16/762 kB Progress (5): 1.3/1.8 MB | 729/950 kB | 1.5/4.3 MB | 598/945 kB | 20/762 kB Progress (5): 1.3/1.8 MB | 729/950 kB | 1.6/4.3 MB | 598/945 kB | 20/762 kB Progress (5): 1.3/1.8 MB | 737/950 kB | 1.6/4.3 MB | 598/945 kB | 20/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 598/945 kB | 20/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 598/945 kB | 25/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 598/945 kB | 29/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 598/945 kB | 29/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 598/945 kB | 33/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 33/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 37/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 745/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 754/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 762/950 kB | 1.6/4.3 MB | 606/945 kB | 41/762 kB Progress (5): 1.3/1.8 MB | 762/950 kB | 1.6/4.3 MB | 606/945 kB | 45/762 kB Progress (5): 1.3/1.8 MB | 762/950 kB | 1.6/4.3 MB | 606/945 kB | 49/762 kB Progress (5): 1.3/1.8 MB | 770/950 kB | 1.6/4.3 MB | 606/945 kB | 49/762 kB Progress (5): 1.3/1.8 MB | 778/950 kB | 1.6/4.3 MB | 606/945 kB | 49/762 kB Progress (5): 1.3/1.8 MB | 778/950 kB | 1.6/4.3 MB | 614/945 kB | 49/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 49/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 53/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 57/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 61/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 65/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 70/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 70/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 74/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 78/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 82/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 86/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 90/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 90/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 94/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 786/950 kB | 1.6/4.3 MB | 614/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 795/950 kB | 1.6/4.3 MB | 614/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 803/950 kB | 1.6/4.3 MB | 614/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 803/950 kB | 1.6/4.3 MB | 623/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 803/950 kB | 1.6/4.3 MB | 631/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 98/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 102/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 106/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 111/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 115/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 119/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 123/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 123/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 631/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 811/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 819/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 827/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 836/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 844/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 852/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 860/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.6/4.3 MB | 639/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.6/4.3 MB | 647/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.6/4.3 MB | 647/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.6/4.3 MB | 647/945 kB | 127/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.6/4.3 MB | 647/945 kB | 131/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.7/4.3 MB | 647/945 kB | 131/762 kB Progress (5): 1.3/1.8 MB | 868/950 kB | 1.7/4.3 MB | 647/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 868/950 kB | 1.7/4.3 MB | 647/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 868/950 kB | 1.7/4.3 MB | 655/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 655/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 664/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 664/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 135/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 139/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 143/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 147/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 147/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 152/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 672/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 680/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 688/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 877/950 kB | 1.7/4.3 MB | 688/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 688/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 688/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 156/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 160/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 164/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 164/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 696/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 705/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 885/950 kB | 1.7/4.3 MB | 705/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.7/4.3 MB | 705/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.7/4.3 MB | 705/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.7/4.3 MB | 713/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 713/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 713/945 kB | 168/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 713/945 kB | 172/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 713/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 721/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 893/950 kB | 1.8/4.3 MB | 721/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 721/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 721/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 729/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 737/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 737/945 kB | 176/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 737/945 kB | 180/762 kB Progress (5): 1.4/1.8 MB | 901/950 kB | 1.8/4.3 MB | 745/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 901/950 kB | 1.8/4.3 MB | 745/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 901/950 kB | 1.8/4.3 MB | 754/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 901/950 kB | 1.8/4.3 MB | 762/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 901/950 kB | 1.8/4.3 MB | 770/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 180/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 184/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 188/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 909/950 kB | 1.8/4.3 MB | 770/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 918/950 kB | 1.8/4.3 MB | 770/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 926/950 kB | 1.8/4.3 MB | 770/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 926/950 kB | 1.8/4.3 MB | 778/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 926/950 kB | 1.8/4.3 MB | 786/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.8/4.3 MB | 786/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 192/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 197/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 197/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 201/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 934/950 kB | 1.9/4.3 MB | 786/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 942/950 kB | 1.9/4.3 MB | 786/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 942/950 kB | 1.9/4.3 MB | 795/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 942/950 kB | 1.9/4.3 MB | 803/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 942/950 kB | 1.9/4.3 MB | 811/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 1.9/4.3 MB | 811/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 1.9/4.3 MB | 819/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 1.9/4.3 MB | 827/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 1.9/4.3 MB | 827/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 205/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 209/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 827/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 836/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 841/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 841/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 213/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 217/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 221/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 225/762 kB Progress (5): 1.5/1.8 MB | 950 kB | 2.0/4.3 MB | 849/945 kB | 229/762 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-core/2.9.2/sshd-core-2.9.2.jar (950 kB at 1.5 MB/s) +Progress (4): 1.5/1.8 MB | 2.0/4.3 MB | 849/945 kB | 229/762 kB Progress (4): 1.5/1.8 MB | 2.0/4.3 MB | 857/945 kB | 229/762 kB Progress (4): 1.5/1.8 MB | 2.0/4.3 MB | 857/945 kB | 229/762 kB Progress (4): 1.5/1.8 MB | 2.0/4.3 MB | 865/945 kB | 229/762 kB Progress (4): 1.5/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.4/antlr-runtime-3.4.jar +Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 229/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 233/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 238/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 242/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 242/762 kB Progress (4): 1.6/1.8 MB | 2.0/4.3 MB | 873/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 873/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 881/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 890/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 890/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 898/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 906/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 246/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 250/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 254/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 258/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 262/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 266/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 270/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 274/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 278/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 283/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 283/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 287/762 kB Progress (4): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 291/762 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 914/945 kB | 291/762 kB | 4.1/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 922/945 kB | 291/762 kB | 4.1/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 291/762 kB | 4.1/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 291/762 kB | 4.1/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 291/762 kB | 8.2/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 291/762 kB | 12/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 291/762 kB | 16/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 295/762 kB | 16/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 295/762 kB | 16/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 295/762 kB | 20/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 295/762 kB | 25/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 295/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 299/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 303/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 307/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 307/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 931/945 kB | 311/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 939/945 kB | 311/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 945 kB | 311/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 945 kB | 315/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.1/4.3 MB | 945 kB | 319/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 29/164 kB Progress (5): 1.6/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 33/164 kB Progress (5): 1.6/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 33/164 kB Progress (5): 1.6/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 33/164 kB Progress (5): 1.6/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 33/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 33/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 37/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 41/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 45/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 319/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 324/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 328/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 332/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 336/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 340/762 kB | 49/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 340/762 kB | 53/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 340/762 kB | 57/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 344/762 kB | 57/164 kB Progress (5): 1.7/1.8 MB | 2.2/4.3 MB | 945 kB | 344/762 kB | 57/164 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/sshd/sshd-common/2.9.2/sshd-common-2.9.2.jar (945 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar +Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 344/762 kB | 57/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 344/762 kB | 57/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 344/762 kB | 57/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 348/762 kB | 57/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 352/762 kB | 57/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 352/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 356/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.2/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.7/1.8 MB | 2.3/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 360/762 kB | 61/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 364/762 kB | 61/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 364/762 kB | 66/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 364/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 364/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 369/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 373/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 377/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 381/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 385/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 389/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 70/164 kB Progress (4): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 70/164 kB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 70/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 393/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 397/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 397/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 397/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 397/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 401/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 401/762 kB | 74/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 401/762 kB | 78/164 kB | 0/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 401/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.3/4.3 MB | 405/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 405/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 405/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 405/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 78/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 82/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 86/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 410/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 414/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 414/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 418/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 418/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 418/762 kB | 90/164 kB | 0.1/2.7 MB Progress (5): 1.8/1.8 MB | 2.4/4.3 MB | 418/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 418/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 418/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 422/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 422/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 426/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 426/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 426/762 kB | 94/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 426/762 kB | 98/164 kB | 0.1/2.7 MB Progress (5): 1.8 MB | 2.4/4.3 MB | 426/762 kB | 98/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 426/762 kB | 98/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 430/762 kB | 98/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 434/762 kB | 98/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 434/762 kB | 98/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 434/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 434/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 438/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 442/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 442/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 446/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 446/762 kB | 102/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 446/762 kB | 106/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 446/762 kB | 106/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 451/762 kB | 106/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 451/762 kB | 106/164 kB | 0.2/2.7 MB Progress (5): 1.8 MB | 2.5/4.3 MB | 451/762 kB | 106/164 kB | 0.2/2.7 MB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.11.0/jna-5.11.0.jar (1.8 MB at 2.4 MB/s) +Progress (4): 2.5/4.3 MB | 451/762 kB | 106/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 455/762 kB | 106/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 455/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 455/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 459/762 kB | 111/164 kB | 0.3/2.7 MB Downloading from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build222/trilead-ssh2-1.0.0-build222.jar +Progress (4): 2.5/4.3 MB | 459/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 463/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 467/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 471/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 471/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 475/762 kB | 111/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 475/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 479/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.5/4.3 MB | 479/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 479/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 479/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 483/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 487/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 491/762 kB | 115/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 491/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 496/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 500/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 504/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 504/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 504/762 kB | 119/164 kB | 0.3/2.7 MB Progress (4): 2.6/4.3 MB | 504/762 kB | 119/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 508/762 kB | 119/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 508/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 512/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 512/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 512/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 512/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 512/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 516/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 520/762 kB | 123/164 kB | 0.4/2.7 MB Progress (4): 2.6/4.3 MB | 520/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 520/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 524/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 528/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 532/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 537/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 541/762 kB | 127/164 kB | 0.4/2.7 MB Progress (4): 2.7/4.3 MB | 541/762 kB | 127/164 kB | 0.4/2.7 MB Progress (5): 2.7/4.3 MB | 541/762 kB | 127/164 kB | 0.4/2.7 MB | 4.1/248 kB Progress (5): 2.7/4.3 MB | 541/762 kB | 127/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 545/762 kB | 127/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 545/762 kB | 127/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 545/762 kB | 131/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 545/762 kB | 135/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 545/762 kB | 135/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 549/762 kB | 135/164 kB | 0.4/2.7 MB | 8.2/248 kB Progress (5): 2.7/4.3 MB | 549/762 kB | 135/164 kB | 0.4/2.7 MB | 12/248 kB Progress (5): 2.7/4.3 MB | 549/762 kB | 135/164 kB | 0.4/2.7 MB | 12/248 kB Progress (5): 2.7/4.3 MB | 549/762 kB | 135/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 549/762 kB | 135/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 553/762 kB | 135/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 557/762 kB | 135/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 557/762 kB | 135/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 557/762 kB | 139/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.7/4.3 MB | 557/762 kB | 143/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.8/4.3 MB | 557/762 kB | 143/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.8/4.3 MB | 561/762 kB | 143/164 kB | 0.4/2.7 MB | 16/248 kB Progress (5): 2.8/4.3 MB | 561/762 kB | 143/164 kB | 0.5/2.7 MB | 16/248 kB Progress (5): 2.8/4.3 MB | 561/762 kB | 143/164 kB | 0.5/2.7 MB | 20/248 kB Progress (5): 2.8/4.3 MB | 561/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 561/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 565/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 569/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 573/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 143/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 25/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 29/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 33/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 37/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 37/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 41/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 45/248 kB Progress (5): 2.8/4.3 MB | 577/762 kB | 147/164 kB | 0.5/2.7 MB | 45/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 147/164 kB | 0.5/2.7 MB | 45/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 152/164 kB | 0.5/2.7 MB | 45/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 45/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 49/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 53/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 53/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 57/248 kB Progress (5): 2.8/4.3 MB | 582/762 kB | 156/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.8/4.3 MB | 586/762 kB | 156/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.8/4.3 MB | 590/762 kB | 156/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.8/4.3 MB | 590/762 kB | 160/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.9/4.3 MB | 590/762 kB | 160/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.9/4.3 MB | 590/762 kB | 164/164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.9/4.3 MB | 590/762 kB | 164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.9/4.3 MB | 594/762 kB | 164 kB | 0.5/2.7 MB | 61/248 kB Progress (5): 2.9/4.3 MB | 594/762 kB | 164 kB | 0.5/2.7 MB | 65/248 kB Progress (5): 2.9/4.3 MB | 594/762 kB | 164 kB | 0.5/2.7 MB | 65/248 kB Progress (5): 2.9/4.3 MB | 594/762 kB | 164 kB | 0.5/2.7 MB | 69/248 kB Progress (5): 2.9/4.3 MB | 594/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 598/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 602/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 606/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 610/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 614/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 618/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 623/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 627/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 627/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 73/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 77/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 77/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 81/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 86/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 90/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 94/248 kB Progress (5): 2.9/4.3 MB | 631/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 635/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 639/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 639/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 643/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 647/762 kB | 164 kB | 0.5/2.7 MB | 98/248 kB Progress (5): 2.9/4.3 MB | 647/762 kB | 164 kB | 0.5/2.7 MB | 102/248 kB Progress (5): 2.9/4.3 MB | 647/762 kB | 164 kB | 0.5/2.7 MB | 106/248 kB Progress (5): 2.9/4.3 MB | 647/762 kB | 164 kB | 0.5/2.7 MB | 106/248 kB Progress (5): 2.9/4.3 MB | 647/762 kB | 164 kB | 0.5/2.7 MB | 110/248 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.4/antlr-runtime-3.4.jar (164 kB at 198 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.connector-factory/0.0.9/jsch.agentproxy.connector-factory-0.0.9.jar +Progress (4): 2.9/4.3 MB | 651/762 kB | 0.5/2.7 MB | 110/248 kB Progress (4): 2.9/4.3 MB | 651/762 kB | 0.5/2.7 MB | 110/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.5/2.7 MB | 110/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.5/2.7 MB | 114/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.5/2.7 MB | 118/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.5/2.7 MB | 122/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.5/2.7 MB | 127/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.6/2.7 MB | 127/248 kB Progress (4): 2.9/4.3 MB | 655/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 2.9/4.3 MB | 659/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 659/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 659/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 664/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 668/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 672/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 672/762 kB | 0.6/2.7 MB | 131/248 kB Progress (4): 3.0/4.3 MB | 672/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 672/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 676/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 680/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 680/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 680/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 680/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 684/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 688/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 692/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 696/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 700/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 704/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 135/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 139/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 143/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 147/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 151/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 155/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 159/248 kB Progress (4): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 163/248 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 163/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 167/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 172/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.6/2.7 MB | 176/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 176/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 180/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 180/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 180/248 kB | 4.1/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 180/248 kB | 8.2/12 kB Progress (5): 3.0/4.3 MB | 709/762 kB | 0.7/2.7 MB | 180/248 kB | 12 kB Progress (5): 3.0/4.3 MB | 713/762 kB | 0.7/2.7 MB | 180/248 kB | 12 kB Progress (5): 3.0/4.3 MB | 713/762 kB | 0.7/2.7 MB | 180/248 kB | 12 kB Progress (5): 3.0/4.3 MB | 713/762 kB | 0.7/2.7 MB | 180/248 kB | 12 kB Progress (5): 3.0/4.3 MB | 713/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 713/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 713/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 717/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 184/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 188/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 192/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 721/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 725/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 729/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 729/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 733/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 733/762 kB | 0.7/2.7 MB | 196/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 733/762 kB | 0.7/2.7 MB | 200/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 737/762 kB | 0.7/2.7 MB | 200/248 kB | 12 kB Progress (5): 3.1/4.3 MB | 737/762 kB | 0.7/2.7 MB | 200/248 kB | 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.connector-factory/0.0.9/jsch.agentproxy.connector-factory-0.0.9.jar (12 kB at 14 kB/s) +Progress (4): 3.1/4.3 MB | 741/762 kB | 0.7/2.7 MB | 200/248 kB Progress (4): 3.1/4.3 MB | 741/762 kB | 0.7/2.7 MB | 204/248 kB Progress (4): 3.2/4.3 MB | 741/762 kB | 0.7/2.7 MB | 204/248 kB Progress (4): 3.2/4.3 MB | 741/762 kB | 0.7/2.7 MB | 208/248 kB Progress (4): 3.2/4.3 MB | 741/762 kB | 0.7/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 745/762 kB | 0.7/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 750/762 kB | 0.7/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 754/762 kB | 0.7/2.7 MB | 213/248 kB Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.core/0.0.9/jsch.agentproxy.core-0.0.9.jar +Progress (4): 3.2/4.3 MB | 754/762 kB | 0.8/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 758/762 kB | 0.8/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 213/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 217/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 221/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 225/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 229/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 229/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 233/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 237/248 kB Progress (4): 3.2/4.3 MB | 762/762 kB | 0.8/2.7 MB | 237/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 237/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 237/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 237/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 241/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 241/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 245/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 245/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 245/248 kB Progress (4): 3.2/4.3 MB | 762 kB | 0.8/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.8/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (4): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB Progress (5): 3.3/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB | 4.1/9.6 kB Progress (5): 3.4/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB | 4.1/9.6 kB Progress (5): 3.4/4.3 MB | 762 kB | 0.9/2.7 MB | 248 kB | 4.1/9.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tmatesoft/sqljet/sqljet/1.1.15/sqljet-1.1.15.jar (762 kB at 842 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-jna/0.0.9/jsch.agentproxy.usocket-jna-0.0.9.jar +Progress (4): 3.4/4.3 MB | 0.9/2.7 MB | 248 kB | 4.1/9.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/trilead/trilead-ssh2/1.0.0-build222/trilead-ssh2-1.0.0-build222.jar (248 kB at 273 kB/s) +Progress (3): 3.4/4.3 MB | 0.9/2.7 MB | 4.1/9.6 kB Progress (3): 3.4/4.3 MB | 0.9/2.7 MB | 8.2/9.6 kB Progress (3): 3.4/4.3 MB | 0.9/2.7 MB | 9.6 kB Progress (3): 3.4/4.3 MB | 0.9/2.7 MB | 9.6 kB Progress (3): 3.4/4.3 MB | 0.9/2.7 MB | 9.6 kB Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-nc/0.0.9/jsch.agentproxy.usocket-nc-0.0.9.jar +Progress (3): 3.4/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (3): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB Progress (4): 3.5/4.3 MB | 1.0/2.7 MB | 9.6 kB | 4.1/6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 4.1/6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.0/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.1/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.6/4.3 MB | 1.1/2.7 MB | 9.6 kB | 6.6 kB Progress (4): 3.7/4.3 MB | 1.1/2.7 MB | 9.6 kB | 6.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.core/0.0.9/jsch.agentproxy.core-0.0.9.jar (9.6 kB at 10 kB/s) +Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 6.6 kB Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.sshagent/0.0.9/jsch.agentproxy.sshagent-0.0.9.jar +Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 6.6 kB Progress (4): 3.7/4.3 MB | 1.1/2.7 MB | 6.6 kB | 4.1/5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-jna/0.0.9/jsch.agentproxy.usocket-jna-0.0.9.jar (6.6 kB at 7.0 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.pageant/0.0.9/jsch.agentproxy.pageant-0.0.9.jar +Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 4.1/5.3 kB Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 4.1/5.3 kB Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 4.1/5.3 kB Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 5.3 kB Progress (3): 3.7/4.3 MB | 1.1/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.1/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.1/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.1/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.8/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (3): 3.9/4.3 MB | 1.2/2.7 MB | 5.3 kB Progress (4): 3.9/4.3 MB | 1.2/2.7 MB | 5.3 kB | 4.1/4.3 kB Progress (4): 3.9/4.3 MB | 1.2/2.7 MB | 5.3 kB | 4.3 kB Progress (4): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB Progress (4): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB Progress (4): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB Progress (4): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB Progress (4): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB Progress (5): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 4.1/7.8 kB Progress (5): 3.9/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 4.1/7.8 kB Progress (5): 4.0/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 4.1/7.8 kB Progress (5): 4.0/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.3/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Progress (5): 4.0/4.3 MB | 1.4/2.7 MB | 5.3 kB | 4.3 kB | 7.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.usocket-nc/0.0.9/jsch.agentproxy.usocket-nc-0.0.9.jar (5.3 kB at 5.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.svnkit-trilead-ssh2/0.0.9/jsch.agentproxy.svnkit-trilead-ssh2-0.0.9.jar +Progress (4): 4.1/4.3 MB | 1.4/2.7 MB | 4.3 kB | 7.8 kB Progress (4): 4.1/4.3 MB | 1.4/2.7 MB | 4.3 kB | 7.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.sshagent/0.0.9/jsch.agentproxy.sshagent-0.0.9.jar (4.3 kB at 4.5 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/lz4/lz4-java/1.4.1/lz4-java-1.4.1.jar +Progress (3): 4.1/4.3 MB | 1.4/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.4/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.4/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.4/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.1/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.2/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.2/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.2/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.2/4.3 MB | 1.5/2.7 MB | 7.8 kB Progress (3): 4.2/4.3 MB | 1.5/2.7 MB | 7.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.pageant/0.0.9/jsch.agentproxy.pageant-0.0.9.jar (7.8 kB at 8.1 kB/s) +Progress (2): 4.2/4.3 MB | 1.5/2.7 MB Progress (2): 4.2/4.3 MB | 1.5/2.7 MB Progress (2): 4.2/4.3 MB | 1.5/2.7 MB Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar +Progress (2): 4.3/4.3 MB | 1.5/2.7 MB Progress (2): 4.3/4.3 MB | 1.6/2.7 MB Progress (2): 4.3/4.3 MB | 1.6/2.7 MB Progress (3): 4.3/4.3 MB | 1.6/2.7 MB | 3.8 kB Progress (3): 4.3/4.3 MB | 1.6/2.7 MB | 3.8 kB Progress (3): 4.3/4.3 MB | 1.6/2.7 MB | 3.8 kB Progress (3): 4.3 MB | 1.6/2.7 MB | 3.8 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 4.1/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 8.2/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 8.2/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 12/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 12/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 16/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 16/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 20/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 25/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 25/370 kB Progress (4): 4.3 MB | 1.6/2.7 MB | 3.8 kB | 29/370 kB Progress (4): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 29/370 kB Progress (4): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 33/370 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 33/370 kB | 4.1/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 33/370 kB | 4.1/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 37/370 kB | 4.1/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 37/370 kB | 8.2/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 41/370 kB | 8.2/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 45/370 kB | 8.2/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 45/370 kB | 8.2/28 kB Progress (5): 4.3 MB | 1.7/2.7 MB | 3.8 kB | 49/370 kB | 8.2/28 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tmatesoft/svnkit/svnkit/1.10.11/svnkit-1.10.11.jar (4.3 MB at 4.4 MB/s) +Progress (4): 1.7/2.7 MB | 3.8 kB | 49/370 kB | 12/28 kB Progress (4): 1.7/2.7 MB | 3.8 kB | 49/370 kB | 16/28 kB Progress (4): 1.7/2.7 MB | 3.8 kB | 49/370 kB | 20/28 kB Progress (4): 1.7/2.7 MB | 3.8 kB | 49/370 kB | 25/28 kB Progress (4): 1.7/2.7 MB | 3.8 kB | 49/370 kB | 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.svnkit-trilead-ssh2/0.0.9/jsch.agentproxy.svnkit-trilead-ssh2-0.0.9.jar (3.8 kB at 3.8 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar +Progress (3): 1.7/2.7 MB | 53/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 53/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 57/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 61/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 61/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 65/370 kB | 28 kB Progress (3): 1.7/2.7 MB | 65/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 65/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 69/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 69/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 73/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 77/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 81/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 85/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 85/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 89/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 93/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 93/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 98/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 102/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 102/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 106/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 110/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 114/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 114/370 kB | 28 kB Progress (3): 1.8/2.7 MB | 118/370 kB | 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-sec-dispatcher/1.4/plexus-sec-dispatcher-1.4.jar (28 kB at 27 kB/s) +Progress (2): 1.8/2.7 MB | 122/370 kB Progress (2): 1.8/2.7 MB | 126/370 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 4.1/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 8.2/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 12/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 16/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 20/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 24/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 28/283 kB Progress (3): 1.8/2.7 MB | 126/370 kB | 32/283 kB Progress (3): 1.9/2.7 MB | 126/370 kB | 32/283 kB Progress (3): 1.9/2.7 MB | 126/370 kB | 36/283 kB Progress (3): 1.9/2.7 MB | 126/370 kB | 40/283 kB Progress (3): 1.9/2.7 MB | 126/370 kB | 40/283 kB Progress (3): 1.9/2.7 MB | 130/370 kB | 40/283 kB Progress (3): 1.9/2.7 MB | 130/370 kB | 40/283 kB Progress (3): 1.9/2.7 MB | 130/370 kB | 44/283 kB Progress (3): 1.9/2.7 MB | 130/370 kB | 49/283 kB Progress (3): 1.9/2.7 MB | 134/370 kB | 49/283 kB Progress (3): 1.9/2.7 MB | 139/370 kB | 49/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 49/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 53/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 57/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 57/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 61/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 65/283 kB Progress (3): 1.9/2.7 MB | 143/370 kB | 69/283 kB Progress (3): 1.9/2.7 MB | 147/370 kB | 69/283 kB Progress (3): 1.9/2.7 MB | 147/370 kB | 73/283 kB Progress (3): 1.9/2.7 MB | 147/370 kB | 73/283 kB Progress (3): 1.9/2.7 MB | 147/370 kB | 77/283 kB Progress (3): 1.9/2.7 MB | 147/370 kB | 77/283 kB Progress (3): 1.9/2.7 MB | 151/370 kB | 77/283 kB Progress (3): 1.9/2.7 MB | 155/370 kB | 77/283 kB Progress (3): 1.9/2.7 MB | 155/370 kB | 77/283 kB Progress (3): 1.9/2.7 MB | 155/370 kB | 81/283 kB Progress (3): 1.9/2.7 MB | 155/370 kB | 85/283 kB Progress (3): 2.0/2.7 MB | 155/370 kB | 85/283 kB Progress (3): 2.0/2.7 MB | 159/370 kB | 85/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 85/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 90/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 94/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 94/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 98/283 kB Progress (3): 2.0/2.7 MB | 163/370 kB | 102/283 kB Progress (3): 2.0/2.7 MB | 167/370 kB | 102/283 kB Progress (3): 2.0/2.7 MB | 171/370 kB | 102/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 102/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 106/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 110/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 110/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 114/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 118/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 122/283 kB Progress (3): 2.0/2.7 MB | 175/370 kB | 126/283 kB Progress (3): 2.0/2.7 MB | 179/370 kB | 126/283 kB Progress (3): 2.0/2.7 MB | 179/370 kB | 126/283 kB Progress (3): 2.0/2.7 MB | 184/370 kB | 126/283 kB Progress (3): 2.0/2.7 MB | 188/370 kB | 126/283 kB Progress (3): 2.0/2.7 MB | 188/370 kB | 130/283 kB Progress (3): 2.0/2.7 MB | 188/370 kB | 135/283 kB Progress (3): 2.0/2.7 MB | 192/370 kB | 135/283 kB Progress (3): 2.0/2.7 MB | 192/370 kB | 135/283 kB Progress (3): 2.0/2.7 MB | 192/370 kB | 135/283 kB Progress (3): 2.0/2.7 MB | 196/370 kB | 135/283 kB Progress (3): 2.1/2.7 MB | 196/370 kB | 135/283 kB Progress (3): 2.1/2.7 MB | 196/370 kB | 139/283 kB Progress (3): 2.1/2.7 MB | 196/370 kB | 143/283 kB Progress (3): 2.1/2.7 MB | 196/370 kB | 143/283 kB Progress (3): 2.1/2.7 MB | 200/370 kB | 143/283 kB Progress (3): 2.1/2.7 MB | 200/370 kB | 143/283 kB Progress (3): 2.1/2.7 MB | 200/370 kB | 147/283 kB Progress (3): 2.1/2.7 MB | 204/370 kB | 147/283 kB Progress (3): 2.1/2.7 MB | 204/370 kB | 151/283 kB Progress (3): 2.1/2.7 MB | 204/370 kB | 155/283 kB Progress (3): 2.1/2.7 MB | 204/370 kB | 159/283 kB Progress (3): 2.1/2.7 MB | 204/370 kB | 159/283 kB Progress (3): 2.1/2.7 MB | 208/370 kB | 159/283 kB Progress (3): 2.1/2.7 MB | 212/370 kB | 159/283 kB Progress (3): 2.1/2.7 MB | 212/370 kB | 159/283 kB Progress (3): 2.1/2.7 MB | 212/370 kB | 163/283 kB Progress (3): 2.1/2.7 MB | 212/370 kB | 167/283 kB Progress (3): 2.1/2.7 MB | 216/370 kB | 167/283 kB Progress (3): 2.1/2.7 MB | 216/370 kB | 167/283 kB Progress (3): 2.1/2.7 MB | 216/370 kB | 171/283 kB Progress (3): 2.1/2.7 MB | 216/370 kB | 176/283 kB Progress (3): 2.2/2.7 MB | 216/370 kB | 176/283 kB Progress (3): 2.2/2.7 MB | 220/370 kB | 176/283 kB Progress (3): 2.2/2.7 MB | 225/370 kB | 176/283 kB Progress (3): 2.2/2.7 MB | 225/370 kB | 180/283 kB Progress (3): 2.2/2.7 MB | 225/370 kB | 184/283 kB Progress (3): 2.2/2.7 MB | 229/370 kB | 184/283 kB Progress (3): 2.2/2.7 MB | 229/370 kB | 184/283 kB Progress (3): 2.2/2.7 MB | 229/370 kB | 188/283 kB Progress (3): 2.2/2.7 MB | 229/370 kB | 192/283 kB Progress (3): 2.2/2.7 MB | 233/370 kB | 192/283 kB Progress (3): 2.2/2.7 MB | 233/370 kB | 196/283 kB Progress (3): 2.2/2.7 MB | 233/370 kB | 200/283 kB Progress (3): 2.2/2.7 MB | 233/370 kB | 200/283 kB Progress (3): 2.2/2.7 MB | 233/370 kB | 204/283 kB Progress (3): 2.2/2.7 MB | 237/370 kB | 204/283 kB Progress (3): 2.2/2.7 MB | 237/370 kB | 208/283 kB Progress (3): 2.2/2.7 MB | 237/370 kB | 208/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 208/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 212/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 217/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 221/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 225/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 229/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 233/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 237/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 241/283 kB Progress (3): 2.2/2.7 MB | 241/370 kB | 245/283 kB Progress (3): 2.2/2.7 MB | 245/370 kB | 245/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 245/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 249/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 253/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 257/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 257/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 262/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 266/283 kB Progress (3): 2.2/2.7 MB | 249/370 kB | 270/283 kB Progress (3): 2.2/2.7 MB | 253/370 kB | 270/283 kB Progress (3): 2.2/2.7 MB | 253/370 kB | 270/283 kB Progress (3): 2.2/2.7 MB | 253/370 kB | 274/283 kB Progress (3): 2.2/2.7 MB | 257/370 kB | 274/283 kB Progress (3): 2.2/2.7 MB | 257/370 kB | 278/283 kB Progress (3): 2.2/2.7 MB | 257/370 kB | 282/283 kB Progress (3): 2.2/2.7 MB | 261/370 kB | 282/283 kB Progress (3): 2.3/2.7 MB | 261/370 kB | 282/283 kB Progress (3): 2.3/2.7 MB | 265/370 kB | 282/283 kB Progress (3): 2.3/2.7 MB | 270/370 kB | 282/283 kB Progress (3): 2.3/2.7 MB | 274/370 kB | 282/283 kB Progress (3): 2.3/2.7 MB | 274/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 278/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 282/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 286/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 286/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 290/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 294/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 298/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 302/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 306/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 311/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 315/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 315/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 319/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 319/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 323/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 323/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 327/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 331/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 331/370 kB | 283 kB Progress (3): 2.3/2.7 MB | 335/370 kB | 283 kB Progress (3): 2.4/2.7 MB | 335/370 kB | 283 kB Progress (3): 2.4/2.7 MB | 339/370 kB | 283 kB Progress (3): 2.4/2.7 MB | 343/370 kB | 283 kB Progress (3): 2.4/2.7 MB | 343/370 kB | 283 kB Progress (3): 2.4/2.7 MB | 343/370 kB | 283 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar (283 kB at 261 kB/s) +Progress (2): 2.4/2.7 MB | 347/370 kB Progress (2): 2.4/2.7 MB | 352/370 kB Progress (2): 2.4/2.7 MB | 352/370 kB Progress (2): 2.4/2.7 MB | 356/370 kB Progress (2): 2.4/2.7 MB | 356/370 kB Progress (2): 2.4/2.7 MB | 356/370 kB Progress (2): 2.4/2.7 MB | 360/370 kB Progress (2): 2.4/2.7 MB | 364/370 kB Progress (2): 2.5/2.7 MB | 364/370 kB Progress (2): 2.5/2.7 MB | 368/370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.5/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.6/2.7 MB | 370 kB Progress (2): 2.7/2.7 MB | 370 kB Progress (2): 2.7/2.7 MB | 370 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/lz4/lz4-java/1.4.1/lz4-java-1.4.1.jar (370 kB at 333 kB/s) +Progress (1): 2.7/2.7 MB Progress (1): 2.7/2.7 MB Progress (1): 2.7/2.7 MB Progress (1): 2.7 MB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.6.0/jna-platform-5.6.0.jar (2.7 MB at 2.4 MB/s) +[INFO] Executing: /bin/sh -c cd '/src/commons-jxpath' && 'git' 'rev-parse' '--verify' 'HEAD' +[INFO] Working directory: /src/commons-jxpath +[INFO] Storing buildNumber: ?????? at timestamp: 1741039653849 +[WARNING] Cannot get the branch information from the git repository: +Detecting the current branch failed: fatal: not a git repository (or any parent up to mount point /src) +Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). + +[INFO] Executing: /bin/sh -c cd '/src/commons-jxpath' && 'git' 'rev-parse' '--verify' 'HEAD' +[INFO] Working directory: /src/commons-jxpath +[INFO] Storing scmBranch: UNKNOWN_BRANCH +[INFO] +[INFO] --- maven-resources-plugin:3.3.0:resources (default-resources) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.0/maven-filtering-3.3.0.pom +Progress (1): 4.1/6.9 kB Progress (1): 6.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.0/maven-filtering-3.3.0.pom (6.9 kB at 198 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom +Progress (1): 612 B Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.pom (612 B at 20 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.0/maven-filtering-3.3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar +Progress (1): 4.1/85 kB Progress (1): 8.2/85 kB Progress (1): 12/85 kB Progress (1): 16/85 kB Progress (1): 20/85 kB Progress (1): 25/85 kB Progress (1): 29/85 kB Progress (1): 33/85 kB Progress (1): 37/85 kB Progress (1): 41/85 kB Progress (1): 45/85 kB Progress (1): 49/85 kB Progress (1): 53/85 kB Progress (1): 57/85 kB Progress (1): 61/85 kB Progress (1): 66/85 kB Progress (1): 70/85 kB Progress (2): 70/85 kB | 4.1/263 kB Progress (3): 70/85 kB | 4.1/263 kB | 4.1/55 kB Progress (3): 74/85 kB | 4.1/263 kB | 4.1/55 kB Progress (3): 78/85 kB | 4.1/263 kB | 4.1/55 kB Progress (3): 82/85 kB | 4.1/263 kB | 4.1/55 kB Progress (3): 85 kB | 4.1/263 kB | 4.1/55 kB Progress (3): 85 kB | 4.1/263 kB | 8.2/55 kB Progress (3): 85 kB | 4.1/263 kB | 12/55 kB Progress (3): 85 kB | 4.1/263 kB | 16/55 kB Progress (4): 85 kB | 4.1/263 kB | 16/55 kB | 2.5 kB Progress (4): 85 kB | 8.2/263 kB | 16/55 kB | 2.5 kB Progress (4): 85 kB | 12/263 kB | 16/55 kB | 2.5 kB Progress (4): 85 kB | 16/263 kB | 16/55 kB | 2.5 kB Progress (4): 85 kB | 16/263 kB | 20/55 kB | 2.5 kB Progress (4): 85 kB | 16/263 kB | 25/55 kB | 2.5 kB Progress (4): 85 kB | 20/263 kB | 25/55 kB | 2.5 kB Progress (4): 85 kB | 20/263 kB | 29/55 kB | 2.5 kB Progress (4): 85 kB | 25/263 kB | 29/55 kB | 2.5 kB Progress (4): 85 kB | 29/263 kB | 29/55 kB | 2.5 kB Progress (4): 85 kB | 33/263 kB | 29/55 kB | 2.5 kB Progress (4): 85 kB | 37/263 kB | 29/55 kB | 2.5 kB Progress (4): 85 kB | 41/263 kB | 29/55 kB | 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar (85 kB at 1.3 MB/s) +Progress (3): 41/263 kB | 33/55 kB | 2.5 kB Progress (3): 41/263 kB | 37/55 kB | 2.5 kB Progress (3): 41/263 kB | 41/55 kB | 2.5 kB Progress (3): 41/263 kB | 45/55 kB | 2.5 kB Progress (3): 41/263 kB | 49/55 kB | 2.5 kB Progress (3): 41/263 kB | 53/55 kB | 2.5 kB Progress (3): 41/263 kB | 55 kB | 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/inject/javax.inject/1/javax.inject-1.jar (2.5 kB at 35 kB/s) +Progress (2): 45/263 kB | 55 kB Progress (2): 49/263 kB | 55 kB Progress (2): 53/263 kB | 55 kB Progress (2): 57/263 kB | 55 kB Progress (2): 61/263 kB | 55 kB Progress (2): 66/263 kB | 55 kB Progress (2): 70/263 kB | 55 kB Progress (2): 74/263 kB | 55 kB Progress (2): 78/263 kB | 55 kB Progress (2): 82/263 kB | 55 kB Progress (2): 86/263 kB | 55 kB Progress (2): 90/263 kB | 55 kB Progress (2): 94/263 kB | 55 kB Progress (2): 98/263 kB | 55 kB Progress (2): 102/263 kB | 55 kB Progress (2): 106/263 kB | 55 kB Progress (2): 111/263 kB | 55 kB Progress (2): 115/263 kB | 55 kB Progress (2): 119/263 kB | 55 kB Progress (2): 123/263 kB | 55 kB Progress (2): 127/263 kB | 55 kB Progress (2): 131/263 kB | 55 kB Progress (2): 135/263 kB | 55 kB Progress (2): 139/263 kB | 55 kB Progress (2): 143/263 kB | 55 kB Progress (2): 147/263 kB | 55 kB Progress (2): 152/263 kB | 55 kB Progress (2): 156/263 kB | 55 kB Progress (2): 160/263 kB | 55 kB Progress (2): 164/263 kB | 55 kB Progress (2): 168/263 kB | 55 kB Progress (2): 172/263 kB | 55 kB Progress (2): 176/263 kB | 55 kB Progress (2): 180/263 kB | 55 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.0/maven-filtering-3.3.0.jar (55 kB at 588 kB/s) +Progress (1): 184/263 kB Progress (1): 188/263 kB Progress (1): 193/263 kB Progress (1): 197/263 kB Progress (1): 201/263 kB Progress (1): 205/263 kB Progress (1): 209/263 kB Progress (1): 213/263 kB Progress (1): 217/263 kB Progress (1): 221/263 kB Progress (1): 225/263 kB Progress (1): 229/263 kB Progress (1): 233/263 kB Progress (1): 238/263 kB Progress (1): 242/263 kB Progress (1): 246/263 kB Progress (1): 250/263 kB Progress (1): 254/263 kB Progress (1): 258/263 kB Progress (1): 262/263 kB Progress (1): 263 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.3.0/plexus-utils-3.3.0.jar (263 kB at 2.3 MB/s) +[INFO] skip non existing resourceDirectory /src/commons-jxpath/src/main/resources +[INFO] Copying 2 resources to META-INF +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom +Progress (1): 4.1/4.7 kB Progress (1): 4.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.pom (4.7 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom +Progress (1): 4.1/6.4 kB Progress (1): 6.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/19/maven-shared-components-19.pom (6.4 kB at 199 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom +Progress (1): 4.1/33 kB Progress (1): 8.2/33 kB Progress (1): 12/33 kB Progress (1): 16/33 kB Progress (1): 20/33 kB Progress (1): 25/33 kB Progress (1): 29/33 kB Progress (1): 33 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/23/maven-parent-23.pom (33 kB at 1.0 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom +Progress (1): 815 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.pom (815 B at 30 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.pom (5.0 kB at 124 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom +Progress (1): 4.1/4.1 kB Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/1.1.2/plexus-languages-1.1.2.pom (4.1 kB at 109 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.pom (2.4 kB at 53 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.pom (17 kB at 392 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.pom (1.1 kB at 29 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.13.0/plexus-compiler-2.13.0.pom (8.4 kB at 178 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/10.0/plexus-components-10.0.pom (2.7 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.9.1/junit-bom-5.9.1.pom (5.6 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom +Progress (1): 4.1/8.0 kB Progress (1): 8.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.pom (8.0 kB at 223 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.pom (1.1 kB at 26 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom +Progress (1): 770 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.pom (770 B at 20 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom +Progress (1): 4.1/6.0 kB Progress (1): 6.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/2.1.1/plexus-containers-2.1.1.pom (6.0 kB at 201 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom +Progress (1): 4.1/26 kB Progress (1): 8.2/26 kB Progress (1): 12/26 kB Progress (1): 16/26 kB Progress (1): 20/26 kB Progress (1): 25/26 kB Progress (1): 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 952 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.pom (1.2 kB at 46 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.13.0/plexus-compilers-2.13.0.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Progress (2): 4.2 kB | 4.1/14 kB Progress (3): 4.2 kB | 4.1/14 kB | 4.1/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 8.2/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 12/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 16/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 20/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 25/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 29/334 kB Progress (3): 4.2 kB | 4.1/14 kB | 33/334 kB Progress (4): 4.2 kB | 4.1/14 kB | 33/334 kB | 4.1/122 kB Progress (4): 4.2 kB | 4.1/14 kB | 33/334 kB | 8.2/122 kB Progress (4): 4.2 kB | 4.1/14 kB | 33/334 kB | 12/122 kB Progress (4): 4.2 kB | 4.1/14 kB | 33/334 kB | 16/122 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 16/122 kB | 4.1/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 16/122 kB | 8.2/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 16/122 kB | 12/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 16/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 20/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 25/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 29/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 33/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 37/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 41/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 45/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 49/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 33/334 kB | 53/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 37/334 kB | 53/122 kB | 16/55 kB Progress (5): 4.2 kB | 4.1/14 kB | 37/334 kB | 57/122 kB | 16/55 kB Progress (5): 4.2 kB | 8.2/14 kB | 37/334 kB | 57/122 kB | 16/55 kB Progress (5): 4.2 kB | 12/14 kB | 37/334 kB | 57/122 kB | 16/55 kB Progress (5): 4.2 kB | 12/14 kB | 37/334 kB | 61/122 kB | 16/55 kB Progress (5): 4.2 kB | 12/14 kB | 41/334 kB | 61/122 kB | 16/55 kB Progress (5): 4.2 kB | 12/14 kB | 45/334 kB | 61/122 kB | 16/55 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.5.5/plexus-component-annotations-1.5.5.jar (4.2 kB at 124 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar +Progress (4): 12/14 kB | 45/334 kB | 61/122 kB | 20/55 kB Progress (4): 12/14 kB | 49/334 kB | 61/122 kB | 20/55 kB Progress (4): 12/14 kB | 53/334 kB | 61/122 kB | 20/55 kB Progress (4): 12/14 kB | 53/334 kB | 65/122 kB | 20/55 kB Progress (4): 12/14 kB | 53/334 kB | 69/122 kB | 20/55 kB Progress (4): 14 kB | 53/334 kB | 69/122 kB | 20/55 kB Progress (4): 14 kB | 53/334 kB | 73/122 kB | 20/55 kB Progress (4): 14 kB | 57/334 kB | 73/122 kB | 20/55 kB Progress (4): 14 kB | 57/334 kB | 73/122 kB | 24/55 kB Progress (4): 14 kB | 57/334 kB | 73/122 kB | 28/55 kB Progress (4): 14 kB | 61/334 kB | 73/122 kB | 28/55 kB Progress (4): 14 kB | 61/334 kB | 78/122 kB | 28/55 kB Progress (4): 14 kB | 66/334 kB | 78/122 kB | 28/55 kB Progress (4): 14 kB | 66/334 kB | 78/122 kB | 32/55 kB Progress (4): 14 kB | 70/334 kB | 78/122 kB | 32/55 kB Progress (4): 14 kB | 74/334 kB | 78/122 kB | 32/55 kB Progress (4): 14 kB | 74/334 kB | 82/122 kB | 32/55 kB Progress (4): 14 kB | 78/334 kB | 82/122 kB | 32/55 kB Progress (4): 14 kB | 82/334 kB | 82/122 kB | 32/55 kB Progress (4): 14 kB | 82/334 kB | 82/122 kB | 36/55 kB Progress (4): 14 kB | 82/334 kB | 82/122 kB | 40/55 kB Progress (4): 14 kB | 86/334 kB | 82/122 kB | 40/55 kB Progress (4): 14 kB | 90/334 kB | 82/122 kB | 40/55 kB Progress (4): 14 kB | 90/334 kB | 86/122 kB | 40/55 kB Progress (4): 14 kB | 90/334 kB | 90/122 kB | 40/55 kB Progress (4): 14 kB | 94/334 kB | 90/122 kB | 40/55 kB Progress (4): 14 kB | 94/334 kB | 90/122 kB | 44/55 kB Progress (5): 14 kB | 94/334 kB | 90/122 kB | 44/55 kB | 4.1/27 kB Progress (5): 14 kB | 94/334 kB | 90/122 kB | 44/55 kB | 8.2/27 kB Progress (5): 14 kB | 94/334 kB | 90/122 kB | 44/55 kB | 12/27 kB Progress (5): 14 kB | 98/334 kB | 90/122 kB | 44/55 kB | 12/27 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-incremental/1.1/maven-shared-incremental-1.1.jar (14 kB at 222 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar +Progress (4): 98/334 kB | 94/122 kB | 44/55 kB | 12/27 kB Progress (4): 98/334 kB | 98/122 kB | 44/55 kB | 12/27 kB Progress (4): 102/334 kB | 98/122 kB | 44/55 kB | 12/27 kB Progress (4): 106/334 kB | 98/122 kB | 44/55 kB | 12/27 kB Progress (4): 106/334 kB | 98/122 kB | 44/55 kB | 16/27 kB Progress (4): 106/334 kB | 98/122 kB | 49/55 kB | 16/27 kB Progress (4): 106/334 kB | 98/122 kB | 53/55 kB | 16/27 kB Progress (4): 106/334 kB | 98/122 kB | 53/55 kB | 20/27 kB Progress (4): 106/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 111/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 115/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 119/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 123/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 127/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 131/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 135/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 139/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 98/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 102/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 106/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 110/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 114/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 118/122 kB | 53/55 kB | 24/27 kB Progress (4): 143/334 kB | 118/122 kB | 53/55 kB | 27 kB Progress (4): 143/334 kB | 122 kB | 53/55 kB | 27 kB Progress (4): 143/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 147/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 152/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 156/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 160/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 164/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 168/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 172/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 176/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 180/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 184/334 kB | 122 kB | 55 kB | 27 kB Progress (4): 188/334 kB | 122 kB | 55 kB | 27 kB Progress (5): 188/334 kB | 122 kB | 55 kB | 27 kB | 4.1/267 kB Progress (5): 188/334 kB | 122 kB | 55 kB | 27 kB | 8.2/267 kB Progress (5): 188/334 kB | 122 kB | 55 kB | 27 kB | 12/267 kB Progress (5): 193/334 kB | 122 kB | 55 kB | 27 kB | 12/267 kB Progress (5): 197/334 kB | 122 kB | 55 kB | 27 kB | 12/267 kB Progress (5): 197/334 kB | 122 kB | 55 kB | 27 kB | 16/267 kB Progress (5): 197/334 kB | 122 kB | 55 kB | 27 kB | 20/267 kB Progress (5): 201/334 kB | 122 kB | 55 kB | 27 kB | 20/267 kB Progress (5): 205/334 kB | 122 kB | 55 kB | 27 kB | 20/267 kB Progress (5): 209/334 kB | 122 kB | 55 kB | 27 kB | 20/267 kB Progress (5): 209/334 kB | 122 kB | 55 kB | 27 kB | 24/267 kB Progress (5): 209/334 kB | 122 kB | 55 kB | 27 kB | 28/267 kB Progress (5): 209/334 kB | 122 kB | 55 kB | 27 kB | 32/267 kB Progress (5): 213/334 kB | 122 kB | 55 kB | 27 kB | 32/267 kB Progress (5): 217/334 kB | 122 kB | 55 kB | 27 kB | 32/267 kB Progress (5): 221/334 kB | 122 kB | 55 kB | 27 kB | 32/267 kB Progress (5): 221/334 kB | 122 kB | 55 kB | 27 kB | 36/267 kB Progress (5): 221/334 kB | 122 kB | 55 kB | 27 kB | 40/267 kB Progress (5): 225/334 kB | 122 kB | 55 kB | 27 kB | 40/267 kB Progress (5): 229/334 kB | 122 kB | 55 kB | 27 kB | 40/267 kB Progress (5): 229/334 kB | 122 kB | 55 kB | 27 kB | 44/267 kB Progress (5): 229/334 kB | 122 kB | 55 kB | 27 kB | 49/267 kB Progress (5): 233/334 kB | 122 kB | 55 kB | 27 kB | 49/267 kB Progress (5): 238/334 kB | 122 kB | 55 kB | 27 kB | 49/267 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/1.1.2/plexus-java-1.1.2.jar (55 kB at 569 kB/s) +Progress (4): 242/334 kB | 122 kB | 27 kB | 49/267 kB Progress (4): 246/334 kB | 122 kB | 27 kB | 49/267 kB Progress (4): 250/334 kB | 122 kB | 27 kB | 49/267 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.13.0/plexus-compiler-api-2.13.0.jar (27 kB at 276 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.4/asm-9.4.jar (122 kB at 1.2 MB/s) +Progress (2): 250/334 kB | 53/267 kB Progress (2): 250/334 kB | 57/267 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar +Progress (2): 254/334 kB | 57/267 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar +Progress (2): 258/334 kB | 57/267 kB Progress (2): 258/334 kB | 61/267 kB Progress (2): 258/334 kB | 65/267 kB Progress (2): 258/334 kB | 69/267 kB Progress (2): 262/334 kB | 69/267 kB Progress (2): 266/334 kB | 69/267 kB Progress (2): 266/334 kB | 73/267 kB Progress (2): 266/334 kB | 77/267 kB Progress (2): 270/334 kB | 77/267 kB Progress (2): 274/334 kB | 77/267 kB Progress (2): 274/334 kB | 80/267 kB Progress (2): 274/334 kB | 84/267 kB Progress (2): 279/334 kB | 84/267 kB Progress (2): 283/334 kB | 84/267 kB Progress (2): 287/334 kB | 84/267 kB Progress (2): 287/334 kB | 88/267 kB Progress (2): 287/334 kB | 92/267 kB Progress (2): 291/334 kB | 92/267 kB Progress (2): 291/334 kB | 96/267 kB Progress (3): 291/334 kB | 96/267 kB | 4.1/4.7 kB Progress (3): 295/334 kB | 96/267 kB | 4.1/4.7 kB Progress (3): 295/334 kB | 100/267 kB | 4.1/4.7 kB Progress (3): 295/334 kB | 100/267 kB | 4.7 kB Progress (4): 295/334 kB | 100/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 299/334 kB | 100/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 303/334 kB | 100/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 307/334 kB | 100/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 307/334 kB | 104/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 311/334 kB | 104/267 kB | 4.7 kB | 4.1/23 kB Progress (4): 311/334 kB | 104/267 kB | 4.7 kB | 8.2/23 kB Progress (4): 311/334 kB | 104/267 kB | 4.7 kB | 12/23 kB Progress (4): 315/334 kB | 104/267 kB | 4.7 kB | 12/23 kB Progress (4): 315/334 kB | 108/267 kB | 4.7 kB | 12/23 kB Progress (4): 319/334 kB | 108/267 kB | 4.7 kB | 12/23 kB Progress (4): 319/334 kB | 108/267 kB | 4.7 kB | 16/23 kB Progress (4): 324/334 kB | 108/267 kB | 4.7 kB | 16/23 kB Progress (4): 328/334 kB | 108/267 kB | 4.7 kB | 16/23 kB Progress (4): 328/334 kB | 112/267 kB | 4.7 kB | 16/23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.13.0/plexus-compiler-manager-2.13.0.jar (4.7 kB at 35 kB/s) +Progress (3): 328/334 kB | 112/267 kB | 20/23 kB Progress (3): 328/334 kB | 112/267 kB | 23 kB Progress (3): 328/334 kB | 116/267 kB | 23 kB Progress (3): 328/334 kB | 121/267 kB | 23 kB Progress (3): 328/334 kB | 125/267 kB | 23 kB Progress (3): 328/334 kB | 129/267 kB | 23 kB Progress (3): 328/334 kB | 133/267 kB | 23 kB Progress (3): 332/334 kB | 133/267 kB | 23 kB Progress (3): 334 kB | 133/267 kB | 23 kB Progress (3): 334 kB | 137/267 kB | 23 kB Progress (3): 334 kB | 141/267 kB | 23 kB Progress (3): 334 kB | 145/267 kB | 23 kB Progress (3): 334 kB | 149/267 kB | 23 kB Progress (3): 334 kB | 153/267 kB | 23 kB Progress (3): 334 kB | 157/267 kB | 23 kB Progress (3): 334 kB | 161/267 kB | 23 kB Progress (3): 334 kB | 166/267 kB | 23 kB Progress (3): 334 kB | 170/267 kB | 23 kB Progress (3): 334 kB | 174/267 kB | 23 kB Progress (3): 334 kB | 178/267 kB | 23 kB Progress (3): 334 kB | 182/267 kB | 23 kB Progress (3): 334 kB | 186/267 kB | 23 kB Progress (3): 334 kB | 190/267 kB | 23 kB Progress (3): 334 kB | 194/267 kB | 23 kB Progress (3): 334 kB | 198/267 kB | 23 kB Progress (3): 334 kB | 202/267 kB | 23 kB Progress (3): 334 kB | 207/267 kB | 23 kB Progress (3): 334 kB | 211/267 kB | 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.13.0/plexus-compiler-javac-2.13.0.jar (23 kB at 149 kB/s) +Progress (2): 334 kB | 215/267 kB Progress (2): 334 kB | 219/267 kB Progress (2): 334 kB | 223/267 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0.3/qdox-2.0.3.jar (334 kB at 2.1 MB/s) +Progress (1): 227/267 kB Progress (1): 231/267 kB Progress (1): 235/267 kB Progress (1): 239/267 kB Progress (1): 243/267 kB Progress (1): 248/267 kB Progress (1): 252/267 kB Progress (1): 256/267 kB Progress (1): 260/267 kB Progress (1): 264/267 kB Progress (1): 267 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.5.0/plexus-utils-3.5.0.jar (267 kB at 1.5 MB/s) +[INFO] Changes detected - recompiling the module! :dependency +[INFO] Compiling 187 source files with javac [debug release 8] to target/classes +[INFO] /src/commons-jxpath/src/main/java/org/apache/commons/jxpath/BasicNodeSet.java: Some input files use unchecked or unsafe operations. +[INFO] /src/commons-jxpath/src/main/java/org/apache/commons/jxpath/BasicNodeSet.java: Recompile with -Xlint:unchecked for details. +[INFO] +[INFO] --- maven-bundle-plugin:5.1.8:manifest (bundle-manifest) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.4.0/biz.aQute.bndlib-6.4.0.pom +Progress (1): 4.1/5.2 kB Progress (1): 5.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.4.0/biz.aQute.bndlib-6.4.0.pom (5.2 kB at 101 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.dto/1.0.0/org.osgi.dto-1.0.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.dto/1.0.0/org.osgi.dto-1.0.0.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.resource/1.0.0/org.osgi.resource-1.0.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.resource/1.0.0/org.osgi.resource-1.0.0.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.framework/1.8.0/org.osgi.framework-1.8.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.framework/1.8.0/org.osgi.framework-1.8.0.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.tracker/1.5.4/org.osgi.util.tracker-1.5.4.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.tracker/1.5.4/org.osgi.util.tracker-1.5.4.pom (1.9 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/osgi.annotation/8.0.1/osgi.annotation-8.0.1.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/osgi.annotation/8.0.1/osgi.annotation-8.0.1.pom (1.5 kB at 55 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.log/1.3.0/org.osgi.service.log-1.3.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.log/1.3.0/org.osgi.service.log-1.3.0.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.repository/1.1.0/org.osgi.service.repository-1.1.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.repository/1.1.0/org.osgi.service.repository-1.1.0.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.2.0/org.osgi.util.function-1.2.0.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.2.0/org.osgi.util.function-1.2.0.pom (1.7 kB at 55 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.promise/1.2.0/org.osgi.util.promise-1.2.0.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.promise/1.2.0/org.osgi.util.promise-1.2.0.pom (1.9 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.1.0/org.osgi.util.function-1.1.0.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.1.0/org.osgi.util.function-1.1.0.pom (1.4 kB at 53 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd.util/6.4.0/biz.aQute.bnd.util-6.4.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd.util/6.4.0/biz.aQute.bnd.util-6.4.0.pom (2.7 kB at 98 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (3.8 kB at 147 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 kB at 500 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.pom (1.1 kB at 43 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/org.apache.felix.bundlerepository-1.6.6.pom +Progress (1): 4.1/5.9 kB Progress (1): 5.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/org.apache.felix.bundlerepository-1.6.6.pom (5.9 kB at 218 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/2.1/felix-parent-2.1.pom +Progress (1): 4.1/9.7 kB Progress (1): 8.2/9.7 kB Progress (1): 9.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/felix-parent/2.1/felix-parent-2.1.pom (9.7 kB at 358 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.pom +Progress (1): 193 B Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/4.1.0/org.osgi.core-4.1.0.pom (193 B at 7.4 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/easymock/easymock/2.4/easymock-2.4.pom +Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/easymock/easymock/2.4/easymock-2.4.pom (5.3 kB at 205 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.utils/1.6.0/org.apache.felix.utils-1.6.0.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.utils/1.6.0/org.apache.felix.utils-1.6.0.pom (3.3 kB at 117 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.compendium/4.2.0/org.osgi.compendium-4.2.0.pom +Progress (1): 463 B Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.compendium/4.2.0/org.osgi.compendium-4.2.0.pom (463 B at 17 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom +Progress (1): 4.1/8.3 kB Progress (1): 8.2/8.3 kB Progress (1): 8.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.pom (8.3 kB at 296 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.3.9/maven-3.3.9.pom (24 kB at 886 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom +Progress (1): 4.1/41 kB Progress (1): 8.2/41 kB Progress (1): 12/41 kB Progress (1): 16/41 kB Progress (1): 20/41 kB Progress (1): 24/41 kB Progress (1): 28/41 kB Progress (1): 32/41 kB Progress (1): 36/41 kB Progress (1): 40/41 kB Progress (1): 41 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/27/maven-parent-27.pom (41 kB at 1.5 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom +Progress (1): 4.1/16 kB Progress (1): 8.2/16 kB Progress (1): 12/16 kB Progress (1): 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/17/apache-17.pom (16 kB at 554 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.pom (4.0 kB at 161 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.22/plexus-utils-3.0.22.pom (3.8 kB at 147 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.pom (22 kB at 822 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom +Progress (1): 4.1/63 kB Progress (1): 8.2/63 kB Progress (1): 12/63 kB Progress (1): 16/63 kB Progress (1): 20/63 kB Progress (1): 25/63 kB Progress (1): 29/63 kB Progress (1): 33/63 kB Progress (1): 37/63 kB Progress (1): 41/63 kB Progress (1): 45/63 kB Progress (1): 49/63 kB Progress (1): 53/63 kB Progress (1): 57/63 kB Progress (1): 61/63 kB Progress (1): 63 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/37/commons-parent-37.pom (63 kB at 2.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.pom (1.8 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.pom (2.6 kB at 94 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.pom (1.7 kB at 61 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.pom (1.5 kB at 57 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom +Progress (1): 748 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.pom (748 B at 29 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.6/plexus-containers-1.6.pom (3.8 kB at 151 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/3.3.2/plexus-3.3.2.pom (22 kB at 797 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.pom (1.9 kB at 59 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.pom (2.1 kB at 82 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.pom (2.7 kB at 103 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.pom (4.2 kB at 149 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.2/sisu-plexus-0.3.2.pom (14 kB at 458 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.pom (1.4 kB at 51 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-parent/1.0/weld-api-parent-1.0.pom (2.4 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom +Progress (1): 4.1/7.9 kB Progress (1): 7.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-api-bom/1.0/weld-api-bom-1.0.pom (7.9 kB at 293 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/6/weld-parent-6.pom (21 kB at 714 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom +Progress (1): 1.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.pom (1.0 kB at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.pom (2.6 kB at 97 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.2/sisu-inject-0.3.2.pom (14 kB at 515 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom +Progress (1): 4.1/7.3 kB Progress (1): 7.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.pom (7.3 kB at 271 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.17/plexus-utils-3.0.17.pom (3.4 kB at 110 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.pom (3.1 kB at 116 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom +Progress (1): 4.1/5.7 kB Progress (1): 5.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.pom (5.7 kB at 227 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom +Progress (1): 4.1/7.7 kB Progress (1): 7.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/18.0/guava-parent-18.0.pom (7.7 kB at 285 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.pom (4.0 kB at 122 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.pom (1.8 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom +Progress (1): 4.1/29 kB Progress (1): 8.2/29 kB Progress (1): 12/29 kB Progress (1): 16/29 kB Progress (1): 20/29 kB Progress (1): 25/29 kB Progress (1): 29/29 kB Progress (1): 29 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/1.0.2.v20150114/aether-1.0.2.v20150114.pom (29 kB at 947 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.pom (2.0 kB at 74 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.pom (2.1 kB at 76 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.pom (3.4 kB at 116 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0.pom (11 kB at 394 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice-parent/4.0/guice-parent-4.0.pom (15 kB at 534 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/google/5/google-5.pom (2.5 kB at 88 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom +Progress (1): 363 B Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 7.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom +Progress (1): 4.1/6.1 kB Progress (1): 6.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.pom (6.1 kB at 235 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom +Progress (1): 4.1/7.3 kB Progress (1): 7.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/16.0.1/guava-parent-16.0.1.pom (7.3 kB at 282 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.pom (3.8 kB at 142 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.pom (1.7 kB at 67 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/2.10/wagon-2.10.pom (21 kB at 707 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/26/maven-parent-26.pom +Progress (1): 4.1/40 kB Progress (1): 8.2/40 kB Progress (1): 12/40 kB Progress (1): 16/40 kB Progress (1): 20/40 kB Progress (1): 24/40 kB Progress (1): 28/40 kB Progress (1): 32/40 kB Progress (1): 36/40 kB Progress (1): 40 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/26/maven-parent-26.pom (40 kB at 1.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.15/plexus-utils-3.0.15.pom (3.1 kB at 98 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.pom +Progress (1): 4.1/5.5 kB Progress (1): 5.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.pom (5.5 kB at 179 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.1.1/maven-artifact-3.1.1.pom (2.0 kB at 73 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.1.1/maven-3.1.1.pom (22 kB at 433 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom +Progress (1): 4.1/4.1 kB Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.1.1/maven-model-3.1.1.pom (4.1 kB at 148 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom +Progress (1): 4.1/7.3 kB Progress (1): 7.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.1.1/maven-core-3.1.1.pom (7.3 kB at 269 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.1.1/maven-settings-3.1.1.pom (2.2 kB at 80 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.1.1/maven-settings-builder-3.1.1.pom (2.6 kB at 93 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom +Progress (1): 1.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.19/plexus-interpolation-1.19.pom (1.0 kB at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.1.1/maven-repository-metadata-3.1.1.pom (2.2 kB at 74 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.1.1/maven-plugin-api-3.1.1.pom (3.4 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.0.0.M5/org.eclipse.sisu.plexus-0.0.0.M5.pom (4.8 kB at 161 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.0.0.M5/sisu-plexus-0.0.0.M5.pom (13 kB at 508 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1.pom +Progress (1): 4.1/5.4 kB Progress (1): 5.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/10.0.1/guava-10.0.1.pom (5.4 kB at 215 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/10.0.1/guava-parent-10.0.1.pom (2.0 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom +Progress (1): 965 B Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/1.3.9/jsr305-1.3.9.pom (965 B at 39 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom +Progress (1): 4.1/10 kB Progress (1): 8.2/10 kB Progress (1): 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.1.0/sisu-guice-3.1.0.pom (10 kB at 390 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.1.0/guice-parent-3.1.0.pom (11 kB at 420 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/org.eclipse.sisu.inject-0.0.0.M5.pom (2.5 kB at 97 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.0.0.M5/sisu-inject-0.0.0.M5.pom (14 kB at 500 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom +Progress (1): 3.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.4/plexus-classworlds-2.4.pom (3.9 kB at 149 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.1.1/maven-model-builder-3.1.1.pom (2.8 kB at 112 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.1.1/maven-aether-provider-3.1.1.pom +Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.1.1/maven-aether-provider-3.1.1.pom (4.1 kB at 164 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/0.9.0.M2/aether-api-0.9.0.M2.pom (1.7 kB at 60 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom +Progress (1): 4.1/28 kB Progress (1): 8.2/28 kB Progress (1): 12/28 kB Progress (1): 16/28 kB Progress (1): 20/28 kB Progress (1): 24/28 kB Progress (1): 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether/0.9.0.M2/aether-0.9.0.M2.pom (28 kB at 961 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/0.9.0.M2/aether-spi-0.9.0.M2.pom (1.8 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.pom (2.0 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom +Progress (1): 3.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/0.9.0.M2/aether-impl-0.9.0.M2.pom (3.3 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.1/plexus-classworlds-2.5.1.pom (5.0 kB at 200 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom +Progress (1): 4.1/5.8 kB Progress (1): 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.pom (5.8 kB at 231 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom +Progress (1): 4.1/18 kB Progress (1): 8.2/18 kB Progress (1): 12/18 kB Progress (1): 16/18 kB Progress (1): 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.pom (18 kB at 677 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.pom +Progress (1): 4.1/4.9 kB Progress (1): 4.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.pom (4.9 kB at 182 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.pom (2.0 kB at 76 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0/maven-dependency-tree-3.0.pom +Progress (1): 4.1/7.4 kB Progress (1): 7.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0/maven-dependency-tree-3.0.pom (7.4 kB at 283 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom +Progress (1): 4.1/4.4 kB Progress (1): 4.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.pom (4.4 kB at 177 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom +Progress (1): 4.1/9.6 kB Progress (1): 8.2/9.6 kB Progress (1): 9.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.0/doxia-sitetools-1.0.pom (9.6 kB at 383 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.pom (2.4 kB at 92 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom +Progress (1): 4.1/8.1 kB Progress (1): 8.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.7/plexus-utils-1.5.7.pom (8.1 kB at 310 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.pom (1.1 kB at 39 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.1/plexus-utils-1.4.1.pom (1.9 kB at 76 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.pom (2.0 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-20/plexus-container-default-1.0-alpha-20.pom (3.0 kB at 115 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-20/plexus-containers-1.0-alpha-20.pom (1.9 kB at 75 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom +Progress (1): 1.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.3/plexus-utils-1.3.pom (1.0 kB at 41 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom +Progress (1): 4.1/7.2 kB Progress (1): 7.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom (7.2 kB at 278 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom (2.4 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom +Progress (1): 4.1/7.7 kB Progress (1): 7.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.9/plexus-1.0.9.pom (7.7 kB at 295 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom +Progress (1): 4.1/7.8 kB Progress (1): 7.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.pom (7.8 kB at 299 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom +Progress (1): 4.1/9.9 kB Progress (1): 8.2/9.9 kB Progress (1): 9.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.pom (9.9 kB at 382 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.pom (3.2 kB at 121 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.pom (2.3 kB at 90 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.0/doxia-modules-1.0.pom (2.4 kB at 96 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.pom (2.7 kB at 108 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.pom (2.2 kB at 86 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.pom (1.6 kB at 62 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.pom (2.2 kB at 84 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.4.0/biz.aQute.bndlib-6.4.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.dto/1.0.0/org.osgi.dto-1.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.resource/1.0.0/org.osgi.resource-1.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.framework/1.8.0/org.osgi.framework-1.8.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.tracker/1.5.4/org.osgi.util.tracker-1.5.4.jar +Progress (1): 0/3.2 MB Progress (1): 0/3.2 MB Progress (1): 0/3.2 MB Progress (2): 0/3.2 MB | 4.1/33 kB Progress (3): 0/3.2 MB | 4.1/33 kB | 4.1/44 kB Progress (3): 0/3.2 MB | 8.2/33 kB | 4.1/44 kB Progress (3): 0.1/3.2 MB | 8.2/33 kB | 4.1/44 kB Progress (3): 0.1/3.2 MB | 8.2/33 kB | 4.1/44 kB Progress (3): 0.1/3.2 MB | 8.2/33 kB | 4.1/44 kB Progress (3): 0.1/3.2 MB | 8.2/33 kB | 8.2/44 kB Progress (3): 0.1/3.2 MB | 8.2/33 kB | 12/44 kB Progress (4): 0.1/3.2 MB | 8.2/33 kB | 12/44 kB | 4.1/15 kB Progress (5): 0.1/3.2 MB | 8.2/33 kB | 12/44 kB | 4.1/15 kB | 4.1/345 kB Progress (5): 0.1/3.2 MB | 12/33 kB | 12/44 kB | 4.1/15 kB | 4.1/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 4.1/15 kB | 4.1/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 4.1/15 kB | 8.2/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 4.1/15 kB | 12/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 4.1/15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 8.2/15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 12/15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 12/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 16/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 20/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 25/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 29/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 33/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 37/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 41/44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 16/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 20/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 25/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 29/345 kB Progress (5): 0.1/3.2 MB | 16/33 kB | 44 kB | 15 kB | 29/345 kB Progress (5): 0.1/3.2 MB | 20/33 kB | 44 kB | 15 kB | 29/345 kB Progress (5): 0.1/3.2 MB | 24/33 kB | 44 kB | 15 kB | 29/345 kB Progress (5): 0.1/3.2 MB | 28/33 kB | 44 kB | 15 kB | 29/345 kB Progress (5): 0.1/3.2 MB | 28/33 kB | 44 kB | 15 kB | 33/345 kB Progress (5): 0.1/3.2 MB | 32/33 kB | 44 kB | 15 kB | 33/345 kB Progress (5): 0.1/3.2 MB | 32/33 kB | 44 kB | 15 kB | 37/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 37/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 41/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 45/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 49/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 53/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 57/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 61/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 64/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 68/345 kB Progress (5): 0.2/3.2 MB | 32/33 kB | 44 kB | 15 kB | 72/345 kB Progress (5): 0.2/3.2 MB | 33 kB | 44 kB | 15 kB | 72/345 kB Progress (5): 0.2/3.2 MB | 33 kB | 44 kB | 15 kB | 76/345 kB Progress (5): 0.2/3.2 MB | 33 kB | 44 kB | 15 kB | 81/345 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.dto/1.0.0/org.osgi.dto-1.0.0.jar (15 kB at 291 kB/s) +Progress (4): 0.2/3.2 MB | 33 kB | 44 kB | 81/345 kB Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/osgi.annotation/8.0.1/osgi.annotation-8.0.1.jar +Progress (4): 0.2/3.2 MB | 33 kB | 44 kB | 85/345 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.tracker/1.5.4/org.osgi.util.tracker-1.5.4.jar (44 kB at 831 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.log/1.3.0/org.osgi.service.log-1.3.0.jar +Progress (3): 0.2/3.2 MB | 33 kB | 85/345 kB Progress (3): 0.2/3.2 MB | 33 kB | 85/345 kB Progress (4): 0.2/3.2 MB | 33 kB | 85/345 kB | 4.1/37 kB Progress (4): 0.2/3.2 MB | 33 kB | 85/345 kB | 8.2/37 kB Progress (4): 0.2/3.2 MB | 33 kB | 85/345 kB | 12/37 kB Progress (4): 0.2/3.2 MB | 33 kB | 85/345 kB | 16/37 kB Progress (4): 0.2/3.2 MB | 33 kB | 85/345 kB | 20/37 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.resource/1.0.0/org.osgi.resource-1.0.0.jar (33 kB at 472 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.repository/1.1.0/org.osgi.service.repository-1.1.0.jar +Progress (3): 0.2/3.2 MB | 89/345 kB | 20/37 kB Progress (3): 0.2/3.2 MB | 89/345 kB | 25/37 kB Progress (3): 0.2/3.2 MB | 89/345 kB | 29/37 kB Progress (3): 0.2/3.2 MB | 89/345 kB | 33/37 kB Progress (3): 0.2/3.2 MB | 89/345 kB | 33/37 kB Progress (3): 0.2/3.2 MB | 89/345 kB | 37/37 kB Progress (3): 0.2/3.2 MB | 93/345 kB | 37/37 kB Progress (3): 0.2/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.2/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 93/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 97/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 101/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 105/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 109/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 113/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 117/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 122/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 126/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 130/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 134/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 134/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 138/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 142/345 kB | 37 kB Progress (3): 0.3/3.2 MB | 146/345 kB | 37 kB Progress (4): 0.3/3.2 MB | 146/345 kB | 37 kB | 4.1/17 kB Progress (4): 0.3/3.2 MB | 146/345 kB | 37 kB | 8.2/17 kB Progress (4): 0.3/3.2 MB | 146/345 kB | 37 kB | 12/17 kB Progress (4): 0.3/3.2 MB | 146/345 kB | 37 kB | 16/17 kB Progress (4): 0.3/3.2 MB | 146/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 146/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 150/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 154/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 154/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 158/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 162/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 162/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 167/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 171/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 175/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 179/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 183/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 183/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 183/345 kB | 37 kB | 17 kB Progress (4): 0.4/3.2 MB | 183/345 kB | 37 kB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/osgi.annotation/8.0.1/osgi.annotation-8.0.1.jar (37 kB at 424 kB/s) +Progress (3): 0.4/3.2 MB | 187/345 kB | 17 kB Progress (3): 0.4/3.2 MB | 191/345 kB | 17 kB Progress (4): 0.4/3.2 MB | 191/345 kB | 17 kB | 4.1/25 kB Progress (4): 0.4/3.2 MB | 191/345 kB | 17 kB | 8.2/25 kB Progress (4): 0.4/3.2 MB | 191/345 kB | 17 kB | 12/25 kB Progress (4): 0.5/3.2 MB | 191/345 kB | 17 kB | 12/25 kB Progress (4): 0.5/3.2 MB | 191/345 kB | 17 kB | 16/25 kB Progress (4): 0.5/3.2 MB | 195/345 kB | 17 kB | 16/25 kB Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.2.0/org.osgi.util.function-1.2.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.log/1.3.0/org.osgi.service.log-1.3.0.jar (17 kB at 180 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.promise/1.2.0/org.osgi.util.promise-1.2.0.jar +Progress (3): 0.5/3.2 MB | 199/345 kB | 16/25 kB Progress (3): 0.5/3.2 MB | 203/345 kB | 16/25 kB Progress (3): 0.5/3.2 MB | 208/345 kB | 16/25 kB Progress (3): 0.5/3.2 MB | 212/345 kB | 16/25 kB Progress (3): 0.5/3.2 MB | 212/345 kB | 20/25 kB Progress (3): 0.5/3.2 MB | 212/345 kB | 24/25 kB Progress (3): 0.5/3.2 MB | 212/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 212/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 216/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 220/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 224/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 228/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 228/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 232/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 236/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 236/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 240/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 240/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 244/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 244/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 248/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 253/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 257/345 kB | 25 kB Progress (3): 0.5/3.2 MB | 261/345 kB | 25 kB Progress (3): 0.6/3.2 MB | 261/345 kB | 25 kB Progress (3): 0.6/3.2 MB | 261/345 kB | 25 kB Progress (4): 0.6/3.2 MB | 261/345 kB | 25 kB | 4.1/24 kB Progress (4): 0.6/3.2 MB | 261/345 kB | 25 kB | 4.1/24 kB Progress (4): 0.6/3.2 MB | 265/345 kB | 25 kB | 4.1/24 kB Progress (4): 0.6/3.2 MB | 265/345 kB | 25 kB | 8.2/24 kB Progress (4): 0.6/3.2 MB | 265/345 kB | 25 kB | 12/24 kB Progress (4): 0.6/3.2 MB | 269/345 kB | 25 kB | 12/24 kB Progress (4): 0.6/3.2 MB | 269/345 kB | 25 kB | 12/24 kB Progress (5): 0.6/3.2 MB | 269/345 kB | 25 kB | 12/24 kB | 4.1/83 kB Progress (5): 0.6/3.2 MB | 269/345 kB | 25 kB | 12/24 kB | 8.2/83 kB Progress (5): 0.6/3.2 MB | 273/345 kB | 25 kB | 12/24 kB | 8.2/83 kB Progress (5): 0.6/3.2 MB | 277/345 kB | 25 kB | 12/24 kB | 8.2/83 kB Progress (5): 0.6/3.2 MB | 281/345 kB | 25 kB | 12/24 kB | 8.2/83 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.service.repository/1.1.0/org.osgi.service.repository-1.1.0.jar (25 kB at 223 kB/s) +Progress (4): 0.6/3.2 MB | 281/345 kB | 16/24 kB | 8.2/83 kB Downloading from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd.util/6.4.0/biz.aQute.bnd.util-6.4.0.jar +Progress (4): 0.6/3.2 MB | 285/345 kB | 16/24 kB | 8.2/83 kB Progress (4): 0.6/3.2 MB | 285/345 kB | 16/24 kB | 12/83 kB Progress (4): 0.6/3.2 MB | 285/345 kB | 16/24 kB | 16/83 kB Progress (4): 0.6/3.2 MB | 285/345 kB | 16/24 kB | 16/83 kB Progress (4): 0.6/3.2 MB | 285/345 kB | 16/24 kB | 16/83 kB Progress (4): 0.6/3.2 MB | 289/345 kB | 16/24 kB | 16/83 kB Progress (4): 0.6/3.2 MB | 294/345 kB | 16/24 kB | 16/83 kB Progress (4): 0.6/3.2 MB | 294/345 kB | 16/24 kB | 20/83 kB Progress (4): 0.6/3.2 MB | 298/345 kB | 16/24 kB | 20/83 kB Progress (4): 0.6/3.2 MB | 298/345 kB | 20/24 kB | 20/83 kB Progress (4): 0.6/3.2 MB | 298/345 kB | 24 kB | 20/83 kB Progress (4): 0.6/3.2 MB | 302/345 kB | 24 kB | 20/83 kB Progress (4): 0.6/3.2 MB | 302/345 kB | 24 kB | 25/83 kB Progress (4): 0.6/3.2 MB | 302/345 kB | 24 kB | 29/83 kB Progress (4): 0.6/3.2 MB | 302/345 kB | 24 kB | 33/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 33/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 33/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 37/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 41/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 45/83 kB Progress (4): 0.7/3.2 MB | 302/345 kB | 24 kB | 49/83 kB Progress (5): 0.7/3.2 MB | 302/345 kB | 24 kB | 49/83 kB | 4.1/429 kB Progress (5): 0.7/3.2 MB | 302/345 kB | 24 kB | 49/83 kB | 8.2/429 kB Progress (5): 0.7/3.2 MB | 306/345 kB | 24 kB | 49/83 kB | 8.2/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 49/83 kB | 8.2/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 49/83 kB | 12/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 49/83 kB | 16/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 49/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 53/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 57/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 61/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 66/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 66/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 70/83 kB | 20/429 kB Progress (5): 0.7/3.2 MB | 310/345 kB | 24 kB | 74/83 kB | 20/429 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.function/1.2.0/org.osgi.util.function-1.2.0.jar (24 kB at 163 kB/s) +Progress (4): 0.7/3.2 MB | 310/345 kB | 74/83 kB | 24/429 kB Progress (4): 0.7/3.2 MB | 310/345 kB | 74/83 kB | 28/429 kB Progress (4): 0.7/3.2 MB | 310/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 314/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 318/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 322/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 326/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 330/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 74/83 kB | 32/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 74/83 kB | 36/429 kB Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar +Progress (4): 0.7/3.2 MB | 335/345 kB | 78/83 kB | 36/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 82/83 kB | 36/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 36/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 36/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 40/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 45/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 49/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 53/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 57/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 61/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 65/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 69/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 73/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 77/429 kB Progress (4): 0.7/3.2 MB | 335/345 kB | 83 kB | 81/429 kB Progress (4): 0.7/3.2 MB | 339/345 kB | 83 kB | 81/429 kB Progress (4): 0.7/3.2 MB | 343/345 kB | 83 kB | 81/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 81/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 85/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 90/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 94/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 94/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 98/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 102/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 106/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 110/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 114/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 118/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 122/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 126/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 131/429 kB Progress (4): 0.7/3.2 MB | 345 kB | 83 kB | 131/429 kB Progress (5): 0.7/3.2 MB | 345 kB | 83 kB | 131/429 kB | 4.1/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 4.1/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 4.1/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 4.1/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 4.1/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 8.2/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 12/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 16/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 20/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 131/429 kB | 25/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 135/429 kB | 25/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 139/429 kB | 25/475 kB Progress (5): 0.8/3.2 MB | 345 kB | 83 kB | 143/429 kB | 25/475 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.util.promise/1.2.0/org.osgi.util.promise-1.2.0.jar (83 kB at 488 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar +Progress (4): 0.8/3.2 MB | 345 kB | 143/429 kB | 29/475 kB Progress (4): 0.8/3.2 MB | 345 kB | 143/429 kB | 33/475 kB Progress (4): 0.8/3.2 MB | 345 kB | 143/429 kB | 33/475 kB Progress (4): 0.8/3.2 MB | 345 kB | 147/429 kB | 33/475 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.framework/1.8.0/org.osgi.framework-1.8.0.jar (345 kB at 1.9 MB/s) +Progress (3): 0.8/3.2 MB | 147/429 kB | 33/475 kB Progress (3): 0.8/3.2 MB | 147/429 kB | 37/475 kB Progress (3): 0.8/3.2 MB | 151/429 kB | 37/475 kB Progress (3): 0.8/3.2 MB | 155/429 kB | 37/475 kB Progress (3): 0.8/3.2 MB | 159/429 kB | 37/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 37/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 41/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 45/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 49/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 53/475 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/org.apache.felix.bundlerepository-1.6.6.jar +Progress (3): 0.8/3.2 MB | 163/429 kB | 57/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 61/475 kB Progress (3): 0.8/3.2 MB | 163/429 kB | 64/475 kB Progress (3): 0.9/3.2 MB | 163/429 kB | 64/475 kB Progress (3): 0.9/3.2 MB | 163/429 kB | 68/475 kB Progress (3): 0.9/3.2 MB | 163/429 kB | 72/475 kB Progress (3): 0.9/3.2 MB | 163/429 kB | 76/475 kB Progress (3): 0.9/3.2 MB | 163/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 167/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 171/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 176/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 180/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 184/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 184/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 188/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 192/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 80/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 84/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 88/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 92/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 96/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 101/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 105/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 109/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 113/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 113/475 kB Progress (3): 0.9/3.2 MB | 196/429 kB | 113/475 kB Progress (3): 1.0/3.2 MB | 196/429 kB | 113/475 kB Progress (4): 1.0/3.2 MB | 196/429 kB | 113/475 kB | 4.1/168 kB Progress (4): 1.0/3.2 MB | 200/429 kB | 113/475 kB | 4.1/168 kB Progress (4): 1.0/3.2 MB | 204/429 kB | 113/475 kB | 4.1/168 kB Progress (5): 1.0/3.2 MB | 204/429 kB | 113/475 kB | 4.1/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 4.1/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 8.2/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 12/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 16/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 20/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 25/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 29/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 33/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 113/475 kB | 33/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 117/475 kB | 33/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 121/475 kB | 33/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 33/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 4.1/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 8.2/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 12/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 16/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 20/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 25/41 kB Progress (5): 1.0/3.2 MB | 208/429 kB | 125/475 kB | 37/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 212/429 kB | 125/475 kB | 37/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 217/429 kB | 125/475 kB | 37/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 217/429 kB | 125/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 221/429 kB | 125/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 125/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.0/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 225/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 229/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 233/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 237/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 241/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 245/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 249/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 253/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 41/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 45/168 kB | 29/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 45/168 kB | 33/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 45/168 kB | 37/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 45/168 kB | 41/41 kB Progress (5): 1.1/3.2 MB | 257/429 kB | 129/475 kB | 45/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 262/429 kB | 129/475 kB | 45/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 262/429 kB | 129/475 kB | 45/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 262/429 kB | 133/475 kB | 45/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 266/429 kB | 133/475 kB | 45/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 266/429 kB | 133/475 kB | 49/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 266/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 270/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 274/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 278/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 282/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 286/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 286/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 286/429 kB | 133/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 286/429 kB | 137/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 286/429 kB | 142/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 290/429 kB | 142/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 294/429 kB | 142/475 kB | 53/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 294/429 kB | 142/475 kB | 57/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 298/429 kB | 142/475 kB | 57/168 kB | 41 kB Progress (5): 1.1/3.2 MB | 303/429 kB | 142/475 kB | 57/168 kB | 41 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar (41 kB at 174 kB/s) +Progress (4): 1.1/3.2 MB | 303/429 kB | 146/475 kB | 57/168 kB Progress (4): 1.1/3.2 MB | 303/429 kB | 146/475 kB | 57/168 kB Downloading from central: https://repo.maven.apache.org/maven2/org/easymock/easymock/2.4/easymock-2.4.jar +Progress (4): 1.1/3.2 MB | 307/429 kB | 146/475 kB | 57/168 kB Progress (4): 1.1/3.2 MB | 311/429 kB | 146/475 kB | 57/168 kB Progress (4): 1.1/3.2 MB | 315/429 kB | 146/475 kB | 57/168 kB Progress (4): 1.1/3.2 MB | 315/429 kB | 146/475 kB | 61/168 kB Progress (4): 1.1/3.2 MB | 319/429 kB | 146/475 kB | 61/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 146/475 kB | 61/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 61/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 61/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 66/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 70/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 74/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 78/168 kB Progress (4): 1.2/3.2 MB | 319/429 kB | 150/475 kB | 82/168 kB Progress (4): 1.2/3.2 MB | 323/429 kB | 150/475 kB | 82/168 kB Progress (4): 1.2/3.2 MB | 327/429 kB | 150/475 kB | 82/168 kB Progress (4): 1.2/3.2 MB | 327/429 kB | 150/475 kB | 82/168 kB Progress (4): 1.2/3.2 MB | 327/429 kB | 154/475 kB | 82/168 kB Progress (4): 1.2/3.2 MB | 327/429 kB | 154/475 kB | 86/168 kB Progress (4): 1.2/3.2 MB | 327/429 kB | 154/475 kB | 90/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 154/475 kB | 90/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 154/475 kB | 94/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 154/475 kB | 94/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 158/475 kB | 94/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 158/475 kB | 94/168 kB Progress (4): 1.2/3.2 MB | 331/429 kB | 158/475 kB | 98/168 kB Progress (4): 1.2/3.2 MB | 335/429 kB | 158/475 kB | 98/168 kB Progress (4): 1.2/3.2 MB | 339/429 kB | 158/475 kB | 98/168 kB Progress (4): 1.2/3.2 MB | 339/429 kB | 158/475 kB | 102/168 kB Progress (4): 1.2/3.2 MB | 339/429 kB | 158/475 kB | 106/168 kB Progress (5): 1.2/3.2 MB | 339/429 kB | 158/475 kB | 106/168 kB | 4.1/81 kB Progress (5): 1.2/3.2 MB | 339/429 kB | 158/475 kB | 106/168 kB | 4.1/81 kB Progress (5): 1.2/3.2 MB | 339/429 kB | 162/475 kB | 106/168 kB | 4.1/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 106/168 kB | 4.1/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 106/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 111/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 115/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 119/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 123/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 127/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 131/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 135/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 339/429 kB | 162/475 kB | 139/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 344/429 kB | 162/475 kB | 139/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 8.2/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 12/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 16/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 20/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 25/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 29/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 33/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 37/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 37/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 162/475 kB | 139/168 kB | 41/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 166/475 kB | 139/168 kB | 41/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 170/475 kB | 139/168 kB | 41/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 174/475 kB | 139/168 kB | 41/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 178/475 kB | 139/168 kB | 41/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 348/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 352/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 356/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 360/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 364/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 368/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 372/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 376/429 kB | 178/475 kB | 139/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 376/429 kB | 178/475 kB | 143/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 178/475 kB | 143/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 178/475 kB | 147/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 178/475 kB | 152/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 178/475 kB | 152/168 kB | 45/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 178/475 kB | 152/168 kB | 49/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 183/475 kB | 152/168 kB | 49/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 183/475 kB | 152/168 kB | 53/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 183/475 kB | 152/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 183/475 kB | 152/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 380/429 kB | 183/475 kB | 156/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 384/429 kB | 183/475 kB | 156/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 389/429 kB | 183/475 kB | 156/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 389/429 kB | 183/475 kB | 160/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 389/429 kB | 183/475 kB | 160/168 kB | 57/81 kB Progress (5): 1.3/3.2 MB | 389/429 kB | 183/475 kB | 160/168 kB | 61/81 kB Progress (5): 1.3/3.2 MB | 389/429 kB | 187/475 kB | 160/168 kB | 61/81 kB Progress (5): 1.4/3.2 MB | 389/429 kB | 187/475 kB | 160/168 kB | 61/81 kB Progress (5): 1.4/3.2 MB | 389/429 kB | 187/475 kB | 160/168 kB | 66/81 kB Progress (5): 1.4/3.2 MB | 389/429 kB | 187/475 kB | 164/168 kB | 66/81 kB Progress (5): 1.4/3.2 MB | 389/429 kB | 187/475 kB | 168/168 kB | 66/81 kB Progress (5): 1.4/3.2 MB | 389/429 kB | 187/475 kB | 168 kB | 66/81 kB Progress (5): 1.4/3.2 MB | 393/429 kB | 187/475 kB | 168 kB | 66/81 kB Progress (5): 1.4/3.2 MB | 393/429 kB | 187/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 187/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 187/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 191/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 195/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 195/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 199/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 397/429 kB | 203/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 203/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 207/475 kB | 168 kB | 70/81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 207/475 kB | 168 kB | 74/81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 207/475 kB | 168 kB | 78/81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 207/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 401/429 kB | 211/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 405/429 kB | 211/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 405/429 kB | 211/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 409/429 kB | 211/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 409/429 kB | 215/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 413/429 kB | 215/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 413/429 kB | 215/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 417/429 kB | 215/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 417/429 kB | 219/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 421/429 kB | 219/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 421/429 kB | 219/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 425/429 kB | 219/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 429 kB | 219/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 429 kB | 223/475 kB | 168 kB | 81 kB Progress (5): 1.4/3.2 MB | 429 kB | 228/475 kB | 168 kB | 81 kB Progress (5): 1.5/3.2 MB | 429 kB | 228/475 kB | 168 kB | 81 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/org.apache.felix.bundlerepository-1.6.6.jar (168 kB at 563 kB/s) +Progress (4): 1.5/3.2 MB | 429 kB | 232/475 kB | 81 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.utils/1.6.0/org.apache.felix.utils-1.6.0.jar +Progress (4): 1.5/3.2 MB | 429 kB | 236/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 236/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 240/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 244/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 244/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 248/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 252/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 256/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 260/475 kB | 81 kB Progress (4): 1.5/3.2 MB | 429 kB | 260/475 kB | 81 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/easymock/easymock/2.4/easymock-2.4.jar (81 kB at 267 kB/s) +Progress (3): 1.5/3.2 MB | 429 kB | 264/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 269/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 273/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 277/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 281/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 281/475 kB Downloading from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.compendium/4.2.0/org.osgi.compendium-4.2.0.jar +Progress (3): 1.5/3.2 MB | 429 kB | 281/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 285/475 kB Progress (3): 1.5/3.2 MB | 429 kB | 289/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 289/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 293/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 293/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 297/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 297/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 301/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 305/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 309/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 309/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 314/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 318/475 kB Progress (3): 1.6/3.2 MB | 429 kB | 318/475 kB Downloaded from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd.util/6.4.0/biz.aQute.bnd.util-6.4.0.jar (429 kB at 1.4 MB/s) +Progress (3): 1.6/3.2 MB | 318/475 kB | 4.1/68 kB Progress (3): 1.6/3.2 MB | 318/475 kB | 8.2/68 kB Progress (3): 1.6/3.2 MB | 318/475 kB | 12/68 kB Progress (3): 1.6/3.2 MB | 318/475 kB | 16/68 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar +Progress (3): 1.6/3.2 MB | 318/475 kB | 16/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 16/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 20/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 24/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 28/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 32/68 kB Progress (3): 1.6/3.2 MB | 322/475 kB | 36/68 kB Progress (3): 1.6/3.2 MB | 326/475 kB | 36/68 kB Progress (3): 1.6/3.2 MB | 326/475 kB | 40/68 kB Progress (3): 1.7/3.2 MB | 326/475 kB | 40/68 kB Progress (4): 1.7/3.2 MB | 326/475 kB | 40/68 kB | 4.1/614 kB Progress (4): 1.7/3.2 MB | 326/475 kB | 40/68 kB | 8.2/614 kB Progress (4): 1.7/3.2 MB | 326/475 kB | 44/68 kB | 8.2/614 kB Progress (4): 1.7/3.2 MB | 326/475 kB | 49/68 kB | 8.2/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 49/68 kB | 8.2/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 53/68 kB | 8.2/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 53/68 kB | 12/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 53/68 kB | 12/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 53/68 kB | 16/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 57/68 kB | 16/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 16/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 16/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 20/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 24/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 28/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 32/614 kB Progress (4): 1.7/3.2 MB | 330/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 334/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 338/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 342/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 346/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 350/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 355/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 355/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 355/475 kB | 61/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 355/475 kB | 65/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 355/475 kB | 65/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 359/475 kB | 65/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 363/475 kB | 65/68 kB | 36/614 kB Progress (4): 1.7/3.2 MB | 367/475 kB | 65/68 kB | 36/614 kB Progress (5): 1.7/3.2 MB | 367/475 kB | 65/68 kB | 36/614 kB | 4.1/638 kB Progress (5): 1.7/3.2 MB | 367/475 kB | 65/68 kB | 40/614 kB | 4.1/638 kB Progress (5): 1.7/3.2 MB | 367/475 kB | 65/68 kB | 40/614 kB | 8.2/638 kB Progress (5): 1.7/3.2 MB | 367/475 kB | 65/68 kB | 40/614 kB | 12/638 kB Progress (5): 1.7/3.2 MB | 371/475 kB | 65/68 kB | 40/614 kB | 12/638 kB Progress (5): 1.8/3.2 MB | 371/475 kB | 65/68 kB | 40/614 kB | 12/638 kB Progress (5): 1.8/3.2 MB | 371/475 kB | 68 kB | 40/614 kB | 12/638 kB Progress (5): 1.8/3.2 MB | 371/475 kB | 68 kB | 40/614 kB | 12/638 kB Progress (5): 1.8/3.2 MB | 375/475 kB | 68 kB | 40/614 kB | 12/638 kB Progress (5): 1.8/3.2 MB | 375/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 379/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 383/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 387/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 391/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 395/475 kB | 68 kB | 40/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 395/475 kB | 68 kB | 44/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 395/475 kB | 68 kB | 44/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 400/475 kB | 68 kB | 44/614 kB | 16/638 kB Progress (5): 1.8/3.2 MB | 400/475 kB | 68 kB | 44/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 404/475 kB | 68 kB | 44/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 408/475 kB | 68 kB | 44/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 412/475 kB | 68 kB | 44/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 412/475 kB | 68 kB | 44/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 412/475 kB | 68 kB | 49/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 412/475 kB | 68 kB | 49/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 416/475 kB | 68 kB | 49/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 420/475 kB | 68 kB | 49/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 424/475 kB | 68 kB | 49/614 kB | 20/638 kB Progress (5): 1.8/3.2 MB | 424/475 kB | 68 kB | 49/614 kB | 25/638 kB Progress (5): 1.8/3.2 MB | 428/475 kB | 68 kB | 49/614 kB | 25/638 kB Progress (5): 1.8/3.2 MB | 428/475 kB | 68 kB | 49/614 kB | 25/638 kB Progress (5): 1.8/3.2 MB | 428/475 kB | 68 kB | 53/614 kB | 25/638 kB Progress (5): 1.8/3.2 MB | 428/475 kB | 68 kB | 57/614 kB | 25/638 kB Progress (5): 1.9/3.2 MB | 428/475 kB | 68 kB | 57/614 kB | 25/638 kB Progress (5): 1.9/3.2 MB | 428/475 kB | 68 kB | 61/614 kB | 25/638 kB Progress (5): 1.9/3.2 MB | 432/475 kB | 68 kB | 61/614 kB | 25/638 kB Progress (5): 1.9/3.2 MB | 436/475 kB | 68 kB | 61/614 kB | 25/638 kB Progress (5): 1.9/3.2 MB | 436/475 kB | 68 kB | 61/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 61/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 65/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 69/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 73/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 77/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 81/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 85/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 90/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 441/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 445/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 449/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 453/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 457/475 kB | 68 kB | 94/614 kB | 29/638 kB Progress (5): 1.9/3.2 MB | 457/475 kB | 68 kB | 94/614 kB | 33/638 kB Progress (5): 1.9/3.2 MB | 461/475 kB | 68 kB | 94/614 kB | 33/638 kB Progress (5): 1.9/3.2 MB | 465/475 kB | 68 kB | 94/614 kB | 33/638 kB Progress (5): 1.9/3.2 MB | 465/475 kB | 68 kB | 94/614 kB | 33/638 kB Progress (5): 1.9/3.2 MB | 465/475 kB | 68 kB | 98/614 kB | 33/638 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/felix/org.apache.felix.utils/1.6.0/org.apache.felix.utils-1.6.0.jar (68 kB at 189 kB/s) +Progress (4): 1.9/3.2 MB | 465/475 kB | 102/614 kB | 33/638 kB Progress (4): 1.9/3.2 MB | 465/475 kB | 102/614 kB | 33/638 kB Progress (4): 1.9/3.2 MB | 469/475 kB | 102/614 kB | 33/638 kB Progress (4): 1.9/3.2 MB | 473/475 kB | 102/614 kB | 33/638 kB Progress (4): 1.9/3.2 MB | 475 kB | 102/614 kB | 33/638 kB Progress (4): 1.9/3.2 MB | 475 kB | 102/614 kB | 37/638 kB Progress (4): 1.9/3.2 MB | 475 kB | 102/614 kB | 41/638 kB Progress (4): 1.9/3.2 MB | 475 kB | 102/614 kB | 45/638 kB Progress (4): 1.9/3.2 MB | 475 kB | 102/614 kB | 49/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 102/614 kB | 49/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 106/614 kB | 49/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 110/614 kB | 49/638 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar +Progress (4): 2.0/3.2 MB | 475 kB | 114/614 kB | 49/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 114/614 kB | 49/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 114/614 kB | 53/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 118/614 kB | 53/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 118/614 kB | 57/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 122/614 kB | 57/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 57/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 61/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 66/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 66/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 70/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 74/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 126/614 kB | 78/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 130/614 kB | 78/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 130/614 kB | 82/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 130/614 kB | 82/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 130/614 kB | 82/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 130/614 kB | 86/638 kB Progress (4): 2.0/3.2 MB | 475 kB | 135/614 kB | 86/638 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar (475 kB at 1.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar +Progress (3): 2.0/3.2 MB | 135/614 kB | 90/638 kB Progress (3): 2.0/3.2 MB | 135/614 kB | 90/638 kB Progress (3): 2.0/3.2 MB | 135/614 kB | 94/638 kB Progress (3): 2.1/3.2 MB | 135/614 kB | 94/638 kB Progress (3): 2.1/3.2 MB | 139/614 kB | 94/638 kB Progress (3): 2.1/3.2 MB | 143/614 kB | 94/638 kB Progress (3): 2.1/3.2 MB | 147/614 kB | 94/638 kB Progress (3): 2.1/3.2 MB | 147/614 kB | 98/638 kB Progress (3): 2.1/3.2 MB | 147/614 kB | 98/638 kB Progress (3): 2.1/3.2 MB | 151/614 kB | 98/638 kB Progress (3): 2.1/3.2 MB | 151/614 kB | 102/638 kB Progress (3): 2.1/3.2 MB | 151/614 kB | 106/638 kB Progress (3): 2.1/3.2 MB | 151/614 kB | 111/638 kB Progress (3): 2.1/3.2 MB | 151/614 kB | 111/638 kB Progress (4): 2.1/3.2 MB | 151/614 kB | 111/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 151/614 kB | 111/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 155/614 kB | 111/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 155/614 kB | 115/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 155/614 kB | 119/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 155/614 kB | 123/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 155/614 kB | 127/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 4.1/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 8.2/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 12/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 16/164 kB Progress (4): 2.1/3.2 MB | 159/614 kB | 127/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 163/614 kB | 127/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 167/614 kB | 127/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 171/614 kB | 127/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 176/614 kB | 127/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 176/614 kB | 131/638 kB | 20/164 kB Progress (4): 2.1/3.2 MB | 176/614 kB | 131/638 kB | 25/164 kB Progress (4): 2.1/3.2 MB | 176/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 180/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 184/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 188/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 192/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 192/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 196/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 200/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 29/164 kB Progress (4): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 33/164 kB Progress (4): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 4.1/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 8.2/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 12/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 16/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 20/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 25/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 29/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 131/638 kB | 37/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 135/638 kB | 37/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 139/638 kB | 37/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 37/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 41/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 45/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 49/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 53/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 57/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 143/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 147/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 204/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.1/3.2 MB | 208/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 208/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 212/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 217/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 221/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 225/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 229/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 233/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 237/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 241/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 245/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 152/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 156/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 61/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 66/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 70/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 74/164 kB | 33/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 74/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 160/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 249/614 kB | 164/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 253/614 kB | 164/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 253/614 kB | 164/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 253/614 kB | 164/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 164/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 78/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 82/164 kB | 37/44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 82/164 kB | 41/44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 82/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 86/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 168/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 257/614 kB | 172/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 262/614 kB | 172/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 262/614 kB | 172/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 262/614 kB | 172/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 172/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 176/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 180/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 184/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 188/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 193/638 kB | 90/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 193/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 197/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 201/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 205/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 266/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 270/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 270/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 274/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 278/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 282/614 kB | 209/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 282/614 kB | 213/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 282/614 kB | 217/638 kB | 94/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 282/614 kB | 217/638 kB | 98/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 282/614 kB | 217/638 kB | 102/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 286/614 kB | 217/638 kB | 102/164 kB | 44 kB Progress (5): 2.2/3.2 MB | 290/614 kB | 217/638 kB | 102/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 217/638 kB | 102/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 102/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 106/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 111/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 115/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 119/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 123/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 127/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 131/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 221/638 kB | 135/164 kB | 44 kB Progress (5): 2.3/3.2 MB | 290/614 kB | 225/638 kB | 135/164 kB | 44 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.3.9/maven-settings-3.3.9.jar (44 kB at 104 kB/s) +Progress (4): 2.3/3.2 MB | 290/614 kB | 225/638 kB | 135/164 kB Progress (4): 2.3/3.2 MB | 294/614 kB | 225/638 kB | 135/164 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar +Progress (4): 2.3/3.2 MB | 294/614 kB | 225/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 294/614 kB | 229/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 294/614 kB | 233/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 294/614 kB | 233/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 298/614 kB | 233/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 233/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 238/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 242/638 kB | 139/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 242/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 246/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 303/614 kB | 246/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 246/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 246/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 250/638 kB | 143/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 250/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 250/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 254/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 307/614 kB | 258/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 311/614 kB | 258/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 311/614 kB | 262/638 kB | 147/164 kB Progress (4): 2.3/3.2 MB | 311/614 kB | 266/638 kB | 147/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 147/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 152/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 156/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 160/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 164/164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 266/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 311/614 kB | 270/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 270/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 274/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 279/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 283/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 283/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 287/638 kB | 164 kB Progress (4): 2.4/3.2 MB | 315/614 kB | 291/638 kB | 164 kB Progress (5): 2.4/3.2 MB | 315/614 kB | 291/638 kB | 164 kB | 4.1/43 kB Progress (5): 2.4/3.2 MB | 315/614 kB | 291/638 kB | 164 kB | 8.2/43 kB Progress (5): 2.4/3.2 MB | 315/614 kB | 291/638 kB | 164 kB | 12/43 kB Progress (5): 2.4/3.2 MB | 315/614 kB | 291/638 kB | 164 kB | 16/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 291/638 kB | 164 kB | 16/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 291/638 kB | 164 kB | 20/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 291/638 kB | 164 kB | 24/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 291/638 kB | 164 kB | 28/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 291/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 295/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 295/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 299/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 303/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 307/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 307/638 kB | 164 kB | 32/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 307/638 kB | 164 kB | 36/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 307/638 kB | 164 kB | 40/43 kB Progress (5): 2.4/3.2 MB | 319/614 kB | 307/638 kB | 164 kB | 43 kB Progress (5): 2.4/3.2 MB | 323/614 kB | 307/638 kB | 164 kB | 43 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.3.9/maven-model-3.3.9.jar (164 kB at 360 kB/s) +Progress (4): 2.4/3.2 MB | 323/614 kB | 307/638 kB | 43 kB Progress (4): 2.4/3.2 MB | 323/614 kB | 311/638 kB | 43 kB Progress (4): 2.4/3.2 MB | 323/614 kB | 311/638 kB | 43 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar +Progress (4): 2.4/3.2 MB | 327/614 kB | 311/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 327/614 kB | 311/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 327/614 kB | 315/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 331/614 kB | 315/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 331/614 kB | 319/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 331/614 kB | 324/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 335/614 kB | 324/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 335/614 kB | 324/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 335/614 kB | 328/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 335/614 kB | 332/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 339/614 kB | 332/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 339/614 kB | 336/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 339/614 kB | 336/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 336/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 340/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 344/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 348/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 352/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 356/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 360/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 365/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 369/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 343/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 348/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 352/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 356/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 360/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 360/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 360/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 364/614 kB | 373/638 kB | 43 kB Progress (4): 2.5/3.2 MB | 368/614 kB | 373/638 kB | 43 kB Progress (5): 2.5/3.2 MB | 368/614 kB | 373/638 kB | 43 kB | 4.1/15 kB Progress (5): 2.5/3.2 MB | 368/614 kB | 377/638 kB | 43 kB | 4.1/15 kB Progress (5): 2.5/3.2 MB | 368/614 kB | 381/638 kB | 43 kB | 4.1/15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.3.9/maven-settings-builder-3.3.9.jar (43 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar +Progress (4): 2.5/3.2 MB | 368/614 kB | 385/638 kB | 4.1/15 kB Progress (4): 2.5/3.2 MB | 368/614 kB | 389/638 kB | 4.1/15 kB Progress (4): 2.5/3.2 MB | 368/614 kB | 389/638 kB | 8.2/15 kB Progress (4): 2.5/3.2 MB | 368/614 kB | 389/638 kB | 12/15 kB Progress (4): 2.5/3.2 MB | 368/614 kB | 389/638 kB | 12/15 kB Progress (4): 2.5/3.2 MB | 372/614 kB | 389/638 kB | 12/15 kB Progress (4): 2.5/3.2 MB | 372/614 kB | 389/638 kB | 15 kB Progress (4): 2.5/3.2 MB | 372/614 kB | 393/638 kB | 15 kB Progress (4): 2.5/3.2 MB | 376/614 kB | 393/638 kB | 15 kB Progress (4): 2.5/3.2 MB | 380/614 kB | 393/638 kB | 15 kB Progress (4): 2.5/3.2 MB | 384/614 kB | 393/638 kB | 15 kB Progress (4): 2.5/3.2 MB | 389/614 kB | 393/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 389/614 kB | 393/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 389/614 kB | 397/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 393/614 kB | 397/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 393/614 kB | 401/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 393/614 kB | 401/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 393/614 kB | 406/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 397/614 kB | 406/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 397/614 kB | 410/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 397/614 kB | 410/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 397/614 kB | 414/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 401/614 kB | 414/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 405/614 kB | 414/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 405/614 kB | 418/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 405/614 kB | 422/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 405/614 kB | 422/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 405/614 kB | 426/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 409/614 kB | 426/638 kB | 15 kB Progress (4): 2.6/3.2 MB | 413/614 kB | 426/638 kB | 15 kB Progress (5): 2.6/3.2 MB | 413/614 kB | 426/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 426/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 426/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 430/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 434/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 438/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.6/3.2 MB | 417/614 kB | 438/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.7/3.2 MB | 417/614 kB | 438/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.7/3.2 MB | 421/614 kB | 438/638 kB | 15 kB | 4.1/27 kB Progress (5): 2.7/3.2 MB | 421/614 kB | 438/638 kB | 15 kB | 8.2/27 kB Progress (5): 2.7/3.2 MB | 425/614 kB | 438/638 kB | 15 kB | 8.2/27 kB Progress (5): 2.7/3.2 MB | 430/614 kB | 438/638 kB | 15 kB | 8.2/27 kB Progress (5): 2.7/3.2 MB | 434/614 kB | 438/638 kB | 15 kB | 8.2/27 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-builder-support/3.3.9/maven-builder-support-3.3.9.jar (15 kB at 30 kB/s) +Progress (4): 2.7/3.2 MB | 438/614 kB | 438/638 kB | 8.2/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 438/638 kB | 8.2/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 438/638 kB | 12/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 442/638 kB | 12/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 446/638 kB | 12/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 451/638 kB | 12/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 455/638 kB | 12/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 455/638 kB | 16/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 455/638 kB | 16/27 kB Progress (4): 2.7/3.2 MB | 438/614 kB | 455/638 kB | 20/27 kB Progress (4): 2.7/3.2 MB | 442/614 kB | 455/638 kB | 20/27 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar +Progress (4): 2.7/3.2 MB | 446/614 kB | 455/638 kB | 20/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 455/638 kB | 20/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 455/638 kB | 20/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 455/638 kB | 25/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 459/638 kB | 25/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 459/638 kB | 25/27 kB Progress (4): 2.7/3.2 MB | 450/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 454/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 458/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 462/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 466/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 470/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 470/614 kB | 459/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 470/614 kB | 463/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 470/614 kB | 467/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 470/614 kB | 467/638 kB | 27 kB Progress (4): 2.7/3.2 MB | 475/614 kB | 467/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 475/614 kB | 467/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 475/614 kB | 471/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 475/614 kB | 471/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 479/614 kB | 471/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 479/614 kB | 471/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 479/614 kB | 475/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 479/614 kB | 475/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 483/614 kB | 475/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 487/614 kB | 475/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 487/614 kB | 479/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 491/614 kB | 479/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 495/614 kB | 479/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 495/614 kB | 479/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 499/614 kB | 479/638 kB | 27 kB Progress (4): 2.8/3.2 MB | 499/614 kB | 479/638 kB | 27 kB Progress (5): 2.8/3.2 MB | 499/614 kB | 479/638 kB | 27 kB | 4.1/55 kB Progress (5): 2.8/3.2 MB | 499/614 kB | 479/638 kB | 27 kB | 8.2/55 kB Progress (5): 2.9/3.2 MB | 499/614 kB | 479/638 kB | 27 kB | 8.2/55 kB Progress (5): 2.9/3.2 MB | 499/614 kB | 483/638 kB | 27 kB | 8.2/55 kB Progress (5): 2.9/3.2 MB | 499/614 kB | 487/638 kB | 27 kB | 8.2/55 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.3.9/maven-repository-metadata-3.3.9.jar (27 kB at 51 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar +Progress (4): 2.9/3.2 MB | 499/614 kB | 487/638 kB | 8.2/55 kB Progress (4): 2.9/3.2 MB | 499/614 kB | 487/638 kB | 12/55 kB Progress (4): 2.9/3.2 MB | 499/614 kB | 487/638 kB | 16/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 487/638 kB | 16/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 487/638 kB | 20/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 487/638 kB | 25/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 487/638 kB | 25/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 492/638 kB | 25/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 492/638 kB | 25/55 kB Progress (4): 2.9/3.2 MB | 503/614 kB | 492/638 kB | 29/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 492/638 kB | 29/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 492/638 kB | 33/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 492/638 kB | 33/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 496/638 kB | 33/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 500/638 kB | 33/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 504/638 kB | 33/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 504/638 kB | 37/55 kB Progress (4): 2.9/3.2 MB | 507/614 kB | 504/638 kB | 41/55 kB Progress (4): 2.9/3.2 MB | 511/614 kB | 504/638 kB | 41/55 kB Progress (4): 2.9/3.2 MB | 516/614 kB | 504/638 kB | 41/55 kB Progress (4): 2.9/3.2 MB | 516/614 kB | 504/638 kB | 45/55 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 504/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 508/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 512/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 512/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 516/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 520/638 kB | 45/55 kB | 4.1/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 520/638 kB | 45/55 kB | 8.2/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 520/638 kB | 45/55 kB | 12/47 kB Progress (5): 2.9/3.2 MB | 516/614 kB | 520/638 kB | 49/55 kB | 12/47 kB Progress (5): 2.9/3.2 MB | 520/614 kB | 520/638 kB | 49/55 kB | 12/47 kB Progress (5): 2.9/3.2 MB | 520/614 kB | 520/638 kB | 49/55 kB | 16/47 kB Progress (5): 2.9/3.2 MB | 520/614 kB | 520/638 kB | 53/55 kB | 16/47 kB Progress (5): 2.9/3.2 MB | 520/614 kB | 524/638 kB | 53/55 kB | 16/47 kB Progress (5): 2.9/3.2 MB | 520/614 kB | 528/638 kB | 53/55 kB | 16/47 kB Progress (5): 3.0/3.2 MB | 520/614 kB | 528/638 kB | 53/55 kB | 16/47 kB Progress (5): 3.0/3.2 MB | 520/614 kB | 532/638 kB | 53/55 kB | 16/47 kB Progress (5): 3.0/3.2 MB | 520/614 kB | 532/638 kB | 55 kB | 16/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 532/638 kB | 55 kB | 16/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 532/638 kB | 55 kB | 20/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 532/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 537/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 537/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 541/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 524/614 kB | 545/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 528/614 kB | 545/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 532/614 kB | 545/638 kB | 55 kB | 25/47 kB Progress (5): 3.0/3.2 MB | 532/614 kB | 545/638 kB | 55 kB | 29/47 kB Progress (5): 3.0/3.2 MB | 532/614 kB | 545/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 536/614 kB | 545/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 536/614 kB | 549/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 536/614 kB | 553/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 536/614 kB | 553/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 536/614 kB | 557/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 540/614 kB | 557/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 544/614 kB | 557/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 548/614 kB | 557/638 kB | 55 kB | 33/47 kB Progress (5): 3.0/3.2 MB | 548/614 kB | 557/638 kB | 55 kB | 37/47 kB Progress (5): 3.0/3.2 MB | 552/614 kB | 557/638 kB | 55 kB | 37/47 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.3.9/maven-artifact-3.3.9.jar (55 kB at 95 kB/s) +Progress (4): 3.0/3.2 MB | 552/614 kB | 561/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 552/614 kB | 565/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 552/614 kB | 569/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 552/614 kB | 569/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 552/614 kB | 573/638 kB | 37/47 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar +Progress (4): 3.0/3.2 MB | 556/614 kB | 573/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 561/614 kB | 573/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 565/614 kB | 573/638 kB | 37/47 kB Progress (4): 3.0/3.2 MB | 565/614 kB | 573/638 kB | 41/47 kB Progress (4): 3.0/3.2 MB | 565/614 kB | 573/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 569/614 kB | 573/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 569/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 573/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 577/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 577/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 578/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 582/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 586/638 kB | 45/47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 586/638 kB | 47 kB Progress (4): 3.0/3.2 MB | 581/614 kB | 590/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 581/614 kB | 590/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 585/614 kB | 590/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 585/614 kB | 590/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 585/614 kB | 594/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 585/614 kB | 594/638 kB | 47 kB Progress (4): 3.1/3.2 MB | 585/614 kB | 594/638 kB | 47 kB Progress (5): 3.1/3.2 MB | 585/614 kB | 594/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 585/614 kB | 594/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 585/614 kB | 598/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 585/614 kB | 602/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 602/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 606/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 610/638 kB | 47 kB | 4.1/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 610/638 kB | 47 kB | 8.2/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 610/638 kB | 47 kB | 12/177 kB Progress (5): 3.1/3.2 MB | 589/614 kB | 610/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 589/614 kB | 610/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 589/614 kB | 614/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 589/614 kB | 618/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 593/614 kB | 618/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 597/614 kB | 618/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 597/614 kB | 623/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 597/614 kB | 627/638 kB | 47 kB | 12/177 kB Progress (5): 3.2/3.2 MB | 597/614 kB | 627/638 kB | 47 kB | 12/177 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.3.9/maven-plugin-api-3.3.9.jar (47 kB at 78 kB/s) +Progress (4): 3.2/3.2 MB | 597/614 kB | 627/638 kB | 16/177 kB Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar +Progress (4): 3.2/3.2 MB | 597/614 kB | 627/638 kB | 16/177 kB Progress (4): 3.2 MB | 597/614 kB | 627/638 kB | 16/177 kB Progress (4): 3.2 MB | 597/614 kB | 631/638 kB | 16/177 kB Progress (4): 3.2 MB | 597/614 kB | 635/638 kB | 16/177 kB Progress (4): 3.2 MB | 602/614 kB | 635/638 kB | 16/177 kB Progress (4): 3.2 MB | 606/614 kB | 635/638 kB | 16/177 kB Progress (4): 3.2 MB | 606/614 kB | 638 kB | 16/177 kB Progress (4): 3.2 MB | 606/614 kB | 638 kB | 20/177 kB Progress (4): 3.2 MB | 606/614 kB | 638 kB | 24/177 kB Progress (4): 3.2 MB | 610/614 kB | 638 kB | 24/177 kB Progress (4): 3.2 MB | 614/614 kB | 638 kB | 24/177 kB Progress (4): 3.2 MB | 614/614 kB | 638 kB | 28/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 28/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 32/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 36/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 40/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 44/177 kB Progress (4): 3.2 MB | 614 kB | 638 kB | 49/177 kB Progress (5): 3.2 MB | 614 kB | 638 kB | 49/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 49/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 49/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 53/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 57/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 61/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 65/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 69/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 73/177 kB | 0/2.3 MB Progress (5): 3.2 MB | 614 kB | 638 kB | 77/177 kB | 0/2.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.3.9/maven-core-3.3.9.jar (638 kB at 997 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/6.4.0/biz.aQute.bndlib-6.4.0.jar (3.2 MB at 5.0 MB/s) +Progress (3): 614 kB | 77/177 kB | 0.1/2.3 MB Progress (3): 614 kB | 77/177 kB | 0.1/2.3 MB Progress (3): 614 kB | 77/177 kB | 0.1/2.3 MB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar +Progress (3): 614 kB | 77/177 kB | 0.1/2.3 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/osgi/org.osgi.compendium/4.2.0/org.osgi.compendium-4.2.0.jar (614 kB at 954 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar +Progress (2): 77/177 kB | 0.1/2.3 MB Progress (2): 77/177 kB | 0.1/2.3 MB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar +Progress (2): 81/177 kB | 0.1/2.3 MB Progress (2): 85/177 kB | 0.1/2.3 MB Progress (2): 90/177 kB | 0.1/2.3 MB Progress (2): 90/177 kB | 0.2/2.3 MB Progress (3): 90/177 kB | 0.2/2.3 MB | 4.1/67 kB Progress (3): 94/177 kB | 0.2/2.3 MB | 4.1/67 kB Progress (3): 98/177 kB | 0.2/2.3 MB | 4.1/67 kB Progress (3): 98/177 kB | 0.2/2.3 MB | 8.2/67 kB Progress (3): 98/177 kB | 0.2/2.3 MB | 12/67 kB Progress (3): 98/177 kB | 0.2/2.3 MB | 12/67 kB Progress (3): 98/177 kB | 0.2/2.3 MB | 16/67 kB Progress (3): 102/177 kB | 0.2/2.3 MB | 16/67 kB Progress (3): 106/177 kB | 0.2/2.3 MB | 16/67 kB Progress (4): 106/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 110/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 114/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 118/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 122/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 126/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 130/177 kB | 0.2/2.3 MB | 16/67 kB | 4.1/31 kB Progress (4): 130/177 kB | 0.2/2.3 MB | 20/67 kB | 4.1/31 kB Progress (4): 130/177 kB | 0.2/2.3 MB | 20/67 kB | 4.1/31 kB Progress (4): 130/177 kB | 0.2/2.3 MB | 25/67 kB | 4.1/31 kB Progress (4): 130/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB Progress (4): 135/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB Progress (4): 139/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB Progress (4): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB | 4.1/173 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 4.1/31 kB | 8.2/173 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 8.2/31 kB | 8.2/173 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 12/31 kB | 8.2/173 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 12/31 kB | 12/173 kB Progress (5): 143/177 kB | 0.2/2.3 MB | 29/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 29/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 33/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 37/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 41/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 41/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 45/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 16/173 kB Progress (5): 147/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 16/173 kB Progress (5): 151/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 16/173 kB Progress (5): 155/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 16/173 kB Progress (5): 155/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 16/173 kB Progress (5): 155/177 kB | 0.2/2.3 MB | 49/67 kB | 12/31 kB | 20/173 kB Progress (5): 155/177 kB | 0.2/2.3 MB | 49/67 kB | 16/31 kB | 20/173 kB Progress (5): 155/177 kB | 0.2/2.3 MB | 49/67 kB | 16/31 kB | 25/173 kB Progress (5): 155/177 kB | 0.3/2.3 MB | 49/67 kB | 16/31 kB | 25/173 kB Progress (5): 159/177 kB | 0.3/2.3 MB | 49/67 kB | 16/31 kB | 25/173 kB Progress (5): 163/177 kB | 0.3/2.3 MB | 49/67 kB | 16/31 kB | 25/173 kB Progress (5): 163/177 kB | 0.3/2.3 MB | 53/67 kB | 16/31 kB | 25/173 kB Progress (5): 163/177 kB | 0.3/2.3 MB | 57/67 kB | 16/31 kB | 25/173 kB Progress (5): 163/177 kB | 0.3/2.3 MB | 61/67 kB | 16/31 kB | 25/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 16/31 kB | 25/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 16/31 kB | 25/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 16/31 kB | 29/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 16/31 kB | 33/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 20/31 kB | 33/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 25/31 kB | 33/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 25/31 kB | 37/173 kB Progress (5): 167/177 kB | 0.3/2.3 MB | 61/67 kB | 25/31 kB | 37/173 kB Progress (5): 171/177 kB | 0.3/2.3 MB | 61/67 kB | 25/31 kB | 37/173 kB Progress (5): 176/177 kB | 0.3/2.3 MB | 61/67 kB | 25/31 kB | 37/173 kB Progress (5): 176/177 kB | 0.3/2.3 MB | 66/67 kB | 25/31 kB | 37/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 25/31 kB | 37/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 25/31 kB | 37/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 25/31 kB | 41/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 41/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 45/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 49/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 49/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 53/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 57/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 66/67 kB | 29/31 kB | 61/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 67 kB | 29/31 kB | 61/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 67 kB | 29/31 kB | 64/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 67 kB | 29/31 kB | 64/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 67 kB | 29/31 kB | 68/173 kB Progress (5): 177 kB | 0.3/2.3 MB | 67 kB | 29/31 kB | 72/173 kB Progress (5): 177 kB | 0.4/2.3 MB | 67 kB | 29/31 kB | 72/173 kB Progress (5): 177 kB | 0.4/2.3 MB | 67 kB | 31 kB | 72/173 kB Progress (5): 177 kB | 0.4/2.3 MB | 67 kB | 31 kB | 76/173 kB Progress (5): 177 kB | 0.4/2.3 MB | 67 kB | 31 kB | 80/173 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.3.9/maven-model-builder-3.3.9.jar (177 kB at 244 kB/s) +Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 80/173 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar +Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 84/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 84/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 88/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 93/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 97/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 101/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 105/173 kB Progress (4): 0.4/2.3 MB | 67 kB | 31 kB | 105/173 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.3.9/maven-aether-provider-3.3.9.jar (67 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar +Progress (3): 0.4/2.3 MB | 31 kB | 109/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 109/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 113/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 117/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 117/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 121/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 125/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 129/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 133/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 138/173 kB Progress (3): 0.4/2.3 MB | 31 kB | 142/173 kB Progress (3): 0.5/2.3 MB | 31 kB | 142/173 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.2.v20150114/aether-spi-1.0.2.v20150114.jar (31 kB at 41 kB/s) +Progress (2): 0.5/2.3 MB | 146/173 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar +Progress (3): 0.5/2.3 MB | 146/173 kB | 4.1/136 kB Progress (3): 0.5/2.3 MB | 146/173 kB | 8.2/136 kB Progress (3): 0.5/2.3 MB | 146/173 kB | 12/136 kB Progress (3): 0.5/2.3 MB | 146/173 kB | 12/136 kB Progress (3): 0.5/2.3 MB | 146/173 kB | 16/136 kB Progress (4): 0.5/2.3 MB | 146/173 kB | 16/136 kB | 4.1/147 kB Progress (4): 0.5/2.3 MB | 146/173 kB | 16/136 kB | 4.1/147 kB Progress (4): 0.5/2.3 MB | 150/173 kB | 16/136 kB | 4.1/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 16/136 kB | 4.1/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 20/136 kB | 4.1/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 20/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 25/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 29/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 154/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 158/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 162/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 162/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 166/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 33/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 37/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 41/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 45/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 49/136 kB | 8.2/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 49/136 kB | 12/147 kB Progress (4): 0.5/2.3 MB | 170/173 kB | 49/136 kB | 16/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 49/136 kB | 16/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 49/136 kB | 16/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 49/136 kB | 20/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 49/136 kB | 20/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 53/136 kB | 20/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 57/136 kB | 20/147 kB Progress (4): 0.5/2.3 MB | 173 kB | 61/136 kB | 20/147 kB Progress (5): 0.5/2.3 MB | 173 kB | 61/136 kB | 20/147 kB | 4.1/205 kB Progress (5): 0.5/2.3 MB | 173 kB | 61/136 kB | 20/147 kB | 8.2/205 kB Progress (5): 0.5/2.3 MB | 173 kB | 61/136 kB | 20/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 61/136 kB | 20/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 66/136 kB | 20/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 66/136 kB | 25/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 66/136 kB | 29/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 70/136 kB | 29/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 74/136 kB | 29/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 78/136 kB | 29/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 78/136 kB | 29/147 kB | 12/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 78/136 kB | 29/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 78/136 kB | 29/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 82/136 kB | 29/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 86/136 kB | 29/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 86/136 kB | 33/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 90/136 kB | 33/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 94/136 kB | 33/147 kB | 16/205 kB Progress (5): 0.6/2.3 MB | 173 kB | 94/136 kB | 33/147 kB | 16/205 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.2.v20150114/aether-impl-1.0.2.v20150114.jar (173 kB at 222 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar +Progress (4): 0.6/2.3 MB | 94/136 kB | 33/147 kB | 20/205 kB Progress (4): 0.6/2.3 MB | 94/136 kB | 33/147 kB | 25/205 kB Progress (4): 0.6/2.3 MB | 94/136 kB | 33/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 94/136 kB | 33/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 98/136 kB | 33/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 98/136 kB | 37/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 102/136 kB | 37/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 102/136 kB | 37/147 kB | 29/205 kB Progress (4): 0.6/2.3 MB | 102/136 kB | 37/147 kB | 33/205 kB Progress (4): 0.6/2.3 MB | 106/136 kB | 37/147 kB | 33/205 kB Progress (4): 0.6/2.3 MB | 111/136 kB | 37/147 kB | 33/205 kB Progress (4): 0.6/2.3 MB | 111/136 kB | 41/147 kB | 33/205 kB Progress (4): 0.6/2.3 MB | 115/136 kB | 41/147 kB | 33/205 kB Progress (4): 0.6/2.3 MB | 115/136 kB | 41/147 kB | 37/205 kB Progress (4): 0.6/2.3 MB | 115/136 kB | 41/147 kB | 41/205 kB Progress (4): 0.6/2.3 MB | 115/136 kB | 41/147 kB | 45/205 kB Progress (4): 0.7/2.3 MB | 115/136 kB | 41/147 kB | 45/205 kB Progress (4): 0.7/2.3 MB | 115/136 kB | 41/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 119/136 kB | 41/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 123/136 kB | 41/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 41/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 45/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 49/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 53/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 57/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 61/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 127/136 kB | 66/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 131/136 kB | 66/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 49/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 53/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 57/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 61/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 66/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 70/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 74/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 78/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 82/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 86/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 86/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 90/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 94/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 66/147 kB | 98/205 kB Progress (4): 0.7/2.3 MB | 135/136 kB | 70/147 kB | 98/205 kB Progress (4): 0.7/2.3 MB | 136 kB | 70/147 kB | 98/205 kB Progress (5): 0.7/2.3 MB | 136 kB | 70/147 kB | 98/205 kB | 4.1/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 70/147 kB | 98/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 98/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 102/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 102/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 102/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 106/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 74/147 kB | 111/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 78/147 kB | 111/205 kB | 8.2/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 78/147 kB | 111/205 kB | 12/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 78/147 kB | 111/205 kB | 16/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 78/147 kB | 111/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 82/147 kB | 111/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 86/147 kB | 111/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 90/147 kB | 111/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 111/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 115/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 115/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 119/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 123/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 94/147 kB | 127/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 98/147 kB | 127/205 kB | 20/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 98/147 kB | 127/205 kB | 25/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 102/147 kB | 127/205 kB | 25/45 kB Progress (5): 0.7/2.3 MB | 136 kB | 102/147 kB | 131/205 kB | 25/45 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.2.v20150114/aether-api-1.0.2.v20150114.jar (136 kB at 166 kB/s) +Progress (4): 0.7/2.3 MB | 102/147 kB | 131/205 kB | 25/45 kB Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar +Progress (4): 0.7/2.3 MB | 102/147 kB | 135/205 kB | 25/45 kB Progress (4): 0.7/2.3 MB | 106/147 kB | 135/205 kB | 25/45 kB Progress (4): 0.7/2.3 MB | 106/147 kB | 135/205 kB | 29/45 kB Progress (4): 0.7/2.3 MB | 111/147 kB | 135/205 kB | 29/45 kB Progress (4): 0.7/2.3 MB | 111/147 kB | 139/205 kB | 29/45 kB Progress (4): 0.8/2.3 MB | 111/147 kB | 139/205 kB | 29/45 kB Progress (4): 0.8/2.3 MB | 111/147 kB | 143/205 kB | 29/45 kB Progress (4): 0.8/2.3 MB | 111/147 kB | 143/205 kB | 29/45 kB Progress (4): 0.8/2.3 MB | 115/147 kB | 143/205 kB | 29/45 kB Progress (4): 0.8/2.3 MB | 115/147 kB | 143/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 115/147 kB | 143/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 119/147 kB | 143/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 119/147 kB | 143/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 119/147 kB | 147/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 119/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 119/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 123/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 127/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 131/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 135/147 kB | 152/205 kB | 33/45 kB Progress (4): 0.8/2.3 MB | 135/147 kB | 152/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 152/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 152/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 156/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 160/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 160/205 kB | 37/45 kB Progress (4): 0.8/2.3 MB | 139/147 kB | 164/205 kB | 37/45 kB Progress (4): 0.9/2.3 MB | 139/147 kB | 164/205 kB | 37/45 kB Progress (4): 0.9/2.3 MB | 139/147 kB | 164/205 kB | 37/45 kB Progress (4): 0.9/2.3 MB | 143/147 kB | 164/205 kB | 37/45 kB Progress (4): 0.9/2.3 MB | 143/147 kB | 164/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 164/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 164/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 168/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 172/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 176/205 kB | 41/45 kB Progress (4): 0.9/2.3 MB | 147 kB | 176/205 kB | 41/45 kB Progress (5): 0.9/2.3 MB | 147 kB | 176/205 kB | 41/45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 180/205 kB | 41/45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 180/205 kB | 45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 184/205 kB | 45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 188/205 kB | 45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 188/205 kB | 45 kB | 4.1/5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 188/205 kB | 45 kB | 5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 188/205 kB | 45 kB | 5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 193/205 kB | 45 kB | 5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 197/205 kB | 45 kB | 5.8 kB Progress (5): 0.9/2.3 MB | 147 kB | 201/205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 201/205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 205/205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 205 kB | 45 kB | 5.8 kB Progress (5): 1.0/2.3 MB | 147 kB | 205 kB | 45 kB | 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/1.0.2.v20150114/aether-util-1.0.2.v20150114.jar (147 kB at 173 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar +Progress (4): 1.0/2.3 MB | 205 kB | 45 kB | 5.8 kB Progress (4): 1.0/2.3 MB | 205 kB | 45 kB | 5.8 kB Progress (4): 1.1/2.3 MB | 205 kB | 45 kB | 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.0/cdi-api-1.0.jar (45 kB at 53 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar +Progress (3): 1.1/2.3 MB | 205 kB | 5.8 kB Progress (3): 1.1/2.3 MB | 205 kB | 5.8 kB Progress (3): 1.1/2.3 MB | 205 kB | 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar (5.8 kB at 6.8 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar +Progress (2): 1.1/2.3 MB | 205 kB Progress (2): 1.1/2.3 MB | 205 kB Progress (2): 1.2/2.3 MB | 205 kB Progress (2): 1.2/2.3 MB | 205 kB Progress (2): 1.2/2.3 MB | 205 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.2/org.eclipse.sisu.plexus-0.3.2.jar (205 kB at 238 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar +Progress (1): 1.2/2.3 MB Progress (2): 1.2/2.3 MB | 4.1/378 kB Progress (2): 1.2/2.3 MB | 4.1/378 kB Progress (2): 1.2/2.3 MB | 8.2/378 kB Progress (2): 1.2/2.3 MB | 12/378 kB Progress (2): 1.2/2.3 MB | 16/378 kB Progress (2): 1.2/2.3 MB | 20/378 kB Progress (2): 1.2/2.3 MB | 20/378 kB Progress (2): 1.2/2.3 MB | 25/378 kB Progress (2): 1.2/2.3 MB | 29/378 kB Progress (2): 1.3/2.3 MB | 29/378 kB Progress (2): 1.3/2.3 MB | 29/378 kB Progress (2): 1.3/2.3 MB | 33/378 kB Progress (2): 1.3/2.3 MB | 37/378 kB Progress (3): 1.3/2.3 MB | 37/378 kB | 4.1/424 kB Progress (3): 1.3/2.3 MB | 41/378 kB | 4.1/424 kB Progress (3): 1.3/2.3 MB | 45/378 kB | 4.1/424 kB Progress (3): 1.3/2.3 MB | 45/378 kB | 4.1/424 kB Progress (4): 1.3/2.3 MB | 45/378 kB | 4.1/424 kB | 4.1/4.5 kB Progress (4): 1.3/2.3 MB | 45/378 kB | 4.1/424 kB | 4.5 kB Progress (4): 1.3/2.3 MB | 49/378 kB | 4.1/424 kB | 4.5 kB Progress (4): 1.3/2.3 MB | 53/378 kB | 4.1/424 kB | 4.5 kB Progress (4): 1.3/2.3 MB | 57/378 kB | 4.1/424 kB | 4.5 kB Progress (4): 1.3/2.3 MB | 61/378 kB | 4.1/424 kB | 4.5 kB Progress (5): 1.3/2.3 MB | 61/378 kB | 4.1/424 kB | 4.5 kB | 4.1/62 kB Progress (5): 1.3/2.3 MB | 61/378 kB | 8.2/424 kB | 4.5 kB | 4.1/62 kB Progress (5): 1.3/2.3 MB | 61/378 kB | 8.2/424 kB | 4.5 kB | 8.2/62 kB Progress (5): 1.3/2.3 MB | 65/378 kB | 8.2/424 kB | 4.5 kB | 8.2/62 kB Progress (5): 1.3/2.3 MB | 65/378 kB | 8.2/424 kB | 4.5 kB | 8.2/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 8.2/424 kB | 4.5 kB | 8.2/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 8.2/424 kB | 4.5 kB | 12/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 12/424 kB | 4.5 kB | 12/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 16/424 kB | 4.5 kB | 12/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 16/424 kB | 4.5 kB | 16/62 kB Progress (5): 1.3/2.3 MB | 69/378 kB | 16/424 kB | 4.5 kB | 16/62 kB Progress (5): 1.3/2.3 MB | 73/378 kB | 16/424 kB | 4.5 kB | 16/62 kB Progress (5): 1.3/2.3 MB | 77/378 kB | 16/424 kB | 4.5 kB | 16/62 kB Progress (5): 1.3/2.3 MB | 77/378 kB | 16/424 kB | 4.5 kB | 16/62 kB Progress (5): 1.3/2.3 MB | 77/378 kB | 16/424 kB | 4.5 kB | 20/62 kB Progress (5): 1.3/2.3 MB | 77/378 kB | 20/424 kB | 4.5 kB | 20/62 kB Downloaded from central: https://repo.maven.apache.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.jar (4.5 kB at 5.0 kB/s) +Progress (4): 1.4/2.3 MB | 77/378 kB | 20/424 kB | 20/62 kB Progress (4): 1.4/2.3 MB | 81/378 kB | 20/424 kB | 20/62 kB Progress (4): 1.4/2.3 MB | 81/378 kB | 20/424 kB | 20/62 kB Progress (4): 1.4/2.3 MB | 86/378 kB | 20/424 kB | 20/62 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar +Progress (4): 1.4/2.3 MB | 86/378 kB | 20/424 kB | 25/62 kB Progress (4): 1.4/2.3 MB | 86/378 kB | 20/424 kB | 29/62 kB Progress (4): 1.4/2.3 MB | 86/378 kB | 24/424 kB | 29/62 kB Progress (4): 1.4/2.3 MB | 86/378 kB | 24/424 kB | 33/62 kB Progress (4): 1.4/2.3 MB | 86/378 kB | 24/424 kB | 33/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 24/424 kB | 33/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 24/424 kB | 37/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 24/424 kB | 41/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 24/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 28/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 32/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 36/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 40/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 44/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 49/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 53/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 57/424 kB | 45/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 57/424 kB | 49/62 kB Progress (4): 1.4/2.3 MB | 90/378 kB | 57/424 kB | 49/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 57/424 kB | 49/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 57/424 kB | 49/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 61/424 kB | 49/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 61/424 kB | 53/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 65/424 kB | 53/62 kB Progress (4): 1.4/2.3 MB | 94/378 kB | 65/424 kB | 53/62 kB Progress (4): 1.4/2.3 MB | 98/378 kB | 65/424 kB | 53/62 kB Progress (4): 1.4/2.3 MB | 98/378 kB | 69/424 kB | 53/62 kB Progress (4): 1.4/2.3 MB | 98/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.4/2.3 MB | 102/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 102/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 106/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 110/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 114/378 kB | 69/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 114/378 kB | 73/424 kB | 57/62 kB Progress (4): 1.5/2.3 MB | 114/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 118/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 122/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 127/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 131/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 135/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 139/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 143/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 147/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 151/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 155/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 159/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 163/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 73/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 77/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 81/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 85/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 90/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 94/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 98/424 kB | 61/62 kB Progress (4): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 4.1/53 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 8.2/53 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 8.2/53 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 8.2/53 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 168/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 172/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 176/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 102/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 106/424 kB | 61/62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 106/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 106/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 110/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 180/378 kB | 114/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 184/378 kB | 114/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 188/378 kB | 114/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 192/378 kB | 114/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 196/378 kB | 114/424 kB | 62 kB | 12/53 kB Progress (5): 1.5/2.3 MB | 196/378 kB | 114/424 kB | 62 kB | 16/53 kB Progress (5): 1.5/2.3 MB | 200/378 kB | 114/424 kB | 62 kB | 16/53 kB Progress (5): 1.5/2.3 MB | 204/378 kB | 114/424 kB | 62 kB | 16/53 kB Progress (5): 1.5/2.3 MB | 204/378 kB | 118/424 kB | 62 kB | 16/53 kB Progress (5): 1.5/2.3 MB | 204/378 kB | 122/424 kB | 62 kB | 16/53 kB Progress (5): 1.6/2.3 MB | 204/378 kB | 122/424 kB | 62 kB | 16/53 kB Progress (5): 1.6/2.3 MB | 204/378 kB | 126/424 kB | 62 kB | 16/53 kB Progress (5): 1.6/2.3 MB | 204/378 kB | 130/424 kB | 62 kB | 16/53 kB Progress (5): 1.6/2.3 MB | 208/378 kB | 130/424 kB | 62 kB | 16/53 kB Progress (5): 1.6/2.3 MB | 208/378 kB | 130/424 kB | 62 kB | 20/53 kB Progress (5): 1.6/2.3 MB | 208/378 kB | 130/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 130/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 135/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 139/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 143/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 147/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 147/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 151/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 155/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 213/378 kB | 159/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 217/378 kB | 159/424 kB | 62 kB | 25/53 kB Progress (5): 1.6/2.3 MB | 217/378 kB | 159/424 kB | 62 kB | 29/53 kB Progress (5): 1.6/2.3 MB | 217/378 kB | 159/424 kB | 62 kB | 33/53 kB Progress (5): 1.6/2.3 MB | 221/378 kB | 159/424 kB | 62 kB | 33/53 kB Progress (5): 1.6/2.3 MB | 221/378 kB | 159/424 kB | 62 kB | 37/53 kB Progress (5): 1.6/2.3 MB | 221/378 kB | 159/424 kB | 62 kB | 41/53 kB Progress (5): 1.6/2.3 MB | 221/378 kB | 163/424 kB | 62 kB | 41/53 kB Progress (5): 1.6/2.3 MB | 221/378 kB | 163/424 kB | 62 kB | 41/53 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.21/plexus-interpolation-1.21.jar (62 kB at 67 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar +Progress (4): 1.6/2.3 MB | 225/378 kB | 163/424 kB | 41/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 163/424 kB | 41/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 163/424 kB | 41/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 163/424 kB | 45/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 163/424 kB | 45/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 167/424 kB | 45/53 kB Progress (4): 1.6/2.3 MB | 229/378 kB | 167/424 kB | 49/53 kB Progress (4): 1.6/2.3 MB | 233/378 kB | 167/424 kB | 49/53 kB Progress (4): 1.6/2.3 MB | 233/378 kB | 167/424 kB | 53 kB Progress (4): 1.6/2.3 MB | 233/378 kB | 167/424 kB | 53 kB Progress (4): 1.6/2.3 MB | 233/378 kB | 171/424 kB | 53 kB Progress (4): 1.6/2.3 MB | 233/378 kB | 176/424 kB | 53 kB Progress (4): 1.6/2.3 MB | 237/378 kB | 176/424 kB | 53 kB Progress (4): 1.6/2.3 MB | 237/378 kB | 180/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 237/378 kB | 180/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 241/378 kB | 180/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 180/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 184/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 188/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 192/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 196/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 245/378 kB | 196/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 249/378 kB | 196/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 249/378 kB | 200/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 249/378 kB | 204/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 249/378 kB | 204/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 254/378 kB | 204/424 kB | 53 kB Progress (4): 1.7/2.3 MB | 254/378 kB | 204/424 kB | 53 kB Progress (5): 1.7/2.3 MB | 254/378 kB | 204/424 kB | 53 kB | 4.1/4.3 kB Progress (5): 1.7/2.3 MB | 254/378 kB | 204/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 254/378 kB | 208/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 254/378 kB | 212/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 254/378 kB | 212/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 258/378 kB | 212/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 258/378 kB | 212/424 kB | 53 kB | 4.3 kB Progress (5): 1.7/2.3 MB | 258/378 kB | 217/424 kB | 53 kB | 4.3 kB Progress (5): 1.8/2.3 MB | 258/378 kB | 217/424 kB | 53 kB | 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.5.2/plexus-classworlds-2.5.2.jar (53 kB at 55 kB/s) +Progress (4): 1.8/2.3 MB | 262/378 kB | 217/424 kB | 4.3 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar +Progress (4): 1.8/2.3 MB | 262/378 kB | 217/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 262/378 kB | 221/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 262/378 kB | 225/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 262/378 kB | 229/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 266/378 kB | 229/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 266/378 kB | 229/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 266/378 kB | 233/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 266/378 kB | 237/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 270/378 kB | 237/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 274/378 kB | 237/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 274/378 kB | 241/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 274/378 kB | 241/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 274/378 kB | 245/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 278/378 kB | 245/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 245/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 249/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 253/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 257/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 262/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 262/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 282/378 kB | 266/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 266/424 kB | 4.3 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 270/424 kB | 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.6/plexus-component-annotations-1.6.jar (4.3 kB at 4.4 kB/s) +Progress (3): 1.8/2.3 MB | 286/378 kB | 270/424 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.jar +Progress (4): 1.8/2.3 MB | 286/378 kB | 270/424 kB | 4.1/435 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 270/424 kB | 8.2/435 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 270/424 kB | 12/435 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 270/424 kB | 16/435 kB Progress (4): 1.8/2.3 MB | 286/378 kB | 274/424 kB | 16/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 274/424 kB | 16/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 278/424 kB | 16/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 278/424 kB | 20/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 278/424 kB | 20/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 278/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 282/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 286/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 290/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 290/378 kB | 294/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 294/378 kB | 294/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 294/378 kB | 298/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 294/378 kB | 303/424 kB | 25/435 kB Progress (4): 1.8/2.3 MB | 294/378 kB | 303/424 kB | 29/435 kB Progress (4): 1.9/2.3 MB | 294/378 kB | 303/424 kB | 29/435 kB Progress (4): 1.9/2.3 MB | 294/378 kB | 303/424 kB | 33/435 kB Progress (4): 1.9/2.3 MB | 294/378 kB | 307/424 kB | 33/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 307/424 kB | 33/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 307/424 kB | 37/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 311/424 kB | 37/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 311/424 kB | 37/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 315/424 kB | 37/435 kB Progress (4): 1.9/2.3 MB | 299/378 kB | 315/424 kB | 41/435 kB Progress (5): 1.9/2.3 MB | 299/378 kB | 315/424 kB | 41/435 kB | 4.1/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 315/424 kB | 41/435 kB | 4.1/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 315/424 kB | 41/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 315/424 kB | 45/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 315/424 kB | 49/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 319/424 kB | 49/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 319/424 kB | 49/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 319/424 kB | 53/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 323/424 kB | 53/435 kB | 8.2/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 323/424 kB | 53/435 kB | 12/290 kB Progress (5): 1.9/2.3 MB | 303/378 kB | 323/424 kB | 53/435 kB | 16/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 323/424 kB | 53/435 kB | 16/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 323/424 kB | 53/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 327/424 kB | 53/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 327/424 kB | 57/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 327/424 kB | 57/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 327/424 kB | 61/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 331/424 kB | 61/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 335/424 kB | 61/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 339/424 kB | 61/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 343/424 kB | 61/435 kB | 20/290 kB Progress (5): 1.9/2.3 MB | 307/378 kB | 343/424 kB | 61/435 kB | 25/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 343/424 kB | 61/435 kB | 25/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 343/424 kB | 61/435 kB | 29/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 343/424 kB | 61/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 348/424 kB | 61/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 348/424 kB | 61/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 348/424 kB | 65/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 348/424 kB | 65/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 352/424 kB | 65/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 356/424 kB | 65/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 360/424 kB | 65/435 kB | 33/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 360/424 kB | 65/435 kB | 37/290 kB Progress (5): 1.9/2.3 MB | 311/378 kB | 360/424 kB | 65/435 kB | 41/290 kB Progress (5): 1.9/2.3 MB | 315/378 kB | 360/424 kB | 65/435 kB | 41/290 kB Progress (5): 1.9/2.3 MB | 315/378 kB | 360/424 kB | 65/435 kB | 45/290 kB Progress (5): 1.9/2.3 MB | 315/378 kB | 364/424 kB | 65/435 kB | 45/290 kB Progress (5): 1.9/2.3 MB | 315/378 kB | 368/424 kB | 65/435 kB | 45/290 kB Progress (5): 2.0/2.3 MB | 315/378 kB | 368/424 kB | 65/435 kB | 45/290 kB Progress (5): 2.0/2.3 MB | 315/378 kB | 368/424 kB | 69/435 kB | 45/290 kB Progress (5): 2.0/2.3 MB | 315/378 kB | 372/424 kB | 69/435 kB | 45/290 kB Progress (5): 2.0/2.3 MB | 315/378 kB | 372/424 kB | 69/435 kB | 49/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 372/424 kB | 69/435 kB | 49/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 372/424 kB | 69/435 kB | 53/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 372/424 kB | 69/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 376/424 kB | 69/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 380/424 kB | 69/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 380/424 kB | 73/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 380/424 kB | 77/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 380/424 kB | 77/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 380/424 kB | 82/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 384/424 kB | 82/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 384/424 kB | 82/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 384/424 kB | 82/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 384/424 kB | 82/435 kB | 57/290 kB Progress (5): 2.0/2.3 MB | 319/378 kB | 384/424 kB | 82/435 kB | 61/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 384/424 kB | 82/435 kB | 61/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 384/424 kB | 82/435 kB | 66/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 384/424 kB | 82/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 389/424 kB | 82/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 393/424 kB | 82/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 397/424 kB | 82/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 397/424 kB | 86/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 401/424 kB | 86/435 kB | 70/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 401/424 kB | 86/435 kB | 74/290 kB Progress (5): 2.0/2.3 MB | 323/378 kB | 401/424 kB | 86/435 kB | 74/290 kB Progress (5): 2.0/2.3 MB | 327/378 kB | 401/424 kB | 86/435 kB | 74/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 401/424 kB | 86/435 kB | 74/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 86/435 kB | 74/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 86/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 90/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 94/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 405/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 409/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 327/378 kB | 409/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 409/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 413/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 417/424 kB | 98/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 417/424 kB | 102/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 417/424 kB | 106/435 kB | 78/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 417/424 kB | 106/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 421/424 kB | 106/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 106/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 110/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 114/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 118/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 123/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 127/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 331/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 335/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 335/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 340/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 344/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 344/378 kB | 424 kB | 131/435 kB | 82/290 kB Progress (5): 2.1/2.3 MB | 344/378 kB | 424 kB | 131/435 kB | 86/290 kB Progress (5): 2.1/2.3 MB | 344/378 kB | 424 kB | 131/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 344/378 kB | 424 kB | 131/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 131/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 135/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 139/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 143/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 147/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 151/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 348/378 kB | 424 kB | 155/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 352/378 kB | 424 kB | 155/435 kB | 90/290 kB Progress (5): 2.1/2.3 MB | 352/378 kB | 424 kB | 159/435 kB | 90/290 kB Progress (5): 2.2/2.3 MB | 352/378 kB | 424 kB | 159/435 kB | 90/290 kB Progress (5): 2.2/2.3 MB | 356/378 kB | 424 kB | 159/435 kB | 90/290 kB Progress (5): 2.2/2.3 MB | 360/378 kB | 424 kB | 159/435 kB | 90/290 kB Progress (5): 2.2/2.3 MB | 360/378 kB | 424 kB | 159/435 kB | 94/290 kB Progress (5): 2.2/2.3 MB | 364/378 kB | 424 kB | 159/435 kB | 94/290 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/inject/guice/4.0/guice-4.0-no_aop.jar (424 kB at 398 kB/s) +Progress (4): 2.2/2.3 MB | 364/378 kB | 159/435 kB | 94/290 kB Progress (4): 2.2/2.3 MB | 364/378 kB | 164/435 kB | 94/290 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar +Progress (4): 2.2/2.3 MB | 368/378 kB | 164/435 kB | 94/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 94/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 98/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 102/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 106/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 111/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 115/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 119/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 123/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 127/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 131/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 135/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 139/290 kB Progress (4): 2.2/2.3 MB | 372/378 kB | 164/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 376/378 kB | 164/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 376/378 kB | 168/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 376/378 kB | 168/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 376/378 kB | 172/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 172/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 172/435 kB | 143/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 172/435 kB | 147/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 172/435 kB | 147/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 172/435 kB | 152/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 176/435 kB | 152/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 176/435 kB | 156/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 176/435 kB | 160/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 176/435 kB | 160/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 176/435 kB | 164/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 180/435 kB | 164/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 180/435 kB | 168/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 184/435 kB | 168/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 184/435 kB | 172/290 kB Progress (4): 2.2/2.3 MB | 378 kB | 184/435 kB | 176/290 kB Progress (4): 2.3 MB | 378 kB | 184/435 kB | 176/290 kB Progress (4): 2.3 MB | 378 kB | 184/435 kB | 180/290 kB Progress (4): 2.3 MB | 378 kB | 188/435 kB | 180/290 kB Progress (4): 2.3 MB | 378 kB | 188/435 kB | 184/290 kB Progress (4): 2.3 MB | 378 kB | 192/435 kB | 184/290 kB Progress (4): 2.3 MB | 378 kB | 192/435 kB | 188/290 kB Progress (5): 2.3 MB | 378 kB | 192/435 kB | 188/290 kB | 4.1/54 kB Progress (5): 2.3 MB | 378 kB | 192/435 kB | 188/290 kB | 8.2/54 kB Progress (5): 2.3 MB | 378 kB | 192/435 kB | 188/290 kB | 12/54 kB Progress (5): 2.3 MB | 378 kB | 196/435 kB | 188/290 kB | 12/54 kB Progress (5): 2.3 MB | 378 kB | 196/435 kB | 188/290 kB | 16/54 kB Progress (5): 2.3 MB | 378 kB | 196/435 kB | 193/290 kB | 16/54 kB Progress (5): 2.3 MB | 378 kB | 200/435 kB | 193/290 kB | 16/54 kB Progress (5): 2.3 MB | 378 kB | 204/435 kB | 193/290 kB | 16/54 kB Progress (5): 2.3 MB | 378 kB | 204/435 kB | 193/290 kB | 20/54 kB Progress (5): 2.3 MB | 378 kB | 209/435 kB | 193/290 kB | 20/54 kB Progress (5): 2.3 MB | 378 kB | 213/435 kB | 193/290 kB | 20/54 kB Progress (5): 2.3 MB | 378 kB | 217/435 kB | 193/290 kB | 20/54 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.2/org.eclipse.sisu.inject-0.3.2.jar (378 kB at 347 kB/s) +Progress (4): 2.3 MB | 217/435 kB | 197/290 kB | 20/54 kB Progress (4): 2.3 MB | 217/435 kB | 201/290 kB | 20/54 kB Progress (4): 2.3 MB | 217/435 kB | 205/290 kB | 20/54 kB Progress (4): 2.3 MB | 217/435 kB | 209/290 kB | 20/54 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/18.0/guava-18.0.jar (2.3 MB at 2.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar +Progress (3): 221/435 kB | 209/290 kB | 20/54 kB Progress (3): 225/435 kB | 209/290 kB | 20/54 kB Progress (3): 225/435 kB | 209/290 kB | 25/54 kB Progress (3): 225/435 kB | 209/290 kB | 29/54 kB Progress (3): 225/435 kB | 209/290 kB | 33/54 kB Progress (3): 225/435 kB | 209/290 kB | 37/54 kB Progress (3): 225/435 kB | 209/290 kB | 41/54 kB Progress (3): 225/435 kB | 209/290 kB | 45/54 kB Progress (3): 225/435 kB | 209/290 kB | 49/54 kB Progress (3): 225/435 kB | 209/290 kB | 53/54 kB Progress (3): 225/435 kB | 209/290 kB | 54 kB Progress (3): 225/435 kB | 213/290 kB | 54 kB Progress (3): 229/435 kB | 213/290 kB | 54 kB Progress (3): 233/435 kB | 213/290 kB | 54 kB Progress (3): 237/435 kB | 213/290 kB | 54 kB Progress (3): 241/435 kB | 213/290 kB | 54 kB Progress (3): 245/435 kB | 213/290 kB | 54 kB Progress (3): 250/435 kB | 213/290 kB | 54 kB Progress (3): 254/435 kB | 213/290 kB | 54 kB Progress (3): 258/435 kB | 213/290 kB | 54 kB Progress (3): 262/435 kB | 213/290 kB | 54 kB Progress (3): 262/435 kB | 217/290 kB | 54 kB Progress (3): 266/435 kB | 217/290 kB | 54 kB Progress (3): 266/435 kB | 221/290 kB | 54 kB Progress (3): 270/435 kB | 221/290 kB | 54 kB Progress (3): 274/435 kB | 221/290 kB | 54 kB Progress (4): 274/435 kB | 221/290 kB | 54 kB | 4.1/26 kB Progress (4): 274/435 kB | 225/290 kB | 54 kB | 4.1/26 kB Progress (4): 274/435 kB | 225/290 kB | 54 kB | 8.2/26 kB Progress (4): 278/435 kB | 225/290 kB | 54 kB | 8.2/26 kB Progress (5): 278/435 kB | 225/290 kB | 54 kB | 8.2/26 kB | 4.1/11 kB Progress (5): 278/435 kB | 225/290 kB | 54 kB | 8.2/26 kB | 8.2/11 kB Progress (5): 282/435 kB | 225/290 kB | 54 kB | 8.2/26 kB | 8.2/11 kB Progress (5): 282/435 kB | 225/290 kB | 54 kB | 12/26 kB | 8.2/11 kB Progress (5): 282/435 kB | 225/290 kB | 54 kB | 16/26 kB | 8.2/11 kB Progress (5): 282/435 kB | 229/290 kB | 54 kB | 16/26 kB | 8.2/11 kB Progress (5): 282/435 kB | 233/290 kB | 54 kB | 16/26 kB | 8.2/11 kB Progress (5): 286/435 kB | 233/290 kB | 54 kB | 16/26 kB | 8.2/11 kB Progress (5): 286/435 kB | 233/290 kB | 54 kB | 16/26 kB | 11 kB Progress (5): 290/435 kB | 233/290 kB | 54 kB | 16/26 kB | 11 kB Progress (5): 290/435 kB | 238/290 kB | 54 kB | 16/26 kB | 11 kB Progress (5): 290/435 kB | 238/290 kB | 54 kB | 20/26 kB | 11 kB Progress (5): 290/435 kB | 242/290 kB | 54 kB | 20/26 kB | 11 kB Progress (5): 290/435 kB | 242/290 kB | 54 kB | 25/26 kB | 11 kB Progress (5): 295/435 kB | 242/290 kB | 54 kB | 25/26 kB | 11 kB Progress (5): 295/435 kB | 242/290 kB | 54 kB | 26 kB | 11 kB Progress (5): 295/435 kB | 246/290 kB | 54 kB | 26 kB | 11 kB Progress (5): 295/435 kB | 250/290 kB | 54 kB | 26 kB | 11 kB Progress (5): 295/435 kB | 254/290 kB | 54 kB | 26 kB | 11 kB Progress (5): 295/435 kB | 258/290 kB | 54 kB | 26 kB | 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/2.10/wagon-provider-api-2.10.jar (54 kB at 48 kB/s) +Progress (4): 295/435 kB | 262/290 kB | 26 kB | 11 kB Progress (4): 295/435 kB | 266/290 kB | 26 kB | 11 kB Progress (4): 299/435 kB | 266/290 kB | 26 kB | 11 kB Progress (4): 303/435 kB | 266/290 kB | 26 kB | 11 kB Progress (4): 303/435 kB | 270/290 kB | 26 kB | 11 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.jar +Progress (4): 303/435 kB | 274/290 kB | 26 kB | 11 kB Progress (4): 307/435 kB | 274/290 kB | 26 kB | 11 kB Progress (4): 311/435 kB | 274/290 kB | 26 kB | 11 kB Progress (4): 311/435 kB | 279/290 kB | 26 kB | 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.0/maven-reporting-api-3.0.jar (11 kB at 9.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar +Progress (3): 311/435 kB | 283/290 kB | 26 kB Progress (3): 311/435 kB | 287/290 kB | 26 kB Progress (3): 311/435 kB | 290 kB | 26 kB Progress (3): 315/435 kB | 290 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.5.2/maven-archiver-3.5.2.jar (26 kB at 23 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.jar +Progress (2): 319/435 kB | 290 kB Progress (2): 323/435 kB | 290 kB Progress (2): 327/435 kB | 290 kB Progress (2): 331/435 kB | 290 kB Progress (2): 336/435 kB | 290 kB Progress (3): 336/435 kB | 290 kB | 4.1/154 kB Progress (3): 340/435 kB | 290 kB | 4.1/154 kB Progress (3): 340/435 kB | 290 kB | 8.2/154 kB Progress (3): 340/435 kB | 290 kB | 12/154 kB Progress (3): 344/435 kB | 290 kB | 12/154 kB Progress (3): 344/435 kB | 290 kB | 16/154 kB Progress (3): 348/435 kB | 290 kB | 16/154 kB Progress (3): 352/435 kB | 290 kB | 16/154 kB Progress (3): 356/435 kB | 290 kB | 16/154 kB Progress (3): 356/435 kB | 290 kB | 20/154 kB Progress (3): 356/435 kB | 290 kB | 25/154 kB Progress (3): 356/435 kB | 290 kB | 29/154 kB Progress (3): 360/435 kB | 290 kB | 29/154 kB Progress (4): 360/435 kB | 290 kB | 29/154 kB | 4.1/632 kB Progress (4): 364/435 kB | 290 kB | 29/154 kB | 4.1/632 kB Progress (4): 364/435 kB | 290 kB | 33/154 kB | 4.1/632 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-compat/3.3.9/maven-compat-3.3.9.jar (290 kB at 251 kB/s) +Progress (3): 368/435 kB | 33/154 kB | 4.1/632 kB Progress (3): 368/435 kB | 33/154 kB | 8.2/632 kB Progress (3): 372/435 kB | 33/154 kB | 8.2/632 kB Progress (3): 372/435 kB | 33/154 kB | 12/632 kB Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar +Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 4.1/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 8.2/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 12/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 16/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 20/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 25/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 29/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 33/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 37/195 kB Progress (4): 372/435 kB | 33/154 kB | 12/632 kB | 41/195 kB Progress (4): 372/435 kB | 37/154 kB | 12/632 kB | 41/195 kB Progress (4): 372/435 kB | 37/154 kB | 16/632 kB | 41/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 41/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 45/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 49/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 53/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 57/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 61/195 kB Progress (4): 377/435 kB | 37/154 kB | 16/632 kB | 66/195 kB Progress (4): 377/435 kB | 37/154 kB | 20/632 kB | 66/195 kB Progress (4): 377/435 kB | 41/154 kB | 20/632 kB | 66/195 kB Progress (4): 377/435 kB | 45/154 kB | 20/632 kB | 66/195 kB Progress (4): 377/435 kB | 45/154 kB | 25/632 kB | 66/195 kB Progress (4): 377/435 kB | 45/154 kB | 29/632 kB | 66/195 kB Progress (4): 377/435 kB | 45/154 kB | 29/632 kB | 70/195 kB Progress (4): 377/435 kB | 45/154 kB | 29/632 kB | 74/195 kB Progress (4): 377/435 kB | 45/154 kB | 29/632 kB | 78/195 kB Progress (4): 381/435 kB | 45/154 kB | 29/632 kB | 78/195 kB Progress (4): 385/435 kB | 45/154 kB | 29/632 kB | 78/195 kB Progress (4): 385/435 kB | 45/154 kB | 33/632 kB | 78/195 kB Progress (4): 385/435 kB | 49/154 kB | 33/632 kB | 78/195 kB Progress (4): 385/435 kB | 49/154 kB | 37/632 kB | 78/195 kB Progress (5): 385/435 kB | 49/154 kB | 37/632 kB | 78/195 kB | 4.1/116 kB Progress (5): 389/435 kB | 49/154 kB | 37/632 kB | 78/195 kB | 4.1/116 kB Progress (5): 389/435 kB | 49/154 kB | 37/632 kB | 82/195 kB | 4.1/116 kB Progress (5): 393/435 kB | 49/154 kB | 37/632 kB | 82/195 kB | 4.1/116 kB Progress (5): 393/435 kB | 49/154 kB | 37/632 kB | 82/195 kB | 8.2/116 kB Progress (5): 393/435 kB | 49/154 kB | 37/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 49/154 kB | 41/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 53/154 kB | 41/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 57/154 kB | 41/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 61/154 kB | 41/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 61/154 kB | 45/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 61/154 kB | 49/632 kB | 82/195 kB | 12/116 kB Progress (5): 393/435 kB | 61/154 kB | 49/632 kB | 82/195 kB | 16/116 kB Progress (5): 393/435 kB | 61/154 kB | 53/632 kB | 82/195 kB | 16/116 kB Progress (5): 393/435 kB | 61/154 kB | 57/632 kB | 82/195 kB | 16/116 kB Progress (5): 393/435 kB | 61/154 kB | 61/632 kB | 82/195 kB | 16/116 kB Progress (5): 397/435 kB | 61/154 kB | 61/632 kB | 82/195 kB | 16/116 kB Progress (5): 401/435 kB | 61/154 kB | 61/632 kB | 82/195 kB | 16/116 kB Progress (5): 401/435 kB | 61/154 kB | 61/632 kB | 86/195 kB | 16/116 kB Progress (5): 405/435 kB | 61/154 kB | 61/632 kB | 86/195 kB | 16/116 kB Progress (5): 409/435 kB | 61/154 kB | 61/632 kB | 86/195 kB | 16/116 kB Progress (5): 409/435 kB | 61/154 kB | 66/632 kB | 86/195 kB | 16/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 16/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 20/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 24/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 28/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 32/116 kB Progress (5): 409/435 kB | 61/154 kB | 70/632 kB | 86/195 kB | 36/116 kB Progress (5): 409/435 kB | 66/154 kB | 70/632 kB | 86/195 kB | 36/116 kB Progress (5): 409/435 kB | 66/154 kB | 74/632 kB | 86/195 kB | 36/116 kB Progress (5): 413/435 kB | 66/154 kB | 74/632 kB | 86/195 kB | 36/116 kB Progress (5): 413/435 kB | 66/154 kB | 74/632 kB | 90/195 kB | 36/116 kB Progress (5): 417/435 kB | 66/154 kB | 74/632 kB | 90/195 kB | 36/116 kB Progress (5): 417/435 kB | 66/154 kB | 78/632 kB | 90/195 kB | 36/116 kB Progress (5): 417/435 kB | 66/154 kB | 78/632 kB | 90/195 kB | 40/116 kB Progress (5): 417/435 kB | 66/154 kB | 78/632 kB | 90/195 kB | 44/116 kB Progress (5): 417/435 kB | 66/154 kB | 78/632 kB | 90/195 kB | 49/116 kB Progress (5): 417/435 kB | 70/154 kB | 78/632 kB | 90/195 kB | 49/116 kB Progress (5): 417/435 kB | 70/154 kB | 78/632 kB | 90/195 kB | 53/116 kB Progress (5): 417/435 kB | 74/154 kB | 78/632 kB | 90/195 kB | 53/116 kB Progress (5): 417/435 kB | 74/154 kB | 82/632 kB | 90/195 kB | 53/116 kB Progress (5): 422/435 kB | 74/154 kB | 82/632 kB | 90/195 kB | 53/116 kB Progress (5): 426/435 kB | 74/154 kB | 82/632 kB | 90/195 kB | 53/116 kB Progress (5): 430/435 kB | 74/154 kB | 82/632 kB | 90/195 kB | 53/116 kB Progress (5): 434/435 kB | 74/154 kB | 82/632 kB | 90/195 kB | 53/116 kB Progress (5): 434/435 kB | 74/154 kB | 82/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 74/154 kB | 82/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 74/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 78/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 82/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 86/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 90/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 94/154 kB | 86/632 kB | 94/195 kB | 53/116 kB Progress (5): 435 kB | 94/154 kB | 86/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 98/154 kB | 86/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 86/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 90/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 94/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 98/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 102/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 106/632 kB | 94/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 106/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 102/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 106/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 111/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 115/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 119/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 123/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 127/154 kB | 111/632 kB | 98/195 kB | 57/116 kB Progress (5): 435 kB | 127/154 kB | 111/632 kB | 98/195 kB | 61/116 kB Progress (5): 435 kB | 127/154 kB | 111/632 kB | 98/195 kB | 65/116 kB Progress (5): 435 kB | 127/154 kB | 115/632 kB | 98/195 kB | 65/116 kB Progress (5): 435 kB | 127/154 kB | 119/632 kB | 98/195 kB | 65/116 kB Progress (5): 435 kB | 127/154 kB | 119/632 kB | 102/195 kB | 65/116 kB Progress (5): 435 kB | 127/154 kB | 123/632 kB | 102/195 kB | 65/116 kB Progress (5): 435 kB | 127/154 kB | 127/632 kB | 102/195 kB | 65/116 kB Progress (5): 435 kB | 131/154 kB | 127/632 kB | 102/195 kB | 65/116 kB Progress (5): 435 kB | 131/154 kB | 127/632 kB | 102/195 kB | 69/116 kB Progress (5): 435 kB | 131/154 kB | 131/632 kB | 102/195 kB | 69/116 kB Progress (5): 435 kB | 131/154 kB | 135/632 kB | 102/195 kB | 69/116 kB Progress (5): 435 kB | 131/154 kB | 139/632 kB | 102/195 kB | 69/116 kB Progress (5): 435 kB | 131/154 kB | 139/632 kB | 106/195 kB | 69/116 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.4/commons-lang3-3.4.jar (435 kB at 355 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0/maven-dependency-tree-3.0.jar +Progress (4): 131/154 kB | 143/632 kB | 106/195 kB | 69/116 kB Progress (4): 131/154 kB | 147/632 kB | 106/195 kB | 69/116 kB Progress (4): 131/154 kB | 152/632 kB | 106/195 kB | 69/116 kB Progress (4): 135/154 kB | 152/632 kB | 106/195 kB | 69/116 kB Progress (4): 135/154 kB | 152/632 kB | 106/195 kB | 73/116 kB Progress (4): 139/154 kB | 152/632 kB | 106/195 kB | 73/116 kB Progress (4): 143/154 kB | 152/632 kB | 106/195 kB | 73/116 kB Progress (4): 143/154 kB | 156/632 kB | 106/195 kB | 73/116 kB Progress (4): 143/154 kB | 156/632 kB | 111/195 kB | 73/116 kB Progress (4): 143/154 kB | 160/632 kB | 111/195 kB | 73/116 kB Progress (4): 147/154 kB | 160/632 kB | 111/195 kB | 73/116 kB Progress (4): 147/154 kB | 160/632 kB | 111/195 kB | 77/116 kB Progress (4): 152/154 kB | 160/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 160/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 164/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 168/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 172/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 176/632 kB | 111/195 kB | 77/116 kB Progress (4): 154 kB | 176/632 kB | 115/195 kB | 77/116 kB Progress (4): 154 kB | 176/632 kB | 119/195 kB | 77/116 kB Progress (4): 154 kB | 180/632 kB | 119/195 kB | 77/116 kB Progress (4): 154 kB | 184/632 kB | 119/195 kB | 77/116 kB Progress (4): 154 kB | 184/632 kB | 119/195 kB | 81/116 kB Progress (5): 154 kB | 184/632 kB | 119/195 kB | 81/116 kB | 4.1/37 kB Progress (5): 154 kB | 184/632 kB | 119/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 188/632 kB | 119/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 193/632 kB | 119/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 197/632 kB | 119/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 201/632 kB | 119/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 201/632 kB | 123/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 201/632 kB | 127/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 201/632 kB | 131/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 81/116 kB | 8.2/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 81/116 kB | 12/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 81/116 kB | 16/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 85/116 kB | 16/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 90/116 kB | 16/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 94/116 kB | 16/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 98/116 kB | 16/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 98/116 kB | 20/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 98/116 kB | 25/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 98/116 kB | 29/37 kB Progress (5): 154 kB | 205/632 kB | 131/195 kB | 98/116 kB | 33/37 kB Progress (5): 154 kB | 209/632 kB | 131/195 kB | 98/116 kB | 33/37 kB Progress (5): 154 kB | 209/632 kB | 135/195 kB | 98/116 kB | 33/37 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.3.3/maven-shared-utils-3.3.3.jar (154 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar +Progress (4): 213/632 kB | 135/195 kB | 98/116 kB | 33/37 kB Progress (4): 213/632 kB | 139/195 kB | 98/116 kB | 33/37 kB Progress (4): 213/632 kB | 143/195 kB | 98/116 kB | 33/37 kB Progress (4): 213/632 kB | 147/195 kB | 98/116 kB | 33/37 kB Progress (4): 213/632 kB | 147/195 kB | 98/116 kB | 37 kB Progress (4): 213/632 kB | 147/195 kB | 102/116 kB | 37 kB Progress (4): 213/632 kB | 147/195 kB | 106/116 kB | 37 kB Progress (4): 213/632 kB | 152/195 kB | 106/116 kB | 37 kB Progress (4): 213/632 kB | 156/195 kB | 106/116 kB | 37 kB Progress (4): 213/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 217/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 221/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 225/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 229/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 233/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 238/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 242/632 kB | 160/195 kB | 106/116 kB | 37 kB Progress (4): 242/632 kB | 164/195 kB | 106/116 kB | 37 kB Progress (4): 242/632 kB | 164/195 kB | 110/116 kB | 37 kB Progress (4): 242/632 kB | 168/195 kB | 110/116 kB | 37 kB Progress (4): 246/632 kB | 168/195 kB | 110/116 kB | 37 kB Progress (5): 246/632 kB | 168/195 kB | 110/116 kB | 37 kB | 4.1/10 kB Progress (5): 246/632 kB | 168/195 kB | 110/116 kB | 37 kB | 8.2/10 kB Progress (5): 246/632 kB | 172/195 kB | 110/116 kB | 37 kB | 8.2/10 kB Progress (5): 246/632 kB | 176/195 kB | 110/116 kB | 37 kB | 8.2/10 kB Progress (5): 246/632 kB | 176/195 kB | 114/116 kB | 37 kB | 8.2/10 kB Progress (5): 246/632 kB | 176/195 kB | 116 kB | 37 kB | 8.2/10 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0/maven-dependency-tree-3.0.jar (37 kB at 29 kB/s) +Progress (4): 246/632 kB | 180/195 kB | 116 kB | 8.2/10 kB Progress (4): 246/632 kB | 180/195 kB | 116 kB | 10 kB Progress (4): 250/632 kB | 180/195 kB | 116 kB | 10 kB Progress (4): 250/632 kB | 184/195 kB | 116 kB | 10 kB Progress (4): 250/632 kB | 188/195 kB | 116 kB | 10 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar +Progress (4): 250/632 kB | 193/195 kB | 116 kB | 10 kB Progress (4): 254/632 kB | 193/195 kB | 116 kB | 10 kB Progress (4): 258/632 kB | 193/195 kB | 116 kB | 10 kB Progress (4): 258/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 262/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 266/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 270/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 274/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 279/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 283/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 287/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 291/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 295/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 299/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 303/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 307/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 311/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 315/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 319/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 324/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 328/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 332/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 336/632 kB | 195 kB | 116 kB | 10 kB Progress (4): 340/632 kB | 195 kB | 116 kB | 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar (116 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.0/doxia-sink-api-1.0.jar (10 kB at 7.9 kB/s) +Progress (2): 344/632 kB | 195 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar +Progress (2): 348/632 kB | 195 kB Progress (2): 352/632 kB | 195 kB Progress (2): 356/632 kB | 195 kB Progress (3): 356/632 kB | 195 kB | 4.1/47 kB Progress (3): 360/632 kB | 195 kB | 4.1/47 kB Progress (3): 365/632 kB | 195 kB | 4.1/47 kB Progress (3): 369/632 kB | 195 kB | 4.1/47 kB Progress (3): 373/632 kB | 195 kB | 4.1/47 kB Progress (3): 377/632 kB | 195 kB | 4.1/47 kB Progress (3): 381/632 kB | 195 kB | 4.1/47 kB Progress (3): 385/632 kB | 195 kB | 4.1/47 kB Progress (3): 389/632 kB | 195 kB | 4.1/47 kB Progress (3): 393/632 kB | 195 kB | 4.1/47 kB Progress (3): 397/632 kB | 195 kB | 4.1/47 kB Progress (3): 397/632 kB | 195 kB | 8.2/47 kB Progress (3): 401/632 kB | 195 kB | 8.2/47 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.7/plexus-archiver-4.2.7.jar (195 kB at 151 kB/s) +Progress (2): 406/632 kB | 8.2/47 kB Progress (2): 406/632 kB | 12/47 kB Progress (2): 410/632 kB | 12/47 kB Progress (2): 414/632 kB | 12/47 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar +Progress (2): 414/632 kB | 16/47 kB Progress (2): 418/632 kB | 16/47 kB Progress (2): 418/632 kB | 20/47 kB Progress (2): 418/632 kB | 25/47 kB Progress (2): 422/632 kB | 25/47 kB Progress (2): 422/632 kB | 29/47 kB Progress (2): 422/632 kB | 33/47 kB Progress (2): 426/632 kB | 33/47 kB Progress (2): 430/632 kB | 33/47 kB Progress (2): 434/632 kB | 33/47 kB Progress (2): 438/632 kB | 33/47 kB Progress (3): 438/632 kB | 33/47 kB | 4.1/55 kB Progress (3): 438/632 kB | 33/47 kB | 8.2/55 kB Progress (3): 438/632 kB | 37/47 kB | 8.2/55 kB Progress (3): 438/632 kB | 41/47 kB | 8.2/55 kB Progress (3): 438/632 kB | 41/47 kB | 12/55 kB Progress (3): 442/632 kB | 41/47 kB | 12/55 kB Progress (4): 442/632 kB | 41/47 kB | 12/55 kB | 4.1/11 kB Progress (4): 442/632 kB | 45/47 kB | 12/55 kB | 4.1/11 kB Progress (4): 442/632 kB | 47 kB | 12/55 kB | 4.1/11 kB Progress (4): 442/632 kB | 47 kB | 12/55 kB | 8.2/11 kB Progress (4): 442/632 kB | 47 kB | 16/55 kB | 8.2/11 kB Progress (4): 446/632 kB | 47 kB | 16/55 kB | 8.2/11 kB Progress (4): 446/632 kB | 47 kB | 16/55 kB | 11 kB Progress (4): 446/632 kB | 47 kB | 20/55 kB | 11 kB Progress (4): 451/632 kB | 47 kB | 20/55 kB | 11 kB Progress (5): 451/632 kB | 47 kB | 20/55 kB | 11 kB | 4.1/237 kB Progress (5): 451/632 kB | 47 kB | 25/55 kB | 11 kB | 4.1/237 kB Progress (5): 451/632 kB | 47 kB | 25/55 kB | 11 kB | 8.2/237 kB Progress (5): 451/632 kB | 47 kB | 25/55 kB | 11 kB | 12/237 kB Progress (5): 455/632 kB | 47 kB | 25/55 kB | 11 kB | 12/237 kB Progress (5): 455/632 kB | 47 kB | 25/55 kB | 11 kB | 16/237 kB Progress (5): 459/632 kB | 47 kB | 25/55 kB | 11 kB | 16/237 kB Progress (5): 459/632 kB | 47 kB | 29/55 kB | 11 kB | 16/237 kB Progress (5): 463/632 kB | 47 kB | 29/55 kB | 11 kB | 16/237 kB Progress (5): 463/632 kB | 47 kB | 29/55 kB | 11 kB | 20/237 kB Progress (5): 463/632 kB | 47 kB | 29/55 kB | 11 kB | 25/237 kB Progress (5): 467/632 kB | 47 kB | 29/55 kB | 11 kB | 25/237 kB Progress (5): 471/632 kB | 47 kB | 29/55 kB | 11 kB | 25/237 kB Progress (5): 471/632 kB | 47 kB | 33/55 kB | 11 kB | 25/237 kB Progress (5): 475/632 kB | 47 kB | 33/55 kB | 11 kB | 25/237 kB Progress (5): 479/632 kB | 47 kB | 33/55 kB | 11 kB | 25/237 kB Progress (5): 483/632 kB | 47 kB | 33/55 kB | 11 kB | 25/237 kB Progress (5): 487/632 kB | 47 kB | 33/55 kB | 11 kB | 25/237 kB Progress (5): 487/632 kB | 47 kB | 33/55 kB | 11 kB | 29/237 kB Progress (5): 492/632 kB | 47 kB | 33/55 kB | 11 kB | 29/237 kB Progress (5): 496/632 kB | 47 kB | 33/55 kB | 11 kB | 29/237 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-7/plexus-i18n-1.0-beta-7.jar (11 kB at 8.0 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.0/doxia-site-renderer-1.0.jar (47 kB at 35 kB/s) +Progress (3): 496/632 kB | 37/55 kB | 29/237 kB Progress (3): 496/632 kB | 41/55 kB | 29/237 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar +Progress (3): 500/632 kB | 41/55 kB | 29/237 kB Progress (3): 504/632 kB | 41/55 kB | 29/237 kB Progress (3): 504/632 kB | 41/55 kB | 33/237 kB Progress (3): 504/632 kB | 41/55 kB | 37/237 kB Progress (3): 508/632 kB | 41/55 kB | 37/237 kB Progress (3): 512/632 kB | 41/55 kB | 37/237 kB Progress (3): 512/632 kB | 45/55 kB | 37/237 kB Progress (3): 512/632 kB | 45/55 kB | 41/237 kB Progress (3): 512/632 kB | 45/55 kB | 45/237 kB Progress (3): 516/632 kB | 45/55 kB | 45/237 kB Progress (3): 520/632 kB | 45/55 kB | 45/237 kB Progress (3): 520/632 kB | 45/55 kB | 49/237 kB Progress (3): 520/632 kB | 49/55 kB | 49/237 kB Progress (3): 524/632 kB | 49/55 kB | 49/237 kB Progress (3): 528/632 kB | 49/55 kB | 49/237 kB Progress (3): 528/632 kB | 49/55 kB | 53/237 kB Progress (3): 528/632 kB | 49/55 kB | 57/237 kB Progress (3): 528/632 kB | 49/55 kB | 61/237 kB Progress (3): 532/632 kB | 49/55 kB | 61/237 kB Progress (3): 537/632 kB | 49/55 kB | 61/237 kB Progress (3): 537/632 kB | 53/55 kB | 61/237 kB Progress (3): 537/632 kB | 55 kB | 61/237 kB Progress (3): 541/632 kB | 55 kB | 61/237 kB Progress (3): 545/632 kB | 55 kB | 61/237 kB Progress (4): 545/632 kB | 55 kB | 61/237 kB | 4.1/7.7 kB Progress (4): 545/632 kB | 55 kB | 61/237 kB | 7.7 kB Progress (4): 545/632 kB | 55 kB | 66/237 kB | 7.7 kB Progress (4): 545/632 kB | 55 kB | 70/237 kB | 7.7 kB Progress (4): 545/632 kB | 55 kB | 74/237 kB | 7.7 kB Progress (5): 545/632 kB | 55 kB | 74/237 kB | 7.7 kB | 4.1/392 kB Progress (5): 545/632 kB | 55 kB | 74/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 545/632 kB | 55 kB | 78/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 549/632 kB | 55 kB | 78/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 553/632 kB | 55 kB | 78/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 553/632 kB | 55 kB | 82/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 553/632 kB | 55 kB | 86/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 553/632 kB | 55 kB | 90/237 kB | 7.7 kB | 8.2/392 kB Progress (5): 553/632 kB | 55 kB | 90/237 kB | 7.7 kB | 12/392 kB Progress (5): 553/632 kB | 55 kB | 90/237 kB | 7.7 kB | 16/392 kB Progress (5): 553/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Progress (5): 557/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Progress (5): 561/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Progress (5): 565/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Progress (5): 569/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Progress (5): 573/632 kB | 55 kB | 94/237 kB | 7.7 kB | 16/392 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.0/doxia-core-1.0.jar (55 kB at 40 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar +Progress (4): 573/632 kB | 94/237 kB | 7.7 kB | 20/392 kB Progress (4): 573/632 kB | 94/237 kB | 7.7 kB | 25/392 kB Progress (4): 573/632 kB | 94/237 kB | 7.7 kB | 29/392 kB Progress (4): 573/632 kB | 94/237 kB | 7.7 kB | 33/392 kB Progress (4): 573/632 kB | 94/237 kB | 7.7 kB | 37/392 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.1.7/plexus-velocity-1.1.7.jar (7.7 kB at 5.6 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar +Progress (3): 578/632 kB | 94/237 kB | 37/392 kB Progress (3): 582/632 kB | 94/237 kB | 37/392 kB Progress (3): 582/632 kB | 98/237 kB | 37/392 kB Progress (3): 586/632 kB | 98/237 kB | 37/392 kB Progress (3): 586/632 kB | 98/237 kB | 41/392 kB Progress (3): 586/632 kB | 98/237 kB | 45/392 kB Progress (3): 590/632 kB | 98/237 kB | 45/392 kB Progress (3): 590/632 kB | 102/237 kB | 45/392 kB Progress (3): 594/632 kB | 102/237 kB | 45/392 kB Progress (3): 594/632 kB | 102/237 kB | 49/392 kB Progress (3): 598/632 kB | 102/237 kB | 49/392 kB Progress (3): 602/632 kB | 102/237 kB | 49/392 kB Progress (3): 602/632 kB | 106/237 kB | 49/392 kB Progress (3): 606/632 kB | 106/237 kB | 49/392 kB Progress (3): 606/632 kB | 106/237 kB | 53/392 kB Progress (3): 606/632 kB | 106/237 kB | 57/392 kB Progress (3): 610/632 kB | 106/237 kB | 57/392 kB Progress (3): 610/632 kB | 111/237 kB | 57/392 kB Progress (3): 614/632 kB | 111/237 kB | 57/392 kB Progress (4): 614/632 kB | 111/237 kB | 57/392 kB | 4.1/208 kB Progress (4): 614/632 kB | 111/237 kB | 61/392 kB | 4.1/208 kB Progress (4): 614/632 kB | 115/237 kB | 61/392 kB | 4.1/208 kB Progress (4): 614/632 kB | 119/237 kB | 61/392 kB | 4.1/208 kB Progress (4): 614/632 kB | 119/237 kB | 61/392 kB | 8.2/208 kB Progress (4): 618/632 kB | 119/237 kB | 61/392 kB | 8.2/208 kB Progress (4): 618/632 kB | 119/237 kB | 61/392 kB | 12/208 kB Progress (4): 618/632 kB | 123/237 kB | 61/392 kB | 12/208 kB Progress (4): 618/632 kB | 123/237 kB | 66/392 kB | 12/208 kB Progress (4): 618/632 kB | 123/237 kB | 70/392 kB | 12/208 kB Progress (4): 618/632 kB | 127/237 kB | 70/392 kB | 12/208 kB Progress (4): 618/632 kB | 127/237 kB | 70/392 kB | 16/208 kB Progress (5): 618/632 kB | 127/237 kB | 70/392 kB | 16/208 kB | 4.1/49 kB Progress (5): 618/632 kB | 127/237 kB | 70/392 kB | 16/208 kB | 8.2/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 16/208 kB | 8.2/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 16/208 kB | 12/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 16/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 20/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 24/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 28/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 32/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 36/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 40/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 44/208 kB | 16/49 kB Progress (5): 623/632 kB | 127/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 131/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 135/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 139/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 143/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 147/237 kB | 70/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 16/49 kB Progress (5): 623/632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 20/49 kB Progress (5): 623/632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 24/49 kB Progress (5): 627/632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 24/49 kB Progress (5): 631/632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 24/49 kB Progress (5): 632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 24/49 kB Progress (5): 632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 28/49 kB Progress (5): 632 kB | 147/237 kB | 74/392 kB | 49/208 kB | 32/49 kB Progress (5): 632 kB | 147/237 kB | 74/392 kB | 53/208 kB | 32/49 kB Progress (5): 632 kB | 152/237 kB | 74/392 kB | 53/208 kB | 32/49 kB Progress (5): 632 kB | 152/237 kB | 78/392 kB | 53/208 kB | 32/49 kB Progress (5): 632 kB | 156/237 kB | 78/392 kB | 53/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 53/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 57/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 61/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 65/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 69/208 kB | 32/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 69/208 kB | 36/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 69/208 kB | 40/49 kB Progress (5): 632 kB | 160/237 kB | 78/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 78/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 82/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 86/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 90/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 94/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 98/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 102/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 164/237 kB | 106/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 168/237 kB | 106/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 172/237 kB | 106/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 176/237 kB | 106/392 kB | 73/208 kB | 40/49 kB Progress (5): 632 kB | 176/237 kB | 106/392 kB | 77/208 kB | 40/49 kB Progress (5): 632 kB | 176/237 kB | 106/392 kB | 81/208 kB | 40/49 kB Progress (5): 632 kB | 176/237 kB | 106/392 kB | 85/208 kB | 40/49 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.20/commons-compress-1.20.jar (632 kB at 442 kB/s) +Progress (4): 176/237 kB | 106/392 kB | 85/208 kB | 44/49 kB Progress (4): 176/237 kB | 106/392 kB | 89/208 kB | 44/49 kB Progress (4): 176/237 kB | 111/392 kB | 89/208 kB | 44/49 kB Progress (4): 176/237 kB | 111/392 kB | 89/208 kB | 49/49 kB Progress (4): 176/237 kB | 111/392 kB | 89/208 kB | 49 kB Progress (4): 180/237 kB | 111/392 kB | 89/208 kB | 49 kB Progress (4): 184/237 kB | 111/392 kB | 89/208 kB | 49 kB Downloading from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.jar +Progress (4): 184/237 kB | 115/392 kB | 89/208 kB | 49 kB Progress (4): 184/237 kB | 115/392 kB | 93/208 kB | 49 kB Progress (4): 184/237 kB | 115/392 kB | 97/208 kB | 49 kB Progress (4): 184/237 kB | 119/392 kB | 97/208 kB | 49 kB Progress (4): 184/237 kB | 123/392 kB | 97/208 kB | 49 kB Progress (4): 184/237 kB | 127/392 kB | 97/208 kB | 49 kB Progress (4): 188/237 kB | 127/392 kB | 97/208 kB | 49 kB Progress (4): 193/237 kB | 127/392 kB | 97/208 kB | 49 kB Progress (4): 193/237 kB | 131/392 kB | 97/208 kB | 49 kB Progress (4): 193/237 kB | 135/392 kB | 97/208 kB | 49 kB Progress (4): 193/237 kB | 135/392 kB | 101/208 kB | 49 kB Progress (4): 193/237 kB | 135/392 kB | 105/208 kB | 49 kB Progress (4): 193/237 kB | 139/392 kB | 105/208 kB | 49 kB Progress (4): 193/237 kB | 143/392 kB | 105/208 kB | 49 kB Progress (4): 193/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 197/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 201/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 205/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 209/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 213/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 217/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 221/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 225/237 kB | 147/392 kB | 105/208 kB | 49 kB Progress (4): 225/237 kB | 147/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 147/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 152/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 156/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 160/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 164/392 kB | 109/208 kB | 49 kB Progress (4): 229/237 kB | 168/392 kB | 109/208 kB | 49 kB Progress (4): 233/237 kB | 168/392 kB | 109/208 kB | 49 kB Progress (4): 233/237 kB | 168/392 kB | 113/208 kB | 49 kB Progress (4): 237 kB | 168/392 kB | 113/208 kB | 49 kB Progress (4): 237 kB | 172/392 kB | 113/208 kB | 49 kB Progress (4): 237 kB | 176/392 kB | 113/208 kB | 49 kB Progress (5): 237 kB | 176/392 kB | 113/208 kB | 49 kB | 4.1/571 kB Progress (5): 237 kB | 176/392 kB | 113/208 kB | 49 kB | 8.2/571 kB Progress (5): 237 kB | 176/392 kB | 113/208 kB | 49 kB | 12/571 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.0/doxia-decoration-model-1.0.jar (49 kB at 34 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar +Progress (4): 237 kB | 176/392 kB | 113/208 kB | 16/571 kB Progress (4): 237 kB | 176/392 kB | 113/208 kB | 20/571 kB Progress (4): 237 kB | 176/392 kB | 113/208 kB | 25/571 kB Progress (4): 237 kB | 180/392 kB | 113/208 kB | 25/571 kB Progress (4): 237 kB | 180/392 kB | 117/208 kB | 25/571 kB Progress (4): 237 kB | 180/392 kB | 122/208 kB | 25/571 kB Progress (4): 237 kB | 180/392 kB | 126/208 kB | 25/571 kB Progress (4): 237 kB | 180/392 kB | 130/208 kB | 25/571 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-30/plexus-container-default-1.0-alpha-30.jar (237 kB at 162 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar +Progress (3): 180/392 kB | 130/208 kB | 29/571 kB Progress (3): 180/392 kB | 130/208 kB | 33/571 kB Progress (3): 180/392 kB | 134/208 kB | 33/571 kB Progress (3): 184/392 kB | 134/208 kB | 33/571 kB Progress (3): 188/392 kB | 134/208 kB | 33/571 kB Progress (3): 188/392 kB | 138/208 kB | 33/571 kB Progress (3): 188/392 kB | 138/208 kB | 37/571 kB Progress (3): 188/392 kB | 138/208 kB | 41/571 kB Progress (3): 188/392 kB | 142/208 kB | 41/571 kB Progress (3): 193/392 kB | 142/208 kB | 41/571 kB Progress (3): 193/392 kB | 146/208 kB | 41/571 kB Progress (3): 193/392 kB | 146/208 kB | 45/571 kB Progress (4): 193/392 kB | 146/208 kB | 45/571 kB | 4.1/47 kB Progress (4): 193/392 kB | 146/208 kB | 45/571 kB | 8.2/47 kB Progress (4): 193/392 kB | 146/208 kB | 45/571 kB | 12/47 kB Progress (4): 193/392 kB | 150/208 kB | 45/571 kB | 12/47 kB Progress (4): 197/392 kB | 150/208 kB | 45/571 kB | 12/47 kB Progress (4): 201/392 kB | 150/208 kB | 45/571 kB | 12/47 kB Progress (4): 201/392 kB | 154/208 kB | 45/571 kB | 12/47 kB Progress (4): 201/392 kB | 154/208 kB | 45/571 kB | 16/47 kB Progress (4): 201/392 kB | 154/208 kB | 49/571 kB | 16/47 kB Progress (5): 201/392 kB | 154/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 205/392 kB | 154/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 209/392 kB | 154/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 209/392 kB | 158/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 213/392 kB | 158/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 217/392 kB | 158/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 221/392 kB | 158/208 kB | 49/571 kB | 16/47 kB | 4.1/19 kB Progress (5): 221/392 kB | 158/208 kB | 49/571 kB | 16/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 49/571 kB | 20/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 49/571 kB | 25/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 49/571 kB | 29/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 53/571 kB | 29/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 57/571 kB | 29/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 61/571 kB | 29/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 64/571 kB | 29/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 64/571 kB | 33/47 kB | 8.2/19 kB Progress (5): 221/392 kB | 158/208 kB | 64/571 kB | 33/47 kB | 12/19 kB Progress (5): 221/392 kB | 158/208 kB | 64/571 kB | 37/47 kB | 12/19 kB Progress (5): 221/392 kB | 158/208 kB | 64/571 kB | 41/47 kB | 12/19 kB Progress (5): 225/392 kB | 158/208 kB | 64/571 kB | 41/47 kB | 12/19 kB Progress (5): 225/392 kB | 162/208 kB | 64/571 kB | 41/47 kB | 12/19 kB Progress (5): 229/392 kB | 162/208 kB | 64/571 kB | 41/47 kB | 12/19 kB Progress (5): 229/392 kB | 162/208 kB | 64/571 kB | 45/47 kB | 12/19 kB Progress (5): 229/392 kB | 162/208 kB | 64/571 kB | 45/47 kB | 16/19 kB Progress (5): 229/392 kB | 162/208 kB | 68/571 kB | 45/47 kB | 16/19 kB Progress (5): 229/392 kB | 162/208 kB | 68/571 kB | 45/47 kB | 19 kB Progress (5): 229/392 kB | 162/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 233/392 kB | 162/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 238/392 kB | 162/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 162/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 167/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 171/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 175/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 179/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 183/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 187/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 242/392 kB | 191/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 246/392 kB | 191/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 250/392 kB | 191/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 254/392 kB | 191/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 258/392 kB | 191/208 kB | 68/571 kB | 47 kB | 19 kB Progress (5): 258/392 kB | 191/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 262/392 kB | 191/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 266/392 kB | 191/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 266/392 kB | 195/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 270/392 kB | 195/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 195/208 kB | 72/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 195/208 kB | 76/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 195/208 kB | 80/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 199/208 kB | 80/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 203/208 kB | 80/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 208/208 kB | 80/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 208/208 kB | 85/571 kB | 47 kB | 19 kB Progress (5): 274/392 kB | 208/208 kB | 89/571 kB | 47 kB | 19 kB Progress (5): 279/392 kB | 208/208 kB | 89/571 kB | 47 kB | 19 kB Progress (5): 283/392 kB | 208/208 kB | 89/571 kB | 47 kB | 19 kB Progress (5): 283/392 kB | 208/208 kB | 93/571 kB | 47 kB | 19 kB Progress (5): 283/392 kB | 208/208 kB | 97/571 kB | 47 kB | 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.0/doxia-module-apt-1.0.jar (47 kB at 31 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.0/doxia-module-fml-1.0.jar (19 kB at 12 kB/s) +Progress (3): 283/392 kB | 208 kB | 97/571 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar +Progress (3): 283/392 kB | 208 kB | 101/571 kB Progress (3): 283/392 kB | 208 kB | 105/571 kB Progress (3): 283/392 kB | 208 kB | 109/571 kB Progress (3): 283/392 kB | 208 kB | 113/571 kB Progress (3): 287/392 kB | 208 kB | 113/571 kB Progress (3): 291/392 kB | 208 kB | 113/571 kB Progress (3): 291/392 kB | 208 kB | 117/571 kB Progress (3): 291/392 kB | 208 kB | 121/571 kB Progress (3): 291/392 kB | 208 kB | 125/571 kB Progress (3): 291/392 kB | 208 kB | 130/571 kB Progress (3): 291/392 kB | 208 kB | 134/571 kB Progress (3): 291/392 kB | 208 kB | 138/571 kB Progress (3): 291/392 kB | 208 kB | 142/571 kB Progress (3): 295/392 kB | 208 kB | 142/571 kB Progress (3): 295/392 kB | 208 kB | 146/571 kB Progress (3): 295/392 kB | 208 kB | 150/571 kB Progress (3): 299/392 kB | 208 kB | 150/571 kB Progress (3): 303/392 kB | 208 kB | 150/571 kB Progress (3): 307/392 kB | 208 kB | 150/571 kB Progress (3): 311/392 kB | 208 kB | 150/571 kB Progress (3): 315/392 kB | 208 kB | 150/571 kB Progress (3): 319/392 kB | 208 kB | 150/571 kB Progress (3): 324/392 kB | 208 kB | 150/571 kB Progress (3): 324/392 kB | 208 kB | 154/571 kB Progress (3): 324/392 kB | 208 kB | 158/571 kB Progress (3): 324/392 kB | 208 kB | 162/571 kB Progress (3): 328/392 kB | 208 kB | 162/571 kB Progress (3): 332/392 kB | 208 kB | 162/571 kB Progress (3): 336/392 kB | 208 kB | 162/571 kB Progress (3): 340/392 kB | 208 kB | 162/571 kB Progress (3): 344/392 kB | 208 kB | 162/571 kB Progress (3): 348/392 kB | 208 kB | 162/571 kB Progress (3): 352/392 kB | 208 kB | 162/571 kB Progress (3): 352/392 kB | 208 kB | 166/571 kB Progress (4): 352/392 kB | 208 kB | 166/571 kB | 4.1/22 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-lang/commons-lang/2.1/commons-lang-2.1.jar (208 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.jar +Progress (3): 352/392 kB | 166/571 kB | 8.2/22 kB Progress (3): 352/392 kB | 166/571 kB | 12/22 kB Progress (3): 352/392 kB | 166/571 kB | 16/22 kB Progress (4): 352/392 kB | 166/571 kB | 16/22 kB | 4.1/28 kB Progress (4): 352/392 kB | 166/571 kB | 20/22 kB | 4.1/28 kB Progress (4): 352/392 kB | 166/571 kB | 22 kB | 4.1/28 kB Progress (4): 356/392 kB | 166/571 kB | 22 kB | 4.1/28 kB Progress (4): 356/392 kB | 171/571 kB | 22 kB | 4.1/28 kB Progress (4): 356/392 kB | 175/571 kB | 22 kB | 4.1/28 kB Progress (4): 356/392 kB | 179/571 kB | 22 kB | 4.1/28 kB Progress (4): 356/392 kB | 179/571 kB | 22 kB | 8.2/28 kB Progress (4): 356/392 kB | 183/571 kB | 22 kB | 8.2/28 kB Progress (4): 356/392 kB | 187/571 kB | 22 kB | 8.2/28 kB Progress (4): 356/392 kB | 187/571 kB | 22 kB | 12/28 kB Progress (4): 360/392 kB | 187/571 kB | 22 kB | 12/28 kB Progress (4): 360/392 kB | 191/571 kB | 22 kB | 12/28 kB Progress (4): 360/392 kB | 195/571 kB | 22 kB | 12/28 kB Progress (4): 365/392 kB | 195/571 kB | 22 kB | 12/28 kB Progress (4): 369/392 kB | 195/571 kB | 22 kB | 12/28 kB Progress (4): 369/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (4): 373/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (4): 377/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (4): 381/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (4): 385/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (4): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 4.1/153 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 8.2/153 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 12/153 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 16/153 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 20/153 kB Progress (5): 389/392 kB | 195/571 kB | 22 kB | 16/28 kB | 25/153 kB Progress (5): 389/392 kB | 199/571 kB | 22 kB | 16/28 kB | 25/153 kB Progress (5): 389/392 kB | 203/571 kB | 22 kB | 16/28 kB | 25/153 kB Progress (5): 389/392 kB | 207/571 kB | 22 kB | 16/28 kB | 25/153 kB Progress (5): 389/392 kB | 207/571 kB | 22 kB | 16/28 kB | 29/153 kB Progress (5): 389/392 kB | 207/571 kB | 22 kB | 16/28 kB | 33/153 kB Progress (5): 389/392 kB | 207/571 kB | 22 kB | 16/28 kB | 37/153 kB Progress (5): 392 kB | 207/571 kB | 22 kB | 16/28 kB | 37/153 kB Progress (5): 392 kB | 207/571 kB | 22 kB | 20/28 kB | 37/153 kB Progress (5): 392 kB | 207/571 kB | 22 kB | 25/28 kB | 37/153 kB Progress (5): 392 kB | 207/571 kB | 22 kB | 25/28 kB | 41/153 kB Progress (5): 392 kB | 211/571 kB | 22 kB | 25/28 kB | 41/153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.0/doxia-module-xhtml-1.0.jar (22 kB at 14 kB/s) +Progress (4): 392 kB | 216/571 kB | 25/28 kB | 41/153 kB Progress (4): 392 kB | 216/571 kB | 25/28 kB | 45/153 kB Progress (4): 392 kB | 216/571 kB | 25/28 kB | 49/153 kB Progress (4): 392 kB | 216/571 kB | 28 kB | 49/153 kB Progress (4): 392 kB | 216/571 kB | 28 kB | 53/153 kB Progress (4): 392 kB | 220/571 kB | 28 kB | 53/153 kB Progress (4): 392 kB | 224/571 kB | 28 kB | 53/153 kB Progress (4): 392 kB | 224/571 kB | 28 kB | 57/153 kB Progress (4): 392 kB | 224/571 kB | 28 kB | 61/153 kB Progress (4): 392 kB | 228/571 kB | 28 kB | 61/153 kB Progress (4): 392 kB | 228/571 kB | 28 kB | 66/153 kB Progress (4): 392 kB | 232/571 kB | 28 kB | 66/153 kB Progress (4): 392 kB | 236/571 kB | 28 kB | 66/153 kB Progress (4): 392 kB | 236/571 kB | 28 kB | 70/153 kB Progress (4): 392 kB | 240/571 kB | 28 kB | 70/153 kB Progress (4): 392 kB | 240/571 kB | 28 kB | 74/153 kB Progress (4): 392 kB | 240/571 kB | 28 kB | 78/153 kB Progress (4): 392 kB | 244/571 kB | 28 kB | 78/153 kB Progress (4): 392 kB | 244/571 kB | 28 kB | 82/153 kB Progress (4): 392 kB | 248/571 kB | 28 kB | 82/153 kB Progress (4): 392 kB | 248/571 kB | 28 kB | 86/153 kB Progress (4): 392 kB | 248/571 kB | 28 kB | 90/153 kB Progress (4): 392 kB | 252/571 kB | 28 kB | 90/153 kB Progress (4): 392 kB | 257/571 kB | 28 kB | 90/153 kB Progress (4): 392 kB | 257/571 kB | 28 kB | 94/153 kB Progress (4): 392 kB | 261/571 kB | 28 kB | 94/153 kB Progress (4): 392 kB | 265/571 kB | 28 kB | 94/153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.5/velocity-1.5.jar (392 kB at 246 kB/s) +Progress (3): 269/571 kB | 28 kB | 94/153 kB Progress (3): 269/571 kB | 28 kB | 98/153 kB Progress (3): 269/571 kB | 28 kB | 102/153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.0/doxia-module-xdoc-1.0.jar (28 kB at 17 kB/s) +Progress (2): 269/571 kB | 106/153 kB Progress (2): 269/571 kB | 111/153 kB Progress (2): 273/571 kB | 111/153 kB Progress (2): 277/571 kB | 111/153 kB Progress (2): 277/571 kB | 115/153 kB Progress (2): 277/571 kB | 119/153 kB Progress (2): 281/571 kB | 119/153 kB Progress (2): 285/571 kB | 119/153 kB Progress (2): 285/571 kB | 123/153 kB Progress (2): 285/571 kB | 127/153 kB Progress (2): 289/571 kB | 127/153 kB Progress (2): 293/571 kB | 127/153 kB Progress (2): 293/571 kB | 131/153 kB Progress (2): 293/571 kB | 135/153 kB Progress (2): 293/571 kB | 139/153 kB Progress (2): 298/571 kB | 139/153 kB Progress (2): 302/571 kB | 139/153 kB Progress (2): 302/571 kB | 143/153 kB Progress (2): 302/571 kB | 147/153 kB Progress (2): 306/571 kB | 147/153 kB Progress (2): 310/571 kB | 147/153 kB Progress (2): 310/571 kB | 152/153 kB Progress (2): 310/571 kB | 153 kB Progress (2): 314/571 kB | 153 kB Progress (2): 318/571 kB | 153 kB Progress (2): 322/571 kB | 153 kB Progress (2): 326/571 kB | 153 kB Progress (2): 330/571 kB | 153 kB Progress (2): 334/571 kB | 153 kB Progress (2): 338/571 kB | 153 kB Progress (2): 343/571 kB | 153 kB Progress (2): 347/571 kB | 153 kB Progress (2): 351/571 kB | 153 kB Progress (2): 355/571 kB | 153 kB Progress (2): 359/571 kB | 153 kB Progress (2): 363/571 kB | 153 kB Progress (2): 367/571 kB | 153 kB Progress (2): 371/571 kB | 153 kB Progress (2): 375/571 kB | 153 kB Progress (2): 379/571 kB | 153 kB Progress (2): 384/571 kB | 153 kB Progress (2): 388/571 kB | 153 kB Progress (2): 392/571 kB | 153 kB Progress (2): 396/571 kB | 153 kB Progress (2): 400/571 kB | 153 kB Progress (2): 404/571 kB | 153 kB Progress (2): 408/571 kB | 153 kB Progress (2): 412/571 kB | 153 kB Progress (2): 416/571 kB | 153 kB Progress (2): 420/571 kB | 153 kB Progress (2): 424/571 kB | 153 kB Progress (2): 429/571 kB | 153 kB Progress (2): 433/571 kB | 153 kB Progress (2): 437/571 kB | 153 kB Progress (2): 441/571 kB | 153 kB Progress (2): 445/571 kB | 153 kB Progress (2): 449/571 kB | 153 kB Progress (2): 453/571 kB | 153 kB Progress (2): 457/571 kB | 153 kB Progress (2): 461/571 kB | 153 kB Progress (2): 465/571 kB | 153 kB Progress (2): 470/571 kB | 153 kB Progress (2): 474/571 kB | 153 kB Progress (2): 478/571 kB | 153 kB Progress (2): 482/571 kB | 153 kB Progress (2): 486/571 kB | 153 kB Progress (2): 490/571 kB | 153 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom/1.1/jdom-1.1.jar (153 kB at 94 kB/s) +Progress (1): 494/571 kB Progress (1): 498/571 kB Progress (1): 502/571 kB Progress (1): 506/571 kB Progress (1): 510/571 kB Progress (1): 515/571 kB Progress (1): 519/571 kB Progress (1): 523/571 kB Progress (1): 527/571 kB Progress (1): 531/571 kB Progress (1): 535/571 kB Progress (1): 539/571 kB Progress (1): 543/571 kB Progress (1): 547/571 kB Progress (1): 551/571 kB Progress (1): 556/571 kB Progress (1): 560/571 kB Progress (1): 564/571 kB Progress (1): 568/571 kB Progress (1): 571 kB Downloaded from central: https://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2/commons-collections-3.2.jar (571 kB at 347 kB/s) +[INFO] No MANIFEST.MF file found, generating manifest. +[INFO] Writing manifest: /src/commons-jxpath/target/osgi/MANIFEST.MF +[INFO] +[INFO] --- maven-resources-plugin:3.3.0:testResources (default-testResources) @ commons-jxpath --- +[INFO] Copying 7 resources +[INFO] Copying 2 resources to META-INF +[INFO] +[INFO] --- maven-compiler-plugin:3.11.0:testCompile (default-testCompile) @ commons-jxpath --- +[INFO] Changes detected - recompiling the module! :dependency +[INFO] Compiling 61 source files with javac [debug release 8] to target/test-classes +[WARNING] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ClassLoaderUtilTest.java:[147,52] non-varargs call of varargs method with inexact argument type for last parameter; + cast to java.lang.Class for a varargs call + cast to java.lang.Class[] for a non-varargs call and to suppress this warning +[WARNING] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/util/ClassLoaderUtilTest.java:[153,31] non-varargs call of varargs method with inexact argument type for last parameter; + cast to java.lang.Object for a varargs call + cast to java.lang.Object[] for a non-varargs call and to suppress this warning +[INFO] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath118Test.java: /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath118Test.java uses or overrides a deprecated API. +[INFO] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/issues/JXPath118Test.java: Recompile with -Xlint:deprecation for details. +[INFO] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/JXPathTestCase.java: Some input files use unchecked or unsafe operations. +[INFO] /src/commons-jxpath/src/test/java/org/apache/commons/jxpath/JXPathTestCase.java: Recompile with -Xlint:unchecked for details. +[INFO] +[INFO] --- animal-sniffer-maven-plugin:1.23:check (checkAPIcompatibility) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.23/animal-sniffer-1.23.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.23/animal-sniffer-1.23.pom (2.5 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.pom (1.7 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/java-boot-classpath-detector/1.23/java-boot-classpath-detector-1.23.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/java-boot-classpath-detector/1.23/java-boot-classpath-detector-1.23.pom (2.2 kB at 66 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom +Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.pom (5.3 kB at 176 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom +Progress (1): 4.1/4.9 kB Progress (1): 4.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/37/maven-shared-components-37.pom (4.9 kB at 175 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.23/animal-sniffer-1.23.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/java-boot-classpath-detector/1.23/java-boot-classpath-detector-1.23.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar +Progress (1): 4.1/39 kB Progress (1): 8.2/39 kB Progress (1): 12/39 kB Progress (1): 16/39 kB Progress (1): 20/39 kB Progress (1): 25/39 kB Progress (1): 29/39 kB Progress (1): 33/39 kB Progress (1): 37/39 kB Progress (1): 39 kB Progress (2): 39 kB | 4.1/4.9 kB Progress (2): 39 kB | 4.9 kB Progress (3): 39 kB | 4.9 kB | 4.1/58 kB Progress (3): 39 kB | 4.9 kB | 8.2/58 kB Progress (4): 39 kB | 4.9 kB | 8.2/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 12/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 16/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 20/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 24/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 28/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 32/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 36/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 40/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 44/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 49/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 53/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 57/58 kB | 3.1 kB Progress (4): 39 kB | 4.9 kB | 58 kB | 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer/1.23/animal-sniffer-1.23.jar (39 kB at 1.1 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar (3.1 kB at 78 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/java-boot-classpath-detector/1.23/java-boot-classpath-detector-1.23.jar (4.9 kB at 114 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar (58 kB at 1.4 MB/s) +[INFO] Checking unresolved references to org.codehaus.mojo.signature:java18:1.0 +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/signature/java18/1.0/java18-1.0.signature +Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.1/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.2/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.3/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.4/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.5/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.6/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.7/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.8/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 0.9/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.0/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.1/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.2/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.3/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.4/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.5/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.6/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.7/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.8/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 1.9/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0/2.0 MB Progress (1): 2.0 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/mojo/signature/java18/1.0/java18-1.0.signature (2.0 MB at 9.2 MB/s) +[INFO] +[INFO] --- jacoco-maven-plugin:0.8.10:prepare-agent (prepare-agent) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom +Progress (1): 3.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.pom (3.9 kB at 139 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom +Progress (1): 4.1/8.4 kB Progress (1): 8.2/8.4 kB Progress (1): 8.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/10/maven-shared-components-10.pom (8.4 kB at 312 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/9/maven-parent-9.pom +Progress (1): 4.1/33 kB Progress (1): 8.2/33 kB Progress (1): 12/33 kB Progress (1): 16/33 kB Progress (1): 20/33 kB Progress (1): 25/33 kB Progress (1): 29/33 kB Progress (1): 33/33 kB Progress (1): 33 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/9/maven-parent-9.pom (33 kB at 1.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.pom (1.5 kB at 56 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom +Progress (1): 4.1/9.0 kB Progress (1): 8.2/9.0 kB Progress (1): 9.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.6/maven-2.0.6.pom (9.0 kB at 335 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/5/maven-parent-5.pom (15 kB at 586 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom +Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.pom (4.1 kB at 156 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/8/maven-shared-components-8.pom (2.7 kB at 89 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/7/maven-parent-7.pom (21 kB at 625 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom +Progress (1): 765 B Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.pom (765 B at 31 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.2/maven-2.0.2.pom (13 kB at 507 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom +Progress (1): 767 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom (767 B at 30 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.pom (1.4 kB at 44 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.pom (1.3 kB at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.pom +Progress (1): 4.1/25 kB Progress (1): 8.2/25 kB Progress (1): 12/25 kB Progress (1): 16/25 kB Progress (1): 20/25 kB Progress (1): 24/25 kB Progress (1): 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.pom (25 kB at 611 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom +Progress (1): 588 B Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.pom (588 B at 20 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom +Progress (1): 4.1/6.4 kB Progress (1): 6.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/1.0-alpha-6/wagon-1.0-alpha-6.pom (6.4 kB at 200 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom +Progress (1): 4.1/5.3 kB Progress (1): 5.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.pom (5.3 kB at 204 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom +Progress (1): 4.1/9.8 kB Progress (1): 8.2/9.8 kB Progress (1): 9.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.12/plexus-1.0.12.pom (9.8 kB at 233 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.10/org.jacoco.agent-0.8.10.pom +Progress (1): 3.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.10/org.jacoco.agent-0.8.10.pom (3.5 kB at 121 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.10/org.jacoco.core-0.8.10.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.10/org.jacoco.core-0.8.10.pom (2.1 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.pom (2.4 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.pom (2.8 kB at 112 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.pom (2.6 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.10/org.jacoco.report-0.8.10.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.10/org.jacoco.report-0.8.10.pom (1.9 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.jar +Progress (1): 4.1/247 kB Progress (1): 8.2/247 kB Progress (1): 12/247 kB Progress (1): 16/247 kB Progress (2): 16/247 kB | 4.1/38 kB Progress (2): 16/247 kB | 8.2/38 kB Progress (2): 16/247 kB | 12/38 kB Progress (2): 20/247 kB | 12/38 kB Progress (2): 20/247 kB | 16/38 kB Progress (2): 25/247 kB | 16/38 kB Progress (2): 29/247 kB | 16/38 kB Progress (3): 29/247 kB | 16/38 kB | 4.1/39 kB Progress (4): 29/247 kB | 16/38 kB | 4.1/39 kB | 4.1/13 kB Progress (4): 29/247 kB | 16/38 kB | 4.1/39 kB | 8.2/13 kB Progress (4): 29/247 kB | 16/38 kB | 8.2/39 kB | 8.2/13 kB Progress (4): 33/247 kB | 16/38 kB | 8.2/39 kB | 8.2/13 kB Progress (4): 33/247 kB | 16/38 kB | 12/39 kB | 8.2/13 kB Progress (4): 33/247 kB | 16/38 kB | 16/39 kB | 8.2/13 kB Progress (4): 33/247 kB | 16/38 kB | 20/39 kB | 8.2/13 kB Progress (4): 33/247 kB | 16/38 kB | 20/39 kB | 12/13 kB Progress (4): 33/247 kB | 20/38 kB | 20/39 kB | 12/13 kB Progress (4): 33/247 kB | 20/38 kB | 25/39 kB | 12/13 kB Progress (4): 33/247 kB | 20/38 kB | 25/39 kB | 13 kB Progress (5): 33/247 kB | 20/38 kB | 25/39 kB | 13 kB | 4.1/78 kB Progress (5): 33/247 kB | 20/38 kB | 25/39 kB | 13 kB | 8.2/78 kB Progress (5): 37/247 kB | 20/38 kB | 25/39 kB | 13 kB | 8.2/78 kB Progress (5): 37/247 kB | 20/38 kB | 25/39 kB | 13 kB | 12/78 kB Progress (5): 37/247 kB | 20/38 kB | 29/39 kB | 13 kB | 12/78 kB Progress (5): 37/247 kB | 20/38 kB | 29/39 kB | 13 kB | 16/78 kB Progress (5): 37/247 kB | 25/38 kB | 29/39 kB | 13 kB | 16/78 kB Progress (5): 37/247 kB | 25/38 kB | 29/39 kB | 13 kB | 20/78 kB Progress (5): 37/247 kB | 25/38 kB | 29/39 kB | 13 kB | 25/78 kB Progress (5): 37/247 kB | 25/38 kB | 29/39 kB | 13 kB | 29/78 kB Progress (5): 37/247 kB | 25/38 kB | 29/39 kB | 13 kB | 33/78 kB Progress (5): 37/247 kB | 25/38 kB | 33/39 kB | 13 kB | 33/78 kB Progress (5): 41/247 kB | 25/38 kB | 33/39 kB | 13 kB | 33/78 kB Progress (5): 41/247 kB | 25/38 kB | 37/39 kB | 13 kB | 33/78 kB Progress (5): 41/247 kB | 25/38 kB | 37/39 kB | 13 kB | 37/78 kB Progress (5): 41/247 kB | 29/38 kB | 37/39 kB | 13 kB | 37/78 kB Progress (5): 41/247 kB | 33/38 kB | 37/39 kB | 13 kB | 37/78 kB Progress (5): 41/247 kB | 37/38 kB | 37/39 kB | 13 kB | 37/78 kB Progress (5): 41/247 kB | 38 kB | 37/39 kB | 13 kB | 37/78 kB Progress (5): 41/247 kB | 38 kB | 37/39 kB | 13 kB | 41/78 kB Progress (5): 41/247 kB | 38 kB | 39 kB | 13 kB | 41/78 kB Progress (5): 45/247 kB | 38 kB | 39 kB | 13 kB | 41/78 kB Progress (5): 49/247 kB | 38 kB | 39 kB | 13 kB | 41/78 kB Progress (5): 49/247 kB | 38 kB | 39 kB | 13 kB | 45/78 kB Progress (5): 49/247 kB | 38 kB | 39 kB | 13 kB | 49/78 kB Progress (5): 53/247 kB | 38 kB | 39 kB | 13 kB | 49/78 kB Progress (5): 57/247 kB | 38 kB | 39 kB | 13 kB | 49/78 kB Progress (5): 57/247 kB | 38 kB | 39 kB | 13 kB | 53/78 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.6/maven-plugin-api-2.0.6.jar (13 kB at 367 kB/s) +Progress (4): 61/247 kB | 38 kB | 39 kB | 53/78 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar +Progress (4): 61/247 kB | 38 kB | 39 kB | 57/78 kB Progress (4): 61/247 kB | 38 kB | 39 kB | 61/78 kB Progress (4): 61/247 kB | 38 kB | 39 kB | 66/78 kB Progress (4): 61/247 kB | 38 kB | 39 kB | 70/78 kB Progress (4): 61/247 kB | 38 kB | 39 kB | 74/78 kB Progress (4): 66/247 kB | 38 kB | 39 kB | 74/78 kB Progress (4): 66/247 kB | 38 kB | 39 kB | 78/78 kB Progress (4): 66/247 kB | 38 kB | 39 kB | 78 kB Progress (4): 70/247 kB | 38 kB | 39 kB | 78 kB Progress (4): 74/247 kB | 38 kB | 39 kB | 78 kB Progress (4): 78/247 kB | 38 kB | 39 kB | 78 kB Progress (4): 82/247 kB | 38 kB | 39 kB | 78 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.2.1/file-management-1.2.1.jar (38 kB at 916 kB/s) +Progress (3): 86/247 kB | 39 kB | 78 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar +Progress (3): 90/247 kB | 39 kB | 78 kB Progress (3): 94/247 kB | 39 kB | 78 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.1/maven-shared-io-1.1.jar (39 kB at 897 kB/s) +Progress (2): 98/247 kB | 78 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar +Progress (2): 102/247 kB | 78 kB Progress (2): 106/247 kB | 78 kB Progress (2): 111/247 kB | 78 kB Progress (2): 115/247 kB | 78 kB Progress (2): 119/247 kB | 78 kB Progress (2): 123/247 kB | 78 kB Progress (2): 127/247 kB | 78 kB Progress (2): 131/247 kB | 78 kB Progress (2): 135/247 kB | 78 kB Progress (2): 139/247 kB | 78 kB Progress (2): 143/247 kB | 78 kB Progress (2): 147/247 kB | 78 kB Progress (2): 152/247 kB | 78 kB Progress (2): 156/247 kB | 78 kB Progress (2): 160/247 kB | 78 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.2/maven-artifact-2.0.2.jar (78 kB at 1.6 MB/s) +Progress (1): 164/247 kB Progress (1): 168/247 kB Progress (2): 168/247 kB | 4.1/49 kB Progress (2): 172/247 kB | 4.1/49 kB Progress (2): 176/247 kB | 4.1/49 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar +Progress (2): 180/247 kB | 4.1/49 kB Progress (2): 180/247 kB | 8.2/49 kB Progress (2): 184/247 kB | 8.2/49 kB Progress (2): 184/247 kB | 12/49 kB Progress (2): 188/247 kB | 12/49 kB Progress (2): 188/247 kB | 16/49 kB Progress (2): 193/247 kB | 16/49 kB Progress (2): 197/247 kB | 16/49 kB Progress (2): 201/247 kB | 16/49 kB Progress (2): 201/247 kB | 20/49 kB Progress (2): 201/247 kB | 24/49 kB Progress (2): 201/247 kB | 28/49 kB Progress (2): 205/247 kB | 28/49 kB Progress (3): 205/247 kB | 28/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 32/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 36/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 40/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 44/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 49/49 kB | 4.1/20 kB Progress (3): 205/247 kB | 49 kB | 4.1/20 kB Progress (3): 209/247 kB | 49 kB | 4.1/20 kB Progress (3): 209/247 kB | 49 kB | 8.2/20 kB Progress (3): 213/247 kB | 49 kB | 8.2/20 kB Progress (3): 217/247 kB | 49 kB | 8.2/20 kB Progress (3): 217/247 kB | 49 kB | 12/20 kB Progress (3): 217/247 kB | 49 kB | 16/20 kB Progress (3): 221/247 kB | 49 kB | 16/20 kB Progress (3): 225/247 kB | 49 kB | 16/20 kB Progress (3): 225/247 kB | 49 kB | 20 kB Progress (4): 225/247 kB | 49 kB | 20 kB | 4.1/43 kB Progress (4): 225/247 kB | 49 kB | 20 kB | 8.2/43 kB Progress (4): 225/247 kB | 49 kB | 20 kB | 12/43 kB Progress (4): 229/247 kB | 49 kB | 20 kB | 12/43 kB Progress (4): 233/247 kB | 49 kB | 20 kB | 12/43 kB Progress (4): 238/247 kB | 49 kB | 20 kB | 12/43 kB Progress (4): 238/247 kB | 49 kB | 20 kB | 16/43 kB Progress (4): 242/247 kB | 49 kB | 20 kB | 16/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 16/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 20/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 24/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 28/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 32/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 36/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 40/43 kB Progress (4): 246/247 kB | 49 kB | 20 kB | 43 kB Progress (4): 247 kB | 49 kB | 20 kB | 43 kB Progress (5): 247 kB | 49 kB | 20 kB | 43 kB | 4.1/195 kB Progress (5): 247 kB | 49 kB | 20 kB | 43 kB | 8.2/195 kB Progress (5): 247 kB | 49 kB | 20 kB | 43 kB | 12/195 kB Progress (5): 247 kB | 49 kB | 20 kB | 43 kB | 16/195 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar (49 kB at 712 kB/s) +Progress (4): 247 kB | 20 kB | 43 kB | 20/195 kB Downloading from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.jar +Progress (4): 247 kB | 20 kB | 43 kB | 25/195 kB Progress (4): 247 kB | 20 kB | 43 kB | 29/195 kB Progress (4): 247 kB | 20 kB | 43 kB | 33/195 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar (20 kB at 274 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.10/org.jacoco.agent-0.8.10-runtime.jar +Progress (3): 247 kB | 43 kB | 37/195 kB Progress (3): 247 kB | 43 kB | 41/195 kB Progress (3): 247 kB | 43 kB | 45/195 kB Progress (3): 247 kB | 43 kB | 49/195 kB Progress (3): 247 kB | 43 kB | 53/195 kB Progress (3): 247 kB | 43 kB | 57/195 kB Progress (3): 247 kB | 43 kB | 61/195 kB Progress (3): 247 kB | 43 kB | 65/195 kB Progress (3): 247 kB | 43 kB | 69/195 kB Progress (3): 247 kB | 43 kB | 74/195 kB Progress (3): 247 kB | 43 kB | 78/195 kB Progress (3): 247 kB | 43 kB | 82/195 kB Progress (3): 247 kB | 43 kB | 86/195 kB Progress (3): 247 kB | 43 kB | 90/195 kB Progress (3): 247 kB | 43 kB | 94/195 kB Progress (3): 247 kB | 43 kB | 98/195 kB Progress (3): 247 kB | 43 kB | 102/195 kB Progress (3): 247 kB | 43 kB | 106/195 kB Progress (3): 247 kB | 43 kB | 110/195 kB Progress (3): 247 kB | 43 kB | 114/195 kB Progress (3): 247 kB | 43 kB | 119/195 kB Progress (3): 247 kB | 43 kB | 123/195 kB Progress (3): 247 kB | 43 kB | 127/195 kB Progress (3): 247 kB | 43 kB | 131/195 kB Progress (3): 247 kB | 43 kB | 135/195 kB Progress (3): 247 kB | 43 kB | 139/195 kB Progress (3): 247 kB | 43 kB | 143/195 kB Progress (3): 247 kB | 43 kB | 147/195 kB Progress (3): 247 kB | 43 kB | 151/195 kB Progress (3): 247 kB | 43 kB | 155/195 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.jar (247 kB at 3.0 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.10/org.jacoco.core-0.8.10.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/wagon-provider-api-1.0-alpha-6.jar (43 kB at 527 kB/s) +Progress (1): 160/195 kB Progress (1): 164/195 kB Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.jar +Progress (2): 164/195 kB | 4.1/383 kB Progress (2): 168/195 kB | 4.1/383 kB Progress (2): 168/195 kB | 8.2/383 kB Progress (2): 172/195 kB | 8.2/383 kB Progress (2): 172/195 kB | 12/383 kB Progress (2): 172/195 kB | 16/383 kB Progress (2): 172/195 kB | 20/383 kB Progress (2): 176/195 kB | 20/383 kB Progress (2): 176/195 kB | 24/383 kB Progress (2): 180/195 kB | 24/383 kB Progress (2): 180/195 kB | 28/383 kB Progress (2): 180/195 kB | 32/383 kB Progress (2): 184/195 kB | 32/383 kB Progress (2): 184/195 kB | 36/383 kB Progress (2): 184/195 kB | 40/383 kB Progress (2): 184/195 kB | 44/383 kB Progress (3): 184/195 kB | 44/383 kB | 4.1/299 kB Progress (3): 188/195 kB | 44/383 kB | 4.1/299 kB Progress (3): 188/195 kB | 44/383 kB | 8.2/299 kB Progress (3): 188/195 kB | 44/383 kB | 12/299 kB Progress (3): 188/195 kB | 44/383 kB | 16/299 kB Progress (3): 188/195 kB | 49/383 kB | 16/299 kB Progress (3): 188/195 kB | 49/383 kB | 20/299 kB Progress (3): 192/195 kB | 49/383 kB | 20/299 kB Progress (3): 195 kB | 49/383 kB | 20/299 kB Progress (3): 195 kB | 53/383 kB | 20/299 kB Progress (3): 195 kB | 53/383 kB | 24/299 kB Progress (3): 195 kB | 57/383 kB | 24/299 kB Progress (3): 195 kB | 57/383 kB | 28/299 kB Progress (3): 195 kB | 57/383 kB | 32/299 kB Progress (3): 195 kB | 61/383 kB | 32/299 kB Progress (3): 195 kB | 65/383 kB | 32/299 kB Progress (3): 195 kB | 65/383 kB | 36/299 kB Progress (3): 195 kB | 65/383 kB | 40/299 kB Progress (3): 195 kB | 69/383 kB | 40/299 kB Progress (3): 195 kB | 73/383 kB | 40/299 kB Progress (3): 195 kB | 73/383 kB | 45/299 kB Progress (3): 195 kB | 73/383 kB | 49/299 kB Progress (3): 195 kB | 77/383 kB | 49/299 kB Progress (3): 195 kB | 81/383 kB | 49/299 kB Progress (3): 195 kB | 81/383 kB | 53/299 kB Progress (4): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 4.1/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 8.2/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 12/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 16/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 20/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 25/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 29/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 4.1/204 kB | 33/122 kB Progress (5): 195 kB | 81/383 kB | 53/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 81/383 kB | 57/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 81/383 kB | 61/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 81/383 kB | 65/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 65/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 69/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 8.2/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 12/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 16/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 20/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 24/204 kB | 33/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 24/204 kB | 37/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 28/204 kB | 37/122 kB Progress (5): 195 kB | 85/383 kB | 73/299 kB | 32/204 kB | 37/122 kB Progress (5): 195 kB | 85/383 kB | 77/299 kB | 32/204 kB | 37/122 kB Progress (5): 195 kB | 85/383 kB | 77/299 kB | 36/204 kB | 37/122 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-9/plexus-container-default-1.0-alpha-9.jar (195 kB at 1.8 MB/s) +Progress (4): 89/383 kB | 77/299 kB | 36/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 36/204 kB | 37/122 kB Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar +Progress (4): 94/383 kB | 77/299 kB | 40/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 44/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 49/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 53/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 57/204 kB | 37/122 kB Progress (4): 94/383 kB | 77/299 kB | 61/204 kB | 37/122 kB Progress (4): 94/383 kB | 81/299 kB | 61/204 kB | 37/122 kB Progress (4): 94/383 kB | 85/299 kB | 61/204 kB | 37/122 kB Progress (4): 94/383 kB | 90/299 kB | 61/204 kB | 37/122 kB Progress (4): 94/383 kB | 94/299 kB | 61/204 kB | 37/122 kB Progress (4): 94/383 kB | 94/299 kB | 61/204 kB | 41/122 kB Progress (4): 94/383 kB | 94/299 kB | 61/204 kB | 45/122 kB Progress (4): 94/383 kB | 98/299 kB | 61/204 kB | 45/122 kB Progress (4): 94/383 kB | 98/299 kB | 65/204 kB | 45/122 kB Progress (4): 98/383 kB | 98/299 kB | 65/204 kB | 45/122 kB Progress (4): 98/383 kB | 98/299 kB | 69/204 kB | 45/122 kB Progress (4): 98/383 kB | 102/299 kB | 69/204 kB | 45/122 kB Progress (4): 98/383 kB | 106/299 kB | 69/204 kB | 45/122 kB Progress (4): 98/383 kB | 106/299 kB | 69/204 kB | 49/122 kB Progress (4): 98/383 kB | 106/299 kB | 69/204 kB | 53/122 kB Progress (4): 98/383 kB | 110/299 kB | 69/204 kB | 53/122 kB Progress (4): 98/383 kB | 110/299 kB | 73/204 kB | 53/122 kB Progress (4): 102/383 kB | 110/299 kB | 73/204 kB | 53/122 kB Progress (4): 106/383 kB | 110/299 kB | 73/204 kB | 53/122 kB Progress (4): 106/383 kB | 110/299 kB | 77/204 kB | 53/122 kB Progress (4): 110/383 kB | 110/299 kB | 77/204 kB | 53/122 kB Progress (4): 110/383 kB | 110/299 kB | 77/204 kB | 57/122 kB Progress (4): 110/383 kB | 110/299 kB | 77/204 kB | 61/122 kB Progress (4): 110/383 kB | 110/299 kB | 77/204 kB | 66/122 kB Progress (4): 110/383 kB | 114/299 kB | 77/204 kB | 66/122 kB Progress (4): 114/383 kB | 114/299 kB | 77/204 kB | 66/122 kB Progress (4): 114/383 kB | 118/299 kB | 77/204 kB | 66/122 kB Progress (4): 118/383 kB | 118/299 kB | 77/204 kB | 66/122 kB Progress (4): 122/383 kB | 118/299 kB | 77/204 kB | 66/122 kB Progress (4): 126/383 kB | 118/299 kB | 77/204 kB | 66/122 kB Progress (5): 126/383 kB | 118/299 kB | 77/204 kB | 66/122 kB | 4.1/72 kB Progress (5): 126/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 4.1/72 kB Progress (5): 126/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 8.2/72 kB Progress (5): 126/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 12/72 kB Progress (5): 126/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 16/72 kB Progress (5): 126/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 20/72 kB Progress (5): 130/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 20/72 kB Progress (5): 134/383 kB | 118/299 kB | 81/204 kB | 66/122 kB | 20/72 kB Progress (5): 134/383 kB | 118/299 kB | 81/204 kB | 70/122 kB | 20/72 kB Progress (5): 134/383 kB | 122/299 kB | 81/204 kB | 70/122 kB | 20/72 kB Progress (5): 139/383 kB | 122/299 kB | 81/204 kB | 70/122 kB | 20/72 kB Progress (5): 143/383 kB | 122/299 kB | 81/204 kB | 70/122 kB | 20/72 kB Progress (5): 143/383 kB | 122/299 kB | 81/204 kB | 74/122 kB | 20/72 kB Progress (5): 143/383 kB | 122/299 kB | 81/204 kB | 78/122 kB | 20/72 kB Progress (5): 143/383 kB | 122/299 kB | 81/204 kB | 78/122 kB | 25/72 kB Progress (5): 143/383 kB | 122/299 kB | 85/204 kB | 78/122 kB | 25/72 kB Progress (5): 143/383 kB | 122/299 kB | 85/204 kB | 78/122 kB | 29/72 kB Progress (5): 143/383 kB | 122/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 147/383 kB | 122/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 147/383 kB | 126/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 151/383 kB | 126/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 155/383 kB | 126/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 82/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 86/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 90/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 94/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 98/122 kB | 29/72 kB Progress (5): 159/383 kB | 126/299 kB | 85/204 kB | 98/122 kB | 33/72 kB Progress (5): 159/383 kB | 126/299 kB | 90/204 kB | 98/122 kB | 33/72 kB Progress (5): 159/383 kB | 126/299 kB | 90/204 kB | 98/122 kB | 37/72 kB Progress (5): 159/383 kB | 126/299 kB | 90/204 kB | 102/122 kB | 37/72 kB Progress (5): 159/383 kB | 126/299 kB | 90/204 kB | 106/122 kB | 37/72 kB Progress (5): 163/383 kB | 126/299 kB | 90/204 kB | 106/122 kB | 37/72 kB Progress (5): 163/383 kB | 131/299 kB | 90/204 kB | 106/122 kB | 37/72 kB Progress (5): 167/383 kB | 131/299 kB | 90/204 kB | 106/122 kB | 37/72 kB Progress (5): 167/383 kB | 135/299 kB | 90/204 kB | 106/122 kB | 37/72 kB Progress (5): 167/383 kB | 135/299 kB | 90/204 kB | 111/122 kB | 37/72 kB Progress (5): 167/383 kB | 135/299 kB | 90/204 kB | 115/122 kB | 37/72 kB Progress (5): 167/383 kB | 135/299 kB | 90/204 kB | 115/122 kB | 41/72 kB Progress (5): 167/383 kB | 135/299 kB | 94/204 kB | 115/122 kB | 41/72 kB Progress (5): 167/383 kB | 135/299 kB | 98/204 kB | 115/122 kB | 41/72 kB Progress (5): 167/383 kB | 135/299 kB | 98/204 kB | 115/122 kB | 45/72 kB Progress (5): 167/383 kB | 135/299 kB | 98/204 kB | 115/122 kB | 49/72 kB Progress (5): 167/383 kB | 135/299 kB | 98/204 kB | 115/122 kB | 53/72 kB Progress (5): 167/383 kB | 135/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 139/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 143/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 147/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 151/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 155/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 159/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 163/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 167/383 kB | 167/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 171/383 kB | 167/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 171/383 kB | 171/299 kB | 98/204 kB | 119/122 kB | 53/72 kB Progress (5): 171/383 kB | 171/299 kB | 98/204 kB | 122 kB | 53/72 kB Progress (5): 171/383 kB | 171/299 kB | 98/204 kB | 122 kB | 57/72 kB Progress (5): 171/383 kB | 171/299 kB | 98/204 kB | 122 kB | 61/72 kB Progress (5): 171/383 kB | 171/299 kB | 98/204 kB | 122 kB | 66/72 kB Progress (5): 171/383 kB | 171/299 kB | 102/204 kB | 122 kB | 66/72 kB Progress (5): 171/383 kB | 171/299 kB | 102/204 kB | 122 kB | 70/72 kB Progress (5): 171/383 kB | 176/299 kB | 102/204 kB | 122 kB | 70/72 kB Progress (5): 171/383 kB | 180/299 kB | 102/204 kB | 122 kB | 70/72 kB Progress (5): 175/383 kB | 180/299 kB | 102/204 kB | 122 kB | 70/72 kB Progress (5): 175/383 kB | 180/299 kB | 102/204 kB | 122 kB | 72 kB Progress (5): 175/383 kB | 180/299 kB | 106/204 kB | 122 kB | 72 kB Progress (5): 175/383 kB | 184/299 kB | 106/204 kB | 122 kB | 72 kB Progress (5): 180/383 kB | 184/299 kB | 106/204 kB | 122 kB | 72 kB Progress (5): 180/383 kB | 188/299 kB | 106/204 kB | 122 kB | 72 kB Progress (5): 180/383 kB | 188/299 kB | 110/204 kB | 122 kB | 72 kB Progress (5): 180/383 kB | 192/299 kB | 110/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 192/299 kB | 110/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 196/299 kB | 110/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 196/299 kB | 114/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 200/299 kB | 114/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 204/299 kB | 114/204 kB | 122 kB | 72 kB Progress (5): 184/383 kB | 204/299 kB | 118/204 kB | 122 kB | 72 kB Progress (5): 188/383 kB | 204/299 kB | 118/204 kB | 122 kB | 72 kB Progress (5): 192/383 kB | 204/299 kB | 118/204 kB | 122 kB | 72 kB Progress (5): 196/383 kB | 204/299 kB | 118/204 kB | 122 kB | 72 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.5/asm-9.5.jar (122 kB at 589 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar +Progress (4): 196/383 kB | 204/299 kB | 122/204 kB | 72 kB Progress (4): 196/383 kB | 208/299 kB | 122/204 kB | 72 kB Progress (4): 196/383 kB | 208/299 kB | 126/204 kB | 72 kB Progress (4): 200/383 kB | 208/299 kB | 126/204 kB | 72 kB Progress (4): 200/383 kB | 208/299 kB | 130/204 kB | 72 kB Progress (4): 200/383 kB | 208/299 kB | 135/204 kB | 72 kB Progress (4): 200/383 kB | 212/299 kB | 135/204 kB | 72 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar (72 kB at 339 kB/s) +Progress (3): 204/383 kB | 212/299 kB | 135/204 kB Progress (3): 208/383 kB | 212/299 kB | 135/204 kB Progress (3): 208/383 kB | 212/299 kB | 139/204 kB Progress (3): 208/383 kB | 217/299 kB | 139/204 kB Progress (3): 208/383 kB | 217/299 kB | 143/204 kB Progress (3): 212/383 kB | 217/299 kB | 143/204 kB Downloading from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.10/org.jacoco.report-0.8.10.jar +Progress (3): 216/383 kB | 217/299 kB | 143/204 kB Progress (3): 220/383 kB | 217/299 kB | 143/204 kB Progress (3): 225/383 kB | 217/299 kB | 143/204 kB Progress (3): 225/383 kB | 217/299 kB | 147/204 kB Progress (3): 225/383 kB | 221/299 kB | 147/204 kB Progress (3): 225/383 kB | 225/299 kB | 147/204 kB Progress (3): 225/383 kB | 229/299 kB | 147/204 kB Progress (3): 225/383 kB | 229/299 kB | 151/204 kB Progress (3): 225/383 kB | 229/299 kB | 155/204 kB Progress (3): 225/383 kB | 229/299 kB | 159/204 kB Progress (3): 225/383 kB | 229/299 kB | 163/204 kB Progress (3): 229/383 kB | 229/299 kB | 163/204 kB Progress (3): 229/383 kB | 229/299 kB | 167/204 kB Progress (3): 229/383 kB | 233/299 kB | 167/204 kB Progress (3): 229/383 kB | 233/299 kB | 171/204 kB Progress (3): 229/383 kB | 233/299 kB | 176/204 kB Progress (4): 229/383 kB | 233/299 kB | 176/204 kB | 4.1/52 kB Progress (4): 233/383 kB | 233/299 kB | 176/204 kB | 4.1/52 kB Progress (4): 233/383 kB | 233/299 kB | 176/204 kB | 8.2/52 kB Progress (4): 233/383 kB | 233/299 kB | 176/204 kB | 12/52 kB Progress (4): 233/383 kB | 233/299 kB | 180/204 kB | 12/52 kB Progress (4): 233/383 kB | 233/299 kB | 184/204 kB | 12/52 kB Progress (4): 233/383 kB | 237/299 kB | 184/204 kB | 12/52 kB Progress (4): 233/383 kB | 237/299 kB | 188/204 kB | 12/52 kB Progress (4): 233/383 kB | 237/299 kB | 188/204 kB | 16/52 kB Progress (4): 237/383 kB | 237/299 kB | 188/204 kB | 16/52 kB Progress (4): 241/383 kB | 237/299 kB | 188/204 kB | 16/52 kB Progress (4): 245/383 kB | 237/299 kB | 188/204 kB | 16/52 kB Progress (5): 245/383 kB | 237/299 kB | 188/204 kB | 16/52 kB | 4.1/131 kB Progress (5): 245/383 kB | 237/299 kB | 188/204 kB | 16/52 kB | 8.2/131 kB Progress (5): 245/383 kB | 237/299 kB | 192/204 kB | 16/52 kB | 8.2/131 kB Progress (5): 245/383 kB | 241/299 kB | 192/204 kB | 16/52 kB | 8.2/131 kB Progress (5): 245/383 kB | 241/299 kB | 196/204 kB | 16/52 kB | 8.2/131 kB Progress (5): 245/383 kB | 241/299 kB | 196/204 kB | 16/52 kB | 12/131 kB Progress (5): 249/383 kB | 241/299 kB | 196/204 kB | 16/52 kB | 12/131 kB Progress (5): 249/383 kB | 241/299 kB | 196/204 kB | 20/52 kB | 12/131 kB Progress (5): 253/383 kB | 241/299 kB | 196/204 kB | 20/52 kB | 12/131 kB Progress (5): 253/383 kB | 241/299 kB | 196/204 kB | 20/52 kB | 16/131 kB Progress (5): 253/383 kB | 241/299 kB | 200/204 kB | 20/52 kB | 16/131 kB Progress (5): 253/383 kB | 241/299 kB | 204/204 kB | 20/52 kB | 16/131 kB Progress (5): 253/383 kB | 245/299 kB | 204/204 kB | 20/52 kB | 16/131 kB Progress (5): 253/383 kB | 245/299 kB | 204 kB | 20/52 kB | 16/131 kB Progress (5): 253/383 kB | 245/299 kB | 204 kB | 20/52 kB | 20/131 kB Progress (5): 257/383 kB | 245/299 kB | 204 kB | 20/52 kB | 20/131 kB Progress (5): 257/383 kB | 245/299 kB | 204 kB | 25/52 kB | 20/131 kB Progress (5): 257/383 kB | 245/299 kB | 204 kB | 29/52 kB | 20/131 kB Progress (5): 261/383 kB | 245/299 kB | 204 kB | 29/52 kB | 20/131 kB Progress (5): 261/383 kB | 245/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 266/383 kB | 245/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 266/383 kB | 249/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 266/383 kB | 253/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 266/383 kB | 257/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 266/383 kB | 262/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 29/52 kB | 25/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 29/52 kB | 29/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 29/52 kB | 33/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 33/52 kB | 33/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 33/52 kB | 37/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 33/52 kB | 41/131 kB Progress (5): 270/383 kB | 262/299 kB | 204 kB | 33/52 kB | 44/131 kB Progress (5): 274/383 kB | 262/299 kB | 204 kB | 33/52 kB | 44/131 kB Progress (5): 274/383 kB | 266/299 kB | 204 kB | 33/52 kB | 44/131 kB Progress (5): 278/383 kB | 266/299 kB | 204 kB | 33/52 kB | 44/131 kB Progress (5): 278/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 282/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 286/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 290/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 294/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 298/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 302/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 307/383 kB | 266/299 kB | 204 kB | 33/52 kB | 48/131 kB Progress (5): 307/383 kB | 266/299 kB | 204 kB | 37/52 kB | 48/131 kB Progress (5): 311/383 kB | 266/299 kB | 204 kB | 37/52 kB | 48/131 kB Progress (5): 311/383 kB | 266/299 kB | 204 kB | 37/52 kB | 52/131 kB Progress (5): 311/383 kB | 266/299 kB | 204 kB | 37/52 kB | 56/131 kB Progress (5): 311/383 kB | 266/299 kB | 204 kB | 37/52 kB | 60/131 kB Progress (5): 311/383 kB | 270/299 kB | 204 kB | 37/52 kB | 60/131 kB Progress (5): 311/383 kB | 270/299 kB | 204 kB | 37/52 kB | 64/131 kB Progress (5): 311/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 315/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 319/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 323/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 327/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 331/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 335/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 339/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Progress (5): 343/383 kB | 270/299 kB | 204 kB | 37/52 kB | 68/131 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.10/org.jacoco.core-0.8.10.jar (204 kB at 786 kB/s) +Progress (4): 343/383 kB | 270/299 kB | 41/52 kB | 68/131 kB Progress (4): 347/383 kB | 270/299 kB | 41/52 kB | 68/131 kB Progress (4): 347/383 kB | 270/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 274/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 278/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 282/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 286/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 290/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 294/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 298/299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 299 kB | 41/52 kB | 73/131 kB Progress (4): 347/383 kB | 299 kB | 41/52 kB | 77/131 kB Progress (4): 352/383 kB | 299 kB | 41/52 kB | 77/131 kB Progress (4): 352/383 kB | 299 kB | 45/52 kB | 77/131 kB Progress (4): 356/383 kB | 299 kB | 45/52 kB | 77/131 kB Progress (4): 356/383 kB | 299 kB | 45/52 kB | 81/131 kB Progress (4): 360/383 kB | 299 kB | 45/52 kB | 81/131 kB Progress (4): 364/383 kB | 299 kB | 45/52 kB | 81/131 kB Progress (4): 364/383 kB | 299 kB | 49/52 kB | 81/131 kB Progress (4): 368/383 kB | 299 kB | 49/52 kB | 81/131 kB Progress (4): 368/383 kB | 299 kB | 49/52 kB | 85/131 kB Progress (4): 372/383 kB | 299 kB | 49/52 kB | 85/131 kB Progress (4): 372/383 kB | 299 kB | 52 kB | 85/131 kB Progress (4): 376/383 kB | 299 kB | 52 kB | 85/131 kB Progress (4): 380/383 kB | 299 kB | 52 kB | 85/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 85/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 89/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 93/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 97/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 101/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 105/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 109/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 113/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 118/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 122/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 126/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 130/131 kB Progress (4): 383 kB | 299 kB | 52 kB | 131 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.10/org.jacoco.agent-0.8.10-runtime.jar (299 kB at 1.1 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar (52 kB at 183 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/junit/junit/4.13.1/junit-4.13.1.jar (383 kB at 1.3 MB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.10/org.jacoco.report-0.8.10.jar (131 kB at 449 kB/s) +[INFO] argLine set to -javaagent:/work/m2/org/jacoco/org.jacoco.agent/0.8.10/org.jacoco.agent-0.8.10-runtime.jar=destfile=/src/commons-jxpath/target/jacoco.exec +[INFO] +[INFO] --- maven-surefire-plugin:3.0.0:test (default-test) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0/maven-surefire-common-3.0.0.pom +Progress (1): 4.1/5.9 kB Progress (1): 5.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0/maven-surefire-common-3.0.0.pom (5.9 kB at 197 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0/surefire-api-3.0.0.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0/surefire-api-3.0.0.pom (3.4 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0/surefire-logger-api-3.0.0.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0/surefire-logger-api-3.0.0.pom (3.2 kB at 109 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0/surefire-shared-utils-3.0.0.pom +Progress (1): 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0/surefire-shared-utils-3.0.0.pom (4.1 kB at 145 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0/surefire-extensions-api-3.0.0.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0/surefire-extensions-api-3.0.0.pom (3.2 kB at 119 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0/surefire-booter-3.0.0.pom +Progress (1): 4.1/4.3 kB Progress (1): 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0/surefire-booter-3.0.0.pom (4.3 kB at 155 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0/surefire-extensions-spi-3.0.0.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0/surefire-extensions-spi-3.0.0.pom (1.7 kB at 66 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom +Progress (1): 4.1/5.8 kB Progress (1): 5.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.pom (5.8 kB at 223 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.pom (2.3 kB at 90 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.2.5/maven-3.2.5.pom +Progress (1): 4.1/22 kB Progress (1): 8.2/22 kB Progress (1): 12/22 kB Progress (1): 16/22 kB Progress (1): 20/22 kB Progress (1): 22 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven/3.2.5/maven-3.2.5.pom (22 kB at 860 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom +Progress (1): 4.1/8.1 kB Progress (1): 8.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.pom (8.1 kB at 310 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.pom (2.2 kB at 84 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.pom (2.6 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.pom (2.2 kB at 89 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.pom (3.0 kB at 116 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom +Progress (1): 4.1/4.3 kB Progress (1): 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.pom (4.3 kB at 148 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.5/sisu-plexus-0.3.5.pom (14 kB at 508 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.pom (13 kB at 463 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom (4.8 kB at 184 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom +Progress (1): 4.1/6.3 kB Progress (1): 6.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.pom (6.3 kB at 241 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 25/32 kB Progress (1): 29/32 kB Progress (1): 32 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/weld/weld-parent/26/weld-parent-26.pom (32 kB at 1.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.pom (2.6 kB at 91 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.5/sisu-inject-0.3.5.pom (14 kB at 534 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom +Progress (1): 3.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.pom (3.0 kB at 120 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.pom (4.2 kB at 157 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.pom (2.1 kB at 82 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom +Progress (1): 3.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.pom (3.5 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3.pom (11 kB at 437 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/inject/guice-parent/3.2.3/guice-parent-3.2.3.pom (13 kB at 518 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/38/forge-parent-38.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/forge/forge-parent/38/forge-parent-38.pom (19 kB at 694 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0/maven-surefire-common-3.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0/surefire-logger-api-3.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0/surefire-api-3.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0/surefire-booter-3.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0/surefire-extensions-api-3.0.0.jar +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Progress (2): 14 kB | 4.1/308 kB Progress (2): 14 kB | 8.2/308 kB Progress (2): 14 kB | 12/308 kB Progress (2): 14 kB | 16/308 kB Progress (2): 14 kB | 20/308 kB Progress (2): 14 kB | 25/308 kB Progress (2): 14 kB | 29/308 kB Progress (2): 14 kB | 33/308 kB Progress (2): 14 kB | 37/308 kB Progress (2): 14 kB | 41/308 kB Progress (3): 14 kB | 41/308 kB | 4.1/26 kB Progress (4): 14 kB | 41/308 kB | 4.1/26 kB | 4.1/118 kB Progress (5): 14 kB | 41/308 kB | 4.1/26 kB | 4.1/118 kB | 4.1/171 kB Progress (5): 14 kB | 41/308 kB | 4.1/26 kB | 4.1/118 kB | 8.2/171 kB Progress (5): 14 kB | 41/308 kB | 8.2/26 kB | 4.1/118 kB | 8.2/171 kB Progress (5): 14 kB | 41/308 kB | 8.2/26 kB | 8.2/118 kB | 8.2/171 kB Progress (5): 14 kB | 45/308 kB | 8.2/26 kB | 8.2/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 8.2/26 kB | 8.2/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 8.2/26 kB | 12/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 8.2/26 kB | 16/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 8.2/26 kB | 20/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 12/26 kB | 20/118 kB | 8.2/171 kB Progress (5): 14 kB | 49/308 kB | 12/26 kB | 20/118 kB | 12/171 kB Progress (5): 14 kB | 49/308 kB | 16/26 kB | 20/118 kB | 12/171 kB Progress (5): 14 kB | 49/308 kB | 20/26 kB | 20/118 kB | 12/171 kB Progress (5): 14 kB | 49/308 kB | 20/26 kB | 25/118 kB | 12/171 kB Progress (5): 14 kB | 49/308 kB | 20/26 kB | 29/118 kB | 12/171 kB Progress (5): 14 kB | 53/308 kB | 20/26 kB | 29/118 kB | 12/171 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/3.0.0/surefire-logger-api-3.0.0.jar (14 kB at 339 kB/s) +Progress (4): 57/308 kB | 20/26 kB | 29/118 kB | 12/171 kB Progress (4): 61/308 kB | 20/26 kB | 29/118 kB | 12/171 kB Progress (4): 61/308 kB | 20/26 kB | 33/118 kB | 12/171 kB Progress (4): 61/308 kB | 20/26 kB | 37/118 kB | 12/171 kB Progress (4): 61/308 kB | 20/26 kB | 41/118 kB | 12/171 kB Progress (4): 61/308 kB | 20/26 kB | 45/118 kB | 12/171 kB Progress (4): 61/308 kB | 24/26 kB | 45/118 kB | 12/171 kB Progress (4): 61/308 kB | 24/26 kB | 45/118 kB | 16/171 kB Progress (4): 61/308 kB | 26 kB | 45/118 kB | 16/171 kB Progress (4): 61/308 kB | 26 kB | 49/118 kB | 16/171 kB Progress (4): 66/308 kB | 26 kB | 49/118 kB | 16/171 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0/surefire-extensions-spi-3.0.0.jar +Progress (4): 70/308 kB | 26 kB | 49/118 kB | 16/171 kB Progress (4): 70/308 kB | 26 kB | 53/118 kB | 16/171 kB Progress (4): 70/308 kB | 26 kB | 57/118 kB | 16/171 kB Progress (4): 70/308 kB | 26 kB | 57/118 kB | 20/171 kB Progress (4): 70/308 kB | 26 kB | 61/118 kB | 20/171 kB Progress (4): 74/308 kB | 26 kB | 61/118 kB | 20/171 kB Progress (4): 74/308 kB | 26 kB | 66/118 kB | 20/171 kB Progress (4): 74/308 kB | 26 kB | 66/118 kB | 24/171 kB Progress (4): 74/308 kB | 26 kB | 66/118 kB | 28/171 kB Progress (4): 78/308 kB | 26 kB | 66/118 kB | 28/171 kB Progress (4): 82/308 kB | 26 kB | 66/118 kB | 28/171 kB Progress (4): 82/308 kB | 26 kB | 66/118 kB | 32/171 kB Progress (4): 82/308 kB | 26 kB | 70/118 kB | 32/171 kB Progress (4): 86/308 kB | 26 kB | 70/118 kB | 32/171 kB Progress (4): 86/308 kB | 26 kB | 74/118 kB | 32/171 kB Progress (4): 86/308 kB | 26 kB | 74/118 kB | 36/171 kB Progress (4): 86/308 kB | 26 kB | 74/118 kB | 40/171 kB Progress (4): 86/308 kB | 26 kB | 78/118 kB | 40/171 kB Progress (4): 90/308 kB | 26 kB | 78/118 kB | 40/171 kB Progress (4): 90/308 kB | 26 kB | 82/118 kB | 40/171 kB Progress (4): 90/308 kB | 26 kB | 82/118 kB | 44/171 kB Progress (4): 90/308 kB | 26 kB | 86/118 kB | 44/171 kB Progress (4): 94/308 kB | 26 kB | 86/118 kB | 44/171 kB Progress (4): 98/308 kB | 26 kB | 86/118 kB | 44/171 kB Progress (4): 102/308 kB | 26 kB | 86/118 kB | 44/171 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-api/3.0.0/surefire-extensions-api-3.0.0.jar (26 kB at 382 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar +Progress (4): 102/308 kB | 86/118 kB | 44/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 86/118 kB | 49/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 49/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 53/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 57/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 61/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 65/171 kB | 4.1/8.2 kB Progress (4): 102/308 kB | 90/118 kB | 65/171 kB | 8.2 kB Progress (4): 106/308 kB | 90/118 kB | 65/171 kB | 8.2 kB Progress (4): 106/308 kB | 90/118 kB | 69/171 kB | 8.2 kB Progress (4): 106/308 kB | 90/118 kB | 73/171 kB | 8.2 kB Progress (4): 106/308 kB | 94/118 kB | 73/171 kB | 8.2 kB Progress (4): 106/308 kB | 94/118 kB | 77/171 kB | 8.2 kB Progress (4): 111/308 kB | 94/118 kB | 77/171 kB | 8.2 kB Progress (4): 111/308 kB | 94/118 kB | 81/171 kB | 8.2 kB Progress (4): 111/308 kB | 98/118 kB | 81/171 kB | 8.2 kB Progress (4): 111/308 kB | 98/118 kB | 85/171 kB | 8.2 kB Progress (4): 111/308 kB | 98/118 kB | 90/171 kB | 8.2 kB Progress (4): 115/308 kB | 98/118 kB | 90/171 kB | 8.2 kB Progress (4): 115/308 kB | 98/118 kB | 94/171 kB | 8.2 kB Progress (4): 115/308 kB | 98/118 kB | 98/171 kB | 8.2 kB Progress (4): 115/308 kB | 98/118 kB | 102/171 kB | 8.2 kB Progress (4): 115/308 kB | 102/118 kB | 102/171 kB | 8.2 kB Progress (4): 115/308 kB | 102/118 kB | 106/171 kB | 8.2 kB Progress (4): 119/308 kB | 102/118 kB | 106/171 kB | 8.2 kB Progress (4): 119/308 kB | 102/118 kB | 110/171 kB | 8.2 kB Progress (4): 119/308 kB | 106/118 kB | 110/171 kB | 8.2 kB Progress (4): 119/308 kB | 106/118 kB | 114/171 kB | 8.2 kB Progress (4): 123/308 kB | 106/118 kB | 114/171 kB | 8.2 kB Progress (4): 123/308 kB | 106/118 kB | 118/171 kB | 8.2 kB Progress (4): 123/308 kB | 111/118 kB | 118/171 kB | 8.2 kB Progress (4): 123/308 kB | 111/118 kB | 122/171 kB | 8.2 kB Progress (5): 123/308 kB | 111/118 kB | 122/171 kB | 8.2 kB | 4.1/136 kB Progress (5): 123/308 kB | 111/118 kB | 122/171 kB | 8.2 kB | 8.2/136 kB Progress (5): 123/308 kB | 111/118 kB | 122/171 kB | 8.2 kB | 12/136 kB Progress (5): 127/308 kB | 111/118 kB | 122/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 122/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 126/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 130/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 135/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 139/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 143/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 111/118 kB | 147/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 115/118 kB | 147/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 118 kB | 147/171 kB | 8.2 kB | 12/136 kB Progress (5): 131/308 kB | 118 kB | 147/171 kB | 8.2 kB | 16/136 kB Progress (5): 131/308 kB | 118 kB | 147/171 kB | 8.2 kB | 20/136 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-extensions-spi/3.0.0/surefire-extensions-spi-3.0.0.jar (8.2 kB at 94 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar +Progress (4): 135/308 kB | 118 kB | 147/171 kB | 20/136 kB Progress (4): 139/308 kB | 118 kB | 147/171 kB | 20/136 kB Progress (4): 143/308 kB | 118 kB | 147/171 kB | 20/136 kB Progress (4): 143/308 kB | 118 kB | 151/171 kB | 20/136 kB Progress (4): 143/308 kB | 118 kB | 151/171 kB | 25/136 kB Progress (4): 143/308 kB | 118 kB | 155/171 kB | 25/136 kB Progress (4): 147/308 kB | 118 kB | 155/171 kB | 25/136 kB Progress (4): 152/308 kB | 118 kB | 155/171 kB | 25/136 kB Progress (4): 156/308 kB | 118 kB | 155/171 kB | 25/136 kB Progress (4): 156/308 kB | 118 kB | 159/171 kB | 25/136 kB Progress (4): 156/308 kB | 118 kB | 163/171 kB | 25/136 kB Progress (4): 156/308 kB | 118 kB | 163/171 kB | 29/136 kB Progress (4): 156/308 kB | 118 kB | 167/171 kB | 29/136 kB Progress (4): 160/308 kB | 118 kB | 167/171 kB | 29/136 kB Progress (4): 164/308 kB | 118 kB | 167/171 kB | 29/136 kB Progress (4): 164/308 kB | 118 kB | 171 kB | 29/136 kB Progress (4): 164/308 kB | 118 kB | 171 kB | 33/136 kB Progress (4): 164/308 kB | 118 kB | 171 kB | 37/136 kB Progress (4): 164/308 kB | 118 kB | 171 kB | 41/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 41/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 45/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 49/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 53/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 57/136 kB Progress (4): 168/308 kB | 118 kB | 171 kB | 61/136 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/3.0.0/surefire-booter-3.0.0.jar (118 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0/surefire-shared-utils-3.0.0.jar +Progress (4): 168/308 kB | 171 kB | 61/136 kB | 4.1/61 kB Progress (4): 168/308 kB | 171 kB | 61/136 kB | 8.2/61 kB Progress (4): 172/308 kB | 171 kB | 61/136 kB | 8.2/61 kB Progress (4): 172/308 kB | 171 kB | 61/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 66/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 70/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 74/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 78/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 82/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 86/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 90/136 kB | 12/61 kB Progress (4): 172/308 kB | 171 kB | 90/136 kB | 16/61 kB Progress (4): 176/308 kB | 171 kB | 90/136 kB | 16/61 kB Progress (4): 176/308 kB | 171 kB | 90/136 kB | 20/61 kB Progress (4): 176/308 kB | 171 kB | 94/136 kB | 20/61 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/3.0.0/surefire-api-3.0.0.jar (171 kB at 1.4 MB/s) +Progress (3): 176/308 kB | 98/136 kB | 20/61 kB Progress (3): 176/308 kB | 98/136 kB | 25/61 kB Progress (3): 176/308 kB | 98/136 kB | 29/61 kB Progress (3): 180/308 kB | 98/136 kB | 29/61 kB Progress (3): 180/308 kB | 98/136 kB | 33/61 kB Progress (3): 180/308 kB | 102/136 kB | 33/61 kB Progress (3): 184/308 kB | 102/136 kB | 33/61 kB Progress (3): 188/308 kB | 102/136 kB | 33/61 kB Progress (3): 188/308 kB | 106/136 kB | 33/61 kB Progress (3): 188/308 kB | 106/136 kB | 37/61 kB Progress (3): 188/308 kB | 106/136 kB | 41/61 kB Progress (3): 188/308 kB | 106/136 kB | 45/61 kB Progress (3): 188/308 kB | 111/136 kB | 45/61 kB Progress (3): 193/308 kB | 111/136 kB | 45/61 kB Progress (3): 193/308 kB | 115/136 kB | 45/61 kB Progress (3): 193/308 kB | 119/136 kB | 45/61 kB Progress (3): 193/308 kB | 123/136 kB | 45/61 kB Progress (3): 193/308 kB | 123/136 kB | 49/61 kB Progress (3): 193/308 kB | 123/136 kB | 53/61 kB Progress (3): 193/308 kB | 127/136 kB | 53/61 kB Progress (4): 193/308 kB | 127/136 kB | 53/61 kB | 0/2.1 MB Progress (4): 193/308 kB | 127/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 193/308 kB | 131/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 197/308 kB | 131/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 197/308 kB | 135/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 197/308 kB | 135/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 197/308 kB | 135/136 kB | 57/61 kB | 0/2.1 MB Progress (4): 197/308 kB | 135/136 kB | 61 kB | 0/2.1 MB Progress (4): 197/308 kB | 135/136 kB | 61 kB | 0.1/2.1 MB Progress (4): 197/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 197/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 197/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 201/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 205/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 209/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 209/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 213/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 213/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 217/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 221/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 221/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 225/308 kB | 136 kB | 61 kB | 0.1/2.1 MB Progress (4): 225/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Progress (4): 229/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Progress (4): 229/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Progress (4): 233/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Progress (4): 238/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Progress (4): 238/308 kB | 136 kB | 61 kB | 0.2/2.1 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-api/1.0.0.v20140518/aether-api-1.0.0.v20140518.jar (136 kB at 927 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.1/maven-common-artifact-filters-3.1.1.jar (61 kB at 411 kB/s) +Progress (2): 242/308 kB | 0.2/2.1 MB Progress (2): 246/308 kB | 0.2/2.1 MB Progress (2): 246/308 kB | 0.2/2.1 MB Progress (2): 250/308 kB | 0.2/2.1 MB Progress (2): 254/308 kB | 0.2/2.1 MB Progress (2): 258/308 kB | 0.2/2.1 MB Progress (2): 262/308 kB | 0.2/2.1 MB Progress (2): 262/308 kB | 0.2/2.1 MB Progress (2): 266/308 kB | 0.2/2.1 MB Progress (2): 270/308 kB | 0.2/2.1 MB Progress (2): 274/308 kB | 0.2/2.1 MB Progress (2): 279/308 kB | 0.2/2.1 MB Progress (2): 279/308 kB | 0.2/2.1 MB Progress (2): 283/308 kB | 0.2/2.1 MB Progress (2): 287/308 kB | 0.2/2.1 MB Progress (2): 291/308 kB | 0.2/2.1 MB Progress (2): 295/308 kB | 0.2/2.1 MB Progress (2): 295/308 kB | 0.3/2.1 MB Progress (2): 299/308 kB | 0.3/2.1 MB Progress (2): 299/308 kB | 0.3/2.1 MB Progress (2): 299/308 kB | 0.3/2.1 MB Progress (2): 303/308 kB | 0.3/2.1 MB Progress (2): 307/308 kB | 0.3/2.1 MB Progress (2): 308 kB | 0.3/2.1 MB Progress (2): 308 kB | 0.3/2.1 MB Progress (2): 308 kB | 0.3/2.1 MB Progress (2): 308 kB | 0.3/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.4/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.5/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.6/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.7/2.1 MB Progress (2): 308 kB | 0.8/2.1 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/3.0.0/maven-surefire-common-3.0.0.jar (308 kB at 1.8 MB/s) +Progress (1): 0.8/2.1 MB Progress (1): 0.8/2.1 MB Progress (1): 0.8/2.1 MB Progress (1): 0.8/2.1 MB Progress (1): 0.8/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 0.9/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.0/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.1/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.2/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.3/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.4/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.5/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.6/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.7/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.8/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 1.9/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.0/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1/2.1 MB Progress (1): 2.1 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-shared-utils/3.0.0/surefire-shared-utils-3.0.0.jar (2.1 MB at 9.7 MB/s) +[INFO] Tests are skipped. +[INFO] +[INFO] --- maven-jar-plugin:3.3.0:jar (default-jar) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.pom +Progress (1): 3.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.pom (3.9 kB at 122 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.pom +Progress (1): 4.1/6.0 kB Progress (1): 6.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.pom (6.0 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.pom +Progress (1): 4.1/6.3 kB Progress (1): 6.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.pom (6.3 kB at 196 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.jar +Progress (1): 4.1/26 kB Progress (1): 8.2/26 kB Progress (1): 12/26 kB Progress (1): 16/26 kB Progress (2): 16/26 kB | 4.1/79 kB Progress (3): 16/26 kB | 4.1/79 kB | 4.1/211 kB Progress (3): 16/26 kB | 4.1/79 kB | 8.2/211 kB Progress (3): 16/26 kB | 4.1/79 kB | 12/211 kB Progress (3): 16/26 kB | 8.2/79 kB | 12/211 kB Progress (3): 20/26 kB | 8.2/79 kB | 12/211 kB Progress (3): 25/26 kB | 8.2/79 kB | 12/211 kB Progress (3): 25/26 kB | 12/79 kB | 12/211 kB Progress (3): 25/26 kB | 16/79 kB | 12/211 kB Progress (3): 25/26 kB | 16/79 kB | 16/211 kB Progress (3): 25/26 kB | 16/79 kB | 20/211 kB Progress (3): 25/26 kB | 16/79 kB | 25/211 kB Progress (3): 25/26 kB | 16/79 kB | 29/211 kB Progress (3): 25/26 kB | 16/79 kB | 33/211 kB Progress (3): 25/26 kB | 16/79 kB | 37/211 kB Progress (3): 25/26 kB | 16/79 kB | 41/211 kB Progress (3): 25/26 kB | 16/79 kB | 45/211 kB Progress (3): 25/26 kB | 16/79 kB | 49/211 kB Progress (3): 25/26 kB | 16/79 kB | 53/211 kB Progress (3): 25/26 kB | 16/79 kB | 57/211 kB Progress (3): 25/26 kB | 16/79 kB | 61/211 kB Progress (3): 25/26 kB | 20/79 kB | 61/211 kB Progress (3): 25/26 kB | 25/79 kB | 61/211 kB Progress (3): 25/26 kB | 29/79 kB | 61/211 kB Progress (3): 25/26 kB | 33/79 kB | 61/211 kB Progress (3): 25/26 kB | 37/79 kB | 61/211 kB Progress (3): 25/26 kB | 41/79 kB | 61/211 kB Progress (3): 26 kB | 41/79 kB | 61/211 kB Progress (3): 26 kB | 45/79 kB | 61/211 kB Progress (3): 26 kB | 49/79 kB | 61/211 kB Progress (3): 26 kB | 53/79 kB | 61/211 kB Progress (3): 26 kB | 57/79 kB | 61/211 kB Progress (3): 26 kB | 61/79 kB | 61/211 kB Progress (3): 26 kB | 66/79 kB | 61/211 kB Progress (3): 26 kB | 66/79 kB | 66/211 kB Progress (3): 26 kB | 66/79 kB | 70/211 kB Progress (3): 26 kB | 66/79 kB | 74/211 kB Progress (3): 26 kB | 66/79 kB | 78/211 kB Progress (3): 26 kB | 66/79 kB | 82/211 kB Progress (3): 26 kB | 66/79 kB | 86/211 kB Progress (3): 26 kB | 66/79 kB | 90/211 kB Progress (3): 26 kB | 66/79 kB | 94/211 kB Progress (3): 26 kB | 70/79 kB | 94/211 kB Progress (3): 26 kB | 70/79 kB | 98/211 kB Progress (3): 26 kB | 70/79 kB | 102/211 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.6.0/maven-archiver-3.6.0.jar (26 kB at 469 kB/s) +Progress (2): 74/79 kB | 102/211 kB Progress (2): 78/79 kB | 102/211 kB Progress (2): 79 kB | 102/211 kB Progress (2): 79 kB | 106/211 kB Progress (2): 79 kB | 111/211 kB Progress (2): 79 kB | 115/211 kB Progress (2): 79 kB | 119/211 kB Progress (2): 79 kB | 123/211 kB Progress (2): 79 kB | 127/211 kB Progress (2): 79 kB | 131/211 kB Progress (2): 79 kB | 135/211 kB Progress (2): 79 kB | 139/211 kB Progress (2): 79 kB | 143/211 kB Progress (2): 79 kB | 147/211 kB Progress (2): 79 kB | 152/211 kB Progress (2): 79 kB | 156/211 kB Progress (2): 79 kB | 160/211 kB Progress (2): 79 kB | 164/211 kB Progress (2): 79 kB | 168/211 kB Progress (2): 79 kB | 172/211 kB Progress (2): 79 kB | 176/211 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.0/plexus-io-3.4.0.jar (79 kB at 991 kB/s) +Progress (1): 180/211 kB Progress (1): 184/211 kB Progress (1): 188/211 kB Progress (1): 193/211 kB Progress (1): 197/211 kB Progress (1): 201/211 kB Progress (1): 205/211 kB Progress (1): 209/211 kB Progress (1): 211 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.4.0/plexus-archiver-4.4.0.jar (211 kB at 2.0 MB/s) +[INFO] Building jar: /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT.jar +[INFO] +[INFO] --- maven-site-plugin:3.12.1:attach-descriptor (attach-descriptor) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh/3.5.3/wagon-ssh-3.5.3.pom +Progress (1): 4.1/6.5 kB Progress (1): 6.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh/3.5.3/wagon-ssh-3.5.3.pom (6.5 kB at 223 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-providers/3.5.3/wagon-providers-3.5.3.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-providers/3.5.3/wagon-providers-3.5.3.pom (3.1 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.5.3/wagon-3.5.3.pom +Progress (1): 4.1/21 kB Progress (1): 8.2/21 kB Progress (1): 12/21 kB Progress (1): 16/21 kB Progress (1): 20/21 kB Progress (1): 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon/3.5.3/wagon-3.5.3.pom (21 kB at 757 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.pom (3.2 kB at 120 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.1.0/jna-4.1.0.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.1.0/jna-4.1.0.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.1.0/jna-platform-4.1.0.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.1.0/jna-platform-4.1.0.pom (1.5 kB at 58 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.jsch/0.0.9/jsch.agentproxy.jsch-0.0.9.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.jsch/0.0.9/jsch.agentproxy.jsch-0.0.9.pom (1.1 kB at 42 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.49/jsch-0.1.49.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.49/jsch-0.1.49.pom (3.2 kB at 124 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom +Progress (1): 823 B Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom (823 B at 32 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom (1.7 kB at 67 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom (2.7 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh-common/3.5.3/wagon-ssh-common-3.5.3.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh-common/3.5.3/wagon-ssh-common-3.5.3.pom (2.0 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.5.3/wagon-provider-api-3.5.3.pom +Progress (1): 1.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.5.3/wagon-provider-api-3.5.3.pom (1.9 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.pom (14 kB at 463 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.0/maven-reporting-api-3.1.0.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.0/maven-reporting-api-3.1.0.pom (3.8 kB at 134 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.pom (4.2 kB at 152 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom +Progress (1): 4.1/28 kB Progress (1): 8.2/28 kB Progress (1): 12/28 kB Progress (1): 16/28 kB Progress (1): 20/28 kB Progress (1): 24/28 kB Progress (1): 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 kB at 962 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom +Progress (1): 4.1/28 kB Progress (1): 8.2/28 kB Progress (1): 12/28 kB Progress (1): 16/28 kB Progress (1): 20/28 kB Progress (1): 24/28 kB Progress (1): 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.pom (28 kB at 1.0 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.pom (2.1 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.pom +Progress (1): 4.1/4.5 kB Progress (1): 4.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.pom (4.5 kB at 154 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.pom +Progress (1): 4.1/4.4 kB Progress (1): 4.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.pom (4.4 kB at 146 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.pom +Progress (1): 4.1/5.4 kB Progress (1): 5.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.pom (5.4 kB at 192 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.pom +Progress (1): 4.1/9.0 kB Progress (1): 8.2/9.0 kB Progress (1): 9.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.pom (9.0 kB at 236 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-java/0.42.14/flexmark-java-0.42.14.pom +Progress (1): 4.1/20 kB Progress (1): 8.2/20 kB Progress (1): 12/20 kB Progress (1): 16/20 kB Progress (1): 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-java/0.42.14/flexmark-java-0.42.14.pom (20 kB at 714 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.pom (2.5 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.pom +Progress (1): 792 B Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.pom (792 B at 26 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.pom (2.5 kB at 88 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.pom +Progress (1): 1.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.pom (1.8 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.pom +Progress (1): 4.1/9.2 kB Progress (1): 8.2/9.2 kB Progress (1): 9.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.pom (9.2 kB at 306 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.pom +Progress (1): 1.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.pom (1.1 kB at 40 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.pom (1.5 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.pom (1.6 kB at 59 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.pom (1.5 kB at 41 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.pom (2.1 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.pom (1.5 kB at 45 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.pom (1.5 kB at 56 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.pom +Progress (1): 2.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.pom (2.6 kB at 100 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.pom (1.3 kB at 46 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.pom (1.5 kB at 56 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.pom (1.7 kB at 62 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.pom (1.3 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.pom +Progress (1): 1.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.pom (1.4 kB at 51 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.pom (1.3 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.pom (1.3 kB at 49 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.pom (1.5 kB at 51 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.pom (1.3 kB at 47 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.pom +Progress (1): 1.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.pom (1.0 kB at 38 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.pom +Progress (1): 1.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.pom (1.6 kB at 61 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.pom (1.3 kB at 50 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.pom (1.5 kB at 52 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.pom (1.3 kB at 48 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.pom +Progress (1): 883 B Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.pom (883 B at 32 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.pom +Progress (1): 1.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.pom (1.5 kB at 54 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.pom +Progress (1): 4.1/7.3 kB Progress (1): 7.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.pom (7.3 kB at 280 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.pom (4.0 kB at 149 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.pom (1.7 kB at 59 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.pom +Progress (1): 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.pom (2.2 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.pom +Progress (1): 2.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.pom (2.0 kB at 74 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.pom (2.1 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.pom +Progress (1): 3.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.pom (3.4 kB at 122 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.46.v20220331/jetty-project-9.4.46.v20220331.pom +Progress (1): 4.1/71 kB Progress (1): 8.2/71 kB Progress (1): 12/71 kB Progress (1): 16/71 kB Progress (1): 20/71 kB Progress (1): 24/71 kB Progress (1): 28/71 kB Progress (1): 32/71 kB Progress (1): 36/71 kB Progress (1): 40/71 kB Progress (1): 44/71 kB Progress (1): 49/71 kB Progress (1): 53/71 kB Progress (1): 57/71 kB Progress (1): 61/71 kB Progress (1): 65/71 kB Progress (1): 69/71 kB Progress (1): 71 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-project/9.4.46.v20220331/jetty-project-9.4.46.v20220331.pom (71 kB at 2.4 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom +Progress (1): 4.1/5.6 kB Progress (1): 5.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.8.2/junit-bom-5.8.2.pom (5.6 kB at 217 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom +Progress (1): 4.1/7.2 kB Progress (1): 7.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/testcontainers/testcontainers-bom/1.16.1/testcontainers-bom-1.16.1.pom (7.2 kB at 278 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-bom/11.0.15.Final/infinispan-bom-11.0.15.Final.pom (19 kB at 697 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/infinispan/infinispan-build-configuration-parent/11.0.15.Final/infinispan-build-configuration-parent-11.0.15.Final.pom (13 kB at 493 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom +Progress (1): 4.1/66 kB Progress (1): 8.2/66 kB Progress (1): 12/66 kB Progress (1): 16/66 kB Progress (1): 20/66 kB Progress (1): 24/66 kB Progress (1): 28/66 kB Progress (1): 32/66 kB Progress (1): 36/66 kB Progress (1): 40/66 kB Progress (1): 44/66 kB Progress (1): 49/66 kB Progress (1): 53/66 kB Progress (1): 57/66 kB Progress (1): 61/66 kB Progress (1): 65/66 kB Progress (1): 66 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/36/jboss-parent-36.pom (66 kB at 2.2 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.pom (14 kB at 520 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.pom (4.0 kB at 149 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.pom +Progress (1): 4.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.pom (4.0 kB at 139 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.pom +Progress (1): 1.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.pom (1.2 kB at 43 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.pom (2.3 kB at 81 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.pom (2.1 kB at 70 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.pom +Progress (1): 1.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.pom (1.3 kB at 35 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.pom (3.2 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.pom +Progress (1): 1.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.pom (1.7 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh/3.5.3/wagon-ssh-3.5.3.jar +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.1.0/jna-4.1.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar +Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.1.0/jna-platform-4.1.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.jsch/0.0.9/jsch.agentproxy.jsch-0.0.9.jar +Progress (1): 4.1/32 kB Progress (1): 8.2/32 kB Progress (1): 12/32 kB Progress (1): 16/32 kB Progress (1): 20/32 kB Progress (1): 24/32 kB Progress (1): 28/32 kB Progress (2): 28/32 kB | 8.2/915 kB Progress (2): 28/32 kB | 16/915 kB Progress (2): 28/32 kB | 25/915 kB Progress (2): 28/32 kB | 33/915 kB Progress (2): 28/32 kB | 41/915 kB Progress (2): 32 kB | 41/915 kB Progress (2): 32 kB | 49/915 kB Progress (2): 32 kB | 57/915 kB Progress (3): 32 kB | 57/915 kB | 4.1/4.4 kB Progress (3): 32 kB | 57/915 kB | 4.4 kB Progress (4): 32 kB | 57/915 kB | 4.4 kB | 4.1/283 kB Progress (4): 32 kB | 65/915 kB | 4.4 kB | 4.1/283 kB Progress (4): 32 kB | 65/915 kB | 4.4 kB | 8.2/283 kB Progress (4): 32 kB | 65/915 kB | 4.4 kB | 12/283 kB Progress (4): 32 kB | 73/915 kB | 4.4 kB | 12/283 kB Progress (5): 32 kB | 73/915 kB | 4.4 kB | 12/283 kB | 0/1.5 MB Progress (5): 32 kB | 73/915 kB | 4.4 kB | 12/283 kB | 0/1.5 MB Progress (5): 32 kB | 82/915 kB | 4.4 kB | 12/283 kB | 0/1.5 MB Progress (5): 32 kB | 82/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 90/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 90/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 98/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 106/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 114/915 kB | 4.4 kB | 16/283 kB | 0/1.5 MB Progress (5): 32 kB | 114/915 kB | 4.4 kB | 20/283 kB | 0/1.5 MB Progress (5): 32 kB | 114/915 kB | 4.4 kB | 25/283 kB | 0/1.5 MB Progress (5): 32 kB | 114/915 kB | 4.4 kB | 29/283 kB | 0/1.5 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh/3.5.3/wagon-ssh-3.5.3.jar (32 kB at 852 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar +Progress (4): 114/915 kB | 4.4 kB | 29/283 kB | 0/1.5 MB Progress (4): 114/915 kB | 4.4 kB | 33/283 kB | 0/1.5 MB Progress (4): 122/915 kB | 4.4 kB | 33/283 kB | 0/1.5 MB Progress (4): 131/915 kB | 4.4 kB | 33/283 kB | 0/1.5 MB Progress (4): 139/915 kB | 4.4 kB | 33/283 kB | 0/1.5 MB Progress (4): 147/915 kB | 4.4 kB | 33/283 kB | 0/1.5 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch.agentproxy.jsch/0.0.9/jsch.agentproxy.jsch-0.0.9.jar (4.4 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh-common/3.5.3/wagon-ssh-common-3.5.3.jar +Progress (3): 155/915 kB | 33/283 kB | 0/1.5 MB Progress (3): 163/915 kB | 33/283 kB | 0/1.5 MB Progress (3): 172/915 kB | 33/283 kB | 0/1.5 MB Progress (3): 180/915 kB | 33/283 kB | 0/1.5 MB Progress (3): 180/915 kB | 37/283 kB | 0/1.5 MB Progress (3): 180/915 kB | 37/283 kB | 0/1.5 MB Progress (3): 180/915 kB | 41/283 kB | 0/1.5 MB Progress (3): 180/915 kB | 45/283 kB | 0/1.5 MB Progress (3): 188/915 kB | 45/283 kB | 0/1.5 MB Progress (3): 196/915 kB | 45/283 kB | 0/1.5 MB Progress (3): 204/915 kB | 45/283 kB | 0/1.5 MB Progress (3): 213/915 kB | 45/283 kB | 0/1.5 MB Progress (4): 213/915 kB | 45/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 45/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 49/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 53/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 57/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 57/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 61/283 kB | 0/1.5 MB | 4.1/9.4 kB Progress (4): 221/915 kB | 61/283 kB | 0.1/1.5 MB | 4.1/9.4 kB Progress (4): 229/915 kB | 61/283 kB | 0.1/1.5 MB | 4.1/9.4 kB Progress (4): 229/915 kB | 61/283 kB | 0.1/1.5 MB | 8.2/9.4 kB Progress (4): 229/915 kB | 61/283 kB | 0.1/1.5 MB | 9.4 kB Progress (4): 237/915 kB | 61/283 kB | 0.1/1.5 MB | 9.4 kB Progress (4): 237/915 kB | 61/283 kB | 0.1/1.5 MB | 9.4 kB Progress (4): 237/915 kB | 66/283 kB | 0.1/1.5 MB | 9.4 kB Progress (5): 237/915 kB | 66/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 237/915 kB | 66/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 237/915 kB | 66/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 237/915 kB | 70/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 245/915 kB | 70/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 4.1/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 245/915 kB | 74/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 245/915 kB | 78/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 245/915 kB | 82/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 254/915 kB | 82/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 262/915 kB | 82/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 262/915 kB | 86/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 262/915 kB | 86/283 kB | 0.1/1.5 MB | 9.4 kB | 8.2/26 kB Progress (5): 262/915 kB | 86/283 kB | 0.1/1.5 MB | 9.4 kB | 12/26 kB Progress (5): 262/915 kB | 86/283 kB | 0.1/1.5 MB | 9.4 kB | 12/26 kB Progress (5): 262/915 kB | 90/283 kB | 0.1/1.5 MB | 9.4 kB | 12/26 kB Progress (5): 270/915 kB | 90/283 kB | 0.1/1.5 MB | 9.4 kB | 12/26 kB Progress (5): 278/915 kB | 90/283 kB | 0.1/1.5 MB | 9.4 kB | 12/26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar (9.4 kB at 113 kB/s) +Progress (4): 286/915 kB | 90/283 kB | 0.1/1.5 MB | 12/26 kB Progress (4): 286/915 kB | 94/283 kB | 0.1/1.5 MB | 12/26 kB Progress (4): 286/915 kB | 94/283 kB | 0.1/1.5 MB | 12/26 kB Progress (4): 286/915 kB | 94/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 286/915 kB | 94/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 286/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 294/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 303/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 311/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 319/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 327/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.5.3/wagon-provider-api-3.5.3.jar +Progress (4): 335/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 344/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 352/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 360/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 368/915 kB | 98/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 368/915 kB | 102/283 kB | 0.1/1.5 MB | 16/26 kB Progress (4): 368/915 kB | 102/283 kB | 0.2/1.5 MB | 16/26 kB Progress (4): 368/915 kB | 102/283 kB | 0.2/1.5 MB | 20/26 kB Progress (4): 368/915 kB | 102/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 368/915 kB | 102/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 368/915 kB | 106/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 376/915 kB | 106/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 376/915 kB | 106/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 376/915 kB | 111/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 376/915 kB | 115/283 kB | 0.2/1.5 MB | 25/26 kB Progress (4): 376/915 kB | 115/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 376/915 kB | 119/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 376/915 kB | 123/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 376/915 kB | 123/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 123/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 123/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 123/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 127/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 131/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 131/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 385/915 kB | 131/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 393/915 kB | 131/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 393/915 kB | 135/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 393/915 kB | 139/283 kB | 0.2/1.5 MB | 26 kB Progress (4): 393/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB Progress (5): 393/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 401/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 409/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 409/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 409/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 409/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 417/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 426/915 kB | 143/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 426/915 kB | 147/283 kB | 0.2/1.5 MB | 26 kB | 4.1/55 kB Progress (5): 426/915 kB | 147/283 kB | 0.2/1.5 MB | 26 kB | 8.2/55 kB Progress (5): 426/915 kB | 152/283 kB | 0.2/1.5 MB | 26 kB | 8.2/55 kB Progress (5): 434/915 kB | 152/283 kB | 0.2/1.5 MB | 26 kB | 8.2/55 kB Progress (5): 442/915 kB | 152/283 kB | 0.2/1.5 MB | 26 kB | 8.2/55 kB Progress (5): 442/915 kB | 152/283 kB | 0.2/1.5 MB | 26 kB | 8.2/55 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-ssh-common/3.5.3/wagon-ssh-common-3.5.3.jar (26 kB at 226 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.jar +Progress (4): 442/915 kB | 152/283 kB | 0.3/1.5 MB | 8.2/55 kB Progress (4): 442/915 kB | 152/283 kB | 0.3/1.5 MB | 8.2/55 kB Progress (4): 450/915 kB | 152/283 kB | 0.3/1.5 MB | 8.2/55 kB Progress (4): 450/915 kB | 156/283 kB | 0.3/1.5 MB | 8.2/55 kB Progress (4): 450/915 kB | 160/283 kB | 0.3/1.5 MB | 8.2/55 kB Progress (4): 450/915 kB | 160/283 kB | 0.3/1.5 MB | 12/55 kB Progress (4): 450/915 kB | 160/283 kB | 0.3/1.5 MB | 16/55 kB Progress (4): 458/915 kB | 160/283 kB | 0.3/1.5 MB | 16/55 kB Progress (4): 458/915 kB | 160/283 kB | 0.3/1.5 MB | 16/55 kB Progress (4): 467/915 kB | 160/283 kB | 0.3/1.5 MB | 16/55 kB Progress (4): 467/915 kB | 160/283 kB | 0.3/1.5 MB | 20/55 kB Progress (4): 467/915 kB | 164/283 kB | 0.3/1.5 MB | 20/55 kB Progress (4): 467/915 kB | 164/283 kB | 0.3/1.5 MB | 25/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 25/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 25/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 25/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 29/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 33/55 kB Progress (4): 475/915 kB | 164/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 168/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 172/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 176/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 180/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 184/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 188/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 188/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 475/915 kB | 188/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 483/915 kB | 188/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 483/915 kB | 193/283 kB | 0.3/1.5 MB | 37/55 kB Progress (4): 483/915 kB | 193/283 kB | 0.3/1.5 MB | 41/55 kB Progress (5): 483/915 kB | 193/283 kB | 0.3/1.5 MB | 41/55 kB | 4.1/31 kB Progress (5): 483/915 kB | 193/283 kB | 0.3/1.5 MB | 41/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 193/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 197/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 201/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 205/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 483/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 491/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 491/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 499/915 kB | 209/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 45/55 kB | 8.2/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 8.2/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 12/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 16/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 20/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 24/31 kB Progress (5): 499/915 kB | 213/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 217/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 221/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 225/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 229/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 233/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 238/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 242/283 kB | 0.3/1.5 MB | 49/55 kB | 28/31 kB Progress (5): 499/915 kB | 242/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 507/915 kB | 242/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 507/915 kB | 242/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 516/915 kB | 242/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 524/915 kB | 242/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 524/915 kB | 246/283 kB | 0.3/1.5 MB | 53/55 kB | 28/31 kB Progress (5): 524/915 kB | 246/283 kB | 0.3/1.5 MB | 55 kB | 28/31 kB Progress (5): 524/915 kB | 246/283 kB | 0.3/1.5 MB | 55 kB | 31 kB Progress (5): 532/915 kB | 246/283 kB | 0.3/1.5 MB | 55 kB | 31 kB Progress (5): 540/915 kB | 246/283 kB | 0.3/1.5 MB | 55 kB | 31 kB Progress (5): 540/915 kB | 246/283 kB | 0.3/1.5 MB | 55 kB | 31 kB Progress (5): 540/915 kB | 246/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 540/915 kB | 250/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 250/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 254/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 258/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 258/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 258/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 262/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 548/915 kB | 266/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 557/915 kB | 266/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 557/915 kB | 270/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 557/915 kB | 270/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 557/915 kB | 270/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 557/915 kB | 274/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 565/915 kB | 274/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 565/915 kB | 274/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 565/915 kB | 279/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 573/915 kB | 279/283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 573/915 kB | 283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 573/915 kB | 283 kB | 0.4/1.5 MB | 55 kB | 31 kB Progress (5): 581/915 kB | 283 kB | 0.4/1.5 MB | 55 kB | 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/wagon/wagon-provider-api/3.5.3/wagon-provider-api-3.5.3.jar (55 kB at 332 kB/s) +Progress (4): 581/915 kB | 283 kB | 0.4/1.5 MB | 31 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar +Progress (4): 589/915 kB | 283 kB | 0.4/1.5 MB | 31 kB Progress (4): 589/915 kB | 283 kB | 0.4/1.5 MB | 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-exec/1.6.0/maven-reporting-exec-1.6.0.jar (31 kB at 183 kB/s) +Progress (3): 598/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 606/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 614/915 kB | 283 kB | 0.4/1.5 MB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar +Progress (3): 614/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 614/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 622/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 622/915 kB | 283 kB | 0.4/1.5 MB Progress (3): 622/915 kB | 283 kB | 0.5/1.5 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/jcraft/jsch/0.1.55/jsch-0.1.55.jar (283 kB at 1.5 MB/s) +Progress (2): 630/915 kB | 0.5/1.5 MB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar +Progress (2): 630/915 kB | 0.5/1.5 MB Progress (2): 630/915 kB | 0.5/1.5 MB Progress (2): 639/915 kB | 0.5/1.5 MB Progress (2): 639/915 kB | 0.5/1.5 MB Progress (3): 639/915 kB | 0.5/1.5 MB | 4.1/55 kB Progress (3): 647/915 kB | 0.5/1.5 MB | 4.1/55 kB Progress (3): 647/915 kB | 0.5/1.5 MB | 4.1/55 kB Progress (3): 655/915 kB | 0.5/1.5 MB | 4.1/55 kB Progress (3): 655/915 kB | 0.5/1.5 MB | 8.2/55 kB Progress (3): 655/915 kB | 0.5/1.5 MB | 12/55 kB Progress (3): 663/915 kB | 0.5/1.5 MB | 12/55 kB Progress (3): 663/915 kB | 0.5/1.5 MB | 12/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 12/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 16/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 16/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 20/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 25/55 kB Progress (3): 671/915 kB | 0.5/1.5 MB | 29/55 kB Progress (3): 680/915 kB | 0.5/1.5 MB | 29/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 29/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 33/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 37/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 37/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 37/55 kB Progress (3): 688/915 kB | 0.5/1.5 MB | 41/55 kB Progress (3): 696/915 kB | 0.5/1.5 MB | 41/55 kB Progress (4): 696/915 kB | 0.5/1.5 MB | 41/55 kB | 4.1/608 kB Progress (4): 704/915 kB | 0.5/1.5 MB | 41/55 kB | 4.1/608 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 41/55 kB | 4.1/608 kB | 4.1/26 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 45/55 kB | 4.1/608 kB | 4.1/26 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 45/55 kB | 4.1/608 kB | 4.1/26 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 49/55 kB | 4.1/608 kB | 4.1/26 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 49/55 kB | 4.1/608 kB | 8.2/26 kB Progress (5): 704/915 kB | 0.5/1.5 MB | 49/55 kB | 4.1/608 kB | 12/26 kB Progress (5): 712/915 kB | 0.5/1.5 MB | 49/55 kB | 4.1/608 kB | 12/26 kB Progress (5): 720/915 kB | 0.5/1.5 MB | 49/55 kB | 4.1/608 kB | 12/26 kB Progress (5): 720/915 kB | 0.5/1.5 MB | 49/55 kB | 8.2/608 kB | 12/26 kB Progress (5): 720/915 kB | 0.5/1.5 MB | 49/55 kB | 12/608 kB | 12/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 49/55 kB | 12/608 kB | 12/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 49/55 kB | 12/608 kB | 16/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 53/55 kB | 12/608 kB | 16/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 53/55 kB | 12/608 kB | 20/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 53/55 kB | 12/608 kB | 20/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 53/55 kB | 12/608 kB | 25/26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 53/55 kB | 12/608 kB | 26 kB Progress (5): 729/915 kB | 0.5/1.5 MB | 55 kB | 12/608 kB | 26 kB Progress (5): 737/915 kB | 0.5/1.5 MB | 55 kB | 12/608 kB | 26 kB Progress (5): 737/915 kB | 0.5/1.5 MB | 55 kB | 16/608 kB | 26 kB Progress (5): 745/915 kB | 0.5/1.5 MB | 55 kB | 16/608 kB | 26 kB Progress (5): 745/915 kB | 0.5/1.5 MB | 55 kB | 20/608 kB | 26 kB Progress (5): 745/915 kB | 0.5/1.5 MB | 55 kB | 25/608 kB | 26 kB Progress (5): 745/915 kB | 0.5/1.5 MB | 55 kB | 25/608 kB | 26 kB Progress (5): 745/915 kB | 0.5/1.5 MB | 55 kB | 29/608 kB | 26 kB Progress (5): 753/915 kB | 0.5/1.5 MB | 55 kB | 29/608 kB | 26 kB Progress (5): 753/915 kB | 0.5/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 761/915 kB | 0.5/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 770/915 kB | 0.5/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 778/915 kB | 0.5/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 778/915 kB | 0.6/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 786/915 kB | 0.6/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 786/915 kB | 0.6/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 794/915 kB | 0.6/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 33/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 37/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 41/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 45/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 49/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 53/608 kB | 26 kB Progress (5): 802/915 kB | 0.6/1.5 MB | 55 kB | 57/608 kB | 26 kB Progress (5): 811/915 kB | 0.6/1.5 MB | 55 kB | 57/608 kB | 26 kB Progress (5): 819/915 kB | 0.6/1.5 MB | 55 kB | 57/608 kB | 26 kB Progress (5): 819/915 kB | 0.6/1.5 MB | 55 kB | 57/608 kB | 26 kB Progress (5): 827/915 kB | 0.6/1.5 MB | 55 kB | 57/608 kB | 26 kB Progress (5): 827/915 kB | 0.6/1.5 MB | 55 kB | 61/608 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.2.5/maven-artifact-3.2.5.jar (55 kB at 246 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.2.5/maven-repository-metadata-3.2.5.jar (26 kB at 115 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar +Progress (3): 827/915 kB | 0.6/1.5 MB | 66/608 kB Progress (3): 827/915 kB | 0.6/1.5 MB | 70/608 kB Progress (3): 835/915 kB | 0.6/1.5 MB | 70/608 kB Progress (3): 835/915 kB | 0.6/1.5 MB | 70/608 kB Progress (3): 843/915 kB | 0.6/1.5 MB | 70/608 kB Progress (3): 843/915 kB | 0.6/1.5 MB | 74/608 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar +Progress (3): 843/915 kB | 0.6/1.5 MB | 78/608 kB Progress (3): 852/915 kB | 0.6/1.5 MB | 78/608 kB Progress (3): 852/915 kB | 0.6/1.5 MB | 78/608 kB Progress (3): 860/915 kB | 0.6/1.5 MB | 78/608 kB Progress (3): 860/915 kB | 0.6/1.5 MB | 82/608 kB Progress (3): 868/915 kB | 0.6/1.5 MB | 82/608 kB Progress (3): 868/915 kB | 0.6/1.5 MB | 82/608 kB Progress (3): 868/915 kB | 0.6/1.5 MB | 86/608 kB Progress (3): 876/915 kB | 0.6/1.5 MB | 86/608 kB Progress (3): 884/915 kB | 0.6/1.5 MB | 86/608 kB Progress (3): 884/915 kB | 0.6/1.5 MB | 86/608 kB Progress (3): 893/915 kB | 0.6/1.5 MB | 86/608 kB Progress (3): 893/915 kB | 0.6/1.5 MB | 90/608 kB Progress (3): 901/915 kB | 0.6/1.5 MB | 90/608 kB Progress (3): 901/915 kB | 0.6/1.5 MB | 90/608 kB Progress (3): 909/915 kB | 0.6/1.5 MB | 90/608 kB Progress (3): 909/915 kB | 0.6/1.5 MB | 94/608 kB Progress (4): 909/915 kB | 0.6/1.5 MB | 94/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 94/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 94/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 94/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 98/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 102/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 102/608 kB | 4.1/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 102/608 kB | 8.2/170 kB Progress (4): 915 kB | 0.6/1.5 MB | 106/608 kB | 8.2/170 kB Progress (5): 915 kB | 0.6/1.5 MB | 106/608 kB | 8.2/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 111/608 kB | 8.2/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 111/608 kB | 8.2/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 111/608 kB | 12/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 111/608 kB | 12/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 4.1/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 8.2/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 12/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 16/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 20/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 24/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 28/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 115/608 kB | 12/170 kB | 32/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 119/608 kB | 12/170 kB | 32/66 kB Progress (5): 915 kB | 0.6/1.5 MB | 123/608 kB | 12/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 123/608 kB | 12/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 123/608 kB | 12/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 123/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 123/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 123/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 127/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 127/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 127/608 kB | 16/170 kB | 32/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 127/608 kB | 16/170 kB | 36/66 kB Progress (5): 915 kB | 0.7/1.5 MB | 131/608 kB | 16/170 kB | 36/66 kB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/4.1.0/jna-4.1.0.jar (915 kB at 3.5 MB/s) +Progress (4): 0.7/1.5 MB | 131/608 kB | 20/170 kB | 36/66 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar +Progress (4): 0.7/1.5 MB | 135/608 kB | 20/170 kB | 36/66 kB Progress (4): 0.7/1.5 MB | 139/608 kB | 20/170 kB | 36/66 kB Progress (4): 0.7/1.5 MB | 139/608 kB | 20/170 kB | 36/66 kB Progress (4): 0.7/1.5 MB | 139/608 kB | 20/170 kB | 40/66 kB Progress (4): 0.7/1.5 MB | 139/608 kB | 20/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 139/608 kB | 20/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 143/608 kB | 20/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 143/608 kB | 20/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 147/608 kB | 20/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 147/608 kB | 25/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 147/608 kB | 29/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 152/608 kB | 29/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 156/608 kB | 29/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 156/608 kB | 29/170 kB | 44/66 kB Progress (4): 0.7/1.5 MB | 156/608 kB | 29/170 kB | 49/66 kB Progress (4): 0.7/1.5 MB | 156/608 kB | 29/170 kB | 49/66 kB Progress (4): 0.7/1.5 MB | 156/608 kB | 29/170 kB | 49/66 kB Progress (4): 0.7/1.5 MB | 160/608 kB | 29/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 160/608 kB | 29/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 160/608 kB | 33/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 160/608 kB | 33/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 160/608 kB | 37/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 160/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 164/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 168/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 172/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 176/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 180/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 184/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 188/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 193/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 197/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 201/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 205/608 kB | 41/170 kB | 49/66 kB Progress (4): 0.8/1.5 MB | 205/608 kB | 41/170 kB | 53/66 kB Progress (4): 0.8/1.5 MB | 209/608 kB | 41/170 kB | 53/66 kB Progress (5): 0.8/1.5 MB | 209/608 kB | 41/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 213/608 kB | 41/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 217/608 kB | 41/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 221/608 kB | 41/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 221/608 kB | 45/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 221/608 kB | 45/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 45/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 49/170 kB | 53/66 kB | 4.1/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 49/170 kB | 53/66 kB | 8.2/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 49/170 kB | 57/66 kB | 8.2/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 49/170 kB | 61/66 kB | 8.2/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 49/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 225/608 kB | 53/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 229/608 kB | 53/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 229/608 kB | 53/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 233/608 kB | 53/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 53/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 57/170 kB | 61/66 kB | 12/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 57/170 kB | 61/66 kB | 16/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 57/170 kB | 65/66 kB | 16/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 57/170 kB | 65/66 kB | 20/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 57/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 238/608 kB | 61/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 242/608 kB | 61/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 242/608 kB | 61/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 61/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 61/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 65/66 kB | 25/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 65/66 kB | 29/31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 65/66 kB | 31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 64/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 68/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 246/608 kB | 72/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 250/608 kB | 72/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 254/608 kB | 72/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 72/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 76/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 80/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 84/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 88/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 258/608 kB | 93/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 262/608 kB | 93/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 262/608 kB | 93/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 266/608 kB | 93/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 266/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 270/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 270/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 274/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 279/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 283/608 kB | 97/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 283/608 kB | 101/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 287/608 kB | 101/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 287/608 kB | 101/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 287/608 kB | 101/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 291/608 kB | 101/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 291/608 kB | 105/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 295/608 kB | 105/170 kB | 66 kB | 31 kB Progress (5): 0.8/1.5 MB | 295/608 kB | 109/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 295/608 kB | 109/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 295/608 kB | 113/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 295/608 kB | 113/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 299/608 kB | 113/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 299/608 kB | 113/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 299/608 kB | 117/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 299/608 kB | 121/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 303/608 kB | 121/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 303/608 kB | 125/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 303/608 kB | 125/170 kB | 66 kB | 31 kB Progress (5): 0.9/1.5 MB | 303/608 kB | 129/170 kB | 66 kB | 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.2.5/maven-aether-provider-3.2.5.jar (66 kB at 206 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar +Progress (4): 0.9/1.5 MB | 307/608 kB | 129/170 kB | 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-spi/1.0.0.v20140518/aether-spi-1.0.0.v20140518.jar (31 kB at 95 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.jar +Progress (3): 0.9/1.5 MB | 307/608 kB | 133/170 kB Progress (3): 0.9/1.5 MB | 307/608 kB | 138/170 kB Progress (3): 0.9/1.5 MB | 307/608 kB | 142/170 kB Progress (3): 0.9/1.5 MB | 307/608 kB | 142/170 kB Progress (3): 0.9/1.5 MB | 307/608 kB | 146/170 kB Progress (3): 0.9/1.5 MB | 311/608 kB | 146/170 kB Progress (3): 0.9/1.5 MB | 311/608 kB | 150/170 kB Progress (3): 0.9/1.5 MB | 311/608 kB | 150/170 kB Progress (3): 0.9/1.5 MB | 311/608 kB | 150/170 kB Progress (3): 0.9/1.5 MB | 311/608 kB | 154/170 kB Progress (3): 0.9/1.5 MB | 315/608 kB | 154/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 154/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 158/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 162/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 162/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 166/170 kB Progress (3): 0.9/1.5 MB | 319/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 324/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 324/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 328/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 332/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 332/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 332/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 336/608 kB | 170 kB Progress (3): 0.9/1.5 MB | 336/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 336/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 340/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 340/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 344/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 348/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 352/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 356/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 356/608 kB | 170 kB Progress (3): 1.0/1.5 MB | 360/608 kB | 170 kB Progress (4): 1.0/1.5 MB | 360/608 kB | 170 kB | 4.1/172 kB Progress (4): 1.0/1.5 MB | 360/608 kB | 170 kB | 4.1/172 kB Progress (4): 1.0/1.5 MB | 360/608 kB | 170 kB | 4.1/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 4.1/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 8.2/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 12/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 16/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 16/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 16/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 20/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 25/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 29/172 kB Progress (4): 1.0/1.5 MB | 365/608 kB | 170 kB | 33/172 kB Progress (5): 1.0/1.5 MB | 365/608 kB | 170 kB | 33/172 kB | 4.1/205 kB Progress (5): 1.0/1.5 MB | 369/608 kB | 170 kB | 33/172 kB | 4.1/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 33/172 kB | 4.1/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 33/172 kB | 8.2/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 37/172 kB | 8.2/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 37/172 kB | 8.2/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 41/172 kB | 8.2/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 45/172 kB | 8.2/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 45/172 kB | 12/205 kB Progress (5): 1.0/1.5 MB | 373/608 kB | 170 kB | 45/172 kB | 16/205 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.2.5/maven-model-builder-3.2.5.jar (170 kB at 488 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar +Progress (4): 1.0/1.5 MB | 377/608 kB | 45/172 kB | 16/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 45/172 kB | 16/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 45/172 kB | 20/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 45/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 49/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 53/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 57/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 61/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 66/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 70/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 74/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 74/172 kB | 25/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 74/172 kB | 29/205 kB Progress (4): 1.0/1.5 MB | 381/608 kB | 74/172 kB | 33/205 kB Progress (4): 1.0/1.5 MB | 385/608 kB | 74/172 kB | 33/205 kB Progress (4): 1.0/1.5 MB | 389/608 kB | 74/172 kB | 33/205 kB Progress (4): 1.0/1.5 MB | 389/608 kB | 74/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 389/608 kB | 74/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 389/608 kB | 78/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 389/608 kB | 78/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 393/608 kB | 78/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 397/608 kB | 78/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 401/608 kB | 78/172 kB | 37/205 kB Progress (4): 1.0/1.5 MB | 401/608 kB | 78/172 kB | 41/205 kB Progress (4): 1.0/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB Progress (5): 1.0/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.0/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 78/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 82/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 82/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 86/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 90/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 94/172 kB | 41/205 kB | 4.1/26 kB Progress (5): 1.1/1.5 MB | 406/608 kB | 94/172 kB | 41/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 410/608 kB | 94/172 kB | 41/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 414/608 kB | 94/172 kB | 41/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 414/608 kB | 94/172 kB | 45/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 414/608 kB | 94/172 kB | 49/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 418/608 kB | 94/172 kB | 49/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 94/172 kB | 49/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 98/172 kB | 49/205 kB | 8.2/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 98/172 kB | 49/205 kB | 12/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 98/172 kB | 49/205 kB | 12/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 98/172 kB | 49/205 kB | 16/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 98/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 102/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 422/608 kB | 106/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 426/608 kB | 106/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 430/608 kB | 106/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 434/608 kB | 106/172 kB | 49/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 434/608 kB | 106/172 kB | 53/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 434/608 kB | 106/172 kB | 57/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 434/608 kB | 106/172 kB | 61/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 106/172 kB | 61/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 106/172 kB | 66/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 111/172 kB | 66/205 kB | 20/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 111/172 kB | 66/205 kB | 25/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 111/172 kB | 66/205 kB | 25/26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 111/172 kB | 66/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 115/172 kB | 66/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 115/172 kB | 70/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 438/608 kB | 115/172 kB | 74/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 442/608 kB | 115/172 kB | 74/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 446/608 kB | 115/172 kB | 74/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 115/172 kB | 74/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 115/172 kB | 78/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 119/172 kB | 78/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 119/172 kB | 78/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 119/172 kB | 82/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 451/608 kB | 119/172 kB | 86/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 119/172 kB | 86/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 119/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 123/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 123/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 127/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 131/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 135/172 kB | 90/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 455/608 kB | 135/172 kB | 94/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 135/172 kB | 94/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 135/172 kB | 98/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 135/172 kB | 102/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 135/172 kB | 106/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 135/172 kB | 111/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 139/172 kB | 111/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 139/172 kB | 111/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 143/172 kB | 111/205 kB | 26 kB Progress (5): 1.1/1.5 MB | 459/608 kB | 147/172 kB | 111/205 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar (26 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar +Progress (4): 1.1/1.5 MB | 459/608 kB | 147/172 kB | 115/205 kB Progress (4): 1.1/1.5 MB | 459/608 kB | 147/172 kB | 119/205 kB Progress (4): 1.1/1.5 MB | 459/608 kB | 147/172 kB | 123/205 kB Progress (4): 1.1/1.5 MB | 463/608 kB | 147/172 kB | 123/205 kB Progress (4): 1.1/1.5 MB | 467/608 kB | 147/172 kB | 123/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 147/172 kB | 123/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 147/172 kB | 127/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 152/172 kB | 127/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 156/172 kB | 127/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 160/172 kB | 127/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 164/172 kB | 127/205 kB Progress (4): 1.1/1.5 MB | 471/608 kB | 164/172 kB | 127/205 kB Progress (4): 1.2/1.5 MB | 471/608 kB | 164/172 kB | 127/205 kB Progress (4): 1.2/1.5 MB | 471/608 kB | 164/172 kB | 131/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 164/172 kB | 131/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 164/172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 164/172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 168/172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 172 kB | 135/205 kB Progress (4): 1.2/1.5 MB | 475/608 kB | 172 kB | 139/205 kB Progress (4): 1.2/1.5 MB | 479/608 kB | 172 kB | 139/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 139/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 143/205 kB Progress (4): 1.2/1.5 MB | 483/608 kB | 172 kB | 147/205 kB Progress (4): 1.2/1.5 MB | 487/608 kB | 172 kB | 147/205 kB Progress (4): 1.2/1.5 MB | 487/608 kB | 172 kB | 152/205 kB Progress (4): 1.2/1.5 MB | 487/608 kB | 172 kB | 156/205 kB Progress (5): 1.2/1.5 MB | 487/608 kB | 172 kB | 156/205 kB | 4.1/71 kB Progress (5): 1.2/1.5 MB | 487/608 kB | 172 kB | 156/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 487/608 kB | 172 kB | 160/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 492/608 kB | 172 kB | 160/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 492/608 kB | 172 kB | 160/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 160/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 164/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 168/205 kB | 8.2/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 168/205 kB | 12/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 168/205 kB | 16/71 kB Progress (5): 1.2/1.5 MB | 496/608 kB | 172 kB | 168/205 kB | 20/71 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-impl/1.0.0.v20140518/aether-impl-1.0.0.v20140518.jar (172 kB at 399 kB/s) +Progress (4): 1.2/1.5 MB | 496/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.2/1.5 MB | 500/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.2/1.5 MB | 504/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.3/1.5 MB | 504/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.3/1.5 MB | 504/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 172/205 kB | 20/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 20/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 25/71 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.jar +Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 29/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 33/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 37/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 41/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 45/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 49/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 53/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 57/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 61/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 66/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 176/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 180/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 508/608 kB | 180/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 512/608 kB | 180/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 516/608 kB | 180/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 180/205 kB | 70/71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 180/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 184/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 188/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 193/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 197/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 197/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 201/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 205/205 kB | 71 kB Progress (4): 1.3/1.5 MB | 520/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 524/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 524/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 528/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 532/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 532/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 537/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 537/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 541/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 545/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 545/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 545/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 549/608 kB | 205 kB | 71 kB Progress (4): 1.3/1.5 MB | 549/608 kB | 205 kB | 71 kB Progress (5): 1.3/1.5 MB | 549/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 549/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 553/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 557/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 561/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 565/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 569/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 573/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 578/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 582/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 586/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 590/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 590/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 590/608 kB | 205 kB | 71 kB | 4.1/379 kB Progress (5): 1.3/1.5 MB | 590/608 kB | 205 kB | 71 kB | 8.2/379 kB Progress (5): 1.3/1.5 MB | 590/608 kB | 205 kB | 71 kB | 12/379 kB Progress (5): 1.4/1.5 MB | 590/608 kB | 205 kB | 71 kB | 12/379 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/enterprise/cdi-api/1.2/cdi-api-1.2.jar (71 kB at 155 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar +Progress (4): 1.4/1.5 MB | 594/608 kB | 205 kB | 12/379 kB Progress (4): 1.4/1.5 MB | 598/608 kB | 205 kB | 12/379 kB Progress (4): 1.4/1.5 MB | 598/608 kB | 205 kB | 12/379 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.5/org.eclipse.sisu.plexus-0.3.5.jar (205 kB at 444 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.jar +Progress (3): 1.4/1.5 MB | 598/608 kB | 16/379 kB Progress (3): 1.4/1.5 MB | 598/608 kB | 16/379 kB Progress (3): 1.4/1.5 MB | 602/608 kB | 16/379 kB Progress (3): 1.4/1.5 MB | 602/608 kB | 16/379 kB Progress (3): 1.4/1.5 MB | 602/608 kB | 20/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 20/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 25/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 29/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 33/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 33/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 37/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 41/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 45/379 kB Progress (3): 1.4/1.5 MB | 606/608 kB | 49/379 kB Progress (3): 1.4/1.5 MB | 608 kB | 49/379 kB Progress (4): 1.4/1.5 MB | 608 kB | 49/379 kB | 4.1/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 49/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 53/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 57/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 57/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 61/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 61/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 61/379 kB | 8.2/398 kB Progress (4): 1.4/1.5 MB | 608 kB | 61/379 kB | 12/398 kB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 12/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 16/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 20/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 25/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 29/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 33/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 61/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 66/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 70/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 70/379 kB | 37/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 70/379 kB | 39/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 70/379 kB | 39/398 kB | 0/2.2 MB Progress (5): 1.4/1.5 MB | 608 kB | 70/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5/1.5 MB | 608 kB | 70/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5/1.5 MB | 608 kB | 74/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5/1.5 MB | 608 kB | 78/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5 MB | 608 kB | 78/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5 MB | 608 kB | 78/379 kB | 43/398 kB | 0/2.2 MB Progress (5): 1.5 MB | 608 kB | 78/379 kB | 43/398 kB | 0.1/2.2 MB Progress (5): 1.5 MB | 608 kB | 78/379 kB | 48/398 kB | 0.1/2.2 MB Progress (5): 1.5 MB | 608 kB | 78/379 kB | 48/398 kB | 0.1/2.2 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.2.5/maven-core-3.2.5.jar (608 kB at 1.2 MB/s) +Progress (4): 1.5 MB | 82/379 kB | 48/398 kB | 0.1/2.2 MB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar +Progress (4): 1.5 MB | 82/379 kB | 48/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 82/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 82/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 86/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 90/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 94/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 98/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 102/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 106/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 111/379 kB | 52/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 111/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 115/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 119/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 123/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 127/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 127/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 131/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 135/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 139/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 56/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 60/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 64/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 68/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 72/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 143/379 kB | 76/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 147/379 kB | 76/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 147/379 kB | 76/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 152/379 kB | 76/398 kB | 0.1/2.2 MB Progress (4): 1.5 MB | 156/379 kB | 76/398 kB | 0.1/2.2 MB Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/4.1.0/jna-platform-4.1.0.jar (1.5 MB at 2.8 MB/s) +Progress (3): 156/379 kB | 80/398 kB | 0.1/2.2 MB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar +Progress (3): 160/379 kB | 80/398 kB | 0.1/2.2 MB Progress (3): 160/379 kB | 80/398 kB | 0.2/2.2 MB Progress (4): 160/379 kB | 80/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 164/379 kB | 80/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 164/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 168/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 172/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 176/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 180/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 184/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 188/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 193/379 kB | 84/398 kB | 0.2/2.2 MB | 4.1/161 kB Progress (4): 193/379 kB | 84/398 kB | 0.2/2.2 MB | 8.2/161 kB Progress (4): 193/379 kB | 84/398 kB | 0.2/2.2 MB | 8.2/161 kB Progress (4): 193/379 kB | 84/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 197/379 kB | 84/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 197/379 kB | 88/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 197/379 kB | 93/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 197/379 kB | 97/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 201/379 kB | 97/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 201/379 kB | 97/398 kB | 0.2/2.2 MB | 12/161 kB Progress (4): 201/379 kB | 97/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 97/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 101/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 105/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 109/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 113/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 117/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 121/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 125/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 205/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 209/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 213/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 217/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 221/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 16/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 20/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 25/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 29/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 29/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 33/161 kB Progress (4): 225/379 kB | 129/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 225/379 kB | 134/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 225/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 229/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 233/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 238/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 242/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 246/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (4): 250/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB Progress (5): 250/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 254/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 258/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 138/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 142/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 37/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 41/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 45/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 49/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 49/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 146/398 kB | 0.2/2.2 MB | 53/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 150/398 kB | 0.2/2.2 MB | 53/161 kB | 4.1/46 kB Progress (5): 262/379 kB | 154/398 kB | 0.2/2.2 MB | 53/161 kB | 4.1/46 kB Progress (5): 266/379 kB | 154/398 kB | 0.2/2.2 MB | 53/161 kB | 4.1/46 kB Progress (5): 266/379 kB | 154/398 kB | 0.2/2.2 MB | 53/161 kB | 8.2/46 kB Progress (5): 270/379 kB | 154/398 kB | 0.2/2.2 MB | 53/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 154/398 kB | 0.2/2.2 MB | 53/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 158/398 kB | 0.2/2.2 MB | 53/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 162/398 kB | 0.2/2.2 MB | 53/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 162/398 kB | 0.2/2.2 MB | 57/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 162/398 kB | 0.2/2.2 MB | 57/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 162/398 kB | 0.2/2.2 MB | 61/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 166/398 kB | 0.2/2.2 MB | 61/161 kB | 8.2/46 kB Progress (5): 274/379 kB | 170/398 kB | 0.2/2.2 MB | 61/161 kB | 8.2/46 kB Progress (5): 279/379 kB | 170/398 kB | 0.2/2.2 MB | 61/161 kB | 8.2/46 kB Progress (5): 279/379 kB | 170/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 283/379 kB | 170/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 170/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 175/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 179/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 183/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 187/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 191/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 195/398 kB | 0.2/2.2 MB | 61/161 kB | 12/46 kB Progress (5): 287/379 kB | 195/398 kB | 0.2/2.2 MB | 66/161 kB | 12/46 kB Progress (5): 287/379 kB | 195/398 kB | 0.3/2.2 MB | 66/161 kB | 12/46 kB Progress (5): 287/379 kB | 195/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 287/379 kB | 195/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 287/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 287/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 12/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.3/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.4/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 291/379 kB | 199/398 kB | 0.4/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 295/379 kB | 199/398 kB | 0.4/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 295/379 kB | 199/398 kB | 0.4/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 295/379 kB | 203/398 kB | 0.4/2.2 MB | 70/161 kB | 16/46 kB Progress (5): 295/379 kB | 203/398 kB | 0.4/2.2 MB | 74/161 kB | 16/46 kB Progress (5): 295/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 16/46 kB Progress (5): 295/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 16/46 kB Progress (5): 299/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 16/46 kB Progress (5): 299/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 20/46 kB Progress (5): 299/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 25/46 kB Progress (5): 299/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 303/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 307/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 207/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.4/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.5/2.2 MB | 74/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.5/2.2 MB | 78/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.5/2.2 MB | 82/161 kB | 29/46 kB Progress (5): 311/379 kB | 211/398 kB | 0.5/2.2 MB | 82/161 kB | 29/46 kB Progress (5): 311/379 kB | 215/398 kB | 0.5/2.2 MB | 82/161 kB | 29/46 kB Progress (5): 315/379 kB | 215/398 kB | 0.5/2.2 MB | 82/161 kB | 29/46 kB Progress (5): 315/379 kB | 215/398 kB | 0.5/2.2 MB | 82/161 kB | 33/46 kB Progress (5): 319/379 kB | 215/398 kB | 0.5/2.2 MB | 82/161 kB | 33/46 kB Progress (5): 319/379 kB | 215/398 kB | 0.5/2.2 MB | 86/161 kB | 33/46 kB Progress (5): 319/379 kB | 215/398 kB | 0.5/2.2 MB | 86/161 kB | 33/46 kB Progress (5): 319/379 kB | 220/398 kB | 0.5/2.2 MB | 86/161 kB | 33/46 kB Progress (5): 319/379 kB | 220/398 kB | 0.5/2.2 MB | 86/161 kB | 33/46 kB Progress (5): 319/379 kB | 220/398 kB | 0.5/2.2 MB | 90/161 kB | 33/46 kB Progress (5): 319/379 kB | 220/398 kB | 0.5/2.2 MB | 94/161 kB | 33/46 kB Progress (5): 319/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 33/46 kB Progress (5): 324/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 33/46 kB Progress (5): 328/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 33/46 kB Progress (5): 332/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 33/46 kB Progress (5): 336/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 33/46 kB Progress (5): 336/379 kB | 220/398 kB | 0.5/2.2 MB | 98/161 kB | 37/46 kB Progress (5): 336/379 kB | 220/398 kB | 0.5/2.2 MB | 102/161 kB | 37/46 kB Progress (5): 336/379 kB | 220/398 kB | 0.5/2.2 MB | 102/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.5/2.2 MB | 102/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.5/2.2 MB | 102/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.5/2.2 MB | 106/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.5/2.2 MB | 111/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 37/46 kB Progress (5): 336/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 37/46 kB Progress (5): 340/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 37/46 kB Progress (5): 340/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 41/46 kB Progress (5): 340/379 kB | 224/398 kB | 0.6/2.2 MB | 111/161 kB | 41/46 kB Progress (5): 340/379 kB | 224/398 kB | 0.6/2.2 MB | 115/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 115/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 119/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 123/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 127/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 131/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 135/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 139/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 143/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 143/161 kB | 41/46 kB Progress (5): 340/379 kB | 228/398 kB | 0.6/2.2 MB | 143/161 kB | 41/46 kB Progress (5): 344/379 kB | 228/398 kB | 0.6/2.2 MB | 143/161 kB | 41/46 kB Progress (5): 344/379 kB | 228/398 kB | 0.6/2.2 MB | 143/161 kB | 45/46 kB Progress (5): 344/379 kB | 228/398 kB | 0.7/2.2 MB | 143/161 kB | 45/46 kB Progress (5): 348/379 kB | 228/398 kB | 0.7/2.2 MB | 143/161 kB | 45/46 kB Progress (5): 348/379 kB | 228/398 kB | 0.7/2.2 MB | 147/161 kB | 45/46 kB Progress (5): 348/379 kB | 232/398 kB | 0.7/2.2 MB | 147/161 kB | 45/46 kB Progress (5): 348/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 45/46 kB Progress (5): 352/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 45/46 kB Progress (5): 356/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 45/46 kB Progress (5): 356/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 45/46 kB Progress (5): 356/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 46 kB Progress (5): 356/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 46 kB Progress (5): 360/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 46 kB Progress (5): 365/379 kB | 232/398 kB | 0.7/2.2 MB | 152/161 kB | 46 kB Progress (5): 365/379 kB | 232/398 kB | 0.7/2.2 MB | 156/161 kB | 46 kB Progress (5): 365/379 kB | 236/398 kB | 0.7/2.2 MB | 156/161 kB | 46 kB Progress (5): 365/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 369/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 373/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 373/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 373/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 377/379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 379 kB | 236/398 kB | 0.7/2.2 MB | 160/161 kB | 46 kB Progress (5): 379 kB | 236/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 240/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 244/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 244/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 248/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 252/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 256/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 261/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 261/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 265/398 kB | 0.7/2.2 MB | 161 kB | 46 kB Progress (5): 379 kB | 265/398 kB | 0.8/2.2 MB | 161 kB | 46 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.2.5/maven-plugin-api-3.2.5.jar (46 kB at 75 kB/s) +Progress (4): 379 kB | 265/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 269/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 269/398 kB | 0.8/2.2 MB | 161 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar +Progress (4): 379 kB | 269/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 273/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 277/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 277/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 281/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 285/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 289/398 kB | 0.8/2.2 MB | 161 kB Progress (4): 379 kB | 289/398 kB | 0.8/2.2 MB | 161 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.2.5/maven-model-3.2.5.jar (161 kB at 258 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.5/org.eclipse.sisu.inject-0.3.5.jar (379 kB at 608 kB/s) +Progress (2): 293/398 kB | 0.8/2.2 MB Progress (2): 297/398 kB | 0.8/2.2 MB Progress (2): 301/398 kB | 0.8/2.2 MB Progress (2): 306/398 kB | 0.8/2.2 MB Progress (2): 310/398 kB | 0.8/2.2 MB Progress (2): 314/398 kB | 0.8/2.2 MB Progress (2): 318/398 kB | 0.8/2.2 MB Progress (2): 322/398 kB | 0.8/2.2 MB Progress (2): 322/398 kB | 0.9/2.2 MB Progress (2): 322/398 kB | 0.9/2.2 MB Progress (2): 326/398 kB | 0.9/2.2 MB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.jar +Progress (2): 330/398 kB | 0.9/2.2 MB Progress (2): 334/398 kB | 0.9/2.2 MB Progress (2): 338/398 kB | 0.9/2.2 MB Progress (2): 342/398 kB | 0.9/2.2 MB Progress (2): 347/398 kB | 0.9/2.2 MB Progress (2): 347/398 kB | 0.9/2.2 MB Progress (3): 347/398 kB | 0.9/2.2 MB | 4.1/43 kB Progress (3): 347/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 351/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 355/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 359/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 359/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 363/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 367/398 kB | 0.9/2.2 MB | 8.2/43 kB Progress (3): 367/398 kB | 0.9/2.2 MB | 12/43 kB Progress (3): 367/398 kB | 0.9/2.2 MB | 12/43 kB Progress (4): 367/398 kB | 0.9/2.2 MB | 12/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 0.9/2.2 MB | 12/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 0.9/2.2 MB | 16/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 1.0/2.2 MB | 16/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 1.0/2.2 MB | 20/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 1.0/2.2 MB | 24/43 kB | 4.1/44 kB Progress (4): 367/398 kB | 1.0/2.2 MB | 28/43 kB | 4.1/44 kB Progress (4): 371/398 kB | 1.0/2.2 MB | 28/43 kB | 4.1/44 kB Progress (4): 375/398 kB | 1.0/2.2 MB | 28/43 kB | 4.1/44 kB Progress (4): 375/398 kB | 1.0/2.2 MB | 32/43 kB | 4.1/44 kB Progress (4): 379/398 kB | 1.0/2.2 MB | 32/43 kB | 4.1/44 kB Progress (4): 383/398 kB | 1.0/2.2 MB | 32/43 kB | 4.1/44 kB Progress (4): 383/398 kB | 1.0/2.2 MB | 32/43 kB | 4.1/44 kB Progress (4): 383/398 kB | 1.0/2.2 MB | 32/43 kB | 8.2/44 kB Progress (4): 383/398 kB | 1.0/2.2 MB | 32/43 kB | 8.2/44 kB Progress (4): 388/398 kB | 1.0/2.2 MB | 32/43 kB | 8.2/44 kB Progress (4): 388/398 kB | 1.0/2.2 MB | 36/43 kB | 8.2/44 kB Progress (4): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 8.2/44 kB Progress (4): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 8.2/44 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 8.2/44 kB | 4.1/230 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 8.2/44 kB | 4.1/230 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 12/44 kB | 4.1/230 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 16/44 kB | 4.1/230 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 16/44 kB | 4.1/230 kB Progress (5): 392/398 kB | 1.0/2.2 MB | 36/43 kB | 16/44 kB | 8.2/230 kB Progress (5): 396/398 kB | 1.0/2.2 MB | 36/43 kB | 16/44 kB | 8.2/230 kB Progress (5): 398 kB | 1.0/2.2 MB | 36/43 kB | 16/44 kB | 8.2/230 kB Progress (5): 398 kB | 1.0/2.2 MB | 40/43 kB | 16/44 kB | 8.2/230 kB Progress (5): 398 kB | 1.0/2.2 MB | 43 kB | 16/44 kB | 8.2/230 kB Progress (5): 398 kB | 1.0/2.2 MB | 43 kB | 16/44 kB | 12/230 kB Progress (5): 398 kB | 1.0/2.2 MB | 43 kB | 16/44 kB | 16/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 16/44 kB | 16/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 20/44 kB | 16/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 25/44 kB | 16/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 25/44 kB | 20/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 29/44 kB | 20/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 33/44 kB | 20/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 33/44 kB | 20/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 37/44 kB | 20/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 37/44 kB | 25/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 37/44 kB | 29/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 37/44 kB | 29/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 41/44 kB | 29/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 41/44 kB | 29/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 41/44 kB | 33/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 41/44 kB | 33/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 41/44 kB | 37/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 44 kB | 37/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 44 kB | 41/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 44 kB | 41/230 kB Progress (5): 398 kB | 1.1/2.2 MB | 43 kB | 44 kB | 45/230 kB Progress (5): 398 kB | 1.2/2.2 MB | 43 kB | 44 kB | 45/230 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.2.5/maven-settings-3.2.5.jar (43 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/3.2.3/sisu-guice-3.2.3-no_aop.jar (398 kB at 600 kB/s) +Progress (3): 1.2/2.2 MB | 44 kB | 45/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 45/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 49/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 53/230 kB Downloading from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar +Progress (3): 1.2/2.2 MB | 44 kB | 57/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 57/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 61/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 61/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 66/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 70/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 74/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 78/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 78/230 kB Progress (3): 1.2/2.2 MB | 44 kB | 82/230 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.2.5/maven-settings-builder-3.2.5.jar (44 kB at 65 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.jar +Progress (2): 1.3/2.2 MB | 82/230 kB Progress (2): 1.3/2.2 MB | 86/230 kB Progress (2): 1.3/2.2 MB | 90/230 kB Progress (3): 1.3/2.2 MB | 90/230 kB | 4.1/148 kB Progress (3): 1.3/2.2 MB | 90/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 94/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 94/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 98/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 102/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 106/230 kB | 8.2/148 kB Progress (3): 1.3/2.2 MB | 111/230 kB | 8.2/148 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 8.2/148 kB | 4.1/640 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 8.2/148 kB | 8.2/640 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 8.2/148 kB | 12/640 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 8.2/148 kB | 16/640 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 12/148 kB | 16/640 kB Progress (4): 1.3/2.2 MB | 111/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 115/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 119/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 119/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 123/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 12/148 kB | 20/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 12/148 kB | 25/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 12/148 kB | 29/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 16/148 kB | 29/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 16/148 kB | 33/640 kB Progress (4): 1.3/2.2 MB | 127/230 kB | 16/148 kB | 37/640 kB Progress (5): 1.3/2.2 MB | 127/230 kB | 16/148 kB | 37/640 kB | 4.1/4.1 kB Progress (5): 1.3/2.2 MB | 131/230 kB | 16/148 kB | 37/640 kB | 4.1/4.1 kB Progress (5): 1.3/2.2 MB | 131/230 kB | 16/148 kB | 37/640 kB | 4.1/4.1 kB Progress (5): 1.3/2.2 MB | 135/230 kB | 16/148 kB | 37/640 kB | 4.1/4.1 kB Progress (5): 1.3/2.2 MB | 139/230 kB | 16/148 kB | 37/640 kB | 4.1/4.1 kB Progress (5): 1.3/2.2 MB | 139/230 kB | 16/148 kB | 37/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 143/230 kB | 16/148 kB | 37/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 143/230 kB | 16/148 kB | 41/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 143/230 kB | 16/148 kB | 45/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 143/230 kB | 16/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 143/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 147/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 152/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 152/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 156/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 156/230 kB | 20/148 kB | 49/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 156/230 kB | 20/148 kB | 53/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 156/230 kB | 25/148 kB | 53/640 kB | 4.1 kB Progress (5): 1.3/2.2 MB | 156/230 kB | 25/148 kB | 57/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 156/230 kB | 25/148 kB | 57/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 25/148 kB | 57/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 25/148 kB | 57/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 25/148 kB | 61/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 29/148 kB | 61/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 61/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 65/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 69/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 73/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 78/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 160/230 kB | 33/148 kB | 78/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 164/230 kB | 33/148 kB | 78/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 168/230 kB | 33/148 kB | 78/640 kB | 4.1 kB Progress (5): 1.4/2.2 MB | 168/230 kB | 33/148 kB | 82/640 kB | 4.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.1.1/plexus-component-annotations-2.1.1.jar (4.1 kB at 5.7 kB/s) +Progress (4): 1.4/2.2 MB | 168/230 kB | 37/148 kB | 82/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 41/148 kB | 82/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 45/148 kB | 82/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 49/148 kB | 82/640 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar +Progress (4): 1.4/2.2 MB | 168/230 kB | 49/148 kB | 86/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 49/148 kB | 90/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 49/148 kB | 94/640 kB Progress (4): 1.4/2.2 MB | 168/230 kB | 49/148 kB | 98/640 kB Progress (4): 1.4/2.2 MB | 172/230 kB | 49/148 kB | 98/640 kB Progress (4): 1.4/2.2 MB | 172/230 kB | 49/148 kB | 98/640 kB Progress (4): 1.4/2.2 MB | 172/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 176/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 180/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 184/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 188/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 193/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 197/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 49/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 53/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 57/148 kB | 102/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 57/148 kB | 106/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 57/148 kB | 110/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 57/148 kB | 110/640 kB Progress (4): 1.4/2.2 MB | 201/230 kB | 57/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 205/230 kB | 57/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 209/230 kB | 57/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 209/230 kB | 61/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 209/230 kB | 64/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 213/230 kB | 64/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 217/230 kB | 64/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 221/230 kB | 64/148 kB | 114/640 kB Progress (4): 1.4/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB Progress (4): 1.4/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB Progress (4): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB Progress (4): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB | 4.1/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB | 8.2/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB | 12/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB | 16/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 119/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 123/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 127/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 221/230 kB | 64/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 225/230 kB | 64/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 229/230 kB | 64/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 64/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 68/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 131/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 135/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 139/640 kB | 20/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 139/640 kB | 25/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 139/640 kB | 29/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 139/640 kB | 29/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 139/640 kB | 33/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 143/640 kB | 33/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 72/148 kB | 143/640 kB | 37/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 76/148 kB | 143/640 kB | 37/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 143/640 kB | 37/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 143/640 kB | 41/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 143/640 kB | 45/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 147/640 kB | 45/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 151/640 kB | 45/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 151/640 kB | 45/502 kB Progress (5): 1.5/2.2 MB | 230 kB | 80/148 kB | 151/640 kB | 45/502 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/2.1.0/plexus-container-default-2.1.0.jar (230 kB at 301 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.jar +Progress (4): 1.5/2.2 MB | 80/148 kB | 151/640 kB | 49/502 kB Progress (4): 1.5/2.2 MB | 84/148 kB | 151/640 kB | 49/502 kB Progress (4): 1.5/2.2 MB | 89/148 kB | 151/640 kB | 49/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 151/640 kB | 49/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 151/640 kB | 53/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 151/640 kB | 57/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 151/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 155/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 159/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 164/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 168/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 168/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 172/640 kB | 61/502 kB Progress (4): 1.5/2.2 MB | 93/148 kB | 172/640 kB | 66/502 kB Progress (4): 1.5/2.2 MB | 97/148 kB | 172/640 kB | 66/502 kB Progress (5): 1.5/2.2 MB | 97/148 kB | 172/640 kB | 66/502 kB | 4.1/55 kB Progress (5): 1.5/2.2 MB | 97/148 kB | 172/640 kB | 66/502 kB | 8.2/55 kB Progress (5): 1.5/2.2 MB | 97/148 kB | 172/640 kB | 70/502 kB | 8.2/55 kB Progress (5): 1.5/2.2 MB | 97/148 kB | 176/640 kB | 70/502 kB | 8.2/55 kB Progress (5): 1.6/2.2 MB | 97/148 kB | 176/640 kB | 70/502 kB | 8.2/55 kB Progress (5): 1.6/2.2 MB | 97/148 kB | 180/640 kB | 70/502 kB | 8.2/55 kB Progress (5): 1.6/2.2 MB | 97/148 kB | 180/640 kB | 74/502 kB | 8.2/55 kB Progress (5): 1.6/2.2 MB | 97/148 kB | 180/640 kB | 78/502 kB | 8.2/55 kB Progress (5): 1.6/2.2 MB | 97/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 101/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 105/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 109/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 113/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 117/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 121/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 78/502 kB | 12/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 78/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 82/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 86/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 90/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 180/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 184/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 184/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 188/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 192/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 196/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 200/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 205/640 kB | 94/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 205/640 kB | 98/502 kB | 16/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 205/640 kB | 98/502 kB | 20/55 kB Progress (5): 1.6/2.2 MB | 125/148 kB | 205/640 kB | 98/502 kB | 25/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 205/640 kB | 98/502 kB | 25/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 205/640 kB | 98/502 kB | 29/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 205/640 kB | 98/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 205/640 kB | 102/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 209/640 kB | 102/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 209/640 kB | 102/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 213/640 kB | 102/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 213/640 kB | 106/502 kB | 33/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 213/640 kB | 106/502 kB | 37/55 kB Progress (5): 1.6/2.2 MB | 130/148 kB | 213/640 kB | 106/502 kB | 41/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 213/640 kB | 106/502 kB | 41/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 213/640 kB | 106/502 kB | 45/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 213/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 213/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.6/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 111/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 115/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 119/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 123/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 127/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 131/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 135/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 139/502 kB | 45/55 kB Progress (5): 1.7/2.2 MB | 134/148 kB | 217/640 kB | 139/502 kB | 49/55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 217/640 kB | 139/502 kB | 49/55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 217/640 kB | 139/502 kB | 53/55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 217/640 kB | 139/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 217/640 kB | 139/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 217/640 kB | 139/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 139/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 143/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 147/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 152/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 156/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 138/148 kB | 221/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 142/148 kB | 221/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 146/148 kB | 221/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 146/148 kB | 221/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 146/148 kB | 221/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 146/148 kB | 225/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 146/148 kB | 229/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 229/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 233/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 237/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 241/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 245/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 160/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 164/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 168/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 172/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 176/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 180/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 184/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 250/640 kB | 188/502 kB | 55 kB Progress (5): 1.7/2.2 MB | 148 kB | 254/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 254/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 258/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 262/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 262/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 266/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 270/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 274/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 278/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 282/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 286/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 291/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 295/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 299/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 303/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 307/640 kB | 188/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 307/640 kB | 193/502 kB | 55 kB Progress (5): 1.8/2.2 MB | 148 kB | 311/640 kB | 193/502 kB | 55 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-apt/1.11.1/doxia-module-apt-1.11.1.jar (55 kB at 66 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/xbean/xbean-reflect/3.7/xbean-reflect-3.7.jar (148 kB at 179 kB/s) +Progress (3): 1.8/2.2 MB | 311/640 kB | 193/502 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.jar +Progress (3): 1.8/2.2 MB | 315/640 kB | 193/502 kB Progress (3): 1.8/2.2 MB | 319/640 kB | 193/502 kB Progress (3): 1.8/2.2 MB | 323/640 kB | 193/502 kB Progress (3): 1.8/2.2 MB | 323/640 kB | 197/502 kB Progress (3): 1.8/2.2 MB | 323/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 327/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 327/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 331/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 336/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 340/640 kB | 201/502 kB Progress (3): 1.8/2.2 MB | 340/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 344/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 344/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 348/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 352/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 356/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 360/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 364/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 368/640 kB | 205/502 kB Progress (3): 1.8/2.2 MB | 368/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 372/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 377/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 377/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 381/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 385/640 kB | 209/502 kB Progress (3): 1.8/2.2 MB | 385/640 kB | 213/502 kB Progress (3): 1.8/2.2 MB | 385/640 kB | 217/502 kB Progress (3): 1.8/2.2 MB | 389/640 kB | 217/502 kB Progress (3): 1.8/2.2 MB | 393/640 kB | 217/502 kB Progress (3): 1.8/2.2 MB | 397/640 kB | 217/502 kB Progress (4): 1.8/2.2 MB | 397/640 kB | 217/502 kB | 4.1/37 kB Progress (4): 1.9/2.2 MB | 397/640 kB | 217/502 kB | 4.1/37 kB Progress (4): 1.9/2.2 MB | 397/640 kB | 217/502 kB | 8.2/37 kB Progress (4): 1.9/2.2 MB | 397/640 kB | 217/502 kB | 12/37 kB Progress (4): 1.9/2.2 MB | 401/640 kB | 217/502 kB | 12/37 kB Progress (4): 1.9/2.2 MB | 405/640 kB | 217/502 kB | 12/37 kB Progress (4): 1.9/2.2 MB | 405/640 kB | 221/502 kB | 12/37 kB Progress (4): 1.9/2.2 MB | 409/640 kB | 221/502 kB | 12/37 kB Progress (4): 1.9/2.2 MB | 409/640 kB | 221/502 kB | 16/37 kB Progress (4): 1.9/2.2 MB | 409/640 kB | 221/502 kB | 20/37 kB Progress (4): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 20/37 kB Progress (4): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 25/37 kB Progress (5): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 25/37 kB | 4.1/38 kB Progress (5): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 25/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 25/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 29/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 413/640 kB | 221/502 kB | 33/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 418/640 kB | 221/502 kB | 33/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 418/640 kB | 225/502 kB | 33/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 418/640 kB | 229/502 kB | 33/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 422/640 kB | 229/502 kB | 33/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 422/640 kB | 229/502 kB | 37/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 422/640 kB | 229/502 kB | 37/37 kB | 8.2/38 kB Progress (5): 1.9/2.2 MB | 422/640 kB | 229/502 kB | 37/37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 422/640 kB | 229/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 426/640 kB | 229/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 426/640 kB | 233/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 426/640 kB | 238/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 430/640 kB | 238/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 430/640 kB | 238/502 kB | 37 kB | 12/38 kB Progress (5): 1.9/2.2 MB | 430/640 kB | 238/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 430/640 kB | 238/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 434/640 kB | 238/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 438/640 kB | 238/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 238/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 242/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 246/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 250/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 254/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 258/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 262/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 266/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 442/640 kB | 270/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 446/640 kB | 270/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 16/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 20/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 25/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 29/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 33/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 37/38 kB Progress (5): 1.9/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 450/640 kB | 270/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 454/640 kB | 270/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 458/640 kB | 270/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 458/640 kB | 274/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 463/640 kB | 274/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 463/640 kB | 274/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 467/640 kB | 274/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 467/640 kB | 279/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 471/640 kB | 279/502 kB | 37 kB | 38 kB Progress (5): 2.0/2.2 MB | 471/640 kB | 279/502 kB | 37 kB | 38 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xdoc/1.11.1/doxia-module-xdoc-1.11.1.jar (37 kB at 43 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.jar +Progress (4): 2.0/2.2 MB | 471/640 kB | 279/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 475/640 kB | 279/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 475/640 kB | 279/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 475/640 kB | 283/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 475/640 kB | 283/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 479/640 kB | 283/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 479/640 kB | 287/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 483/640 kB | 287/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 487/640 kB | 287/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 491/640 kB | 287/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 491/640 kB | 291/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 495/640 kB | 291/502 kB | 38 kB Progress (4): 2.0/2.2 MB | 499/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 499/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 499/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 499/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 504/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 508/640 kB | 291/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 508/640 kB | 295/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 508/640 kB | 295/502 kB | 38 kB Progress (4): 2.1/2.2 MB | 508/640 kB | 295/502 kB | 38 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.11.1/doxia-module-fml-1.11.1.jar (38 kB at 44 kB/s) +Progress (3): 2.1/2.2 MB | 508/640 kB | 295/502 kB Progress (3): 2.1/2.2 MB | 512/640 kB | 295/502 kB Progress (3): 2.1/2.2 MB | 512/640 kB | 299/502 kB Progress (3): 2.1/2.2 MB | 512/640 kB | 303/502 kB Progress (3): 2.1/2.2 MB | 516/640 kB | 303/502 kB Progress (3): 2.2/2.2 MB | 516/640 kB | 303/502 kB Progress (3): 2.2/2.2 MB | 516/640 kB | 303/502 kB Progress (3): 2.2/2.2 MB | 516/640 kB | 303/502 kB Progress (3): 2.2/2.2 MB | 516/640 kB | 303/502 kB Progress (4): 2.2/2.2 MB | 516/640 kB | 303/502 kB | 4.1/18 kB Progress (4): 2.2/2.2 MB | 516/640 kB | 303/502 kB | 4.1/18 kB Progress (4): 2.2 MB | 516/640 kB | 303/502 kB | 4.1/18 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.jar +Progress (4): 2.2 MB | 516/640 kB | 303/502 kB | 8.2/18 kB Progress (4): 2.2 MB | 520/640 kB | 303/502 kB | 8.2/18 kB Progress (4): 2.2 MB | 520/640 kB | 307/502 kB | 8.2/18 kB Progress (4): 2.2 MB | 524/640 kB | 307/502 kB | 8.2/18 kB Progress (4): 2.2 MB | 524/640 kB | 307/502 kB | 12/18 kB Progress (4): 2.2 MB | 524/640 kB | 307/502 kB | 16/18 kB Progress (4): 2.2 MB | 524/640 kB | 311/502 kB | 16/18 kB Progress (4): 2.2 MB | 524/640 kB | 311/502 kB | 18 kB Progress (4): 2.2 MB | 528/640 kB | 311/502 kB | 18 kB Progress (4): 2.2 MB | 532/640 kB | 311/502 kB | 18 kB Progress (4): 2.2 MB | 532/640 kB | 315/502 kB | 18 kB Progress (4): 2.2 MB | 532/640 kB | 319/502 kB | 18 kB Progress (4): 2.2 MB | 536/640 kB | 319/502 kB | 18 kB Progress (4): 2.2 MB | 536/640 kB | 324/502 kB | 18 kB Progress (4): 2.2 MB | 540/640 kB | 324/502 kB | 18 kB Progress (4): 2.2 MB | 540/640 kB | 328/502 kB | 18 kB Progress (4): 2.2 MB | 544/640 kB | 328/502 kB | 18 kB Progress (4): 2.2 MB | 549/640 kB | 328/502 kB | 18 kB Progress (4): 2.2 MB | 549/640 kB | 332/502 kB | 18 kB Progress (4): 2.2 MB | 553/640 kB | 332/502 kB | 18 kB Progress (4): 2.2 MB | 553/640 kB | 336/502 kB | 18 kB Progress (4): 2.2 MB | 557/640 kB | 336/502 kB | 18 kB Progress (4): 2.2 MB | 557/640 kB | 340/502 kB | 18 kB Progress (4): 2.2 MB | 557/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 561/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 565/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 569/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 573/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 577/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 344/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 348/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 352/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 356/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 360/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 365/502 kB | 18 kB Progress (4): 2.2 MB | 581/640 kB | 369/502 kB | 18 kB Progress (4): 2.2 MB | 585/640 kB | 369/502 kB | 18 kB Progress (4): 2.2 MB | 590/640 kB | 369/502 kB | 18 kB Progress (4): 2.2 MB | 594/640 kB | 369/502 kB | 18 kB Progress (4): 2.2 MB | 598/640 kB | 369/502 kB | 18 kB Progress (5): 2.2 MB | 598/640 kB | 369/502 kB | 18 kB | 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/16.0.1/guava-16.0.1.jar (2.2 MB at 2.5 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-markdown/1.11.1/doxia-module-markdown-1.11.1.jar (18 kB at 20 kB/s) +Progress (3): 602/640 kB | 369/502 kB | 2.2 kB Progress (3): 602/640 kB | 373/502 kB | 2.2 kB Progress (3): 602/640 kB | 377/502 kB | 2.2 kB Progress (3): 602/640 kB | 381/502 kB | 2.2 kB Progress (3): 606/640 kB | 381/502 kB | 2.2 kB Progress (3): 610/640 kB | 381/502 kB | 2.2 kB Progress (3): 614/640 kB | 381/502 kB | 2.2 kB Progress (3): 618/640 kB | 381/502 kB | 2.2 kB Progress (3): 622/640 kB | 381/502 kB | 2.2 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.jar +Progress (3): 622/640 kB | 385/502 kB | 2.2 kB Progress (3): 622/640 kB | 389/502 kB | 2.2 kB Progress (3): 626/640 kB | 389/502 kB | 2.2 kB Progress (3): 631/640 kB | 389/502 kB | 2.2 kB Progress (3): 635/640 kB | 389/502 kB | 2.2 kB Progress (3): 635/640 kB | 393/502 kB | 2.2 kB Progress (3): 635/640 kB | 397/502 kB | 2.2 kB Progress (3): 639/640 kB | 397/502 kB | 2.2 kB Progress (3): 640 kB | 397/502 kB | 2.2 kB Progress (3): 640 kB | 401/502 kB | 2.2 kB Progress (3): 640 kB | 406/502 kB | 2.2 kB Progress (3): 640 kB | 410/502 kB | 2.2 kB Progress (3): 640 kB | 414/502 kB | 2.2 kB Progress (3): 640 kB | 418/502 kB | 2.2 kB Progress (3): 640 kB | 422/502 kB | 2.2 kB Progress (3): 640 kB | 426/502 kB | 2.2 kB Progress (3): 640 kB | 430/502 kB | 2.2 kB Progress (3): 640 kB | 434/502 kB | 2.2 kB Progress (3): 640 kB | 438/502 kB | 2.2 kB Progress (3): 640 kB | 442/502 kB | 2.2 kB Progress (3): 640 kB | 446/502 kB | 2.2 kB Progress (3): 640 kB | 451/502 kB | 2.2 kB Progress (3): 640 kB | 455/502 kB | 2.2 kB Progress (3): 640 kB | 459/502 kB | 2.2 kB Progress (3): 640 kB | 463/502 kB | 2.2 kB Progress (3): 640 kB | 467/502 kB | 2.2 kB Progress (3): 640 kB | 471/502 kB | 2.2 kB Progress (3): 640 kB | 475/502 kB | 2.2 kB Progress (3): 640 kB | 479/502 kB | 2.2 kB Progress (3): 640 kB | 483/502 kB | 2.2 kB Progress (3): 640 kB | 487/502 kB | 2.2 kB Progress (3): 640 kB | 492/502 kB | 2.2 kB Progress (3): 640 kB | 496/502 kB | 2.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-all/0.42.14/flexmark-all-0.42.14.jar (2.2 kB at 2.4 kB/s) +Progress (2): 640 kB | 500/502 kB Progress (2): 640 kB | 502 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.jar +Progress (3): 640 kB | 502 kB | 4.1/35 kB Progress (3): 640 kB | 502 kB | 8.2/35 kB Progress (3): 640 kB | 502 kB | 12/35 kB Progress (3): 640 kB | 502 kB | 16/35 kB Progress (3): 640 kB | 502 kB | 20/35 kB Progress (3): 640 kB | 502 kB | 24/35 kB Progress (4): 640 kB | 502 kB | 24/35 kB | 4.1/389 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/1.0/google-collections-1.0.jar (640 kB at 694 kB/s) +Progress (3): 502 kB | 28/35 kB | 4.1/389 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.jar +Progress (3): 502 kB | 28/35 kB | 8.2/389 kB Progress (3): 502 kB | 28/35 kB | 12/389 kB Progress (3): 502 kB | 28/35 kB | 16/389 kB Progress (3): 502 kB | 28/35 kB | 20/389 kB Progress (3): 502 kB | 28/35 kB | 24/389 kB Progress (3): 502 kB | 28/35 kB | 28/389 kB Progress (3): 502 kB | 32/35 kB | 28/389 kB Progress (3): 502 kB | 35 kB | 28/389 kB Progress (3): 502 kB | 35 kB | 32/389 kB Progress (3): 502 kB | 35 kB | 36/389 kB Progress (3): 502 kB | 35 kB | 40/389 kB Progress (3): 502 kB | 35 kB | 44/389 kB Progress (3): 502 kB | 35 kB | 49/389 kB Progress (3): 502 kB | 35 kB | 53/389 kB Progress (3): 502 kB | 35 kB | 57/389 kB Progress (3): 502 kB | 35 kB | 61/389 kB Progress (3): 502 kB | 35 kB | 65/389 kB Progress (3): 502 kB | 35 kB | 69/389 kB Progress (3): 502 kB | 35 kB | 73/389 kB Progress (3): 502 kB | 35 kB | 77/389 kB Progress (3): 502 kB | 35 kB | 81/389 kB Progress (3): 502 kB | 35 kB | 85/389 kB Progress (4): 502 kB | 35 kB | 85/389 kB | 4.1/34 kB Progress (4): 502 kB | 35 kB | 90/389 kB | 4.1/34 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 540 kB/s) +Progress (3): 35 kB | 90/389 kB | 8.2/34 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.jar +Progress (3): 35 kB | 94/389 kB | 8.2/34 kB Progress (3): 35 kB | 94/389 kB | 12/34 kB Progress (3): 35 kB | 94/389 kB | 16/34 kB Progress (3): 35 kB | 94/389 kB | 20/34 kB Progress (3): 35 kB | 94/389 kB | 24/34 kB Progress (3): 35 kB | 94/389 kB | 28/34 kB Progress (3): 35 kB | 94/389 kB | 32/34 kB Progress (3): 35 kB | 98/389 kB | 32/34 kB Progress (3): 35 kB | 102/389 kB | 32/34 kB Progress (3): 35 kB | 106/389 kB | 32/34 kB Progress (3): 35 kB | 110/389 kB | 32/34 kB Progress (3): 35 kB | 114/389 kB | 32/34 kB Progress (4): 35 kB | 114/389 kB | 32/34 kB | 4.0/17 kB Progress (4): 35 kB | 114/389 kB | 34 kB | 4.0/17 kB Progress (4): 35 kB | 114/389 kB | 34 kB | 8.1/17 kB Progress (4): 35 kB | 114/389 kB | 34 kB | 12/17 kB Progress (4): 35 kB | 118/389 kB | 34 kB | 12/17 kB Progress (4): 35 kB | 122/389 kB | 34 kB | 12/17 kB Progress (4): 35 kB | 122/389 kB | 34 kB | 16/17 kB Progress (4): 35 kB | 122/389 kB | 34 kB | 17 kB Progress (4): 35 kB | 126/389 kB | 34 kB | 17 kB Progress (4): 35 kB | 130/389 kB | 34 kB | 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-abbreviation/0.42.14/flexmark-ext-abbreviation-0.42.14.jar (35 kB at 37 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.jar +Progress (3): 135/389 kB | 34 kB | 17 kB Progress (3): 139/389 kB | 34 kB | 17 kB Progress (3): 143/389 kB | 34 kB | 17 kB Progress (4): 143/389 kB | 34 kB | 17 kB | 4.1/16 kB Progress (4): 143/389 kB | 34 kB | 17 kB | 8.2/16 kB Progress (4): 143/389 kB | 34 kB | 17 kB | 12/16 kB Progress (4): 143/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 147/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 151/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 155/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 159/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 163/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 167/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 171/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 176/389 kB | 34 kB | 17 kB | 16 kB Progress (4): 180/389 kB | 34 kB | 17 kB | 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-admonition/0.42.14/flexmark-ext-admonition-0.42.14.jar (34 kB at 36 kB/s) +Progress (3): 184/389 kB | 17 kB | 16 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.jar +Progress (3): 188/389 kB | 17 kB | 16 kB Progress (3): 192/389 kB | 17 kB | 16 kB Progress (3): 196/389 kB | 17 kB | 16 kB Progress (3): 200/389 kB | 17 kB | 16 kB Progress (3): 204/389 kB | 17 kB | 16 kB Progress (3): 208/389 kB | 17 kB | 16 kB Progress (3): 211/389 kB | 17 kB | 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.42.14/flexmark-ext-anchorlink-0.42.14.jar (17 kB at 18 kB/s) +Progress (2): 215/389 kB | 16 kB Progress (2): 219/389 kB | 16 kB Downloading from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar +Progress (2): 223/389 kB | 16 kB Progress (2): 227/389 kB | 16 kB Progress (3): 227/389 kB | 16 kB | 4.1/36 kB Progress (3): 227/389 kB | 16 kB | 8.2/36 kB Progress (3): 231/389 kB | 16 kB | 8.2/36 kB Progress (3): 231/389 kB | 16 kB | 12/36 kB Progress (3): 231/389 kB | 16 kB | 16/36 kB Progress (3): 235/389 kB | 16 kB | 16/36 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-aside/0.42.14/flexmark-ext-aside-0.42.14.jar (16 kB at 17 kB/s) +Progress (2): 235/389 kB | 20/36 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.jar +Progress (2): 239/389 kB | 20/36 kB Progress (2): 239/389 kB | 24/36 kB Progress (2): 243/389 kB | 24/36 kB Progress (2): 243/389 kB | 28/36 kB Progress (2): 243/389 kB | 32/36 kB Progress (3): 243/389 kB | 32/36 kB | 4.1/9.4 kB Progress (3): 248/389 kB | 32/36 kB | 4.1/9.4 kB Progress (3): 248/389 kB | 32/36 kB | 8.2/9.4 kB Progress (3): 248/389 kB | 36 kB | 8.2/9.4 kB Progress (3): 248/389 kB | 36 kB | 9.4 kB Progress (3): 252/389 kB | 36 kB | 9.4 kB Progress (4): 252/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 256/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 260/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 264/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 268/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 272/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 276/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 280/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 284/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 289/389 kB | 36 kB | 9.4 kB | 4.1/16 kB Progress (4): 289/389 kB | 36 kB | 9.4 kB | 8.2/16 kB Progress (4): 289/389 kB | 36 kB | 9.4 kB | 12/16 kB Progress (4): 293/389 kB | 36 kB | 9.4 kB | 12/16 kB Progress (5): 293/389 kB | 36 kB | 9.4 kB | 12/16 kB | 4.1/40 kB Progress (5): 293/389 kB | 36 kB | 9.4 kB | 16 kB | 4.1/40 kB Progress (5): 293/389 kB | 36 kB | 9.4 kB | 16 kB | 8.2/40 kB Progress (5): 297/389 kB | 36 kB | 9.4 kB | 16 kB | 8.2/40 kB Progress (5): 301/389 kB | 36 kB | 9.4 kB | 16 kB | 8.2/40 kB Progress (5): 305/389 kB | 36 kB | 9.4 kB | 16 kB | 8.2/40 kB Progress (5): 305/389 kB | 36 kB | 9.4 kB | 16 kB | 12/40 kB Progress (5): 305/389 kB | 36 kB | 9.4 kB | 16 kB | 16/40 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-attributes/0.42.14/flexmark-ext-attributes-0.42.14.jar (36 kB at 36 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.jar +Progress (4): 309/389 kB | 9.4 kB | 16 kB | 16/40 kB Progress (4): 313/389 kB | 9.4 kB | 16 kB | 16/40 kB Progress (4): 313/389 kB | 9.4 kB | 16 kB | 20/40 kB Progress (4): 313/389 kB | 9.4 kB | 16 kB | 24/40 kB Progress (4): 317/389 kB | 9.4 kB | 16 kB | 24/40 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.42.14/flexmark-ext-autolink-0.42.14.jar (9.4 kB at 9.5 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.jar +Progress (3): 321/389 kB | 16 kB | 24/40 kB Progress (3): 321/389 kB | 16 kB | 28/40 kB Progress (3): 325/389 kB | 16 kB | 28/40 kB Progress (3): 325/389 kB | 16 kB | 32/40 kB Progress (3): 329/389 kB | 16 kB | 32/40 kB Progress (3): 329/389 kB | 16 kB | 36/40 kB Progress (3): 334/389 kB | 16 kB | 36/40 kB Progress (3): 338/389 kB | 16 kB | 36/40 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar (16 kB at 16 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.jar +Progress (2): 338/389 kB | 40 kB Progress (3): 338/389 kB | 40 kB | 4.1/73 kB Progress (3): 338/389 kB | 40 kB | 8.2/73 kB Progress (3): 338/389 kB | 40 kB | 12/73 kB Progress (3): 342/389 kB | 40 kB | 12/73 kB Progress (3): 342/389 kB | 40 kB | 16/73 kB Progress (3): 346/389 kB | 40 kB | 16/73 kB Progress (3): 346/389 kB | 40 kB | 20/73 kB Progress (3): 350/389 kB | 40 kB | 20/73 kB Progress (3): 350/389 kB | 40 kB | 25/73 kB Progress (3): 354/389 kB | 40 kB | 25/73 kB Progress (3): 354/389 kB | 40 kB | 29/73 kB Progress (3): 354/389 kB | 40 kB | 33/73 kB Progress (3): 358/389 kB | 40 kB | 33/73 kB Progress (3): 358/389 kB | 40 kB | 37/73 kB Progress (3): 358/389 kB | 40 kB | 41/73 kB Progress (3): 358/389 kB | 40 kB | 45/73 kB Progress (3): 358/389 kB | 40 kB | 49/73 kB Progress (4): 358/389 kB | 40 kB | 49/73 kB | 4.1/66 kB Progress (4): 362/389 kB | 40 kB | 49/73 kB | 4.1/66 kB Progress (4): 366/389 kB | 40 kB | 49/73 kB | 4.1/66 kB Progress (4): 370/389 kB | 40 kB | 49/73 kB | 4.1/66 kB Progress (4): 375/389 kB | 40 kB | 49/73 kB | 4.1/66 kB Progress (4): 375/389 kB | 40 kB | 53/73 kB | 4.1/66 kB Progress (4): 379/389 kB | 40 kB | 53/73 kB | 4.1/66 kB Progress (4): 383/389 kB | 40 kB | 53/73 kB | 4.1/66 kB Progress (4): 383/389 kB | 40 kB | 53/73 kB | 8.2/66 kB Progress (4): 383/389 kB | 40 kB | 53/73 kB | 12/66 kB Progress (4): 387/389 kB | 40 kB | 53/73 kB | 12/66 kB Progress (4): 389 kB | 40 kB | 53/73 kB | 12/66 kB Progress (4): 389 kB | 40 kB | 57/73 kB | 12/66 kB Progress (4): 389 kB | 40 kB | 61/73 kB | 12/66 kB Progress (4): 389 kB | 40 kB | 61/73 kB | 16/66 kB Progress (4): 389 kB | 40 kB | 66/73 kB | 16/66 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-definition/0.42.14/flexmark-ext-definition-0.42.14.jar (40 kB at 39 kB/s) +Progress (4): 389 kB | 66/73 kB | 16/66 kB | 4.1/13 kB Progress (4): 389 kB | 66/73 kB | 20/66 kB | 4.1/13 kB Progress (4): 389 kB | 66/73 kB | 24/66 kB | 4.1/13 kB Progress (4): 389 kB | 66/73 kB | 28/66 kB | 4.1/13 kB Progress (4): 389 kB | 66/73 kB | 28/66 kB | 8.2/13 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.jar +Progress (4): 389 kB | 70/73 kB | 28/66 kB | 8.2/13 kB Progress (4): 389 kB | 73 kB | 28/66 kB | 8.2/13 kB Progress (4): 389 kB | 73 kB | 28/66 kB | 12/13 kB Progress (4): 389 kB | 73 kB | 28/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 32/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 36/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 40/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 44/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 49/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 53/66 kB | 13 kB Progress (4): 389 kB | 73 kB | 57/66 kB | 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark/0.42.14/flexmark-0.42.14.jar (389 kB at 380 kB/s) +Progress (3): 73 kB | 61/66 kB | 13 kB Progress (3): 73 kB | 65/66 kB | 13 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.jar +Progress (3): 73 kB | 66 kB | 13 kB Progress (4): 73 kB | 66 kB | 13 kB | 4.1/41 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.42.14/flexmark-ext-emoji-0.42.14.jar (73 kB at 71 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-escaped-character/0.42.14/flexmark-ext-escaped-character-0.42.14.jar (13 kB at 12 kB/s) +Progress (2): 66 kB | 8.2/41 kB Progress (2): 66 kB | 12/41 kB Progress (2): 66 kB | 16/41 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.jar +Progress (2): 66 kB | 20/41 kB Progress (2): 66 kB | 25/41 kB Progress (2): 66 kB | 29/41 kB Progress (2): 66 kB | 33/41 kB Progress (2): 66 kB | 37/41 kB Progress (2): 66 kB | 41/41 kB Progress (2): 66 kB | 41 kB Progress (3): 66 kB | 41 kB | 4.1/16 kB Progress (3): 66 kB | 41 kB | 8.2/16 kB Progress (3): 66 kB | 41 kB | 12/16 kB Progress (3): 66 kB | 41 kB | 16 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-enumerated-reference/0.42.14/flexmark-ext-enumerated-reference-0.42.14.jar (66 kB at 64 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.jar +Progress (3): 41 kB | 16 kB | 4.1/29 kB Progress (3): 41 kB | 16 kB | 8.2/29 kB Progress (3): 41 kB | 16 kB | 12/29 kB Progress (3): 41 kB | 16 kB | 16/29 kB Progress (3): 41 kB | 16 kB | 20/29 kB Progress (3): 41 kB | 16 kB | 25/29 kB Progress (3): 41 kB | 16 kB | 29 kB Progress (4): 41 kB | 16 kB | 29 kB | 4.1/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 8.2/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 12/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 16/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 20/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 24/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 28/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 32/33 kB Progress (4): 41 kB | 16 kB | 29 kB | 33 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-footnotes/0.42.14/flexmark-ext-footnotes-0.42.14.jar (41 kB at 39 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.jar +Progress (4): 16 kB | 29 kB | 33 kB | 4.1/28 kB Progress (4): 16 kB | 29 kB | 33 kB | 8.2/28 kB Progress (4): 16 kB | 29 kB | 33 kB | 12/28 kB Progress (4): 16 kB | 29 kB | 33 kB | 16/28 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-issues/0.42.14/flexmark-ext-gfm-issues-0.42.14.jar (16 kB at 15 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.jar +Progress (3): 29 kB | 33 kB | 20/28 kB Progress (3): 29 kB | 33 kB | 25/28 kB Progress (3): 29 kB | 33 kB | 28 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.42.14/flexmark-ext-gfm-strikethrough-0.42.14.jar (29 kB at 27 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tables/0.42.14/flexmark-ext-gfm-tables-0.42.14.jar (33 kB at 31 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.jar +Progress (2): 28 kB | 4.1/16 kB Progress (2): 28 kB | 8.2/16 kB Progress (2): 28 kB | 12/16 kB Progress (2): 28 kB | 16 kB Progress (3): 28 kB | 16 kB | 4.1/42 kB Progress (3): 28 kB | 16 kB | 8.2/42 kB Progress (3): 28 kB | 16 kB | 12/42 kB Progress (3): 28 kB | 16 kB | 15/42 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.42.14/flexmark-ext-gfm-tasklist-0.42.14.jar (28 kB at 26 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.jar +Progress (2): 16 kB | 19/42 kB Progress (2): 16 kB | 23/42 kB Progress (2): 16 kB | 27/42 kB Progress (2): 16 kB | 31/42 kB Progress (2): 16 kB | 35/42 kB Progress (2): 16 kB | 40/42 kB Progress (2): 16 kB | 42 kB Progress (3): 16 kB | 42 kB | 4.1/18 kB Progress (3): 16 kB | 42 kB | 8.2/18 kB Progress (3): 16 kB | 42 kB | 12/18 kB Progress (3): 16 kB | 42 kB | 16/18 kB Progress (3): 16 kB | 42 kB | 18 kB Progress (4): 16 kB | 42 kB | 18 kB | 4.1/21 kB Progress (4): 16 kB | 42 kB | 18 kB | 8.2/21 kB Progress (4): 16 kB | 42 kB | 18 kB | 12/21 kB Progress (4): 16 kB | 42 kB | 18 kB | 16/21 kB Progress (4): 16 kB | 42 kB | 18 kB | 20/21 kB Progress (4): 16 kB | 42 kB | 18 kB | 21 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-users/0.42.14/flexmark-ext-gfm-users-0.42.14.jar (16 kB at 15 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.jar +Progress (4): 42 kB | 18 kB | 21 kB | 4.1/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 8.2/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 12/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 16/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 20/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 24/25 kB Progress (4): 42 kB | 18 kB | 21 kB | 25 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-gitlab/0.42.14/flexmark-ext-gitlab-0.42.14.jar (42 kB at 39 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-front-matter/0.42.14/flexmark-ext-jekyll-front-matter-0.42.14.jar (18 kB at 17 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-jekyll-tag/0.42.14/flexmark-ext-jekyll-tag-0.42.14.jar (21 kB at 19 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.jar +Progress (2): 25 kB | 4.1/35 kB Progress (2): 25 kB | 8.2/35 kB Progress (2): 25 kB | 12/35 kB Progress (2): 25 kB | 16/35 kB Progress (2): 25 kB | 20/35 kB Progress (2): 25 kB | 24/35 kB Progress (2): 25 kB | 28/35 kB Progress (2): 25 kB | 32/35 kB Progress (2): 25 kB | 35 kB Progress (3): 25 kB | 35 kB | 4.1/13 kB Progress (3): 25 kB | 35 kB | 8.2/13 kB Progress (3): 25 kB | 35 kB | 12/13 kB Progress (3): 25 kB | 35 kB | 13 kB Progress (4): 25 kB | 35 kB | 13 kB | 4.1/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 8.2/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 12/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 16/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 20/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 25/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 29/31 kB Progress (4): 25 kB | 35 kB | 13 kB | 31 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-media-tags/0.42.14/flexmark-ext-media-tags-0.42.14.jar (25 kB at 23 kB/s) +Progress (4): 35 kB | 13 kB | 31 kB | 4.1/13 kB Progress (4): 35 kB | 13 kB | 31 kB | 8.2/13 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-macros/0.42.14/flexmark-ext-macros-0.42.14.jar (35 kB at 32 kB/s) +Progress (3): 13 kB | 31 kB | 12/13 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.42.14/flexmark-ext-ins-0.42.14.jar (13 kB at 12 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.jar +Progress (2): 31 kB | 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-xwiki-macros/0.42.14/flexmark-ext-xwiki-macros-0.42.14.jar (31 kB at 28 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.jar +Progress (2): 13 kB | 4.1/76 kB Progress (2): 13 kB | 8.2/76 kB Progress (3): 13 kB | 8.2/76 kB | 4.1/91 kB Progress (3): 13 kB | 8.2/76 kB | 8.2/91 kB Progress (3): 13 kB | 12/76 kB | 8.2/91 kB Progress (3): 13 kB | 16/76 kB | 8.2/91 kB Progress (3): 13 kB | 20/76 kB | 8.2/91 kB Progress (3): 13 kB | 25/76 kB | 8.2/91 kB Progress (3): 13 kB | 29/76 kB | 8.2/91 kB Progress (3): 13 kB | 33/76 kB | 8.2/91 kB Progress (3): 13 kB | 33/76 kB | 12/91 kB Progress (3): 13 kB | 33/76 kB | 16/91 kB Progress (3): 13 kB | 33/76 kB | 20/91 kB Progress (3): 13 kB | 33/76 kB | 25/91 kB Progress (3): 13 kB | 33/76 kB | 29/91 kB Progress (3): 13 kB | 37/76 kB | 29/91 kB Progress (3): 13 kB | 41/76 kB | 29/91 kB Progress (3): 13 kB | 45/76 kB | 29/91 kB Progress (3): 13 kB | 49/76 kB | 29/91 kB Progress (3): 13 kB | 53/76 kB | 29/91 kB Progress (3): 13 kB | 57/76 kB | 29/91 kB Progress (3): 13 kB | 61/76 kB | 29/91 kB Progress (3): 13 kB | 66/76 kB | 29/91 kB Progress (4): 13 kB | 66/76 kB | 29/91 kB | 4.1/22 kB Progress (4): 13 kB | 66/76 kB | 29/91 kB | 8.2/22 kB Progress (4): 13 kB | 66/76 kB | 29/91 kB | 12/22 kB Progress (4): 13 kB | 70/76 kB | 29/91 kB | 12/22 kB Progress (4): 13 kB | 74/76 kB | 29/91 kB | 12/22 kB Progress (4): 13 kB | 74/76 kB | 33/91 kB | 12/22 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.42.14/flexmark-ext-superscript-0.42.14.jar (13 kB at 12 kB/s) +Progress (4): 74/76 kB | 33/91 kB | 12/22 kB | 4.1/26 kB Progress (4): 74/76 kB | 33/91 kB | 12/22 kB | 8.2/26 kB Progress (4): 74/76 kB | 37/91 kB | 12/22 kB | 8.2/26 kB Progress (4): 74/76 kB | 41/91 kB | 12/22 kB | 8.2/26 kB Progress (4): 76 kB | 41/91 kB | 12/22 kB | 8.2/26 kB Progress (4): 76 kB | 41/91 kB | 16/22 kB | 8.2/26 kB Progress (4): 76 kB | 41/91 kB | 20/22 kB | 8.2/26 kB Progress (4): 76 kB | 41/91 kB | 22 kB | 8.2/26 kB Progress (4): 76 kB | 45/91 kB | 22 kB | 8.2/26 kB Progress (4): 76 kB | 49/91 kB | 22 kB | 8.2/26 kB Progress (4): 76 kB | 49/91 kB | 22 kB | 12/26 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.jar +Progress (4): 76 kB | 49/91 kB | 22 kB | 16/26 kB Progress (4): 76 kB | 49/91 kB | 22 kB | 20/26 kB Progress (4): 76 kB | 53/91 kB | 22 kB | 20/26 kB Progress (4): 76 kB | 57/91 kB | 22 kB | 20/26 kB Progress (4): 76 kB | 61/91 kB | 22 kB | 20/26 kB Progress (4): 76 kB | 61/91 kB | 22 kB | 25/26 kB Progress (4): 76 kB | 61/91 kB | 22 kB | 26 kB Progress (4): 76 kB | 66/91 kB | 22 kB | 26 kB Progress (4): 76 kB | 70/91 kB | 22 kB | 26 kB Progress (4): 76 kB | 74/91 kB | 22 kB | 26 kB Progress (4): 76 kB | 78/91 kB | 22 kB | 26 kB Progress (4): 76 kB | 82/91 kB | 22 kB | 26 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.42.14/flexmark-ext-tables-0.42.14.jar (76 kB at 66 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-typographic/0.42.14/flexmark-ext-typographic-0.42.14.jar (22 kB at 19 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.jar +Progress (2): 86/91 kB | 26 kB Progress (2): 90/91 kB | 26 kB Progress (2): 91 kB | 26 kB Progress (3): 91 kB | 26 kB | 4.1/18 kB Progress (3): 91 kB | 26 kB | 8.2/18 kB Progress (3): 91 kB | 26 kB | 12/18 kB Progress (3): 91 kB | 26 kB | 16/18 kB Progress (3): 91 kB | 26 kB | 18 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.42.14/flexmark-ext-wikilink-0.42.14.jar (26 kB at 22 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.jar +Progress (3): 91 kB | 18 kB | 4.1/97 kB Progress (4): 91 kB | 18 kB | 4.1/97 kB | 4.1/13 kB Progress (4): 91 kB | 18 kB | 4.1/97 kB | 8.2/13 kB Progress (4): 91 kB | 18 kB | 4.1/97 kB | 12/13 kB Progress (4): 91 kB | 18 kB | 8.2/97 kB | 12/13 kB Progress (4): 91 kB | 18 kB | 12/97 kB | 12/13 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-toc/0.42.14/flexmark-ext-toc-0.42.14.jar (91 kB at 77 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.jar +Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.42.14/flexmark-ext-yaml-front-matter-0.42.14.jar (18 kB at 15 kB/s) +Progress (2): 16/97 kB | 12/13 kB Progress (2): 16/97 kB | 13 kB Progress (2): 20/97 kB | 13 kB Progress (2): 24/97 kB | 13 kB Progress (3): 24/97 kB | 13 kB | 4.1/45 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.jar +Progress (3): 24/97 kB | 13 kB | 8.2/45 kB Progress (3): 24/97 kB | 13 kB | 12/45 kB Progress (3): 28/97 kB | 13 kB | 12/45 kB Progress (3): 32/97 kB | 13 kB | 12/45 kB Progress (3): 32/97 kB | 13 kB | 16/45 kB Progress (3): 32/97 kB | 13 kB | 20/45 kB Progress (3): 36/97 kB | 13 kB | 20/45 kB Progress (3): 40/97 kB | 13 kB | 20/45 kB Progress (3): 44/97 kB | 13 kB | 20/45 kB Progress (3): 49/97 kB | 13 kB | 20/45 kB Progress (3): 53/97 kB | 13 kB | 20/45 kB Progress (3): 57/97 kB | 13 kB | 20/45 kB Progress (4): 57/97 kB | 13 kB | 20/45 kB | 4.1/351 kB Progress (4): 57/97 kB | 13 kB | 20/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 25/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 29/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 33/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 37/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 41/45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 45 kB | 8.2/351 kB Progress (4): 57/97 kB | 13 kB | 45 kB | 12/351 kB Progress (4): 57/97 kB | 13 kB | 45 kB | 16/351 kB Progress (4): 61/97 kB | 13 kB | 45 kB | 16/351 kB Progress (4): 65/97 kB | 13 kB | 45 kB | 16/351 kB Progress (4): 69/97 kB | 13 kB | 45 kB | 16/351 kB Progress (4): 73/97 kB | 13 kB | 45 kB | 16/351 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-ext-youtube-embedded/0.42.14/flexmark-ext-youtube-embedded-0.42.14.jar (13 kB at 10 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.jar +Progress (4): 73/97 kB | 45 kB | 16/351 kB | 4.1/40 kB Progress (4): 73/97 kB | 45 kB | 16/351 kB | 8.2/40 kB Progress (4): 73/97 kB | 45 kB | 16/351 kB | 12/40 kB Progress (4): 77/97 kB | 45 kB | 16/351 kB | 12/40 kB Progress (4): 77/97 kB | 45 kB | 20/351 kB | 12/40 kB Progress (4): 77/97 kB | 45 kB | 25/351 kB | 12/40 kB Progress (4): 81/97 kB | 45 kB | 25/351 kB | 12/40 kB Progress (4): 85/97 kB | 45 kB | 25/351 kB | 12/40 kB Progress (4): 85/97 kB | 45 kB | 25/351 kB | 16/40 kB Progress (4): 85/97 kB | 45 kB | 25/351 kB | 20/40 kB Progress (4): 85/97 kB | 45 kB | 29/351 kB | 20/40 kB Progress (4): 90/97 kB | 45 kB | 29/351 kB | 20/40 kB Progress (4): 94/97 kB | 45 kB | 29/351 kB | 20/40 kB Progress (4): 94/97 kB | 45 kB | 29/351 kB | 25/40 kB Progress (4): 94/97 kB | 45 kB | 29/351 kB | 29/40 kB Progress (4): 94/97 kB | 45 kB | 33/351 kB | 29/40 kB Progress (4): 94/97 kB | 45 kB | 37/351 kB | 29/40 kB Progress (4): 94/97 kB | 45 kB | 37/351 kB | 33/40 kB Progress (4): 94/97 kB | 45 kB | 37/351 kB | 37/40 kB Progress (4): 94/97 kB | 45 kB | 37/351 kB | 40 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-html-parser/0.42.14/flexmark-html-parser-0.42.14.jar (45 kB at 36 kB/s) +Progress (3): 97 kB | 37/351 kB | 40 kB Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.jar +Progress (4): 97 kB | 37/351 kB | 40 kB | 4.1/6.3 kB Progress (4): 97 kB | 37/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 41/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 45/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 49/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 53/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 57/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 61/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 64/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 68/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 72/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 76/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 80/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 84/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 88/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 93/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 97/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 101/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 105/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 109/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 113/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 117/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 121/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 125/351 kB | 40 kB | 6.3 kB Progress (4): 97 kB | 129/351 kB | 40 kB | 6.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.42.14/flexmark-jira-converter-0.42.14.jar (40 kB at 32 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.jar +Progress (3): 97 kB | 134/351 kB | 6.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-formatter/0.42.14/flexmark-formatter-0.42.14.jar (97 kB at 79 kB/s) +Progress (3): 134/351 kB | 6.3 kB | 4.1/385 kB Progress (3): 134/351 kB | 6.3 kB | 8.2/385 kB Progress (3): 134/351 kB | 6.3 kB | 12/385 kB Progress (3): 134/351 kB | 6.3 kB | 16/385 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-profile-pegdown/0.42.14/flexmark-profile-pegdown-0.42.14.jar (6.3 kB at 5.1 kB/s) +Progress (2): 138/351 kB | 16/385 kB Progress (2): 142/351 kB | 16/385 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.jar +Progress (2): 142/351 kB | 20/385 kB Progress (2): 142/351 kB | 25/385 kB Progress (2): 142/351 kB | 29/385 kB Progress (2): 142/351 kB | 33/385 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.jar +Progress (2): 142/351 kB | 37/385 kB Progress (2): 142/351 kB | 41/385 kB Progress (2): 142/351 kB | 45/385 kB Progress (2): 142/351 kB | 49/385 kB Progress (2): 146/351 kB | 49/385 kB Progress (2): 146/351 kB | 53/385 kB Progress (2): 150/351 kB | 53/385 kB Progress (2): 154/351 kB | 53/385 kB Progress (2): 158/351 kB | 53/385 kB Progress (2): 158/351 kB | 57/385 kB Progress (3): 158/351 kB | 57/385 kB | 4.1/41 kB Progress (3): 158/351 kB | 61/385 kB | 4.1/41 kB Progress (3): 158/351 kB | 65/385 kB | 4.1/41 kB Progress (3): 162/351 kB | 65/385 kB | 4.1/41 kB Progress (3): 162/351 kB | 70/385 kB | 4.1/41 kB Progress (3): 162/351 kB | 70/385 kB | 8.2/41 kB Progress (3): 162/351 kB | 74/385 kB | 8.2/41 kB Progress (3): 162/351 kB | 78/385 kB | 8.2/41 kB Progress (3): 166/351 kB | 78/385 kB | 8.2/41 kB Progress (3): 166/351 kB | 82/385 kB | 8.2/41 kB Progress (3): 166/351 kB | 82/385 kB | 12/41 kB Progress (3): 166/351 kB | 82/385 kB | 16/41 kB Progress (3): 166/351 kB | 82/385 kB | 20/41 kB Progress (3): 166/351 kB | 86/385 kB | 20/41 kB Progress (3): 170/351 kB | 86/385 kB | 20/41 kB Progress (3): 170/351 kB | 90/385 kB | 20/41 kB Progress (3): 170/351 kB | 94/385 kB | 20/41 kB Progress (3): 170/351 kB | 98/385 kB | 20/41 kB Progress (4): 170/351 kB | 98/385 kB | 20/41 kB | 4.1/58 kB Progress (5): 170/351 kB | 98/385 kB | 20/41 kB | 4.1/58 kB | 4.1/128 kB Progress (5): 170/351 kB | 98/385 kB | 20/41 kB | 4.1/58 kB | 8.2/128 kB Progress (5): 170/351 kB | 98/385 kB | 20/41 kB | 8.2/58 kB | 8.2/128 kB Progress (5): 170/351 kB | 98/385 kB | 20/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 170/351 kB | 102/385 kB | 20/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 174/351 kB | 102/385 kB | 20/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 179/351 kB | 102/385 kB | 20/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 183/351 kB | 102/385 kB | 20/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 183/351 kB | 102/385 kB | 24/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 183/351 kB | 102/385 kB | 28/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 183/351 kB | 102/385 kB | 32/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 187/351 kB | 102/385 kB | 32/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 102/385 kB | 32/41 kB | 12/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 102/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 106/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 111/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 115/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 119/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 123/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 127/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 131/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 135/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 139/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 143/385 kB | 32/41 kB | 16/58 kB | 8.2/128 kB Progress (5): 191/351 kB | 143/385 kB | 32/41 kB | 16/58 kB | 12/128 kB Progress (5): 191/351 kB | 147/385 kB | 32/41 kB | 16/58 kB | 12/128 kB Progress (5): 191/351 kB | 147/385 kB | 32/41 kB | 20/58 kB | 12/128 kB Progress (5): 195/351 kB | 147/385 kB | 32/41 kB | 20/58 kB | 12/128 kB Progress (5): 195/351 kB | 147/385 kB | 36/41 kB | 20/58 kB | 12/128 kB Progress (5): 195/351 kB | 147/385 kB | 40/41 kB | 20/58 kB | 12/128 kB Progress (5): 195/351 kB | 147/385 kB | 41 kB | 20/58 kB | 12/128 kB Progress (5): 199/351 kB | 147/385 kB | 41 kB | 20/58 kB | 12/128 kB Progress (5): 203/351 kB | 147/385 kB | 41 kB | 20/58 kB | 12/128 kB Progress (5): 203/351 kB | 147/385 kB | 41 kB | 25/58 kB | 12/128 kB Progress (5): 203/351 kB | 147/385 kB | 41 kB | 29/58 kB | 12/128 kB Progress (5): 203/351 kB | 151/385 kB | 41 kB | 29/58 kB | 12/128 kB Progress (5): 203/351 kB | 151/385 kB | 41 kB | 29/58 kB | 16/128 kB Progress (5): 203/351 kB | 151/385 kB | 41 kB | 33/58 kB | 16/128 kB Progress (5): 203/351 kB | 151/385 kB | 41 kB | 33/58 kB | 20/128 kB Progress (5): 203/351 kB | 156/385 kB | 41 kB | 33/58 kB | 20/128 kB Progress (5): 207/351 kB | 156/385 kB | 41 kB | 33/58 kB | 20/128 kB Progress (5): 211/351 kB | 156/385 kB | 41 kB | 33/58 kB | 20/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 20/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 25/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 29/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 33/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 37/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 33/58 kB | 41/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 37/58 kB | 41/128 kB Progress (5): 211/351 kB | 160/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 211/351 kB | 164/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 215/351 kB | 164/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 220/351 kB | 164/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 220/351 kB | 168/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 45/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 49/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 53/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 57/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 61/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 66/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 70/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 74/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 37/58 kB | 78/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 41/58 kB | 78/128 kB Progress (5): 220/351 kB | 172/385 kB | 41 kB | 41/58 kB | 82/128 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-youtrack-converter/0.42.14/flexmark-youtrack-converter-0.42.14.jar (41 kB at 32 kB/s) +Progress (4): 220/351 kB | 176/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 180/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 184/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 188/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 192/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 197/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 201/385 kB | 41/58 kB | 82/128 kB Progress (4): 220/351 kB | 205/385 kB | 41/58 kB | 82/128 kB Progress (4): 224/351 kB | 205/385 kB | 41/58 kB | 82/128 kB Progress (4): 228/351 kB | 205/385 kB | 41/58 kB | 82/128 kB Progress (4): 228/351 kB | 209/385 kB | 41/58 kB | 82/128 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.jar +Progress (4): 228/351 kB | 209/385 kB | 41/58 kB | 86/128 kB Progress (4): 228/351 kB | 209/385 kB | 41/58 kB | 90/128 kB Progress (4): 228/351 kB | 209/385 kB | 45/58 kB | 90/128 kB Progress (4): 228/351 kB | 213/385 kB | 45/58 kB | 90/128 kB Progress (4): 228/351 kB | 217/385 kB | 45/58 kB | 90/128 kB Progress (4): 228/351 kB | 221/385 kB | 45/58 kB | 90/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 90/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 94/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 98/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 102/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 106/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 111/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 115/128 kB Progress (4): 232/351 kB | 221/385 kB | 45/58 kB | 119/128 kB Progress (4): 232/351 kB | 221/385 kB | 49/58 kB | 119/128 kB Progress (4): 232/351 kB | 221/385 kB | 49/58 kB | 123/128 kB Progress (4): 232/351 kB | 221/385 kB | 49/58 kB | 127/128 kB Progress (4): 232/351 kB | 221/385 kB | 49/58 kB | 128 kB Progress (4): 232/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 236/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 240/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 244/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 248/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 252/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 256/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 261/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 225/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 229/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 233/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 238/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 242/385 kB | 49/58 kB | 128 kB Progress (4): 265/351 kB | 242/385 kB | 53/58 kB | 128 kB Progress (4): 265/351 kB | 242/385 kB | 57/58 kB | 128 kB Progress (4): 265/351 kB | 242/385 kB | 58 kB | 128 kB Progress (4): 265/351 kB | 246/385 kB | 58 kB | 128 kB Progress (5): 265/351 kB | 246/385 kB | 58 kB | 128 kB | 4.1/73 kB Progress (5): 265/351 kB | 250/385 kB | 58 kB | 128 kB | 4.1/73 kB Progress (5): 265/351 kB | 254/385 kB | 58 kB | 128 kB | 4.1/73 kB Progress (5): 269/351 kB | 254/385 kB | 58 kB | 128 kB | 4.1/73 kB Progress (5): 273/351 kB | 254/385 kB | 58 kB | 128 kB | 4.1/73 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-docbook-simple/1.11.1/doxia-module-docbook-simple-1.11.1.jar (128 kB at 96 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.jar +Progress (4): 273/351 kB | 258/385 kB | 58 kB | 4.1/73 kB Progress (4): 273/351 kB | 262/385 kB | 58 kB | 4.1/73 kB Progress (4): 273/351 kB | 262/385 kB | 58 kB | 8.2/73 kB Progress (4): 273/351 kB | 262/385 kB | 58 kB | 12/73 kB Progress (4): 273/351 kB | 262/385 kB | 58 kB | 16/73 kB Progress (4): 273/351 kB | 266/385 kB | 58 kB | 16/73 kB Progress (4): 273/351 kB | 270/385 kB | 58 kB | 16/73 kB Progress (4): 277/351 kB | 270/385 kB | 58 kB | 16/73 kB Progress (4): 281/351 kB | 270/385 kB | 58 kB | 16/73 kB Progress (4): 281/351 kB | 274/385 kB | 58 kB | 16/73 kB Progress (4): 281/351 kB | 278/385 kB | 58 kB | 16/73 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-confluence/1.11.1/doxia-module-confluence-1.11.1.jar (58 kB at 43 kB/s) +Progress (3): 281/351 kB | 278/385 kB | 20/73 kB Progress (3): 281/351 kB | 278/385 kB | 24/73 kB Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar +Progress (4): 281/351 kB | 278/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 281/351 kB | 283/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 285/351 kB | 283/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 289/351 kB | 283/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 289/351 kB | 287/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 289/351 kB | 291/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 289/351 kB | 295/385 kB | 24/73 kB | 4.1/733 kB Progress (4): 289/351 kB | 295/385 kB | 24/73 kB | 8.2/733 kB Progress (4): 289/351 kB | 295/385 kB | 24/73 kB | 12/733 kB Progress (4): 289/351 kB | 295/385 kB | 28/73 kB | 12/733 kB Progress (4): 289/351 kB | 295/385 kB | 32/73 kB | 12/733 kB Progress (4): 289/351 kB | 295/385 kB | 32/73 kB | 16/733 kB Progress (4): 289/351 kB | 295/385 kB | 32/73 kB | 20/733 kB Progress (4): 289/351 kB | 299/385 kB | 32/73 kB | 20/733 kB Progress (4): 293/351 kB | 299/385 kB | 32/73 kB | 20/733 kB Progress (4): 297/351 kB | 299/385 kB | 32/73 kB | 20/733 kB Progress (4): 297/351 kB | 299/385 kB | 32/73 kB | 25/733 kB Progress (4): 297/351 kB | 299/385 kB | 32/73 kB | 29/733 kB Progress (4): 297/351 kB | 299/385 kB | 32/73 kB | 33/733 kB Progress (4): 297/351 kB | 303/385 kB | 32/73 kB | 33/733 kB Progress (4): 297/351 kB | 307/385 kB | 32/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 32/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 36/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 40/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 44/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 49/73 kB | 33/733 kB Progress (4): 297/351 kB | 311/385 kB | 53/73 kB | 33/733 kB Progress (4): 297/351 kB | 315/385 kB | 53/73 kB | 33/733 kB Progress (4): 297/351 kB | 315/385 kB | 53/73 kB | 37/733 kB Progress (4): 297/351 kB | 315/385 kB | 53/73 kB | 41/733 kB Progress (4): 301/351 kB | 315/385 kB | 53/73 kB | 41/733 kB Progress (4): 306/351 kB | 315/385 kB | 53/73 kB | 41/733 kB Progress (5): 306/351 kB | 315/385 kB | 53/73 kB | 41/733 kB | 4.1/96 kB Progress (5): 306/351 kB | 315/385 kB | 53/73 kB | 41/733 kB | 8.2/96 kB Progress (5): 310/351 kB | 315/385 kB | 53/73 kB | 41/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 315/385 kB | 53/73 kB | 41/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 315/385 kB | 53/73 kB | 45/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 315/385 kB | 53/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 315/385 kB | 57/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 319/385 kB | 57/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 57/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 61/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 65/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 69/73 kB | 49/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 69/73 kB | 53/733 kB | 8.2/96 kB Progress (5): 314/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 8.2/96 kB Progress (5): 318/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 8.2/96 kB Progress (5): 322/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 8.2/96 kB Progress (5): 326/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 8.2/96 kB Progress (5): 326/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 12/96 kB Progress (5): 326/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 16/96 kB Progress (5): 326/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 20/96 kB Progress (5): 330/351 kB | 324/385 kB | 69/73 kB | 57/733 kB | 20/96 kB Progress (5): 330/351 kB | 324/385 kB | 69/73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 324/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 328/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 332/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 336/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 340/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 344/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 348/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 352/385 kB | 73 kB | 61/733 kB | 20/96 kB Progress (5): 330/351 kB | 352/385 kB | 73 kB | 66/733 kB | 20/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 20/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 24/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 28/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 32/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 36/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 40/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 44/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 49/96 kB Progress (5): 334/351 kB | 352/385 kB | 73 kB | 66/733 kB | 53/96 kB Progress (5): 338/351 kB | 352/385 kB | 73 kB | 66/733 kB | 53/96 kB Progress (5): 338/351 kB | 352/385 kB | 73 kB | 70/733 kB | 53/96 kB Progress (5): 338/351 kB | 352/385 kB | 73 kB | 74/733 kB | 53/96 kB Progress (5): 338/351 kB | 356/385 kB | 73 kB | 74/733 kB | 53/96 kB Progress (5): 338/351 kB | 360/385 kB | 73 kB | 74/733 kB | 53/96 kB Progress (5): 338/351 kB | 360/385 kB | 73 kB | 78/733 kB | 53/96 kB Progress (5): 338/351 kB | 360/385 kB | 73 kB | 82/733 kB | 53/96 kB Progress (5): 342/351 kB | 360/385 kB | 73 kB | 82/733 kB | 53/96 kB Progress (5): 342/351 kB | 360/385 kB | 73 kB | 82/733 kB | 57/96 kB Progress (5): 347/351 kB | 360/385 kB | 73 kB | 82/733 kB | 57/96 kB Progress (5): 347/351 kB | 360/385 kB | 73 kB | 86/733 kB | 57/96 kB Progress (5): 347/351 kB | 360/385 kB | 73 kB | 90/733 kB | 57/96 kB Progress (5): 347/351 kB | 360/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 364/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 369/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 373/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 377/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 381/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 385/385 kB | 73 kB | 94/733 kB | 57/96 kB Progress (5): 347/351 kB | 385 kB | 73 kB | 94/733 kB | 57/96 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-twiki/1.11.1/doxia-module-twiki-1.11.1.jar (73 kB at 51 kB/s) +Progress (4): 347/351 kB | 385 kB | 98/733 kB | 57/96 kB Progress (4): 351/351 kB | 385 kB | 98/733 kB | 57/96 kB Progress (4): 351/351 kB | 385 kB | 98/733 kB | 61/96 kB Progress (4): 351/351 kB | 385 kB | 98/733 kB | 65/96 kB Progress (4): 351 kB | 385 kB | 98/733 kB | 65/96 kB Progress (4): 351 kB | 385 kB | 98/733 kB | 69/96 kB Progress (4): 351 kB | 385 kB | 98/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 102/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 106/733 kB | 73/96 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.jar +Progress (4): 351 kB | 385 kB | 111/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 115/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 119/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 123/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 73/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 77/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 81/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 85/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 90/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 94/96 kB Progress (4): 351 kB | 385 kB | 127/733 kB | 96 kB Progress (4): 351 kB | 385 kB | 131/733 kB | 96 kB Progress (4): 351 kB | 385 kB | 135/733 kB | 96 kB Progress (4): 351 kB | 385 kB | 139/733 kB | 96 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/vladsch/flexmark/flexmark-util/0.42.14/flexmark-util-0.42.14.jar (385 kB at 267 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.jar +Progress (3): 351 kB | 143/733 kB | 96 kB Progress (3): 351 kB | 147/733 kB | 96 kB Progress (3): 351 kB | 152/733 kB | 96 kB Progress (3): 351 kB | 156/733 kB | 96 kB Progress (3): 351 kB | 160/733 kB | 96 kB Progress (3): 351 kB | 164/733 kB | 96 kB Progress (3): 351 kB | 168/733 kB | 96 kB Progress (3): 351 kB | 172/733 kB | 96 kB Progress (3): 351 kB | 176/733 kB | 96 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jsoup/jsoup/1.10.2/jsoup-1.10.2.jar (351 kB at 242 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.jar +Progress (3): 176/733 kB | 96 kB | 4.1/225 kB Progress (3): 176/733 kB | 96 kB | 8.2/225 kB Progress (3): 176/733 kB | 96 kB | 12/225 kB Progress (3): 176/733 kB | 96 kB | 16/225 kB Progress (3): 176/733 kB | 96 kB | 20/225 kB Progress (3): 176/733 kB | 96 kB | 25/225 kB Progress (3): 176/733 kB | 96 kB | 29/225 kB Progress (3): 176/733 kB | 96 kB | 33/225 kB Progress (3): 180/733 kB | 96 kB | 33/225 kB Progress (3): 184/733 kB | 96 kB | 33/225 kB Progress (3): 188/733 kB | 96 kB | 33/225 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/javax.servlet-api/3.1.0/javax.servlet-api-3.1.0.jar (96 kB at 66 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.jar +Progress (2): 188/733 kB | 37/225 kB Progress (2): 188/733 kB | 41/225 kB Progress (2): 188/733 kB | 45/225 kB Progress (2): 188/733 kB | 49/225 kB Progress (3): 188/733 kB | 49/225 kB | 4.1/184 kB Progress (3): 188/733 kB | 49/225 kB | 8.2/184 kB Progress (3): 193/733 kB | 49/225 kB | 8.2/184 kB Progress (3): 197/733 kB | 49/225 kB | 8.2/184 kB Progress (3): 197/733 kB | 49/225 kB | 12/184 kB Progress (3): 197/733 kB | 49/225 kB | 16/184 kB Progress (3): 197/733 kB | 53/225 kB | 16/184 kB Progress (3): 197/733 kB | 57/225 kB | 16/184 kB Progress (3): 197/733 kB | 57/225 kB | 20/184 kB Progress (3): 201/733 kB | 57/225 kB | 20/184 kB Progress (3): 205/733 kB | 57/225 kB | 20/184 kB Progress (4): 205/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 209/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 213/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 217/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 221/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 225/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 229/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 233/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 238/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 242/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 246/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 250/733 kB | 57/225 kB | 20/184 kB | 4.1/147 kB Progress (4): 250/733 kB | 57/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 254/733 kB | 57/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 258/733 kB | 57/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 258/733 kB | 61/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 262/733 kB | 61/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 266/733 kB | 61/225 kB | 25/184 kB | 4.1/147 kB Progress (4): 266/733 kB | 61/225 kB | 29/184 kB | 4.1/147 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 4.1/147 kB | 4.1/119 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 4.1/147 kB | 8.2/119 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 4.1/147 kB | 12/119 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 4.1/147 kB | 16/119 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 8.2/147 kB | 16/119 kB Progress (5): 266/733 kB | 61/225 kB | 29/184 kB | 12/147 kB | 16/119 kB Progress (5): 266/733 kB | 61/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 270/733 kB | 61/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 274/733 kB | 61/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 274/733 kB | 65/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 274/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 279/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 283/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 287/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 291/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 295/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 33/184 kB | 12/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 37/184 kB | 12/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 41/184 kB | 12/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 12/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 16/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 20/147 kB | 16/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 20/147 kB | 20/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 20/147 kB | 24/119 kB Progress (5): 299/733 kB | 70/225 kB | 45/184 kB | 25/147 kB | 24/119 kB Progress (5): 303/733 kB | 70/225 kB | 45/184 kB | 25/147 kB | 24/119 kB Progress (5): 307/733 kB | 70/225 kB | 45/184 kB | 25/147 kB | 24/119 kB Progress (5): 311/733 kB | 70/225 kB | 45/184 kB | 25/147 kB | 24/119 kB Progress (5): 311/733 kB | 70/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 315/733 kB | 70/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 315/733 kB | 74/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 315/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 319/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 324/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 328/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 332/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 336/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 49/184 kB | 25/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 53/184 kB | 25/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 57/184 kB | 25/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 25/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 29/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 33/147 kB | 24/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 33/147 kB | 28/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 33/147 kB | 32/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 37/147 kB | 32/119 kB Progress (5): 340/733 kB | 78/225 kB | 61/184 kB | 41/147 kB | 32/119 kB Progress (5): 344/733 kB | 78/225 kB | 61/184 kB | 41/147 kB | 32/119 kB Progress (5): 348/733 kB | 78/225 kB | 61/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 78/225 kB | 61/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 78/225 kB | 66/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 82/225 kB | 66/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 82/225 kB | 70/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 82/225 kB | 74/184 kB | 41/147 kB | 32/119 kB Progress (5): 352/733 kB | 82/225 kB | 78/184 kB | 41/147 kB | 32/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 41/147 kB | 32/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 45/147 kB | 32/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 32/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 36/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 40/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 44/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 49/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 53/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 57/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 49/147 kB | 61/119 kB Progress (5): 356/733 kB | 82/225 kB | 78/184 kB | 53/147 kB | 61/119 kB Progress (5): 356/733 kB | 82/225 kB | 82/184 kB | 53/147 kB | 61/119 kB Progress (5): 356/733 kB | 82/225 kB | 82/184 kB | 57/147 kB | 61/119 kB Progress (5): 356/733 kB | 82/225 kB | 82/184 kB | 61/147 kB | 61/119 kB Progress (5): 356/733 kB | 82/225 kB | 82/184 kB | 65/147 kB | 61/119 kB Progress (5): 360/733 kB | 82/225 kB | 82/184 kB | 65/147 kB | 61/119 kB Progress (5): 360/733 kB | 86/225 kB | 82/184 kB | 65/147 kB | 61/119 kB Progress (5): 365/733 kB | 86/225 kB | 82/184 kB | 65/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 65/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 70/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 74/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 78/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 82/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 86/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 90/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 82/184 kB | 94/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 86/184 kB | 94/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 90/184 kB | 94/147 kB | 61/119 kB Progress (5): 369/733 kB | 86/225 kB | 90/184 kB | 94/147 kB | 65/119 kB Progress (5): 369/733 kB | 86/225 kB | 94/184 kB | 94/147 kB | 65/119 kB Progress (5): 369/733 kB | 86/225 kB | 94/184 kB | 94/147 kB | 69/119 kB Progress (5): 369/733 kB | 86/225 kB | 98/184 kB | 94/147 kB | 69/119 kB Progress (5): 369/733 kB | 86/225 kB | 98/184 kB | 98/147 kB | 69/119 kB Progress (5): 369/733 kB | 86/225 kB | 98/184 kB | 102/147 kB | 69/119 kB Progress (5): 373/733 kB | 86/225 kB | 98/184 kB | 102/147 kB | 69/119 kB Progress (5): 373/733 kB | 86/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 90/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 94/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 98/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 102/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 106/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 373/733 kB | 110/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 377/733 kB | 110/225 kB | 98/184 kB | 106/147 kB | 69/119 kB Progress (5): 377/733 kB | 110/225 kB | 102/184 kB | 106/147 kB | 69/119 kB Progress (5): 377/733 kB | 110/225 kB | 102/184 kB | 106/147 kB | 73/119 kB Progress (5): 377/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 73/119 kB Progress (5): 377/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 77/119 kB Progress (5): 377/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 381/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 385/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 389/733 kB | 110/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 389/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 393/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 397/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 401/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 406/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 410/733 kB | 115/225 kB | 106/184 kB | 106/147 kB | 81/119 kB Progress (5): 410/733 kB | 115/225 kB | 106/184 kB | 110/147 kB | 81/119 kB Progress (5): 410/733 kB | 115/225 kB | 106/184 kB | 115/147 kB | 81/119 kB Progress (5): 410/733 kB | 119/225 kB | 106/184 kB | 115/147 kB | 81/119 kB Progress (5): 410/733 kB | 119/225 kB | 106/184 kB | 115/147 kB | 85/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 85/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 90/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 94/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 98/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 102/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 106/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 110/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 114/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 118/119 kB Progress (5): 410/733 kB | 119/225 kB | 111/184 kB | 115/147 kB | 119 kB Progress (5): 410/733 kB | 123/225 kB | 111/184 kB | 115/147 kB | 119 kB Progress (5): 414/733 kB | 123/225 kB | 111/184 kB | 115/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 115/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 119/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 123/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 127/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 131/147 kB | 119 kB Progress (5): 414/733 kB | 127/225 kB | 111/184 kB | 135/147 kB | 119 kB Progress (5): 414/733 kB | 131/225 kB | 111/184 kB | 135/147 kB | 119 kB Progress (5): 418/733 kB | 131/225 kB | 111/184 kB | 135/147 kB | 119 kB Progress (5): 418/733 kB | 131/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 131/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 135/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 139/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 143/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 147/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 151/225 kB | 115/184 kB | 135/147 kB | 119 kB Progress (5): 422/733 kB | 151/225 kB | 115/184 kB | 139/147 kB | 119 kB Progress (5): 422/733 kB | 151/225 kB | 115/184 kB | 143/147 kB | 119 kB Progress (5): 422/733 kB | 151/225 kB | 115/184 kB | 147 kB | 119 kB Progress (5): 422/733 kB | 156/225 kB | 115/184 kB | 147 kB | 119 kB Progress (5): 422/733 kB | 160/225 kB | 115/184 kB | 147 kB | 119 kB Progress (5): 422/733 kB | 164/225 kB | 115/184 kB | 147 kB | 119 kB Progress (5): 426/733 kB | 164/225 kB | 115/184 kB | 147 kB | 119 kB Progress (5): 426/733 kB | 164/225 kB | 119/184 kB | 147 kB | 119 kB Progress (5): 430/733 kB | 164/225 kB | 119/184 kB | 147 kB | 119 kB Progress (5): 430/733 kB | 168/225 kB | 119/184 kB | 147 kB | 119 kB Progress (5): 430/733 kB | 172/225 kB | 119/184 kB | 147 kB | 119 kB Progress (5): 434/733 kB | 172/225 kB | 119/184 kB | 147 kB | 119 kB Progress (5): 434/733 kB | 172/225 kB | 123/184 kB | 147 kB | 119 kB Progress (5): 438/733 kB | 172/225 kB | 123/184 kB | 147 kB | 119 kB Progress (5): 438/733 kB | 176/225 kB | 123/184 kB | 147 kB | 119 kB Progress (5): 438/733 kB | 180/225 kB | 123/184 kB | 147 kB | 119 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-security/9.4.46.v20220331/jetty-security-9.4.46.v20220331.jar (119 kB at 76 kB/s) +Progress (4): 438/733 kB | 184/225 kB | 123/184 kB | 147 kB Progress (4): 442/733 kB | 184/225 kB | 123/184 kB | 147 kB Progress (4): 442/733 kB | 184/225 kB | 127/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 127/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 131/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 135/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 139/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 143/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 147/184 kB | 147 kB Progress (4): 446/733 kB | 184/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 188/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 192/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 196/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 201/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 205/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 209/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 213/225 kB | 152/184 kB | 147 kB Progress (4): 446/733 kB | 217/225 kB | 152/184 kB | 147 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.jar +Progress (4): 446/733 kB | 217/225 kB | 156/184 kB | 147 kB Progress (4): 446/733 kB | 221/225 kB | 156/184 kB | 147 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-servlet/9.4.46.v20220331/jetty-servlet-9.4.46.v20220331.jar (147 kB at 93 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.jar +Progress (3): 451/733 kB | 221/225 kB | 156/184 kB Progress (3): 455/733 kB | 221/225 kB | 156/184 kB Progress (3): 459/733 kB | 221/225 kB | 156/184 kB Progress (3): 463/733 kB | 221/225 kB | 156/184 kB Progress (3): 467/733 kB | 221/225 kB | 156/184 kB Progress (3): 471/733 kB | 221/225 kB | 156/184 kB Progress (3): 475/733 kB | 221/225 kB | 156/184 kB Progress (3): 475/733 kB | 225 kB | 156/184 kB Progress (3): 475/733 kB | 225 kB | 160/184 kB Progress (3): 479/733 kB | 225 kB | 160/184 kB Progress (3): 479/733 kB | 225 kB | 164/184 kB Progress (3): 483/733 kB | 225 kB | 164/184 kB Progress (3): 483/733 kB | 225 kB | 168/184 kB Progress (3): 487/733 kB | 225 kB | 168/184 kB Progress (3): 492/733 kB | 225 kB | 168/184 kB Progress (3): 496/733 kB | 225 kB | 168/184 kB Progress (3): 496/733 kB | 225 kB | 172/184 kB Progress (3): 496/733 kB | 225 kB | 176/184 kB Progress (3): 500/733 kB | 225 kB | 176/184 kB Progress (3): 500/733 kB | 225 kB | 180/184 kB Progress (3): 500/733 kB | 225 kB | 184 kB Progress (3): 504/733 kB | 225 kB | 184 kB Progress (3): 508/733 kB | 225 kB | 184 kB Progress (3): 512/733 kB | 225 kB | 184 kB Progress (4): 512/733 kB | 225 kB | 184 kB | 4.1/67 kB Progress (4): 512/733 kB | 225 kB | 184 kB | 8.2/67 kB Progress (4): 516/733 kB | 225 kB | 184 kB | 8.2/67 kB Progress (4): 520/733 kB | 225 kB | 184 kB | 8.2/67 kB Progress (4): 520/733 kB | 225 kB | 184 kB | 12/67 kB Progress (5): 520/733 kB | 225 kB | 184 kB | 12/67 kB | 4.1/141 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-http/9.4.46.v20220331/jetty-http-9.4.46.v20220331.jar (225 kB at 141 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.jar +Progress (4): 520/733 kB | 184 kB | 16/67 kB | 4.1/141 kB Progress (4): 520/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 524/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 528/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 532/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 537/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 541/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 545/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 20/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 25/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 29/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 33/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 37/67 kB | 4.1/141 kB Progress (4): 549/733 kB | 184 kB | 37/67 kB | 8.2/141 kB Progress (4): 549/733 kB | 184 kB | 41/67 kB | 8.2/141 kB Progress (4): 553/733 kB | 184 kB | 41/67 kB | 8.2/141 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-io/9.4.46.v20220331/jetty-io-9.4.46.v20220331.jar (184 kB at 114 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.jar +Progress (3): 553/733 kB | 45/67 kB | 8.2/141 kB Progress (3): 553/733 kB | 45/67 kB | 12/141 kB Progress (3): 553/733 kB | 49/67 kB | 12/141 kB Progress (3): 557/733 kB | 49/67 kB | 12/141 kB Progress (3): 561/733 kB | 49/67 kB | 12/141 kB Progress (4): 561/733 kB | 49/67 kB | 12/141 kB | 4.1/69 kB Progress (4): 561/733 kB | 53/67 kB | 12/141 kB | 4.1/69 kB Progress (4): 561/733 kB | 57/67 kB | 12/141 kB | 4.1/69 kB Progress (4): 561/733 kB | 57/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 561/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 565/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 569/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 573/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 578/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 582/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 586/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 590/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 594/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 598/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 602/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 606/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 610/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 614/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 618/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 623/733 kB | 61/67 kB | 16/141 kB | 4.1/69 kB Progress (4): 623/733 kB | 61/67 kB | 16/141 kB | 8.2/69 kB Progress (4): 627/733 kB | 61/67 kB | 16/141 kB | 8.2/69 kB Progress (4): 627/733 kB | 66/67 kB | 16/141 kB | 8.2/69 kB Progress (4): 627/733 kB | 67 kB | 16/141 kB | 8.2/69 kB Progress (4): 627/733 kB | 67 kB | 20/141 kB | 8.2/69 kB Progress (4): 627/733 kB | 67 kB | 25/141 kB | 8.2/69 kB Progress (4): 631/733 kB | 67 kB | 25/141 kB | 8.2/69 kB Progress (4): 631/733 kB | 67 kB | 25/141 kB | 12/69 kB Progress (4): 631/733 kB | 67 kB | 25/141 kB | 16/69 kB Progress (4): 635/733 kB | 67 kB | 25/141 kB | 16/69 kB Progress (4): 635/733 kB | 67 kB | 29/141 kB | 16/69 kB Progress (4): 635/733 kB | 67 kB | 33/141 kB | 16/69 kB Progress (4): 639/733 kB | 67 kB | 33/141 kB | 16/69 kB Progress (4): 639/733 kB | 67 kB | 33/141 kB | 20/69 kB Progress (4): 639/733 kB | 67 kB | 37/141 kB | 20/69 kB Progress (4): 639/733 kB | 67 kB | 41/141 kB | 20/69 kB Progress (4): 643/733 kB | 67 kB | 41/141 kB | 20/69 kB Progress (4): 643/733 kB | 67 kB | 41/141 kB | 24/69 kB Progress (4): 643/733 kB | 67 kB | 41/141 kB | 28/69 kB Progress (4): 643/733 kB | 67 kB | 41/141 kB | 32/69 kB Progress (4): 647/733 kB | 67 kB | 41/141 kB | 32/69 kB Progress (5): 647/733 kB | 67 kB | 41/141 kB | 32/69 kB | 4.1/586 kB Progress (5): 647/733 kB | 67 kB | 45/141 kB | 32/69 kB | 4.1/586 kB Progress (5): 647/733 kB | 67 kB | 45/141 kB | 32/69 kB | 8.2/586 kB Progress (5): 647/733 kB | 67 kB | 45/141 kB | 32/69 kB | 12/586 kB Progress (5): 647/733 kB | 67 kB | 45/141 kB | 32/69 kB | 16/586 kB Progress (5): 647/733 kB | 67 kB | 45/141 kB | 36/69 kB | 16/586 kB Progress (5): 651/733 kB | 67 kB | 45/141 kB | 36/69 kB | 16/586 kB Progress (5): 651/733 kB | 67 kB | 45/141 kB | 40/69 kB | 16/586 kB Progress (5): 651/733 kB | 67 kB | 45/141 kB | 40/69 kB | 20/586 kB Progress (5): 651/733 kB | 67 kB | 45/141 kB | 40/69 kB | 25/586 kB Progress (5): 651/733 kB | 67 kB | 49/141 kB | 40/69 kB | 25/586 kB Progress (5): 651/733 kB | 67 kB | 49/141 kB | 40/69 kB | 29/586 kB Progress (5): 651/733 kB | 67 kB | 49/141 kB | 40/69 kB | 33/586 kB Progress (5): 651/733 kB | 67 kB | 49/141 kB | 44/69 kB | 33/586 kB Progress (5): 651/733 kB | 67 kB | 49/141 kB | 49/69 kB | 33/586 kB Progress (5): 655/733 kB | 67 kB | 49/141 kB | 49/69 kB | 33/586 kB Progress (5): 655/733 kB | 67 kB | 49/141 kB | 53/69 kB | 33/586 kB Progress (5): 655/733 kB | 67 kB | 49/141 kB | 53/69 kB | 37/586 kB Progress (5): 655/733 kB | 67 kB | 49/141 kB | 53/69 kB | 41/586 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util-ajax/9.4.46.v20220331/jetty-util-ajax-9.4.46.v20220331.jar (67 kB at 41 kB/s) +Progress (4): 655/733 kB | 53/141 kB | 53/69 kB | 41/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 41/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 45/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 49/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 53/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 57/586 kB Progress (4): 655/733 kB | 57/141 kB | 53/69 kB | 61/586 kB Progress (4): 655/733 kB | 57/141 kB | 57/69 kB | 61/586 kB Progress (4): 655/733 kB | 57/141 kB | 61/69 kB | 61/586 kB Progress (4): 659/733 kB | 57/141 kB | 61/69 kB | 61/586 kB Progress (4): 659/733 kB | 57/141 kB | 65/69 kB | 61/586 kB Progress (4): 659/733 kB | 57/141 kB | 65/69 kB | 66/586 kB Progress (4): 659/733 kB | 61/141 kB | 65/69 kB | 66/586 kB Progress (4): 659/733 kB | 61/141 kB | 65/69 kB | 70/586 kB Progress (4): 659/733 kB | 61/141 kB | 65/69 kB | 74/586 kB Progress (4): 659/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 664/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 668/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 672/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 676/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 680/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 684/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 688/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 692/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 696/733 kB | 61/141 kB | 69 kB | 74/586 kB Progress (4): 696/733 kB | 61/141 kB | 69 kB | 78/586 kB Progress (4): 696/733 kB | 66/141 kB | 69 kB | 78/586 kB Progress (4): 696/733 kB | 66/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 70/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 74/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 78/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 82/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 86/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 90/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 94/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 98/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 102/141 kB | 69 kB | 82/586 kB Progress (4): 696/733 kB | 106/141 kB | 69 kB | 82/586 kB Progress (4): 700/733 kB | 106/141 kB | 69 kB | 82/586 kB Progress (4): 700/733 kB | 111/141 kB | 69 kB | 82/586 kB Progress (4): 700/733 kB | 111/141 kB | 69 kB | 86/586 kB Progress (4): 705/733 kB | 111/141 kB | 69 kB | 86/586 kB Progress (4): 705/733 kB | 115/141 kB | 69 kB | 86/586 kB Progress (4): 709/733 kB | 115/141 kB | 69 kB | 86/586 kB Progress (4): 709/733 kB | 115/141 kB | 69 kB | 90/586 kB Progress (4): 713/733 kB | 115/141 kB | 69 kB | 90/586 kB Progress (4): 713/733 kB | 119/141 kB | 69 kB | 90/586 kB Progress (4): 717/733 kB | 119/141 kB | 69 kB | 90/586 kB Progress (4): 717/733 kB | 119/141 kB | 69 kB | 94/586 kB Progress (4): 721/733 kB | 119/141 kB | 69 kB | 94/586 kB Progress (4): 721/733 kB | 119/141 kB | 69 kB | 98/586 kB Progress (4): 721/733 kB | 119/141 kB | 69 kB | 102/586 kB Progress (4): 721/733 kB | 123/141 kB | 69 kB | 102/586 kB Progress (4): 721/733 kB | 127/141 kB | 69 kB | 102/586 kB Progress (4): 721/733 kB | 127/141 kB | 69 kB | 106/586 kB Progress (4): 725/733 kB | 127/141 kB | 69 kB | 106/586 kB Progress (4): 729/733 kB | 127/141 kB | 69 kB | 106/586 kB Progress (4): 733 kB | 127/141 kB | 69 kB | 106/586 kB Progress (4): 733 kB | 127/141 kB | 69 kB | 111/586 kB Progress (4): 733 kB | 131/141 kB | 69 kB | 111/586 kB Progress (4): 733 kB | 135/141 kB | 69 kB | 111/586 kB Progress (4): 733 kB | 139/141 kB | 69 kB | 111/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 111/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 115/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 119/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 123/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 127/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 131/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 135/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 139/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 143/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 147/586 kB Progress (4): 733 kB | 141 kB | 69 kB | 152/586 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-xml/9.4.46.v20220331/jetty-xml-9.4.46.v20220331.jar (69 kB at 41 kB/s) +Progress (3): 733 kB | 141 kB | 156/586 kB Progress (3): 733 kB | 141 kB | 160/586 kB Progress (3): 733 kB | 141 kB | 164/586 kB Progress (3): 733 kB | 141 kB | 168/586 kB Progress (3): 733 kB | 141 kB | 172/586 kB Progress (3): 733 kB | 141 kB | 176/586 kB Progress (3): 733 kB | 141 kB | 180/586 kB Progress (3): 733 kB | 141 kB | 184/586 kB Progress (3): 733 kB | 141 kB | 188/586 kB Progress (3): 733 kB | 141 kB | 193/586 kB Progress (3): 733 kB | 141 kB | 197/586 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-webapp/9.4.46.v20220331/jetty-webapp-9.4.46.v20220331.jar (141 kB at 84 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-server/9.4.46.v20220331/jetty-server-9.4.46.v20220331.jar (733 kB at 436 kB/s) +Progress (1): 201/586 kB Progress (1): 205/586 kB Progress (1): 209/586 kB Progress (1): 213/586 kB Progress (1): 217/586 kB Progress (1): 221/586 kB Progress (1): 225/586 kB Progress (1): 229/586 kB Progress (1): 233/586 kB Progress (1): 238/586 kB Progress (1): 242/586 kB Progress (1): 246/586 kB Progress (1): 250/586 kB Progress (1): 254/586 kB Progress (1): 258/586 kB Progress (1): 262/586 kB Progress (1): 266/586 kB Progress (1): 270/586 kB Progress (1): 274/586 kB Progress (1): 279/586 kB Progress (1): 283/586 kB Progress (1): 287/586 kB Progress (1): 291/586 kB Progress (1): 295/586 kB Progress (1): 299/586 kB Progress (1): 303/586 kB Progress (1): 307/586 kB Progress (1): 311/586 kB Progress (1): 315/586 kB Progress (1): 319/586 kB Progress (1): 324/586 kB Progress (1): 328/586 kB Progress (1): 332/586 kB Progress (1): 336/586 kB Progress (1): 340/586 kB Progress (1): 344/586 kB Progress (1): 348/586 kB Progress (1): 352/586 kB Progress (1): 356/586 kB Progress (1): 360/586 kB Progress (1): 365/586 kB Progress (1): 369/586 kB Progress (1): 373/586 kB Progress (1): 377/586 kB Progress (1): 381/586 kB Progress (1): 385/586 kB Progress (1): 389/586 kB Progress (1): 393/586 kB Progress (1): 397/586 kB Progress (1): 401/586 kB Progress (1): 406/586 kB Progress (1): 410/586 kB Progress (1): 414/586 kB Progress (1): 418/586 kB Progress (1): 422/586 kB Progress (1): 426/586 kB Progress (1): 430/586 kB Progress (1): 434/586 kB Progress (1): 438/586 kB Progress (1): 442/586 kB Progress (1): 446/586 kB Progress (1): 451/586 kB Progress (1): 455/586 kB Progress (1): 459/586 kB Progress (1): 463/586 kB Progress (1): 467/586 kB Progress (1): 471/586 kB Progress (1): 475/586 kB Progress (1): 479/586 kB Progress (1): 483/586 kB Progress (1): 487/586 kB Progress (1): 492/586 kB Progress (1): 496/586 kB Progress (1): 500/586 kB Progress (1): 504/586 kB Progress (1): 508/586 kB Progress (1): 512/586 kB Progress (1): 516/586 kB Progress (1): 520/586 kB Progress (1): 524/586 kB Progress (1): 528/586 kB Progress (1): 532/586 kB Progress (1): 537/586 kB Progress (1): 541/586 kB Progress (1): 545/586 kB Progress (1): 549/586 kB Progress (1): 553/586 kB Progress (1): 557/586 kB Progress (1): 561/586 kB Progress (1): 565/586 kB Progress (1): 569/586 kB Progress (1): 573/586 kB Progress (1): 578/586 kB Progress (1): 582/586 kB Progress (1): 586/586 kB Progress (1): 586 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-util/9.4.46.v20220331/jetty-util-9.4.46.v20220331.jar (586 kB at 342 kB/s) +[INFO] Skipping because packaging 'jar' is not pom. +[INFO] +[INFO] --- maven-jar-plugin:3.3.0:test-jar (default) @ commons-jxpath --- +[INFO] Building jar: /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-tests.jar +[INFO] +[INFO] --- maven-source-plugin:3.2.1:jar-no-fork (create-source-jar) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.pom (4.8 kB at 118 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar +Progress (1): 4.1/165 kB Progress (1): 8.2/165 kB Progress (1): 12/165 kB Progress (1): 16/165 kB Progress (1): 20/165 kB Progress (1): 25/165 kB Progress (1): 29/165 kB Progress (1): 33/165 kB Progress (1): 37/165 kB Progress (2): 37/165 kB | 4.1/49 kB Progress (3): 37/165 kB | 4.1/49 kB | 4.1/153 kB Progress (4): 37/165 kB | 4.1/49 kB | 4.1/153 kB | 4.1/52 kB Progress (5): 37/165 kB | 4.1/49 kB | 4.1/153 kB | 4.1/52 kB | 4.1/202 kB Progress (5): 37/165 kB | 4.1/49 kB | 4.1/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 37/165 kB | 4.1/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 37/165 kB | 8.2/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 41/165 kB | 8.2/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 45/165 kB | 8.2/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 8.2/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 12/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 16/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 20/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 25/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 29/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 33/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 37/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 41/49 kB | 8.2/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 8.2/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 12/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 16/52 kB | 4.1/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 16/52 kB | 8.2/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 16/52 kB | 12/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 16/52 kB | 16/202 kB Progress (5): 49/165 kB | 41/49 kB | 12/153 kB | 20/52 kB | 16/202 kB Progress (5): 49/165 kB | 41/49 kB | 16/153 kB | 20/52 kB | 16/202 kB Progress (5): 49/165 kB | 41/49 kB | 20/153 kB | 20/52 kB | 16/202 kB Progress (5): 49/165 kB | 45/49 kB | 20/153 kB | 20/52 kB | 16/202 kB Progress (5): 49/165 kB | 49 kB | 20/153 kB | 20/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 20/153 kB | 20/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 25/153 kB | 20/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 20/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 25/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 29/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 33/52 kB | 16/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 33/52 kB | 20/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 33/52 kB | 25/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 33/52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 37/52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 41/52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 45/52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 49/52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 29/153 kB | 52 kB | 29/202 kB Progress (5): 53/165 kB | 49 kB | 33/153 kB | 52 kB | 29/202 kB Progress (5): 57/165 kB | 49 kB | 33/153 kB | 52 kB | 29/202 kB Progress (5): 61/165 kB | 49 kB | 33/153 kB | 52 kB | 29/202 kB Progress (5): 61/165 kB | 49 kB | 37/153 kB | 52 kB | 29/202 kB Progress (5): 61/165 kB | 49 kB | 41/153 kB | 52 kB | 29/202 kB Progress (5): 61/165 kB | 49 kB | 41/153 kB | 52 kB | 33/202 kB Progress (5): 61/165 kB | 49 kB | 45/153 kB | 52 kB | 33/202 kB Progress (5): 61/165 kB | 49 kB | 49/153 kB | 52 kB | 33/202 kB Progress (5): 61/165 kB | 49 kB | 53/153 kB | 52 kB | 33/202 kB Progress (5): 65/165 kB | 49 kB | 53/153 kB | 52 kB | 33/202 kB Progress (5): 69/165 kB | 49 kB | 53/153 kB | 52 kB | 33/202 kB Progress (5): 69/165 kB | 49 kB | 57/153 kB | 52 kB | 33/202 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/3.0/maven-plugin-api-3.0.jar (49 kB at 388 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar +Progress (4): 69/165 kB | 57/153 kB | 52 kB | 37/202 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/3.0/maven-artifact-3.0.jar (52 kB at 412 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar +Progress (3): 69/165 kB | 61/153 kB | 37/202 kB Progress (3): 69/165 kB | 66/153 kB | 37/202 kB Progress (3): 69/165 kB | 70/153 kB | 37/202 kB Progress (3): 73/165 kB | 70/153 kB | 37/202 kB Progress (3): 77/165 kB | 70/153 kB | 37/202 kB Progress (3): 77/165 kB | 74/153 kB | 37/202 kB Progress (3): 77/165 kB | 74/153 kB | 41/202 kB Progress (3): 77/165 kB | 74/153 kB | 45/202 kB Progress (3): 81/165 kB | 74/153 kB | 45/202 kB Progress (3): 85/165 kB | 74/153 kB | 45/202 kB Progress (3): 85/165 kB | 74/153 kB | 49/202 kB Progress (3): 85/165 kB | 74/153 kB | 53/202 kB Progress (3): 85/165 kB | 78/153 kB | 53/202 kB Progress (3): 85/165 kB | 82/153 kB | 53/202 kB Progress (3): 85/165 kB | 82/153 kB | 57/202 kB Progress (3): 85/165 kB | 82/153 kB | 61/202 kB Progress (3): 85/165 kB | 82/153 kB | 66/202 kB Progress (3): 85/165 kB | 82/153 kB | 70/202 kB Progress (3): 89/165 kB | 82/153 kB | 70/202 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 4.1/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 8.2/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 12/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 16/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 20/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 25/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 29/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 33/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 37/472 kB Progress (4): 89/165 kB | 82/153 kB | 70/202 kB | 41/472 kB Progress (4): 93/165 kB | 82/153 kB | 70/202 kB | 41/472 kB Progress (5): 93/165 kB | 82/153 kB | 70/202 kB | 41/472 kB | 4.1/527 kB Progress (5): 93/165 kB | 82/153 kB | 70/202 kB | 41/472 kB | 8.2/527 kB Progress (5): 93/165 kB | 82/153 kB | 70/202 kB | 41/472 kB | 12/527 kB Progress (5): 93/165 kB | 82/153 kB | 70/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 82/153 kB | 74/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 82/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 86/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 90/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 94/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 98/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 102/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 106/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 111/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 78/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 82/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 86/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 90/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 94/202 kB | 41/472 kB | 16/527 kB Progress (5): 93/165 kB | 115/153 kB | 94/202 kB | 41/472 kB | 20/527 kB Progress (5): 93/165 kB | 115/153 kB | 94/202 kB | 45/472 kB | 20/527 kB Progress (5): 97/165 kB | 115/153 kB | 94/202 kB | 45/472 kB | 20/527 kB Progress (5): 97/165 kB | 115/153 kB | 94/202 kB | 45/472 kB | 25/527 kB Progress (5): 97/165 kB | 115/153 kB | 94/202 kB | 45/472 kB | 29/527 kB Progress (5): 97/165 kB | 115/153 kB | 94/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 115/153 kB | 98/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 115/153 kB | 102/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 119/153 kB | 102/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 123/153 kB | 102/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 123/153 kB | 106/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 123/153 kB | 111/202 kB | 45/472 kB | 33/527 kB Progress (5): 97/165 kB | 123/153 kB | 111/202 kB | 45/472 kB | 37/527 kB Progress (5): 97/165 kB | 123/153 kB | 111/202 kB | 49/472 kB | 37/527 kB Progress (5): 101/165 kB | 123/153 kB | 111/202 kB | 49/472 kB | 37/527 kB Progress (5): 101/165 kB | 123/153 kB | 111/202 kB | 49/472 kB | 41/527 kB Progress (5): 101/165 kB | 123/153 kB | 111/202 kB | 49/472 kB | 45/527 kB Progress (5): 101/165 kB | 123/153 kB | 111/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 115/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 119/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 123/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 127/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 131/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 123/153 kB | 135/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 127/153 kB | 135/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 131/153 kB | 135/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 135/153 kB | 135/202 kB | 49/472 kB | 49/527 kB Progress (5): 101/165 kB | 135/153 kB | 135/202 kB | 49/472 kB | 53/527 kB Progress (5): 101/165 kB | 135/153 kB | 135/202 kB | 53/472 kB | 53/527 kB Progress (5): 105/165 kB | 135/153 kB | 135/202 kB | 53/472 kB | 53/527 kB Progress (5): 105/165 kB | 135/153 kB | 135/202 kB | 53/472 kB | 57/527 kB Progress (5): 105/165 kB | 135/153 kB | 135/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 139/153 kB | 135/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 143/153 kB | 135/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 143/153 kB | 139/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 143/153 kB | 143/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 147/153 kB | 143/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 152/153 kB | 143/202 kB | 53/472 kB | 61/527 kB Progress (5): 105/165 kB | 152/153 kB | 143/202 kB | 53/472 kB | 64/527 kB Progress (5): 105/165 kB | 152/153 kB | 143/202 kB | 57/472 kB | 64/527 kB Progress (5): 110/165 kB | 152/153 kB | 143/202 kB | 57/472 kB | 64/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 57/472 kB | 64/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 64/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 68/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 72/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 76/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 80/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 84/527 kB Progress (5): 114/165 kB | 152/153 kB | 143/202 kB | 61/472 kB | 88/527 kB Progress (5): 114/165 kB | 153 kB | 143/202 kB | 61/472 kB | 88/527 kB Progress (5): 114/165 kB | 153 kB | 147/202 kB | 61/472 kB | 88/527 kB Progress (5): 114/165 kB | 153 kB | 152/202 kB | 61/472 kB | 88/527 kB Progress (5): 114/165 kB | 153 kB | 152/202 kB | 61/472 kB | 92/527 kB Progress (5): 114/165 kB | 153 kB | 152/202 kB | 61/472 kB | 96/527 kB Progress (5): 114/165 kB | 153 kB | 152/202 kB | 64/472 kB | 96/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 64/472 kB | 96/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 68/472 kB | 96/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 72/472 kB | 96/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 76/472 kB | 96/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 76/472 kB | 100/527 kB Progress (5): 118/165 kB | 153 kB | 152/202 kB | 76/472 kB | 105/527 kB Progress (5): 118/165 kB | 153 kB | 156/202 kB | 76/472 kB | 105/527 kB Progress (5): 118/165 kB | 153 kB | 160/202 kB | 76/472 kB | 105/527 kB Progress (5): 118/165 kB | 153 kB | 160/202 kB | 76/472 kB | 109/527 kB Progress (5): 118/165 kB | 153 kB | 160/202 kB | 76/472 kB | 113/527 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-bean/1.4.2/sisu-inject-bean-1.4.2.jar (153 kB at 674 kB/s) +Progress (4): 118/165 kB | 160/202 kB | 81/472 kB | 113/527 kB Progress (4): 122/165 kB | 160/202 kB | 81/472 kB | 113/527 kB Progress (4): 122/165 kB | 160/202 kB | 85/472 kB | 113/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 113/527 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar +Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 117/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 121/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 125/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 129/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 133/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 137/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 141/527 kB Progress (4): 122/165 kB | 160/202 kB | 89/472 kB | 146/527 kB Progress (4): 122/165 kB | 164/202 kB | 89/472 kB | 146/527 kB Progress (4): 122/165 kB | 168/202 kB | 89/472 kB | 146/527 kB Progress (4): 122/165 kB | 172/202 kB | 89/472 kB | 146/527 kB Progress (4): 122/165 kB | 176/202 kB | 89/472 kB | 146/527 kB Progress (4): 122/165 kB | 176/202 kB | 93/472 kB | 146/527 kB Progress (4): 126/165 kB | 176/202 kB | 93/472 kB | 146/527 kB Progress (4): 126/165 kB | 176/202 kB | 93/472 kB | 150/527 kB Progress (4): 126/165 kB | 176/202 kB | 93/472 kB | 154/527 kB Progress (4): 126/165 kB | 176/202 kB | 93/472 kB | 158/527 kB Progress (4): 126/165 kB | 180/202 kB | 93/472 kB | 158/527 kB Progress (4): 126/165 kB | 180/202 kB | 97/472 kB | 158/527 kB Progress (4): 126/165 kB | 180/202 kB | 101/472 kB | 158/527 kB Progress (4): 126/165 kB | 184/202 kB | 101/472 kB | 158/527 kB Progress (4): 126/165 kB | 188/202 kB | 101/472 kB | 158/527 kB Progress (4): 126/165 kB | 188/202 kB | 101/472 kB | 162/527 kB Progress (4): 126/165 kB | 188/202 kB | 101/472 kB | 166/527 kB Progress (4): 130/165 kB | 188/202 kB | 101/472 kB | 166/527 kB Progress (4): 130/165 kB | 188/202 kB | 101/472 kB | 170/527 kB Progress (4): 130/165 kB | 188/202 kB | 101/472 kB | 174/527 kB Progress (5): 130/165 kB | 188/202 kB | 101/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 193/202 kB | 101/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 197/202 kB | 101/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 197/202 kB | 105/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 197/202 kB | 109/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 201/202 kB | 109/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 202 kB | 109/472 kB | 174/527 kB | 4.1/47 kB Progress (5): 130/165 kB | 202 kB | 109/472 kB | 174/527 kB | 8.2/47 kB Progress (5): 130/165 kB | 202 kB | 109/472 kB | 174/527 kB | 12/47 kB Progress (5): 130/165 kB | 202 kB | 109/472 kB | 178/527 kB | 12/47 kB Progress (5): 134/165 kB | 202 kB | 109/472 kB | 178/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 178/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 182/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 186/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 191/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 12/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 16/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 20/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 25/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 29/47 kB Progress (5): 138/165 kB | 202 kB | 109/472 kB | 195/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 113/472 kB | 195/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 117/472 kB | 195/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 122/472 kB | 195/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 126/472 kB | 195/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 126/472 kB | 199/527 kB | 33/47 kB Progress (5): 138/165 kB | 202 kB | 126/472 kB | 203/527 kB | 33/47 kB Progress (5): 142/165 kB | 202 kB | 126/472 kB | 203/527 kB | 33/47 kB Progress (5): 146/165 kB | 202 kB | 126/472 kB | 203/527 kB | 33/47 kB Progress (5): 146/165 kB | 202 kB | 126/472 kB | 207/527 kB | 33/47 kB Progress (5): 146/165 kB | 202 kB | 126/472 kB | 211/527 kB | 33/47 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-inject-plexus/1.4.2/sisu-inject-plexus-1.4.2.jar (202 kB at 718 kB/s) +Progress (4): 146/165 kB | 130/472 kB | 211/527 kB | 33/47 kB Progress (4): 146/165 kB | 134/472 kB | 211/527 kB | 33/47 kB Progress (4): 146/165 kB | 134/472 kB | 211/527 kB | 37/47 kB Progress (4): 146/165 kB | 134/472 kB | 211/527 kB | 41/47 kB Progress (4): 146/165 kB | 138/472 kB | 211/527 kB | 41/47 kB Progress (4): 146/165 kB | 142/472 kB | 211/527 kB | 41/47 kB Progress (4): 146/165 kB | 146/472 kB | 211/527 kB | 41/47 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar +Progress (4): 146/165 kB | 146/472 kB | 215/527 kB | 41/47 kB Progress (4): 146/165 kB | 146/472 kB | 219/527 kB | 41/47 kB Progress (4): 151/165 kB | 146/472 kB | 219/527 kB | 41/47 kB Progress (4): 155/165 kB | 146/472 kB | 219/527 kB | 41/47 kB Progress (4): 155/165 kB | 146/472 kB | 223/527 kB | 41/47 kB Progress (4): 155/165 kB | 150/472 kB | 223/527 kB | 41/47 kB Progress (4): 155/165 kB | 154/472 kB | 223/527 kB | 41/47 kB Progress (4): 155/165 kB | 158/472 kB | 223/527 kB | 41/47 kB Progress (4): 155/165 kB | 162/472 kB | 223/527 kB | 41/47 kB Progress (4): 155/165 kB | 162/472 kB | 223/527 kB | 45/47 kB Progress (4): 155/165 kB | 162/472 kB | 227/527 kB | 45/47 kB Progress (4): 155/165 kB | 162/472 kB | 232/527 kB | 45/47 kB Progress (4): 159/165 kB | 162/472 kB | 232/527 kB | 45/47 kB Progress (4): 159/165 kB | 167/472 kB | 232/527 kB | 45/47 kB Progress (4): 159/165 kB | 167/472 kB | 232/527 kB | 47 kB Progress (5): 159/165 kB | 167/472 kB | 232/527 kB | 47 kB | 4.1/38 kB Progress (5): 159/165 kB | 167/472 kB | 232/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 236/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 240/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 244/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 248/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 252/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 256/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 260/527 kB | 47 kB | 8.2/38 kB Progress (5): 159/165 kB | 167/472 kB | 264/527 kB | 47 kB | 8.2/38 kB Progress (5): 163/165 kB | 167/472 kB | 264/527 kB | 47 kB | 8.2/38 kB Progress (5): 165 kB | 167/472 kB | 264/527 kB | 47 kB | 8.2/38 kB Progress (5): 165 kB | 167/472 kB | 264/527 kB | 47 kB | 12/38 kB Progress (5): 165 kB | 167/472 kB | 264/527 kB | 47 kB | 16/38 kB Progress (5): 165 kB | 167/472 kB | 268/527 kB | 47 kB | 16/38 kB Progress (5): 165 kB | 171/472 kB | 268/527 kB | 47 kB | 16/38 kB Progress (5): 165 kB | 171/472 kB | 273/527 kB | 47 kB | 16/38 kB Progress (5): 165 kB | 171/472 kB | 273/527 kB | 47 kB | 20/38 kB Progress (5): 165 kB | 171/472 kB | 273/527 kB | 47 kB | 24/38 kB Progress (5): 165 kB | 171/472 kB | 273/527 kB | 47 kB | 28/38 kB Progress (5): 165 kB | 171/472 kB | 273/527 kB | 47 kB | 32/38 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/3.0/maven-settings-3.0.jar (47 kB at 141 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model/3.0/maven-model-3.0.jar (165 kB at 477 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar +Progress (3): 171/472 kB | 273/527 kB | 36/38 kB Progress (3): 171/472 kB | 277/527 kB | 36/38 kB Progress (3): 171/472 kB | 281/527 kB | 36/38 kB Progress (3): 175/472 kB | 281/527 kB | 36/38 kB Progress (3): 175/472 kB | 281/527 kB | 38 kB Progress (3): 179/472 kB | 281/527 kB | 38 kB Progress (3): 179/472 kB | 285/527 kB | 38 kB Progress (3): 179/472 kB | 289/527 kB | 38 kB Progress (4): 179/472 kB | 289/527 kB | 38 kB | 4.1/30 kB Progress (4): 183/472 kB | 289/527 kB | 38 kB | 4.1/30 kB Progress (4): 187/472 kB | 289/527 kB | 38 kB | 4.1/30 kB Progress (4): 187/472 kB | 293/527 kB | 38 kB | 4.1/30 kB Progress (4): 187/472 kB | 297/527 kB | 38 kB | 4.1/30 kB Progress (4): 191/472 kB | 297/527 kB | 38 kB | 4.1/30 kB Progress (4): 195/472 kB | 297/527 kB | 38 kB | 4.1/30 kB Progress (5): 195/472 kB | 297/527 kB | 38 kB | 4.1/30 kB | 4.1/148 kB Progress (5): 195/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 199/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 203/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 208/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 212/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 216/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 4.1/148 kB Progress (5): 216/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 8.2/148 kB Progress (5): 216/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 12/148 kB Progress (5): 216/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 16/148 kB Progress (5): 220/472 kB | 297/527 kB | 38 kB | 8.2/30 kB | 16/148 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-settings-builder/3.0/maven-settings-builder-3.0.jar (38 kB at 104 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar +Progress (4): 220/472 kB | 301/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 220/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 224/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 228/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 232/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 236/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 240/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 244/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 249/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 253/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 257/472 kB | 305/527 kB | 8.2/30 kB | 16/148 kB Progress (4): 257/472 kB | 305/527 kB | 8.2/30 kB | 20/148 kB Progress (4): 257/472 kB | 305/527 kB | 12/30 kB | 20/148 kB Progress (4): 257/472 kB | 305/527 kB | 16/30 kB | 20/148 kB Progress (4): 261/472 kB | 305/527 kB | 16/30 kB | 20/148 kB Progress (4): 265/472 kB | 305/527 kB | 16/30 kB | 20/148 kB Progress (4): 269/472 kB | 305/527 kB | 16/30 kB | 20/148 kB Progress (4): 273/472 kB | 305/527 kB | 16/30 kB | 20/148 kB Progress (4): 273/472 kB | 305/527 kB | 16/30 kB | 25/148 kB Progress (4): 273/472 kB | 309/527 kB | 16/30 kB | 25/148 kB Progress (4): 273/472 kB | 309/527 kB | 16/30 kB | 29/148 kB Progress (4): 273/472 kB | 309/527 kB | 16/30 kB | 33/148 kB Progress (4): 277/472 kB | 309/527 kB | 16/30 kB | 33/148 kB Progress (5): 277/472 kB | 309/527 kB | 16/30 kB | 33/148 kB | 4.1/51 kB Progress (5): 277/472 kB | 309/527 kB | 16/30 kB | 33/148 kB | 8.2/51 kB Progress (5): 277/472 kB | 309/527 kB | 16/30 kB | 33/148 kB | 12/51 kB Progress (5): 277/472 kB | 309/527 kB | 20/30 kB | 33/148 kB | 12/51 kB Progress (5): 277/472 kB | 309/527 kB | 24/30 kB | 33/148 kB | 12/51 kB Progress (5): 277/472 kB | 309/527 kB | 24/30 kB | 33/148 kB | 16/51 kB Progress (5): 277/472 kB | 313/527 kB | 24/30 kB | 33/148 kB | 16/51 kB Progress (5): 281/472 kB | 313/527 kB | 24/30 kB | 33/148 kB | 16/51 kB Progress (5): 285/472 kB | 313/527 kB | 24/30 kB | 33/148 kB | 16/51 kB Progress (5): 285/472 kB | 313/527 kB | 24/30 kB | 37/148 kB | 16/51 kB Progress (5): 285/472 kB | 313/527 kB | 24/30 kB | 41/148 kB | 16/51 kB Progress (5): 289/472 kB | 313/527 kB | 24/30 kB | 41/148 kB | 16/51 kB Progress (5): 289/472 kB | 318/527 kB | 24/30 kB | 41/148 kB | 16/51 kB Progress (5): 289/472 kB | 318/527 kB | 24/30 kB | 41/148 kB | 20/51 kB Progress (5): 289/472 kB | 318/527 kB | 24/30 kB | 41/148 kB | 25/51 kB Progress (5): 289/472 kB | 318/527 kB | 28/30 kB | 41/148 kB | 25/51 kB Progress (5): 289/472 kB | 318/527 kB | 30 kB | 41/148 kB | 25/51 kB Progress (5): 289/472 kB | 318/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 322/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 326/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 330/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 334/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 338/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 289/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 294/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 298/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 302/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 306/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 310/472 kB | 342/527 kB | 30 kB | 41/148 kB | 29/51 kB Progress (5): 310/472 kB | 342/527 kB | 30 kB | 45/148 kB | 29/51 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/3.0/maven-repository-metadata-3.0.jar (30 kB at 71 kB/s) +Progress (4): 310/472 kB | 342/527 kB | 45/148 kB | 33/51 kB Progress (4): 310/472 kB | 346/527 kB | 45/148 kB | 33/51 kB Progress (4): 310/472 kB | 350/527 kB | 45/148 kB | 33/51 kB Progress (4): 310/472 kB | 354/527 kB | 45/148 kB | 33/51 kB Progress (4): 314/472 kB | 354/527 kB | 45/148 kB | 33/51 kB Progress (4): 314/472 kB | 354/527 kB | 49/148 kB | 33/51 kB Progress (4): 314/472 kB | 359/527 kB | 49/148 kB | 33/51 kB Progress (4): 314/472 kB | 363/527 kB | 49/148 kB | 33/51 kB Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar +Progress (4): 314/472 kB | 363/527 kB | 49/148 kB | 37/51 kB Progress (4): 314/472 kB | 363/527 kB | 49/148 kB | 41/51 kB Progress (4): 314/472 kB | 367/527 kB | 49/148 kB | 41/51 kB Progress (4): 314/472 kB | 371/527 kB | 49/148 kB | 41/51 kB Progress (4): 318/472 kB | 371/527 kB | 49/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 49/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 53/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 57/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 61/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 66/148 kB | 41/51 kB Progress (4): 322/472 kB | 371/527 kB | 70/148 kB | 41/51 kB Progress (4): 326/472 kB | 371/527 kB | 70/148 kB | 41/51 kB Progress (4): 330/472 kB | 371/527 kB | 70/148 kB | 41/51 kB Progress (4): 330/472 kB | 375/527 kB | 70/148 kB | 41/51 kB Progress (4): 330/472 kB | 379/527 kB | 70/148 kB | 41/51 kB Progress (4): 330/472 kB | 379/527 kB | 70/148 kB | 45/51 kB Progress (4): 330/472 kB | 379/527 kB | 70/148 kB | 49/51 kB Progress (4): 330/472 kB | 379/527 kB | 74/148 kB | 49/51 kB Progress (4): 330/472 kB | 379/527 kB | 78/148 kB | 49/51 kB Progress (4): 335/472 kB | 379/527 kB | 78/148 kB | 49/51 kB Progress (4): 339/472 kB | 379/527 kB | 78/148 kB | 49/51 kB Progress (4): 339/472 kB | 379/527 kB | 82/148 kB | 49/51 kB Progress (5): 339/472 kB | 379/527 kB | 82/148 kB | 49/51 kB | 4.1/106 kB Progress (5): 339/472 kB | 379/527 kB | 82/148 kB | 49/51 kB | 8.2/106 kB Progress (5): 339/472 kB | 379/527 kB | 82/148 kB | 51 kB | 8.2/106 kB Progress (5): 339/472 kB | 383/527 kB | 82/148 kB | 51 kB | 8.2/106 kB Progress (5): 339/472 kB | 387/527 kB | 82/148 kB | 51 kB | 8.2/106 kB Progress (5): 339/472 kB | 387/527 kB | 82/148 kB | 51 kB | 12/106 kB Progress (5): 339/472 kB | 387/527 kB | 86/148 kB | 51 kB | 12/106 kB Progress (5): 339/472 kB | 387/527 kB | 90/148 kB | 51 kB | 12/106 kB Progress (5): 343/472 kB | 387/527 kB | 90/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 90/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 94/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 98/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 102/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 106/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 111/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 115/148 kB | 51 kB | 12/106 kB Progress (5): 347/472 kB | 387/527 kB | 115/148 kB | 51 kB | 16/106 kB Progress (5): 347/472 kB | 387/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 391/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 395/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 399/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 404/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 408/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 412/527 kB | 115/148 kB | 51 kB | 20/106 kB Progress (5): 347/472 kB | 412/527 kB | 115/148 kB | 51 kB | 24/106 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-aether-provider/3.0/maven-aether-provider-3.0.jar (51 kB at 109 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar +Progress (4): 347/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 351/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 355/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 359/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 363/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 367/472 kB | 412/527 kB | 119/148 kB | 24/106 kB Progress (4): 367/472 kB | 416/527 kB | 119/148 kB | 24/106 kB Progress (4): 367/472 kB | 416/527 kB | 119/148 kB | 28/106 kB Progress (4): 371/472 kB | 416/527 kB | 119/148 kB | 28/106 kB Progress (4): 371/472 kB | 416/527 kB | 123/148 kB | 28/106 kB Progress (4): 371/472 kB | 416/527 kB | 127/148 kB | 28/106 kB Progress (4): 375/472 kB | 416/527 kB | 127/148 kB | 28/106 kB Progress (4): 375/472 kB | 420/527 kB | 127/148 kB | 28/106 kB Progress (4): 375/472 kB | 420/527 kB | 127/148 kB | 32/106 kB Progress (4): 380/472 kB | 420/527 kB | 127/148 kB | 32/106 kB Progress (4): 384/472 kB | 420/527 kB | 127/148 kB | 32/106 kB Progress (4): 384/472 kB | 420/527 kB | 131/148 kB | 32/106 kB Progress (4): 384/472 kB | 420/527 kB | 135/148 kB | 32/106 kB Progress (4): 388/472 kB | 420/527 kB | 135/148 kB | 32/106 kB Progress (5): 388/472 kB | 420/527 kB | 135/148 kB | 32/106 kB | 4.1/14 kB Progress (5): 388/472 kB | 420/527 kB | 135/148 kB | 32/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 424/527 kB | 135/148 kB | 32/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 424/527 kB | 135/148 kB | 36/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 424/527 kB | 135/148 kB | 40/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 424/527 kB | 135/148 kB | 44/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 428/527 kB | 135/148 kB | 44/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 432/527 kB | 135/148 kB | 44/106 kB | 8.2/14 kB Progress (5): 388/472 kB | 432/527 kB | 135/148 kB | 44/106 kB | 12/14 kB Progress (5): 388/472 kB | 432/527 kB | 139/148 kB | 44/106 kB | 12/14 kB Progress (5): 388/472 kB | 432/527 kB | 143/148 kB | 44/106 kB | 12/14 kB Progress (5): 392/472 kB | 432/527 kB | 143/148 kB | 44/106 kB | 12/14 kB Progress (5): 396/472 kB | 432/527 kB | 143/148 kB | 44/106 kB | 12/14 kB Progress (5): 396/472 kB | 432/527 kB | 147/148 kB | 44/106 kB | 12/14 kB Progress (5): 396/472 kB | 432/527 kB | 147/148 kB | 44/106 kB | 14 kB Progress (5): 396/472 kB | 436/527 kB | 147/148 kB | 44/106 kB | 14 kB Progress (5): 396/472 kB | 440/527 kB | 147/148 kB | 44/106 kB | 14 kB Progress (5): 396/472 kB | 440/527 kB | 147/148 kB | 49/106 kB | 14 kB Progress (5): 396/472 kB | 440/527 kB | 147/148 kB | 53/106 kB | 14 kB Progress (5): 396/472 kB | 445/527 kB | 147/148 kB | 53/106 kB | 14 kB Progress (5): 396/472 kB | 445/527 kB | 148 kB | 53/106 kB | 14 kB Progress (5): 400/472 kB | 445/527 kB | 148 kB | 53/106 kB | 14 kB Progress (5): 400/472 kB | 449/527 kB | 148 kB | 53/106 kB | 14 kB Progress (5): 400/472 kB | 453/527 kB | 148 kB | 53/106 kB | 14 kB Progress (5): 400/472 kB | 453/527 kB | 148 kB | 57/106 kB | 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-spi/1.7/aether-spi-1.7.jar (14 kB at 26 kB/s) +Progress (4): 400/472 kB | 457/527 kB | 148 kB | 57/106 kB Progress (4): 404/472 kB | 457/527 kB | 148 kB | 57/106 kB Progress (4): 404/472 kB | 461/527 kB | 148 kB | 57/106 kB Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar +Progress (4): 404/472 kB | 461/527 kB | 148 kB | 61/106 kB Progress (4): 404/472 kB | 461/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 465/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 469/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 473/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 477/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 481/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 486/527 kB | 148 kB | 65/106 kB Progress (4): 404/472 kB | 490/527 kB | 148 kB | 65/106 kB Progress (4): 408/472 kB | 490/527 kB | 148 kB | 65/106 kB Progress (4): 408/472 kB | 494/527 kB | 148 kB | 65/106 kB Progress (4): 408/472 kB | 498/527 kB | 148 kB | 65/106 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-model-builder/3.0/maven-model-builder-3.0.jar (148 kB at 277 kB/s) +Progress (3): 408/472 kB | 498/527 kB | 69/106 kB Progress (3): 408/472 kB | 498/527 kB | 73/106 kB Progress (3): 408/472 kB | 498/527 kB | 77/106 kB Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar +Progress (3): 408/472 kB | 502/527 kB | 77/106 kB Progress (3): 412/472 kB | 502/527 kB | 77/106 kB Progress (3): 416/472 kB | 502/527 kB | 77/106 kB Progress (3): 421/472 kB | 502/527 kB | 77/106 kB Progress (3): 421/472 kB | 502/527 kB | 81/106 kB Progress (3): 421/472 kB | 502/527 kB | 85/106 kB Progress (4): 421/472 kB | 502/527 kB | 85/106 kB | 4.1/74 kB Progress (4): 421/472 kB | 502/527 kB | 85/106 kB | 8.2/74 kB Progress (4): 421/472 kB | 502/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 425/472 kB | 502/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 425/472 kB | 506/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 425/472 kB | 510/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 429/472 kB | 510/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 433/472 kB | 510/527 kB | 90/106 kB | 8.2/74 kB Progress (4): 433/472 kB | 510/527 kB | 94/106 kB | 8.2/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 8.2/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 12/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 16/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 20/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 24/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 28/74 kB Progress (4): 433/472 kB | 510/527 kB | 98/106 kB | 32/74 kB Progress (4): 433/472 kB | 510/527 kB | 102/106 kB | 32/74 kB Progress (4): 433/472 kB | 510/527 kB | 106/106 kB | 32/74 kB Progress (4): 433/472 kB | 510/527 kB | 106 kB | 32/74 kB Progress (4): 437/472 kB | 510/527 kB | 106 kB | 32/74 kB Progress (4): 441/472 kB | 510/527 kB | 106 kB | 32/74 kB Progress (4): 441/472 kB | 514/527 kB | 106 kB | 32/74 kB Progress (4): 441/472 kB | 518/527 kB | 106 kB | 32/74 kB Progress (4): 441/472 kB | 522/527 kB | 106 kB | 32/74 kB Progress (4): 445/472 kB | 522/527 kB | 106 kB | 32/74 kB Progress (4): 449/472 kB | 522/527 kB | 106 kB | 32/74 kB Progress (4): 453/472 kB | 522/527 kB | 106 kB | 32/74 kB Progress (4): 453/472 kB | 522/527 kB | 106 kB | 36/74 kB Progress (4): 453/472 kB | 522/527 kB | 106 kB | 40/74 kB Progress (4): 453/472 kB | 522/527 kB | 106 kB | 44/74 kB Progress (4): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 4.1/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 8.2/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 12/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 16/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 20/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 49/74 kB | 24/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 53/74 kB | 24/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 57/74 kB | 24/108 kB Progress (5): 453/472 kB | 522/527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 457/472 kB | 522/527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 462/472 kB | 522/527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 462/472 kB | 526/527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 462/472 kB | 527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 466/472 kB | 527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 470/472 kB | 527 kB | 106 kB | 61/74 kB | 24/108 kB Progress (5): 470/472 kB | 527 kB | 106 kB | 65/74 kB | 24/108 kB Progress (5): 470/472 kB | 527 kB | 106 kB | 69/74 kB | 24/108 kB Progress (5): 470/472 kB | 527 kB | 106 kB | 73/74 kB | 24/108 kB Progress (5): 470/472 kB | 527 kB | 106 kB | 73/74 kB | 28/108 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-impl/1.7/aether-impl-1.7.jar (106 kB at 183 kB/s) +Progress (4): 470/472 kB | 527 kB | 74 kB | 28/108 kB Progress (4): 470/472 kB | 527 kB | 74 kB | 32/108 kB Progress (4): 472 kB | 527 kB | 74 kB | 32/108 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/maven-core/3.0/maven-core-3.0.jar (527 kB at 890 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/sisu/sisu-guice/2.1.7/sisu-guice-2.1.7-noaop.jar (472 kB at 785 kB/s) +Progress (2): 74 kB | 36/108 kB Progress (2): 74 kB | 40/108 kB Progress (2): 74 kB | 44/108 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-api/1.7/aether-api-1.7.jar (74 kB at 123 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar +Progress (1): 49/108 kB Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.jar +Progress (1): 53/108 kB Progress (1): 57/108 kB Progress (2): 57/108 kB | 4.1/61 kB Progress (2): 57/108 kB | 8.2/61 kB Progress (3): 57/108 kB | 8.2/61 kB | 4.1/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 8.2/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 12/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 16/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 20/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 25/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 29/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 33/46 kB Progress (3): 57/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 61/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 65/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 69/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 73/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 77/108 kB | 8.2/61 kB | 37/46 kB Progress (3): 77/108 kB | 12/61 kB | 37/46 kB Progress (3): 77/108 kB | 16/61 kB | 37/46 kB Progress (3): 77/108 kB | 20/61 kB | 37/46 kB Progress (3): 81/108 kB | 20/61 kB | 37/46 kB Progress (4): 81/108 kB | 20/61 kB | 37/46 kB | 4.1/196 kB Progress (4): 81/108 kB | 20/61 kB | 41/46 kB | 4.1/196 kB Progress (4): 81/108 kB | 20/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 81/108 kB | 25/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 81/108 kB | 29/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 81/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 85/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 90/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 94/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 98/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 102/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (4): 106/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB Progress (5): 106/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB | 4.1/4.3 kB Progress (5): 106/108 kB | 33/61 kB | 45/46 kB | 4.1/196 kB | 4.3 kB Progress (5): 106/108 kB | 37/61 kB | 45/46 kB | 4.1/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 45/46 kB | 4.1/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 45/46 kB | 8.2/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 45/46 kB | 12/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 45/46 kB | 16/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 45/46 kB | 20/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 46 kB | 20/196 kB | 4.3 kB Progress (5): 106/108 kB | 41/61 kB | 46 kB | 25/196 kB | 4.3 kB Progress (5): 106/108 kB | 45/61 kB | 46 kB | 25/196 kB | 4.3 kB Progress (5): 106/108 kB | 49/61 kB | 46 kB | 25/196 kB | 4.3 kB Progress (5): 106/108 kB | 53/61 kB | 46 kB | 25/196 kB | 4.3 kB Progress (5): 106/108 kB | 57/61 kB | 46 kB | 25/196 kB | 4.3 kB Progress (5): 106/108 kB | 61 kB | 46 kB | 25/196 kB | 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar (4.3 kB at 6.6 kB/s) +Progress (4): 108 kB | 61 kB | 46 kB | 25/196 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/2.2.3/plexus-classworlds-2.2.3.jar (46 kB at 70 kB/s) +Progress (3): 108 kB | 61 kB | 29/196 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.14/plexus-interpolation-1.14.jar (61 kB at 92 kB/s) +Progress (2): 108 kB | 33/196 kB Progress (2): 108 kB | 37/196 kB Progress (2): 108 kB | 41/196 kB Progress (2): 108 kB | 45/196 kB Progress (2): 108 kB | 49/196 kB Progress (2): 108 kB | 53/196 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/aether/aether-util/1.7/aether-util-1.7.jar (108 kB at 161 kB/s) +Progress (1): 57/196 kB Progress (1): 61/196 kB Progress (1): 64/196 kB Progress (1): 68/196 kB Progress (1): 72/196 kB Progress (1): 76/196 kB Progress (1): 81/196 kB Progress (1): 85/196 kB Progress (1): 89/196 kB Progress (1): 93/196 kB Progress (1): 97/196 kB Progress (1): 101/196 kB Progress (1): 105/196 kB Progress (1): 109/196 kB Progress (1): 113/196 kB Progress (1): 117/196 kB Progress (1): 122/196 kB Progress (1): 126/196 kB Progress (1): 130/196 kB Progress (1): 134/196 kB Progress (1): 138/196 kB Progress (1): 142/196 kB Progress (1): 146/196 kB Progress (1): 150/196 kB Progress (1): 154/196 kB Progress (1): 158/196 kB Progress (1): 162/196 kB Progress (1): 167/196 kB Progress (1): 171/196 kB Progress (1): 175/196 kB Progress (1): 179/196 kB Progress (1): 183/196 kB Progress (1): 187/196 kB Progress (1): 191/196 kB Progress (1): 195/196 kB Progress (1): 196 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.2.1/plexus-archiver-4.2.1.jar (196 kB at 281 kB/s) +[INFO] Building jar: /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-sources.jar +[INFO] +[INFO] --- maven-source-plugin:3.2.1:test-jar-no-fork (create-source-jar) @ commons-jxpath --- +[INFO] Building jar: /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-test-sources.jar +[INFO] +[INFO] --- cyclonedx-maven-plugin:2.7.9:makeAggregateBom (make-bom) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-core-java/7.3.2/cyclonedx-core-java-7.3.2.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-core-java/7.3.2/cyclonedx-core-java-7.3.2.pom (13 kB at 346 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/github/package-url/packageurl-java/1.4.1/packageurl-java-1.4.1.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/github/package-url/packageurl-java/1.4.1/packageurl-java-1.4.1.pom (12 kB at 309 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.2/jackson-dataformat-xml-2.14.2.pom +Progress (1): 4.1/7.2 kB Progress (1): 7.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.2/jackson-dataformat-xml-2.14.2.pom (7.2 kB at 206 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.14.2/jackson-base-2.14.2.pom +Progress (1): 4.1/10 kB Progress (1): 8.2/10 kB Progress (1): 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.14.2/jackson-base-2.14.2.pom (10 kB at 276 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.14.2/jackson-bom-2.14.2.pom +Progress (1): 4.1/17 kB Progress (1): 8.2/17 kB Progress (1): 12/17 kB Progress (1): 16/17 kB Progress (1): 17 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.14.2/jackson-bom-2.14.2.pom (17 kB at 460 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.14/jackson-parent-2.14.pom +Progress (1): 4.1/7.7 kB Progress (1): 7.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.14/jackson-parent-2.14.pom (7.7 kB at 225 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/48/oss-parent-48.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/48/oss-parent-48.pom (24 kB at 642 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.pom +Progress (1): 4.1/7.0 kB Progress (1): 7.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.pom (7.0 kB at 180 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.pom +Progress (1): 4.1/6.2 kB Progress (1): 6.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.pom (6.2 kB at 148 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.pom +Progress (1): 4.1/19 kB Progress (1): 8.2/19 kB Progress (1): 12/19 kB Progress (1): 16/19 kB Progress (1): 19 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.pom (19 kB at 415 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom +Progress (1): 4.1/6.3 kB Progress (1): 6.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 140 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom +Progress (1): 4.1/23 kB Progress (1): 8.2/23 kB Progress (1): 12/23 kB Progress (1): 16/23 kB Progress (1): 20/23 kB Progress (1): 23 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/38/oss-parent-38.pom (23 kB at 562 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.0/woodstox-core-6.5.0.pom +Progress (1): 4.1/9.0 kB Progress (1): 8.2/9.0 kB Progress (1): 9.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.0/woodstox-core-6.5.0.pom (9.0 kB at 238 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/49/oss-parent-49.pom +Progress (1): 4.1/24 kB Progress (1): 8.2/24 kB Progress (1): 12/24 kB Progress (1): 16/24 kB Progress (1): 20/24 kB Progress (1): 24 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/49/oss-parent-49.pom (24 kB at 594 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/networknt/json-schema-validator/1.0.77/json-schema-validator-1.0.77.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/networknt/json-schema-validator/1.0.77/json-schema-validator-1.0.77.pom (15 kB at 354 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/ethlo/time/itu/1.7.0/itu-1.7.0.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/ethlo/time/itu/1.7.0/itu-1.7.0.pom (12 kB at 289 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom +Progress (1): 4.1/6.2 kB Progress (1): 6.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.pom (6.2 kB at 139 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.13.2/maven-dependency-analyzer-1.13.2.pom +Progress (1): 4.1/6.4 kB Progress (1): 6.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.13.2/maven-dependency-analyzer-1.13.2.pom (6.4 kB at 169 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/39/maven-shared-components-39.pom (3.2 kB at 98 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom +Progress (1): 3.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.pom (3.8 kB at 119 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.pom +Progress (1): 4.1/4.7 kB Progress (1): 4.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.pom (4.7 kB at 152 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.0.M1/sisu-plexus-0.3.0.M1.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-plexus/0.3.0.M1/sisu-plexus-0.3.0.M1.pom (13 kB at 358 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.pom +Progress (1): 2.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.pom (2.5 kB at 75 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.0.M1/sisu-inject-0.3.0.M1.pom +Progress (1): 4.1/14 kB Progress (1): 8.2/14 kB Progress (1): 12/14 kB Progress (1): 14 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/sisu-inject/0.3.0.M1/sisu-inject-0.3.0.M1.pom (14 kB at 408 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-core-java/7.3.2/cyclonedx-core-java-7.3.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/github/package-url/packageurl-java/1.4.1/packageurl-java-1.4.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.2/jackson-dataformat-xml-2.14.2.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar +Progress (1): 0/1.8 MB Progress (1): 0/1.8 MB Progress (1): 0/1.8 MB Progress (1): 0/1.8 MB Progress (1): 0/1.8 MB Progress (2): 0/1.8 MB | 4.1/16 kB Progress (2): 0/1.8 MB | 8.2/16 kB Progress (2): 0/1.8 MB | 8.2/16 kB Progress (3): 0/1.8 MB | 8.2/16 kB | 4.1/459 kB Progress (3): 0/1.8 MB | 12/16 kB | 4.1/459 kB Progress (3): 0/1.8 MB | 16 kB | 4.1/459 kB Progress (4): 0/1.8 MB | 16 kB | 4.1/459 kB | 4.1/77 kB Progress (4): 0/1.8 MB | 16 kB | 8.2/459 kB | 4.1/77 kB Progress (4): 0/1.8 MB | 16 kB | 12/459 kB | 4.1/77 kB Progress (5): 0/1.8 MB | 16 kB | 12/459 kB | 4.1/77 kB | 4.1/130 kB Progress (5): 0.1/1.8 MB | 16 kB | 12/459 kB | 4.1/77 kB | 4.1/130 kB Progress (5): 0.1/1.8 MB | 16 kB | 12/459 kB | 4.1/77 kB | 4.1/130 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/github/package-url/packageurl-java/1.4.1/packageurl-java-1.4.1.jar (16 kB at 289 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar +Progress (4): 0.1/1.8 MB | 12/459 kB | 4.1/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 16/459 kB | 4.1/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 16/459 kB | 8.2/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 16/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 20/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 25/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 29/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 33/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 37/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 41/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 45/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 49/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 53/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 57/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 8.2/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 12/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 16/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 20/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 24/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 28/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 32/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 32/130 kB Progress (4): 0.1/1.8 MB | 61/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 66/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 70/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 74/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 78/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 82/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 86/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 90/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 94/459 kB | 12/77 kB | 36/130 kB Progress (4): 0.1/1.8 MB | 98/459 kB | 12/77 kB | 36/130 kB Progress (5): 0.1/1.8 MB | 98/459 kB | 12/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 98/459 kB | 12/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 98/459 kB | 16/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 98/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 102/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 106/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 36/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 40/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 40/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 40/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 44/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 49/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 53/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 57/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 61/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 111/459 kB | 20/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 115/459 kB | 20/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 119/459 kB | 20/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 119/459 kB | 25/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 119/459 kB | 29/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 65/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 69/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 73/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 77/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 81/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 85/130 kB | 0/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 85/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 85/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 90/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 123/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 127/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 131/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 135/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 139/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 143/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 147/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 152/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 29/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 33/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 37/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 41/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 45/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 94/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 98/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 102/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 106/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 49/77 kB | 110/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 156/459 kB | 53/77 kB | 110/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 53/77 kB | 110/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 110/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 114/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 114/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 114/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 118/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 122/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 126/130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 57/77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 61/77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 66/77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 70/77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 74/77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 160/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 164/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 168/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 172/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 176/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 176/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 176/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 176/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 180/459 kB | 77 kB | 130 kB | 0.1/1.6 MB Progress (5): 0.1/1.8 MB | 180/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 184/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 184/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 184/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 188/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 193/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 197/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 201/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Progress (5): 0.1/1.8 MB | 201/459 kB | 77 kB | 130 kB | 0.2/1.6 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.14.2/jackson-dataformat-xml-2.14.2.jar (130 kB at 665 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar +Progress (4): 0.1/1.8 MB | 205/459 kB | 77 kB | 0.2/1.6 MB Progress (4): 0.1/1.8 MB | 209/459 kB | 77 kB | 0.2/1.6 MB Progress (4): 0.1/1.8 MB | 209/459 kB | 77 kB | 0.2/1.6 MB Progress (4): 0.1/1.8 MB | 209/459 kB | 77 kB | 0.2/1.6 MB Progress (4): 0.1/1.8 MB | 209/459 kB | 77 kB | 0.2/1.6 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.14.2/jackson-annotations-2.14.2.jar (77 kB at 387 kB/s) +Progress (3): 0.1/1.8 MB | 209/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 209/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 209/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 213/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 217/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 221/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 225/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 229/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 233/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 238/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 242/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 246/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 250/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 254/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 258/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 262/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB Progress (3): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 4.1/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 8.2/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.0/woodstox-core-6.5.0.jar +Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 12/196 kB Progress (4): 0.2/1.8 MB | 266/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 270/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 274/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 274/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 274/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 279/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 283/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 16/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 20/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 25/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 29/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 29/196 kB Progress (4): 0.2/1.8 MB | 287/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 291/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 295/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 299/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 303/459 kB | 0.2/1.6 MB | 33/196 kB Progress (4): 0.2/1.8 MB | 303/459 kB | 0.2/1.6 MB | 37/196 kB Progress (4): 0.2/1.8 MB | 303/459 kB | 0.2/1.6 MB | 41/196 kB Progress (4): 0.2/1.8 MB | 303/459 kB | 0.2/1.6 MB | 45/196 kB Progress (4): 0.2/1.8 MB | 303/459 kB | 0.2/1.6 MB | 45/196 kB Progress (4): 0.3/1.8 MB | 303/459 kB | 0.2/1.6 MB | 45/196 kB Progress (4): 0.3/1.8 MB | 303/459 kB | 0.2/1.6 MB | 49/196 kB Progress (4): 0.3/1.8 MB | 303/459 kB | 0.2/1.6 MB | 49/196 kB Progress (4): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB Progress (4): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB Progress (4): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 307/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 311/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.2/1.6 MB | 49/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.2/1.6 MB | 53/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.2/1.6 MB | 57/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.2/1.6 MB | 61/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.2/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 315/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 319/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 324/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 324/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 324/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 328/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 332/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 332/459 kB | 0.3/1.6 MB | 66/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 332/459 kB | 0.3/1.6 MB | 70/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 332/459 kB | 0.3/1.6 MB | 74/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 332/459 kB | 0.3/1.6 MB | 74/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 336/459 kB | 0.3/1.6 MB | 74/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 340/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 74/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 78/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.3/1.8 MB | 344/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 344/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 82/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 86/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 348/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 90/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.3/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 352/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 356/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 356/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 356/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 360/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 365/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 369/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 373/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 373/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 373/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 94/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 98/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 102/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 106/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 377/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 381/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.4/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 111/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 115/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 119/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 385/459 kB | 0.4/1.6 MB | 123/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 389/459 kB | 0.4/1.6 MB | 123/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 123/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.1/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 127/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 131/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 135/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 139/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 393/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.4/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 143/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 397/459 kB | 0.5/1.6 MB | 147/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 401/459 kB | 0.5/1.6 MB | 147/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 147/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 152/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 156/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 156/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 156/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 156/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.5/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 406/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 410/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.2/1.6 MB Progress (5): 0.6/1.8 MB | 414/459 kB | 0.5/1.6 MB | 160/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 418/459 kB | 0.5/1.6 MB | 160/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 422/459 kB | 0.5/1.6 MB | 160/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 426/459 kB | 0.5/1.6 MB | 160/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 426/459 kB | 0.5/1.6 MB | 160/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 426/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 426/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 430/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 434/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 438/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 442/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 442/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 442/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.6/1.8 MB | 442/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 442/459 kB | 0.5/1.6 MB | 164/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 442/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 446/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 451/459 kB | 0.5/1.6 MB | 168/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 451/459 kB | 0.5/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.5/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 455/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459/459 kB | 0.6/1.6 MB | 172/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459/459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459/459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 176/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.3/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.4/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.4/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.4/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 180/196 kB | 0.4/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (5): 0.7/1.8 MB | 459 kB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.14.2/jackson-core-2.14.2.jar (459 kB at 889 kB/s) +Progress (4): 0.7/1.8 MB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.6/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.7/1.6 MB | 184/196 kB | 0.4/1.6 MB Downloading from central: https://repo.maven.apache.org/maven2/com/networknt/json-schema-validator/1.0.77/json-schema-validator-1.0.77.jar +Progress (4): 0.7/1.8 MB | 0.7/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.7/1.6 MB | 184/196 kB | 0.4/1.6 MB Progress (4): 0.7/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 188/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 193/196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (4): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.8/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.9/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 4.1/255 kB Progress (5): 0.9/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 8.2/255 kB Progress (5): 0.9/1.8 MB | 0.7/1.6 MB | 196 kB | 0.4/1.6 MB | 12/255 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 355 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/ethlo/time/itu/1.7.0/itu-1.7.0.jar +Progress (4): 0.9/1.8 MB | 0.7/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.7/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.7/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 12/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.4/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 16/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 20/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 0.9/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 25/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 29/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.8/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (4): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB | 4.1/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB | 8.2/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 33/255 kB | 12/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 37/255 kB | 12/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 12/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.0/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 16/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 20/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 41/255 kB | 24/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 45/255 kB | 24/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 24/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 28/29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.5/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 49/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 53/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 57/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 61/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 66/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 70/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 74/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 78/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 82/255 kB | 29 kB Progress (5): 1.1/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 82/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 82/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 82/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB | 29 kB Progress (5): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB | 29 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/ethlo/time/itu/1.7.0/itu-1.7.0.jar (29 kB at 45 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar +Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 86/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 90/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 94/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 94/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 94/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.6/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 0.9/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 98/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 102/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 106/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 106/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 106/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 111/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 115/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 119/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 123/255 kB Progress (4): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 4.1/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 8.2/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 12/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 12/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 12/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 16/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 127/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 131/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 135/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 135/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 20/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 24/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 28/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 28/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 28/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 32/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 139/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 143/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 143/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 147/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.7/1.6 MB | 147/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 36/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 40/43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 43 kB Progress (5): 1.2/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 147/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 152/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 156/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 156/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 156/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 160/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 164/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 168/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 172/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 176/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 180/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 180/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 180/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 180/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 184/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 184/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 188/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 193/255 kB | 43 kB Progress (5): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 197/255 kB | 43 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.2.1/maven-dependency-tree-3.2.1.jar (43 kB at 58 kB/s) +Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 197/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 197/255 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.13.2/maven-dependency-analyzer-1.13.2.jar +Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 197/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 201/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 205/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 205/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 209/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 213/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 213/255 kB Progress (4): 1.3/1.8 MB | 1.0/1.6 MB | 0.8/1.6 MB | 213/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 213/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 217/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 217/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 217/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 221/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 221/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 221/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 221/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 225/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 225/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 225/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 225/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 229/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 229/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 229/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 233/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 238/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 242/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 246/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 246/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 246/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 246/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 250/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 254/255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (4): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB Progress (5): 1.3/1.8 MB | 1.1/1.6 MB | 0.8/1.6 MB | 255 kB | 4.1/39 kB Progress (5): 1.3/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 4.1/39 kB Progress (5): 1.3/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 4.1/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 4.1/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 8.2/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 12/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 16/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.1/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Progress (5): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 255 kB | 20/39 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/networknt/json-schema-validator/1.0.77/json-schema-validator-1.0.77.jar (255 kB at 321 kB/s) +Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 20/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 24/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 28/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.jar +Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 32/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 36/39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 0.9/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (4): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB Progress (5): 1.4/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.2/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 39 kB | 4.1/201 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.13.2/maven-dependency-analyzer-1.13.2.jar (39 kB at 46 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.jar +Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 8.2/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 12/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 16/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (4): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.0/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 20/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 4.1/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 8.2/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 12/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 16/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 20/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 25/340 kB Progress (5): 1.5/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 25/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 29/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 33/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 37/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 41/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 45/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 49/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 53/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 57/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 61/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 66/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 70/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 70/201 kB | 25/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 70/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 74/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 78/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 78/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 78/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 29/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 33/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 82/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 86/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 90/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 94/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 37/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 41/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 45/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 49/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 98/201 kB | 53/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 102/201 kB | 53/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 106/201 kB | 53/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 53/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 57/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.3/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.1/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 61/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 111/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 115/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 119/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 123/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 123/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 127/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 131/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 65/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 70/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 74/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 74/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 74/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 135/201 kB | 74/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 139/201 kB | 74/340 kB Progress (5): 1.6/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 143/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 143/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 143/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 147/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 74/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 152/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 156/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 160/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 164/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 168/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 172/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.4/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 78/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 82/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 86/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.2/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 176/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 180/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 184/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 188/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 193/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 90/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 94/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 197/201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 98/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 102/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.5/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Progress (5): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 201 kB | 106/340 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.plexus/0.3.0.M1/org.eclipse.sisu.plexus-0.3.0.M1.jar (201 kB at 194 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar +Progress (4): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 110/340 kB Progress (4): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.7/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.3/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6/1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6 MB | 1.4/1.6 MB | 115/340 kB Progress (4): 1.8/1.8 MB | 1.6 MB | 1.4/1.6 MB | 119/340 kB Progress (4): 1.8/1.8 MB | 1.6 MB | 1.4/1.6 MB | 123/340 kB Progress (4): 1.8/1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB Progress (4): 1.8/1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB Progress (4): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB Progress (4): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB Progress (4): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB | 4.1/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB | 8.2/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB | 12/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 127/340 kB | 12/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 131/340 kB | 12/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 135/340 kB | 12/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 139/340 kB | 12/243 kB Progress (5): 1.8 MB | 1.6 MB | 1.4/1.6 MB | 143/340 kB | 12/243 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.14.2/jackson-databind-2.14.2.jar (1.6 MB at 1.5 MB/s) +Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 12/243 kB Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 12/243 kB Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 12/243 kB Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 16/243 kB Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 20/243 kB Progress (4): 1.8 MB | 1.4/1.6 MB | 143/340 kB | 24/243 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/cyclonedx/cyclonedx-core-java/7.3.2/cyclonedx-core-java-7.3.2.jar (1.8 MB at 1.7 MB/s) +Progress (3): 1.4/1.6 MB | 147/340 kB | 24/243 kB Progress (3): 1.4/1.6 MB | 151/340 kB | 24/243 kB Progress (3): 1.4/1.6 MB | 151/340 kB | 28/243 kB Progress (3): 1.4/1.6 MB | 151/340 kB | 32/243 kB Progress (3): 1.5/1.6 MB | 151/340 kB | 32/243 kB Progress (3): 1.5/1.6 MB | 151/340 kB | 32/243 kB Progress (3): 1.5/1.6 MB | 151/340 kB | 32/243 kB Progress (3): 1.5/1.6 MB | 151/340 kB | 36/243 kB Progress (3): 1.5/1.6 MB | 151/340 kB | 40/243 kB Progress (3): 1.5/1.6 MB | 156/340 kB | 40/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 40/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 44/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 49/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 160/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 164/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 168/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 172/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 176/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 180/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 184/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 188/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 192/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 197/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 53/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 57/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 61/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 65/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 65/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 65/243 kB Progress (3): 1.5/1.6 MB | 201/340 kB | 69/243 kB Progress (3): 1.5/1.6 MB | 205/340 kB | 69/243 kB Progress (3): 1.5/1.6 MB | 205/340 kB | 73/243 kB Progress (3): 1.5/1.6 MB | 205/340 kB | 77/243 kB Progress (3): 1.5/1.6 MB | 205/340 kB | 77/243 kB Progress (3): 1.5/1.6 MB | 205/340 kB | 77/243 kB Progress (3): 1.5/1.6 MB | 209/340 kB | 77/243 kB Progress (3): 1.5/1.6 MB | 213/340 kB | 77/243 kB Progress (3): 1.5/1.6 MB | 217/340 kB | 77/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 77/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 81/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 85/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 90/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 94/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 98/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 102/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 106/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 110/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 114/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 118/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 122/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 126/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 126/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 126/243 kB Progress (3): 1.6/1.6 MB | 217/340 kB | 126/243 kB Progress (3): 1.6 MB | 217/340 kB | 126/243 kB Progress (3): 1.6 MB | 221/340 kB | 126/243 kB Progress (3): 1.6 MB | 225/340 kB | 126/243 kB Progress (3): 1.6 MB | 229/340 kB | 126/243 kB Progress (3): 1.6 MB | 233/340 kB | 126/243 kB Progress (3): 1.6 MB | 233/340 kB | 130/243 kB Progress (3): 1.6 MB | 233/340 kB | 135/243 kB Progress (3): 1.6 MB | 237/340 kB | 135/243 kB Progress (3): 1.6 MB | 242/340 kB | 135/243 kB Progress (3): 1.6 MB | 242/340 kB | 139/243 kB Progress (3): 1.6 MB | 242/340 kB | 143/243 kB Progress (3): 1.6 MB | 242/340 kB | 147/243 kB Progress (3): 1.6 MB | 246/340 kB | 147/243 kB Progress (3): 1.6 MB | 250/340 kB | 147/243 kB Progress (3): 1.6 MB | 254/340 kB | 147/243 kB Progress (3): 1.6 MB | 254/340 kB | 151/243 kB Progress (3): 1.6 MB | 254/340 kB | 155/243 kB Progress (3): 1.6 MB | 258/340 kB | 155/243 kB Progress (3): 1.6 MB | 262/340 kB | 155/243 kB Progress (3): 1.6 MB | 262/340 kB | 159/243 kB Progress (3): 1.6 MB | 266/340 kB | 159/243 kB Progress (3): 1.6 MB | 270/340 kB | 159/243 kB Progress (3): 1.6 MB | 270/340 kB | 163/243 kB Progress (3): 1.6 MB | 270/340 kB | 167/243 kB Progress (3): 1.6 MB | 270/340 kB | 171/243 kB Progress (3): 1.6 MB | 274/340 kB | 171/243 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.0/woodstox-core-6.5.0.jar (1.6 MB at 1.4 MB/s) +Progress (2): 278/340 kB | 171/243 kB Progress (2): 283/340 kB | 171/243 kB Progress (2): 283/340 kB | 176/243 kB Progress (2): 287/340 kB | 176/243 kB Progress (2): 291/340 kB | 176/243 kB Progress (2): 291/340 kB | 180/243 kB Progress (2): 291/340 kB | 184/243 kB Progress (2): 291/340 kB | 188/243 kB Progress (2): 295/340 kB | 188/243 kB Progress (2): 299/340 kB | 188/243 kB Progress (2): 299/340 kB | 192/243 kB Progress (2): 299/340 kB | 196/243 kB Progress (2): 303/340 kB | 196/243 kB Progress (2): 307/340 kB | 196/243 kB Progress (2): 311/340 kB | 196/243 kB Progress (2): 311/340 kB | 200/243 kB Progress (2): 311/340 kB | 204/243 kB Progress (2): 315/340 kB | 204/243 kB Progress (2): 319/340 kB | 204/243 kB Progress (2): 319/340 kB | 208/243 kB Progress (2): 319/340 kB | 212/243 kB Progress (2): 323/340 kB | 212/243 kB Progress (2): 328/340 kB | 212/243 kB Progress (2): 328/340 kB | 217/243 kB Progress (2): 328/340 kB | 221/243 kB Progress (2): 332/340 kB | 221/243 kB Progress (2): 336/340 kB | 221/243 kB Progress (2): 336/340 kB | 225/243 kB Progress (2): 336/340 kB | 229/243 kB Progress (2): 340/340 kB | 229/243 kB Progress (2): 340 kB | 229/243 kB Progress (2): 340 kB | 233/243 kB Progress (2): 340 kB | 237/243 kB Progress (2): 340 kB | 241/243 kB Progress (2): 340 kB | 243 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/sisu/org.eclipse.sisu.inject/0.3.0.M1/org.eclipse.sisu.inject-0.3.0.M1.jar (340 kB at 295 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.20/plexus-utils-3.0.20.jar (243 kB at 210 kB/s) +[INFO] CycloneDX: Resolving Dependencies +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar +Progress (1): 4.1/98 kB Progress (1): 8.2/98 kB Progress (1): 12/98 kB Progress (1): 16/98 kB Progress (1): 20/98 kB Progress (1): 25/98 kB Progress (1): 29/98 kB Progress (1): 33/98 kB Progress (1): 37/98 kB Progress (1): 41/98 kB Progress (1): 45/98 kB Progress (1): 49/98 kB Progress (1): 53/98 kB Progress (1): 57/98 kB Progress (1): 61/98 kB Progress (1): 65/98 kB Progress (1): 69/98 kB Progress (1): 73/98 kB Progress (1): 78/98 kB Progress (1): 82/98 kB Progress (1): 86/98 kB Progress (1): 90/98 kB Progress (1): 94/98 kB Progress (1): 98 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.4/servlet-api-2.4.jar (98 kB at 2.3 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar +Progress (1): 4.1/78 kB Progress (1): 8.2/78 kB Progress (1): 12/78 kB Progress (1): 16/78 kB Progress (1): 20/78 kB Progress (1): 24/78 kB Progress (1): 28/78 kB Progress (1): 32/78 kB Progress (1): 36/78 kB Progress (1): 40/78 kB Progress (1): 44/78 kB Progress (1): 49/78 kB Progress (1): 53/78 kB Progress (1): 57/78 kB Progress (1): 61/78 kB Progress (1): 65/78 kB Progress (1): 69/78 kB Progress (1): 73/78 kB Progress (1): 77/78 kB Progress (1): 78 kB Downloaded from central: https://repo.maven.apache.org/maven2/javax/servlet/servlet-api/2.3/servlet-api-2.3.jar (78 kB at 1.8 MB/s) +[INFO] CycloneDX: Creating BOM version 1.4 with 6 component(s) +[INFO] CycloneDX: Writing and validating BOM (XML): /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-bom.xml +[INFO] attaching as commons-jxpath-1.4-SNAPSHOT-cyclonedx.xml +[INFO] CycloneDX: Writing and validating BOM (JSON): /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-bom.json +[WARNING] Unknown keyword additionalItems - you should define your own Meta Schema. If the keyword is irrelevant for validation, just use a NonValidationKeyword +[INFO] attaching as commons-jxpath-1.4-SNAPSHOT-cyclonedx.json +[INFO] +[INFO] --- maven-shade-plugin:3.2.4:shade (default-cli) @ commons-jxpath --- +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.12.0/maven-artifact-transfer-0.12.0.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.12.0/maven-artifact-transfer-0.12.0.pom (11 kB at 250 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom +Progress (1): 4.1/4.8 kB Progress (1): 4.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom (4.8 kB at 115 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom +Progress (1): 4.1/5.0 kB Progress (1): 5.0 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.pom (5.0 kB at 151 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.pom (2.7 kB at 73 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom +Progress (1): 4.1/12 kB Progress (1): 8.2/12 kB Progress (1): 12 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.5/slf4j-parent-1.7.5.pom (12 kB at 347 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0/asm-8.0.pom +Progress (1): 2.9 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0/asm-8.0.pom (2.9 kB at 80 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 kB at 312 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom +Progress (1): 3.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.pom (3.7 kB at 111 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom +Progress (1): 3.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.pom (3.1 kB at 95 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.pom +Progress (1): 3.2 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.pom (3.2 kB at 105 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom +Progress (1): 4.1/4.6 kB Progress (1): 4.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (4.6 kB at 135 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom +Progress (1): 4.1/7.5 kB Progress (1): 7.5 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom (7.5 kB at 197 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.4.0/jdependency-2.4.0.pom +Progress (1): 4.1/15 kB Progress (1): 8.2/15 kB Progress (1): 12/15 kB Progress (1): 15 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.4.0/jdependency-2.4.0.pom (15 kB at 502 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom +Progress (1): 3.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/8.0/asm-util-8.0.pom (3.7 kB at 130 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/28.2-android/guava-28.2-android.pom +Progress (1): 4.1/11 kB Progress (1): 8.2/11 kB Progress (1): 11 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/28.2-android/guava-28.2-android.pom (11 kB at 364 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/28.2-android/guava-parent-28.2-android.pom +Progress (1): 4.1/13 kB Progress (1): 8.2/13 kB Progress (1): 12/13 kB Progress (1): 13 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/28.2-android/guava-parent-28.2-android.pom (13 kB at 478 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom +Progress (1): 2.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 78 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom +Progress (1): 4.1/10 kB Progress (1): 8.2/10 kB Progress (1): 10 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 328 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom +Progress (1): 2.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 67 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom +Progress (1): 4.1/4.3 kB Progress (1): 4.3 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 130 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom +Progress (1): 2.7 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.pom (2.7 kB at 98 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom +Progress (1): 2.1 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.pom (2.1 kB at 68 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom +Progress (1): 4.1/5.4 kB Progress (1): 5.4 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.3.4/error_prone_parent-2.3.4.pom (5.4 kB at 181 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom +Progress (1): 2.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.pom (2.8 kB at 102 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.12.0/maven-artifact-transfer-0.12.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar +Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar +Progress (1): 4.1/4.2 kB Progress (1): 4.2 kB Progress (2): 4.2 kB | 4.1/61 kB Progress (2): 4.2 kB | 8.2/61 kB Progress (2): 4.2 kB | 12/61 kB Progress (2): 4.2 kB | 16/61 kB Progress (3): 4.2 kB | 16/61 kB | 4.1/120 kB Progress (4): 4.2 kB | 16/61 kB | 4.1/120 kB | 4.1/164 kB Progress (4): 4.2 kB | 16/61 kB | 4.1/120 kB | 8.2/164 kB Progress (4): 4.2 kB | 16/61 kB | 4.1/120 kB | 12/164 kB Progress (4): 4.2 kB | 16/61 kB | 4.1/120 kB | 16/164 kB Progress (4): 4.2 kB | 20/61 kB | 4.1/120 kB | 16/164 kB Progress (4): 4.2 kB | 20/61 kB | 4.1/120 kB | 20/164 kB Progress (4): 4.2 kB | 20/61 kB | 4.1/120 kB | 25/164 kB Progress (5): 4.2 kB | 20/61 kB | 4.1/120 kB | 25/164 kB | 4.1/26 kB Progress (5): 4.2 kB | 20/61 kB | 4.1/120 kB | 25/164 kB | 8.2/26 kB Progress (5): 4.2 kB | 20/61 kB | 8.2/120 kB | 25/164 kB | 8.2/26 kB Progress (5): 4.2 kB | 20/61 kB | 12/120 kB | 25/164 kB | 8.2/26 kB Progress (5): 4.2 kB | 20/61 kB | 16/120 kB | 25/164 kB | 8.2/26 kB Progress (5): 4.2 kB | 20/61 kB | 16/120 kB | 25/164 kB | 12/26 kB Progress (5): 4.2 kB | 20/61 kB | 16/120 kB | 29/164 kB | 12/26 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar (4.2 kB at 121 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0/asm-8.0.jar +Progress (4): 25/61 kB | 16/120 kB | 29/164 kB | 12/26 kB Progress (4): 29/61 kB | 16/120 kB | 29/164 kB | 12/26 kB Progress (4): 29/61 kB | 16/120 kB | 33/164 kB | 12/26 kB Progress (4): 29/61 kB | 20/120 kB | 33/164 kB | 12/26 kB Progress (4): 29/61 kB | 20/120 kB | 33/164 kB | 16/26 kB Progress (4): 29/61 kB | 25/120 kB | 33/164 kB | 16/26 kB Progress (4): 29/61 kB | 25/120 kB | 37/164 kB | 16/26 kB Progress (4): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB Progress (5): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB | 4.1/122 kB Progress (5): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB | 8.2/122 kB Progress (5): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB | 12/122 kB Progress (5): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB | 16/122 kB Progress (5): 33/61 kB | 25/120 kB | 37/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 25/120 kB | 41/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 25/120 kB | 45/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 25/120 kB | 49/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 29/120 kB | 49/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 33/120 kB | 49/164 kB | 16/26 kB | 20/122 kB Progress (5): 33/61 kB | 33/120 kB | 49/164 kB | 20/26 kB | 20/122 kB Progress (5): 33/61 kB | 33/120 kB | 49/164 kB | 24/26 kB | 20/122 kB Progress (5): 33/61 kB | 33/120 kB | 49/164 kB | 26 kB | 20/122 kB Progress (5): 33/61 kB | 37/120 kB | 49/164 kB | 26 kB | 20/122 kB Progress (5): 33/61 kB | 41/120 kB | 49/164 kB | 26 kB | 20/122 kB Progress (5): 33/61 kB | 41/120 kB | 53/164 kB | 26 kB | 20/122 kB Progress (5): 33/61 kB | 41/120 kB | 57/164 kB | 26 kB | 20/122 kB Progress (5): 33/61 kB | 41/120 kB | 57/164 kB | 26 kB | 25/122 kB Progress (5): 33/61 kB | 41/120 kB | 57/164 kB | 26 kB | 29/122 kB Progress (5): 33/61 kB | 41/120 kB | 57/164 kB | 26 kB | 33/122 kB Progress (5): 37/61 kB | 41/120 kB | 57/164 kB | 26 kB | 33/122 kB Progress (5): 37/61 kB | 41/120 kB | 57/164 kB | 26 kB | 37/122 kB Progress (5): 37/61 kB | 41/120 kB | 57/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 41/120 kB | 61/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 45/120 kB | 61/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 49/120 kB | 61/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 61/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 66/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 70/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 74/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 78/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 82/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 86/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 90/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 94/164 kB | 26 kB | 41/122 kB Progress (5): 37/61 kB | 53/120 kB | 94/164 kB | 26 kB | 45/122 kB Progress (5): 41/61 kB | 53/120 kB | 94/164 kB | 26 kB | 45/122 kB Progress (5): 45/61 kB | 53/120 kB | 94/164 kB | 26 kB | 45/122 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.5/slf4j-api-1.7.5.jar (26 kB at 307 kB/s) +Progress (4): 45/61 kB | 53/120 kB | 94/164 kB | 49/122 kB Progress (4): 45/61 kB | 53/120 kB | 94/164 kB | 53/122 kB Progress (4): 45/61 kB | 57/120 kB | 94/164 kB | 53/122 kB Progress (4): 45/61 kB | 61/120 kB | 94/164 kB | 53/122 kB Progress (4): 45/61 kB | 61/120 kB | 94/164 kB | 57/122 kB Progress (4): 45/61 kB | 61/120 kB | 94/164 kB | 61/122 kB Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.jar +Progress (4): 49/61 kB | 61/120 kB | 94/164 kB | 61/122 kB Progress (4): 49/61 kB | 61/120 kB | 98/164 kB | 61/122 kB Progress (4): 53/61 kB | 61/120 kB | 98/164 kB | 61/122 kB Progress (4): 53/61 kB | 61/120 kB | 98/164 kB | 66/122 kB Progress (4): 53/61 kB | 66/120 kB | 98/164 kB | 66/122 kB Progress (4): 53/61 kB | 66/120 kB | 98/164 kB | 70/122 kB Progress (4): 57/61 kB | 66/120 kB | 98/164 kB | 70/122 kB Progress (4): 57/61 kB | 66/120 kB | 102/164 kB | 70/122 kB Progress (4): 61/61 kB | 66/120 kB | 102/164 kB | 70/122 kB Progress (4): 61/61 kB | 66/120 kB | 102/164 kB | 74/122 kB Progress (4): 61/61 kB | 66/120 kB | 102/164 kB | 78/122 kB Progress (4): 61/61 kB | 70/120 kB | 102/164 kB | 78/122 kB Progress (4): 61/61 kB | 70/120 kB | 102/164 kB | 82/122 kB Progress (4): 61 kB | 70/120 kB | 102/164 kB | 82/122 kB Progress (4): 61 kB | 70/120 kB | 106/164 kB | 82/122 kB Progress (4): 61 kB | 70/120 kB | 106/164 kB | 86/122 kB Progress (4): 61 kB | 70/120 kB | 106/164 kB | 90/122 kB Progress (4): 61 kB | 70/120 kB | 106/164 kB | 94/122 kB Progress (4): 61 kB | 74/120 kB | 106/164 kB | 94/122 kB Progress (4): 61 kB | 78/120 kB | 106/164 kB | 94/122 kB Progress (4): 61 kB | 78/120 kB | 106/164 kB | 98/122 kB Progress (4): 61 kB | 78/120 kB | 106/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 111/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 115/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 119/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 123/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 127/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 131/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 135/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 139/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 143/164 kB | 102/122 kB Progress (4): 61 kB | 78/120 kB | 143/164 kB | 106/122 kB Progress (5): 61 kB | 78/120 kB | 143/164 kB | 106/122 kB | 4.1/72 kB Progress (5): 61 kB | 78/120 kB | 143/164 kB | 106/122 kB | 8.2/72 kB Progress (5): 61 kB | 82/120 kB | 143/164 kB | 106/122 kB | 8.2/72 kB Progress (5): 61 kB | 82/120 kB | 143/164 kB | 106/122 kB | 12/72 kB Progress (5): 61 kB | 86/120 kB | 143/164 kB | 106/122 kB | 12/72 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar (61 kB at 496 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.jar +Progress (4): 86/120 kB | 147/164 kB | 106/122 kB | 12/72 kB Progress (4): 86/120 kB | 147/164 kB | 111/122 kB | 12/72 kB Progress (4): 86/120 kB | 147/164 kB | 115/122 kB | 12/72 kB Progress (4): 86/120 kB | 147/164 kB | 119/122 kB | 12/72 kB Progress (4): 86/120 kB | 147/164 kB | 122 kB | 12/72 kB Progress (4): 90/120 kB | 147/164 kB | 122 kB | 12/72 kB Progress (4): 90/120 kB | 147/164 kB | 122 kB | 16/72 kB Progress (4): 94/120 kB | 147/164 kB | 122 kB | 16/72 kB Progress (4): 98/120 kB | 147/164 kB | 122 kB | 16/72 kB Progress (4): 98/120 kB | 152/164 kB | 122 kB | 16/72 kB Progress (4): 98/120 kB | 152/164 kB | 122 kB | 20/72 kB Progress (4): 98/120 kB | 156/164 kB | 122 kB | 20/72 kB Progress (4): 98/120 kB | 160/164 kB | 122 kB | 20/72 kB Progress (4): 102/120 kB | 160/164 kB | 122 kB | 20/72 kB Progress (4): 102/120 kB | 164 kB | 122 kB | 20/72 kB Progress (4): 102/120 kB | 164 kB | 122 kB | 25/72 kB Progress (4): 106/120 kB | 164 kB | 122 kB | 25/72 kB Progress (4): 106/120 kB | 164 kB | 122 kB | 29/72 kB Progress (4): 111/120 kB | 164 kB | 122 kB | 29/72 kB Progress (4): 115/120 kB | 164 kB | 122 kB | 29/72 kB Progress (4): 119/120 kB | 164 kB | 122 kB | 29/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 29/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 33/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 37/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 41/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 45/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 49/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 53/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 57/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 61/72 kB Progress (4): 120 kB | 164 kB | 122 kB | 66/72 kB Progress (5): 120 kB | 164 kB | 122 kB | 66/72 kB | 4.1/53 kB Progress (5): 120 kB | 164 kB | 122 kB | 66/72 kB | 8.2/53 kB Progress (5): 120 kB | 164 kB | 122 kB | 66/72 kB | 12/53 kB Progress (5): 120 kB | 164 kB | 122 kB | 66/72 kB | 16/53 kB Progress (5): 120 kB | 164 kB | 122 kB | 70/72 kB | 16/53 kB Progress (5): 120 kB | 164 kB | 122 kB | 70/72 kB | 20/53 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/8.0/asm-8.0.jar (122 kB at 834 kB/s) +Progress (4): 120 kB | 164 kB | 70/72 kB | 25/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 25/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 29/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 33/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 37/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 41/53 kB Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.jar +Progress (4): 120 kB | 164 kB | 72 kB | 45/53 kB Progress (4): 120 kB | 164 kB | 72 kB | 49/53 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.1.0/maven-shared-utils-3.1.0.jar (164 kB at 1.1 MB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar +Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.12.0/maven-artifact-transfer-0.12.0.jar (120 kB at 762 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar +Progress (2): 72 kB | 53 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/8.0/asm-commons-8.0.jar (72 kB at 436 kB/s) +Progress (2): 53 kB | 4.1/33 kB Progress (2): 53 kB | 8.2/33 kB Downloading from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar +Progress (3): 53 kB | 8.2/33 kB | 4.1/305 kB Progress (3): 53 kB | 12/33 kB | 4.1/305 kB Progress (3): 53 kB | 16/33 kB | 4.1/305 kB Progress (3): 53 kB | 16/33 kB | 8.2/305 kB Progress (3): 53 kB | 16/33 kB | 12/305 kB Progress (3): 53 kB | 16/33 kB | 16/305 kB Progress (3): 53 kB | 16/33 kB | 20/305 kB Progress (3): 53 kB | 16/33 kB | 25/305 kB Progress (3): 53 kB | 16/33 kB | 29/305 kB Progress (4): 53 kB | 16/33 kB | 29/305 kB | 4.1/37 kB Progress (4): 53 kB | 20/33 kB | 29/305 kB | 4.1/37 kB Progress (4): 53 kB | 25/33 kB | 29/305 kB | 4.1/37 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/8.0/asm-tree-8.0.jar (53 kB at 301 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.4.0/jdependency-2.4.0.jar +Progress (3): 25/33 kB | 33/305 kB | 4.1/37 kB Progress (4): 25/33 kB | 33/305 kB | 4.1/37 kB | 4.1/134 kB Progress (4): 29/33 kB | 33/305 kB | 4.1/37 kB | 4.1/134 kB Progress (4): 33/33 kB | 33/305 kB | 4.1/37 kB | 4.1/134 kB Progress (4): 33 kB | 33/305 kB | 4.1/37 kB | 4.1/134 kB Progress (4): 33 kB | 33/305 kB | 8.2/37 kB | 4.1/134 kB Progress (4): 33 kB | 33/305 kB | 12/37 kB | 4.1/134 kB Progress (4): 33 kB | 33/305 kB | 12/37 kB | 8.2/134 kB Progress (4): 33 kB | 33/305 kB | 12/37 kB | 12/134 kB Progress (4): 33 kB | 33/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 37/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 41/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 45/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 49/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 53/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 57/305 kB | 12/37 kB | 16/134 kB Progress (4): 33 kB | 61/305 kB | 12/37 kB | 16/134 kB Progress (5): 33 kB | 61/305 kB | 12/37 kB | 16/134 kB | 4.1/180 kB Progress (5): 33 kB | 61/305 kB | 12/37 kB | 16/134 kB | 8.2/180 kB Progress (5): 33 kB | 61/305 kB | 12/37 kB | 16/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 12/37 kB | 20/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 12/37 kB | 24/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 16/37 kB | 24/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 24/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 28/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 32/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 36/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 40/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 44/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 49/134 kB | 12/180 kB Progress (5): 33 kB | 61/305 kB | 20/37 kB | 53/134 kB | 12/180 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/8.0/asm-analysis-8.0.jar (33 kB at 162 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/8.0/asm-util-8.0.jar +Progress (4): 61/305 kB | 20/37 kB | 53/134 kB | 16/180 kB Progress (4): 61/305 kB | 20/37 kB | 53/134 kB | 20/180 kB Progress (4): 64/305 kB | 20/37 kB | 53/134 kB | 20/180 kB Progress (4): 68/305 kB | 20/37 kB | 53/134 kB | 20/180 kB Progress (4): 68/305 kB | 20/37 kB | 53/134 kB | 25/180 kB Progress (4): 68/305 kB | 20/37 kB | 53/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 57/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 61/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 65/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 69/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 73/134 kB | 29/180 kB Progress (4): 68/305 kB | 20/37 kB | 77/134 kB | 29/180 kB Progress (4): 68/305 kB | 24/37 kB | 77/134 kB | 29/180 kB Progress (4): 68/305 kB | 28/37 kB | 77/134 kB | 29/180 kB Progress (4): 68/305 kB | 28/37 kB | 77/134 kB | 33/180 kB Progress (4): 72/305 kB | 28/37 kB | 77/134 kB | 33/180 kB Progress (4): 72/305 kB | 28/37 kB | 77/134 kB | 37/180 kB Progress (4): 72/305 kB | 28/37 kB | 77/134 kB | 41/180 kB Progress (4): 72/305 kB | 28/37 kB | 77/134 kB | 45/180 kB Progress (4): 72/305 kB | 32/37 kB | 77/134 kB | 45/180 kB Progress (4): 72/305 kB | 36/37 kB | 77/134 kB | 45/180 kB Progress (4): 72/305 kB | 37 kB | 77/134 kB | 45/180 kB Progress (5): 72/305 kB | 37 kB | 77/134 kB | 45/180 kB | 4.1/85 kB Progress (5): 72/305 kB | 37 kB | 81/134 kB | 45/180 kB | 4.1/85 kB Progress (5): 72/305 kB | 37 kB | 81/134 kB | 45/180 kB | 8.2/85 kB Progress (5): 72/305 kB | 37 kB | 81/134 kB | 49/180 kB | 8.2/85 kB Progress (5): 76/305 kB | 37 kB | 81/134 kB | 49/180 kB | 8.2/85 kB Progress (5): 80/305 kB | 37 kB | 81/134 kB | 49/180 kB | 8.2/85 kB Progress (5): 80/305 kB | 37 kB | 81/134 kB | 49/180 kB | 12/85 kB Progress (5): 80/305 kB | 37 kB | 81/134 kB | 49/180 kB | 16/85 kB Progress (5): 80/305 kB | 37 kB | 85/134 kB | 49/180 kB | 16/85 kB Progress (5): 80/305 kB | 37 kB | 90/134 kB | 49/180 kB | 16/85 kB Progress (5): 80/305 kB | 37 kB | 90/134 kB | 49/180 kB | 20/85 kB Progress (5): 80/305 kB | 37 kB | 90/134 kB | 49/180 kB | 25/85 kB Progress (5): 85/305 kB | 37 kB | 90/134 kB | 49/180 kB | 25/85 kB Progress (5): 89/305 kB | 37 kB | 90/134 kB | 49/180 kB | 25/85 kB Progress (5): 93/305 kB | 37 kB | 90/134 kB | 49/180 kB | 25/85 kB Progress (5): 97/305 kB | 37 kB | 90/134 kB | 49/180 kB | 25/85 kB Progress (5): 97/305 kB | 37 kB | 90/134 kB | 53/180 kB | 25/85 kB Progress (5): 97/305 kB | 37 kB | 90/134 kB | 57/180 kB | 25/85 kB Progress (5): 97/305 kB | 37 kB | 90/134 kB | 61/180 kB | 25/85 kB Progress (5): 101/305 kB | 37 kB | 90/134 kB | 61/180 kB | 25/85 kB Progress (5): 105/305 kB | 37 kB | 90/134 kB | 61/180 kB | 25/85 kB Progress (5): 105/305 kB | 37 kB | 90/134 kB | 61/180 kB | 29/85 kB Progress (5): 105/305 kB | 37 kB | 90/134 kB | 61/180 kB | 33/85 kB Progress (5): 105/305 kB | 37 kB | 90/134 kB | 61/180 kB | 37/85 kB Progress (5): 105/305 kB | 37 kB | 90/134 kB | 61/180 kB | 41/85 kB Progress (5): 105/305 kB | 37 kB | 94/134 kB | 61/180 kB | 41/85 kB Progress (5): 105/305 kB | 37 kB | 98/134 kB | 61/180 kB | 41/85 kB Progress (5): 105/305 kB | 37 kB | 102/134 kB | 61/180 kB | 41/85 kB Progress (5): 105/305 kB | 37 kB | 102/134 kB | 61/180 kB | 45/85 kB Progress (5): 109/305 kB | 37 kB | 102/134 kB | 61/180 kB | 45/85 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar (37 kB at 148 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/28.2-android/guava-28.2-android.jar +Progress (4): 109/305 kB | 102/134 kB | 66/180 kB | 45/85 kB Progress (4): 109/305 kB | 102/134 kB | 70/180 kB | 45/85 kB Progress (4): 109/305 kB | 102/134 kB | 74/180 kB | 45/85 kB Progress (4): 113/305 kB | 102/134 kB | 74/180 kB | 45/85 kB Progress (4): 117/305 kB | 102/134 kB | 74/180 kB | 45/85 kB Progress (4): 121/305 kB | 102/134 kB | 74/180 kB | 45/85 kB Progress (4): 125/305 kB | 102/134 kB | 74/180 kB | 45/85 kB Progress (4): 125/305 kB | 102/134 kB | 74/180 kB | 49/85 kB Progress (4): 125/305 kB | 106/134 kB | 74/180 kB | 49/85 kB Progress (4): 125/305 kB | 106/134 kB | 74/180 kB | 53/85 kB Progress (4): 125/305 kB | 106/134 kB | 74/180 kB | 57/85 kB Progress (4): 125/305 kB | 106/134 kB | 78/180 kB | 57/85 kB Progress (4): 125/305 kB | 106/134 kB | 78/180 kB | 61/85 kB Progress (4): 130/305 kB | 106/134 kB | 78/180 kB | 61/85 kB Progress (4): 130/305 kB | 110/134 kB | 78/180 kB | 61/85 kB Progress (4): 130/305 kB | 110/134 kB | 78/180 kB | 66/85 kB Progress (4): 130/305 kB | 110/134 kB | 82/180 kB | 66/85 kB Progress (4): 130/305 kB | 110/134 kB | 82/180 kB | 70/85 kB Progress (4): 130/305 kB | 110/134 kB | 82/180 kB | 74/85 kB Progress (4): 134/305 kB | 110/134 kB | 82/180 kB | 74/85 kB Progress (4): 138/305 kB | 110/134 kB | 82/180 kB | 74/85 kB Progress (4): 142/305 kB | 110/134 kB | 82/180 kB | 74/85 kB Progress (4): 146/305 kB | 110/134 kB | 82/180 kB | 74/85 kB Progress (5): 146/305 kB | 110/134 kB | 82/180 kB | 74/85 kB | 0/2.6 MB Progress (5): 146/305 kB | 114/134 kB | 82/180 kB | 74/85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 82/180 kB | 74/85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 82/180 kB | 78/85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 82/180 kB | 82/85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 82/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 86/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 90/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 94/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 98/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 102/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 106/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 111/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 115/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 119/180 kB | 85 kB | 0/2.6 MB Progress (5): 150/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 154/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 158/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 162/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 166/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 171/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 171/305 kB | 114/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 171/305 kB | 118/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 171/305 kB | 118/134 kB | 123/180 kB | 85 kB | 0/2.6 MB Progress (5): 171/305 kB | 118/134 kB | 123/180 kB | 85 kB | 0.1/2.6 MB Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/8.0/asm-util-8.0.jar (85 kB at 298 kB/s) +Progress (4): 175/305 kB | 118/134 kB | 123/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 118/134 kB | 123/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 118/134 kB | 127/180 kB | 0.1/2.6 MB Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar +Progress (4): 179/305 kB | 118/134 kB | 127/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 122/134 kB | 127/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 126/134 kB | 127/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 126/134 kB | 127/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 126/134 kB | 131/180 kB | 0.1/2.6 MB Progress (4): 179/305 kB | 126/134 kB | 135/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 126/134 kB | 135/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 126/134 kB | 139/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 126/134 kB | 139/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 131/134 kB | 139/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 134 kB | 139/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 134 kB | 143/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 134 kB | 147/180 kB | 0.1/2.6 MB Progress (4): 183/305 kB | 134 kB | 152/180 kB | 0.1/2.6 MB Progress (4): 187/305 kB | 134 kB | 152/180 kB | 0.1/2.6 MB Progress (4): 187/305 kB | 134 kB | 156/180 kB | 0.1/2.6 MB Progress (4): 187/305 kB | 134 kB | 156/180 kB | 0.1/2.6 MB Progress (4): 187/305 kB | 134 kB | 156/180 kB | 0.1/2.6 MB Progress (4): 187/305 kB | 134 kB | 160/180 kB | 0.1/2.6 MB Progress (4): 191/305 kB | 134 kB | 160/180 kB | 0.1/2.6 MB Progress (4): 191/305 kB | 134 kB | 160/180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 164/180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 168/180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 172/180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 176/180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 180 kB | 0.2/2.6 MB Progress (4): 191/305 kB | 134 kB | 180 kB | 0.2/2.6 MB Progress (5): 191/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.1/4.6 kB Progress (5): 191/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 195/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 195/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 199/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 203/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 207/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 207/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 211/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (5): 211/305 kB | 134 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/eclipse/aether/aether-util/0.9.0.M2/aether-util-0.9.0.M2.jar (134 kB at 421 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +Progress (4): 211/305 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Progress (4): 216/305 kB | 180 kB | 0.2/2.6 MB | 4.6 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/vafer/jdependency/2.4.0/jdependency-2.4.0.jar (180 kB at 556 kB/s) +Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar (4.6 kB at 14 kB/s) +Progress (2): 216/305 kB | 0.3/2.6 MB Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar +Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar +Progress (2): 220/305 kB | 0.3/2.6 MB Progress (2): 224/305 kB | 0.3/2.6 MB Progress (2): 228/305 kB | 0.3/2.6 MB Progress (2): 232/305 kB | 0.3/2.6 MB Progress (2): 236/305 kB | 0.3/2.6 MB Progress (3): 236/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 236/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 236/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 236/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 240/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 244/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 248/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 252/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 257/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 261/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 265/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 269/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 273/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 277/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 277/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 277/305 kB | 0.3/2.6 MB | 2.2 kB Progress (3): 277/305 kB | 0.4/2.6 MB | 2.2 kB Progress (4): 277/305 kB | 0.4/2.6 MB | 2.2 kB | 4.1/5.9 kB Progress (4): 277/305 kB | 0.4/2.6 MB | 2.2 kB | 5.9 kB Progress (5): 277/305 kB | 0.4/2.6 MB | 2.2 kB | 5.9 kB | 4.1/20 kB Progress (5): 277/305 kB | 0.4/2.6 MB | 2.2 kB | 5.9 kB | 4.1/20 kB Progress (5): 281/305 kB | 0.4/2.6 MB | 2.2 kB | 5.9 kB | 4.1/20 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar (2.2 kB at 6.2 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar +Progress (4): 281/305 kB | 0.4/2.6 MB | 5.9 kB | 8.2/20 kB Progress (4): 281/305 kB | 0.4/2.6 MB | 5.9 kB | 12/20 kB Progress (4): 281/305 kB | 0.4/2.6 MB | 5.9 kB | 16/20 kB Progress (4): 281/305 kB | 0.4/2.6 MB | 5.9 kB | 20/20 kB Progress (4): 281/305 kB | 0.4/2.6 MB | 5.9 kB | 20 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-compat-qual/2.5.5/checker-compat-qual-2.5.5.jar (5.9 kB at 16 kB/s) +Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar +Progress (3): 281/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 285/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 289/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 289/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 293/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 293/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 297/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 302/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 302/305 kB | 0.4/2.6 MB | 20 kB Progress (3): 305 kB | 0.4/2.6 MB | 20 kB Progress (3): 305 kB | 0.5/2.6 MB | 20 kB Progress (3): 305 kB | 0.5/2.6 MB | 20 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 4.1/14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 8.2/14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 8.2/14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 8.2/14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 12/14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 14 kB Progress (4): 305 kB | 0.5/2.6 MB | 20 kB | 14 kB Progress (5): 305 kB | 0.5/2.6 MB | 20 kB | 14 kB | 4.1/8.8 kB Progress (5): 305 kB | 0.6/2.6 MB | 20 kB | 14 kB | 4.1/8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (305 kB at 784 kB/s) +Progress (4): 0.6/2.6 MB | 20 kB | 14 kB | 8.2/8.8 kB Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar +Progress (4): 0.6/2.6 MB | 20 kB | 14 kB | 8.2/8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar (20 kB at 51 kB/s) +Progress (3): 0.6/2.6 MB | 14 kB | 8.2/8.8 kB Progress (3): 0.6/2.6 MB | 14 kB | 8.8 kB Progress (3): 0.6/2.6 MB | 14 kB | 8.8 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar (14 kB at 35 kB/s) +Progress (2): 0.6/2.6 MB | 8.8 kB Progress (2): 0.6/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (2): 0.7/2.6 MB | 8.8 kB Progress (3): 0.7/2.6 MB | 8.8 kB | 4.1/500 kB Progress (3): 0.7/2.6 MB | 8.8 kB | 8.2/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 8.2/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 12/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 16/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 20/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 20/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 20/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 25/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 29/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 29/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 29/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 33/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 37/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 37/500 kB Progress (3): 0.8/2.6 MB | 8.8 kB | 41/500 kB Progress (3): 0.9/2.6 MB | 8.8 kB | 41/500 kB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar (8.8 kB at 21 kB/s) +Progress (2): 0.9/2.6 MB | 45/500 kB Progress (2): 0.9/2.6 MB | 49/500 kB Progress (2): 0.9/2.6 MB | 53/500 kB Progress (2): 0.9/2.6 MB | 57/500 kB Progress (2): 0.9/2.6 MB | 61/500 kB Progress (2): 0.9/2.6 MB | 64/500 kB Progress (2): 0.9/2.6 MB | 68/500 kB Progress (2): 0.9/2.6 MB | 72/500 kB Progress (2): 0.9/2.6 MB | 76/500 kB Progress (2): 0.9/2.6 MB | 80/500 kB Progress (2): 0.9/2.6 MB | 84/500 kB Progress (2): 0.9/2.6 MB | 88/500 kB Progress (2): 0.9/2.6 MB | 92/500 kB Progress (2): 0.9/2.6 MB | 96/500 kB Progress (2): 0.9/2.6 MB | 100/500 kB Progress (2): 0.9/2.6 MB | 105/500 kB Progress (2): 0.9/2.6 MB | 109/500 kB Progress (2): 0.9/2.6 MB | 113/500 kB Progress (2): 0.9/2.6 MB | 117/500 kB Progress (2): 0.9/2.6 MB | 121/500 kB Progress (2): 0.9/2.6 MB | 125/500 kB Progress (2): 0.9/2.6 MB | 129/500 kB Progress (2): 0.9/2.6 MB | 133/500 kB Progress (2): 0.9/2.6 MB | 137/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 141/500 kB Progress (2): 0.9/2.6 MB | 145/500 kB Progress (2): 0.9/2.6 MB | 150/500 kB Progress (2): 0.9/2.6 MB | 154/500 kB Progress (2): 0.9/2.6 MB | 158/500 kB Progress (2): 0.9/2.6 MB | 162/500 kB Progress (2): 0.9/2.6 MB | 166/500 kB Progress (2): 0.9/2.6 MB | 170/500 kB Progress (2): 0.9/2.6 MB | 174/500 kB Progress (2): 0.9/2.6 MB | 178/500 kB Progress (2): 0.9/2.6 MB | 182/500 kB Progress (2): 0.9/2.6 MB | 186/500 kB Progress (2): 0.9/2.6 MB | 191/500 kB Progress (2): 0.9/2.6 MB | 195/500 kB Progress (2): 1.0/2.6 MB | 195/500 kB Progress (2): 1.0/2.6 MB | 199/500 kB Progress (2): 1.0/2.6 MB | 203/500 kB Progress (2): 1.0/2.6 MB | 207/500 kB Progress (2): 1.0/2.6 MB | 211/500 kB Progress (2): 1.0/2.6 MB | 211/500 kB Progress (2): 1.0/2.6 MB | 215/500 kB Progress (2): 1.0/2.6 MB | 215/500 kB Progress (2): 1.0/2.6 MB | 219/500 kB Progress (2): 1.0/2.6 MB | 219/500 kB Progress (2): 1.0/2.6 MB | 223/500 kB Progress (2): 1.0/2.6 MB | 223/500 kB Progress (2): 1.0/2.6 MB | 227/500 kB Progress (2): 1.0/2.6 MB | 231/500 kB Progress (2): 1.0/2.6 MB | 236/500 kB Progress (2): 1.0/2.6 MB | 236/500 kB Progress (2): 1.0/2.6 MB | 240/500 kB Progress (2): 1.0/2.6 MB | 244/500 kB Progress (2): 1.0/2.6 MB | 248/500 kB Progress (2): 1.0/2.6 MB | 252/500 kB Progress (2): 1.1/2.6 MB | 252/500 kB Progress (2): 1.1/2.6 MB | 256/500 kB Progress (2): 1.1/2.6 MB | 260/500 kB Progress (2): 1.1/2.6 MB | 260/500 kB Progress (2): 1.1/2.6 MB | 264/500 kB Progress (2): 1.1/2.6 MB | 268/500 kB Progress (2): 1.1/2.6 MB | 272/500 kB Progress (2): 1.1/2.6 MB | 277/500 kB Progress (2): 1.1/2.6 MB | 277/500 kB Progress (2): 1.1/2.6 MB | 281/500 kB Progress (2): 1.1/2.6 MB | 285/500 kB Progress (2): 1.1/2.6 MB | 285/500 kB Progress (2): 1.1/2.6 MB | 289/500 kB Progress (2): 1.1/2.6 MB | 293/500 kB Progress (2): 1.1/2.6 MB | 293/500 kB Progress (2): 1.1/2.6 MB | 297/500 kB Progress (2): 1.1/2.6 MB | 301/500 kB Progress (2): 1.1/2.6 MB | 305/500 kB Progress (2): 1.1/2.6 MB | 309/500 kB Progress (2): 1.1/2.6 MB | 309/500 kB Progress (2): 1.1/2.6 MB | 313/500 kB Progress (2): 1.1/2.6 MB | 318/500 kB Progress (2): 1.1/2.6 MB | 322/500 kB Progress (2): 1.1/2.6 MB | 326/500 kB Progress (2): 1.1/2.6 MB | 330/500 kB Progress (2): 1.1/2.6 MB | 334/500 kB Progress (2): 1.1/2.6 MB | 338/500 kB Progress (2): 1.1/2.6 MB | 342/500 kB Progress (2): 1.2/2.6 MB | 342/500 kB Progress (2): 1.2/2.6 MB | 346/500 kB Progress (2): 1.2/2.6 MB | 350/500 kB Progress (2): 1.2/2.6 MB | 354/500 kB Progress (2): 1.2/2.6 MB | 358/500 kB Progress (2): 1.2/2.6 MB | 358/500 kB Progress (2): 1.2/2.6 MB | 363/500 kB Progress (2): 1.2/2.6 MB | 367/500 kB Progress (2): 1.2/2.6 MB | 371/500 kB Progress (2): 1.2/2.6 MB | 375/500 kB Progress (2): 1.2/2.6 MB | 375/500 kB Progress (2): 1.2/2.6 MB | 379/500 kB Progress (2): 1.2/2.6 MB | 383/500 kB Progress (2): 1.2/2.6 MB | 387/500 kB Progress (2): 1.2/2.6 MB | 391/500 kB Progress (2): 1.2/2.6 MB | 391/500 kB Progress (2): 1.2/2.6 MB | 395/500 kB Progress (2): 1.2/2.6 MB | 399/500 kB Progress (2): 1.2/2.6 MB | 404/500 kB Progress (2): 1.2/2.6 MB | 408/500 kB Progress (2): 1.2/2.6 MB | 408/500 kB Progress (2): 1.2/2.6 MB | 412/500 kB Progress (2): 1.2/2.6 MB | 416/500 kB Progress (2): 1.2/2.6 MB | 420/500 kB Progress (2): 1.2/2.6 MB | 424/500 kB Progress (2): 1.2/2.6 MB | 424/500 kB Progress (2): 1.2/2.6 MB | 428/500 kB Progress (2): 1.2/2.6 MB | 432/500 kB Progress (2): 1.2/2.6 MB | 436/500 kB Progress (2): 1.3/2.6 MB | 436/500 kB Progress (2): 1.3/2.6 MB | 440/500 kB Progress (2): 1.3/2.6 MB | 440/500 kB Progress (2): 1.3/2.6 MB | 444/500 kB Progress (2): 1.3/2.6 MB | 444/500 kB Progress (2): 1.3/2.6 MB | 449/500 kB Progress (2): 1.3/2.6 MB | 453/500 kB Progress (2): 1.3/2.6 MB | 453/500 kB Progress (2): 1.3/2.6 MB | 457/500 kB Progress (2): 1.3/2.6 MB | 457/500 kB Progress (2): 1.3/2.6 MB | 461/500 kB Progress (2): 1.3/2.6 MB | 465/500 kB Progress (2): 1.3/2.6 MB | 465/500 kB Progress (2): 1.3/2.6 MB | 469/500 kB Progress (2): 1.3/2.6 MB | 473/500 kB Progress (2): 1.4/2.6 MB | 473/500 kB Progress (2): 1.4/2.6 MB | 477/500 kB Progress (2): 1.4/2.6 MB | 477/500 kB Progress (2): 1.4/2.6 MB | 481/500 kB Progress (2): 1.4/2.6 MB | 485/500 kB Progress (2): 1.4/2.6 MB | 490/500 kB Progress (2): 1.4/2.6 MB | 494/500 kB Progress (2): 1.4/2.6 MB | 498/500 kB Progress (2): 1.4/2.6 MB | 500 kB Progress (2): 1.4/2.6 MB | 500 kB Progress (2): 1.4/2.6 MB | 500 kB Progress (2): 1.4/2.6 MB | 500 kB Progress (2): 1.4/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.5/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.6/2.6 MB | 500 kB Progress (2): 1.7/2.6 MB | 500 kB Progress (2): 1.7/2.6 MB | 500 kB Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar (500 kB at 1.0 MB/s) +Progress (1): 1.7/2.6 MB Progress (1): 1.7/2.6 MB Progress (1): 1.7/2.6 MB Progress (1): 1.7/2.6 MB Progress (1): 1.7/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.8/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 1.9/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.0/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.1/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.2/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.3/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.4/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.5/2.6 MB Progress (1): 2.6/2.6 MB Progress (1): 2.6/2.6 MB Progress (1): 2.6/2.6 MB Progress (1): 2.6/2.6 MB Progress (1): 2.6/2.6 MB Progress (1): 2.6 MB Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/28.2-android/guava-28.2-android.jar (2.6 MB at 5.0 MB/s) +[INFO] Including jdom:jdom:jar:1.0 in the shaded jar. +[INFO] Including commons-beanutils:commons-beanutils:jar:1.9.4 in the shaded jar. +[INFO] Including commons-logging:commons-logging:jar:1.2 in the shaded jar. +[INFO] Including commons-collections:commons-collections:jar:3.2.2 in the shaded jar. +[WARNING] commons-beanutils-1.9.4.jar, commons-collections-3.2.2.jar, commons-jxpath-1.4-SNAPSHOT.jar, commons-logging-1.2.jar, jdom-1.0.jar define 2 overlapping resources: +[WARNING] - META-INF/LICENSE.txt +[WARNING] - META-INF/MANIFEST.MF +[WARNING] commons-beanutils-1.9.4.jar, commons-collections-3.2.2.jar, commons-jxpath-1.4-SNAPSHOT.jar, commons-logging-1.2.jar define 1 overlapping resource: +[WARNING] - META-INF/NOTICE.txt +[WARNING] maven-shade-plugin has detected that some class files are +[WARNING] present in two or more JARs. When this happens, only one +[WARNING] single version of the class is copied to the uber jar. +[WARNING] Usually this is not harmful and you can skip these warnings, +[WARNING] otherwise try to manually exclude artifacts based on +[WARNING] mvn dependency:tree -Ddetail=true and the above output. +[WARNING] See http://maven.apache.org/plugins/maven-shade-plugin/ +[INFO] Replacing original artifact with shaded artifact. +[INFO] Replacing /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT.jar with /src/commons-jxpath/target/commons-jxpath-1.4-SNAPSHOT-shaded.jar +[INFO] Dependency-reduced POM written at: /src/commons-jxpath/dependency-reduced-pom.xml +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 52.199 s +[INFO] Finished at: 2025-03-03T22:08:04Z +[INFO] ------------------------------------------------------------------------ +++ /src/maven/apache-maven-3.6.3/bin/mvn org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -DforceStdout ++ CURRENT_VERSION=1.4-SNAPSHOT ++ cp target/commons-jxpath-1.4-SNAPSHOT.jar /out/commons-jxpath.jar ++ ALL_JARS=commons-jxpath.jar +++ echo commons-jxpath.jar +++ xargs printf -- /out/%s: ++ BUILD_CLASSPATH=/out/commons-jxpath.jar::/usr/local/lib/jazzer_api_deploy.jar +++ echo commons-jxpath.jar +++ xargs printf -- '$this_dir/%s:' ++ RUNTIME_CLASSPATH='$this_dir/commons-jxpath.jar::$this_dir' +++ find /src -name '*Fuzzer.java' ++ for fuzzer in $(find $SRC -name '*Fuzzer.java') +++ basename -s .java /src/JXPathFuzzer.java ++ fuzzer_basename=JXPathFuzzer ++ javac -cp /out/commons-jxpath.jar::/usr/local/lib/jazzer_api_deploy.jar /src/JXPathFuzzer.java ++ cp /src/JXPathFuzzer.class /out/ ++ echo '#!/bin/bash +# LLVMFuzzerTestOneInput for fuzzer detection. +this_dir=$(dirname "$0") +if [[ "$@" =~ (^| )-runs=[0-9]+($| ) ]]; then + mem_settings='\''-Xmx1900m:-Xss900k'\'' +else + mem_settings='\''-Xmx2048m:-Xss1024k'\'' +fi +LD_LIBRARY_PATH="/usr/lib/jvm/java-17-openjdk-amd64/lib/server":$this_dir $this_dir/jazzer_driver --agent_path=$this_dir/jazzer_agent_deploy.jar --cp=$this_dir/commons-jxpath.jar::$this_dir --target_class=JXPathFuzzer --jvm_args="$mem_settings" $@' ++ chmod u+x /out/JXPathFuzzer +/usr/bin/python3 infra/helper.py reproduce apache-commons-jxpath-osv-2023-719 JXPathFuzzer /home/bradswain/aixcc-challenge/challenges/apache-commons-jxpath-osv-2023-719/testcases/testcase +INFO:root:Running: docker run --rm --privileged --shm-size=2g --platform linux/amd64 -i -e HELPER=True -e ARCHITECTURE=x86_64 -v /tmp/tmp7_yr1n03/repo-tars/fuzz-tooling/build/out/apache-commons-jxpath-osv-2023-719:/out -v /home/bradswain/aixcc-challenge/challenges/apache-commons-jxpath-osv-2023-719/testcases/testcase:/testcase -t gcr.io/oss-fuzz-base/base-runner reproduce JXPathFuzzer -runs=100. ++ FUZZER=JXPathFuzzer ++ shift ++ '[' '!' -v TESTCASE ']' ++ TESTCASE=/testcase ++ '[' '!' -f /testcase ']' ++ export RUN_FUZZER_MODE=interactive ++ RUN_FUZZER_MODE=interactive ++ export FUZZING_ENGINE=libfuzzer ++ FUZZING_ENGINE=libfuzzer ++ export SKIP_SEED_CORPUS=1 ++ SKIP_SEED_CORPUS=1 ++ run_fuzzer JXPathFuzzer -runs=100 /testcase +vm.mmap_rnd_bits = 28 +/out/JXPathFuzzer -rss_limit_mb=2560 -timeout=25 -runs=100 /testcase -dict=JXPathFuzzer.dict < /dev/null +OpenJDK 64-Bit Server VM warning: Option CriticalJNINatives was deprecated in version 16.0 and will likely be removed in a future release. +OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended +INFO: Loaded 457 hooks from com.code_intelligence.jazzer.runtime.TraceCmpHooks +INFO: Loaded 5 hooks from com.code_intelligence.jazzer.runtime.TraceDivHooks +INFO: Loaded 2 hooks from com.code_intelligence.jazzer.runtime.TraceIndirHooks +INFO: Loaded 4 hooks from com.code_intelligence.jazzer.runtime.NativeLibHooks +INFO: Loaded 2 hooks from com.code_intelligence.jazzer.sanitizers.ClojureLangHooks +INFO: Loaded 5 hooks from com.code_intelligence.jazzer.sanitizers.Deserialization +INFO: Loaded 5 hooks from com.code_intelligence.jazzer.sanitizers.ExpressionLanguageInjection +INFO: Loaded 70 hooks from com.code_intelligence.jazzer.sanitizers.LdapInjection +INFO: Loaded 46 hooks from com.code_intelligence.jazzer.sanitizers.NamingContextLookup +INFO: Loaded 1 hooks from com.code_intelligence.jazzer.sanitizers.OsCommandInjection +INFO: Loaded 48 hooks from com.code_intelligence.jazzer.sanitizers.ReflectiveCall +INFO: Loaded 8 hooks from com.code_intelligence.jazzer.sanitizers.RegexInjection +INFO: Loaded 16 hooks from com.code_intelligence.jazzer.sanitizers.RegexRoadblocks +INFO: Loaded 12 hooks from com.code_intelligence.jazzer.sanitizers.ScriptEngineInjection +INFO: Loaded 3 hooks from com.code_intelligence.jazzer.sanitizers.ServerSideRequestForgery +INFO: Loaded 19 hooks from com.code_intelligence.jazzer.sanitizers.SqlInjection +INFO: Loaded 6 hooks from com.code_intelligence.jazzer.sanitizers.XPathInjection +INFO: Instrumented JXPathFuzzer (took 95 ms, size +9%) +INFO: Instrumented org.xml.sax.SAXException (took 23 ms, size +10%) +INFO: Instrumented org.apache.commons.jxpath.JXPathException (took 7 ms, size +10%) +INFO: using inputs from: /testcase +INFO: found LLVMFuzzerCustomMutator (0x7f5b881cca00). Disabling -len_control by default. +INFO: libFuzzer ignores flags that start with '--' +Dictionary: 69 entries +INFO: Running with entropic power schedule (0xFF, 100). +INFO: Seed: 4162211588 +INFO: Loaded 1 modules (512 inline 8-bit counters): 512 [0x559d406b7890, 0x559d406b7a90), +INFO: Loaded 1 PC tables (512 PCs): 512 [0x559d4066e1b0,0x559d406701b0), +jazzer: Running 1 inputs 100 time(s) each. +Running: /testcase +INFO: Instrumented org.xml.sax.helpers.DefaultHandler (took 13 ms, size +6%) +INFO: Instrumented org.xml.sax.EntityResolver (took 1 ms, size +0%) +INFO: Instrumented org.xml.sax.DTDHandler (took 0 ms, size +0%) +INFO: Instrumented org.xml.sax.ContentHandler (took 3 ms, size +9%) +INFO: Instrumented org.xml.sax.ErrorHandler (took 0 ms, size +0%) +INFO: Instrumented org.xml.sax.InputSource (took 16 ms, size +20%) +INFO: Instrumented org.w3c.dom.Node (took 2 ms, size +0%) +INFO: Instrumented org.w3c.dom.traversal.DocumentTraversal (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.events.DocumentEvent (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.ranges.DocumentRange (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.Document (took 1 ms, size +0%) +INFO: Instrumented org.w3c.dom.NodeList (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.events.EventTarget (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.DocumentType (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.Element (took 1 ms, size +0%) +INFO: Instrumented org.w3c.dom.ElementTraversal (took 0 ms, size +0%) +INFO: Instrumented org.w3c.dom.TypeInfo (took 0 ms, size +0%) +INFO: Instrumented org.xml.sax.SAXParseException (took 18 ms, size +15%) +INFO: Instrumented org.apache.commons.jxpath.JXPathContext (took 35 ms, size +11%) +INFO: Instrumented org.apache.commons.jxpath.Variables (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.Functions (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.PackageFunctions (took 8 ms, size +40%) +INFO: Instrumented org.apache.commons.jxpath.Function (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.JXPathContextFactory (took 8 ms, size +25%) +INFO: Instrumented org.apache.commons.jxpath.JXPathContextFactoryConfigurationError (took 6 ms, size +12%) +INFO: Instrumented org.apache.commons.jxpath.util.ClassLoaderUtil (took 9 ms, size +49%) +INFO: Instrumented org.apache.commons.jxpath.ri.JXPathContextFactoryReferenceImpl (took 5 ms, size +12%) +INFO: New number of coverage counters: 1024 +INFO: Instrumented org.apache.commons.jxpath.ri.JXPathContextReferenceImpl (took 53 ms, size +14%) +INFO: Instrumented org.apache.commons.jxpath.Pointer (took 1 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.Compiler (took 2 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.JXPathNotFoundException (took 1 ms, size +19%) +INFO: Instrumented org.apache.commons.jxpath.JXPathTypeConversionException (took 2 ms, size +14%) +INFO: Instrumented org.apache.commons.jxpath.JXPathFunctionNotFoundException (took 1 ms, size +18%) +INFO: Instrumented org.apache.commons.jxpath.CompiledExpression (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.EvalContext (took 28 ms, size +27%) +INFO: Instrumented org.apache.commons.jxpath.ExpressionContext (took 1 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.RootContext (took 15 ms, size +11%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.InitialContext (took 8 ms, size +25%) +INFO: Instrumented org.apache.commons.jxpath.JXPathInvalidSyntaxException (took 2 ms, size +18%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.TreeCompiler (took 46 ms, size +8%) +INFO: Instrumented org.apache.commons.jxpath.ri.QName (took 5 ms, size +60%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.CollectionPointerFactory (took 3 ms, size +16%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.NodePointerFactory (took 1 ms, size +0%) +INFO: New number of coverage counters: 2048 +INFO: Instrumented org.apache.commons.jxpath.ri.model.NodePointer (took 44 ms, size +21%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.CollectionPointer (took 25 ms, size +12%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.BeanPointerFactory (took 3 ms, size +7%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.NullPointer (took 32 ms, size +11%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.PropertyOwnerPointer (took 11 ms, size +17%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.BeanPointer (took 6 ms, size +32%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dynamic.DynamicPointerFactory (took 2 ms, size +12%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dynamic.DynamicPointer (took 6 ms, size +11%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.VariablePointerFactory (took 3 ms, size +11%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.VariablePointer (took 16 ms, size +15%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dom.DOMPointerFactory (took 5 ms, size +17%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dom.DOMNodePointer (took 42 ms, size +34%) +INFO: New number of coverage counters: 4096 +INFO: Instrumented org.jdom.Document (took 20 ms, size +17%) +INFO: Instrumented org.jdom.Parent (took 0 ms, size +-18%) +INFO: Instrumented org.jdom.ContentList (took 14 ms, size +24%) +INFO: Instrumented org.jdom.Content (took 4 ms, size +21%) +INFO: Instrumented org.jdom.DocType (took 5 ms, size +10%) +INFO: Instrumented org.jdom.IllegalAddException (took 6 ms, size +29%) +INFO: Instrumented org.jdom.Comment (took 2 ms, size +11%) +INFO: Instrumented org.jdom.Element (took 30 ms, size +21%) +INFO: Instrumented org.jdom.ProcessingInstruction (took 8 ms, size +33%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.jdom.JDOMPointerFactory (took 2 ms, size +20%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.jdom.JDOMNodePointer (took 29 ms, size +34%) +INFO: Instrumented org.apache.commons.beanutils.DynaBean (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dynabeans.DynaBeanPointerFactory (took 3 ms, size +16%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.dynabeans.DynaBeanPointer (took 7 ms, size +27%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.container.ContainerPointerFactory (took 3 ms, size +16%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.container.ContainerPointer (took 8 ms, size +13%) +INFO: Instrumented org.apache.commons.jxpath.ri.JXPathContextReferenceImpl$1 (took 1 ms, size +12%) +INFO: Instrumented org.apache.commons.jxpath.JXPathInvalidAccessException (took 1 ms, size +15%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.NodeIterator (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.PropertyPointer (took 16 ms, size +24%) +INFO: Instrumented org.apache.commons.jxpath.ri.model.beans.NullPropertyPointer (took 11 ms, size +19%) +INFO: Instrumented org.apache.commons.jxpath.ri.NamespaceResolver (took 8 ms, size +37%) +INFO: Instrumented org.apache.commons.jxpath.ri.Parser (took 4 ms, size +13%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.TokenMgrError (took 6 ms, size +14%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.ParseException (took 4 ms, size +18%) +INFO: New number of coverage counters: 8192 +INFO: Instrumented org.apache.commons.jxpath.ri.parser.XPathParser (took 100 ms, size +28%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.XPathParserConstants (took 2 ms, size +3%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.XPathParser$LookaheadSuccess (took 1 ms, size +13%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.XPathParser$JJCalls (took 1 ms, size +17%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.SimpleCharStream (took 21 ms, size +16%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.XPathParserTokenManager (took 58 ms, size +29%) +INFO: Instrumented org.apache.commons.jxpath.ri.parser.Token (took 1 ms, size +14%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.NodeTypeTest (took 2 ms, size +13%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.NodeTest (took 0 ms, size +29%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.Step (took 4 ms, size +27%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.Expression (took 2 ms, size +15%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.LocationPath (took 3 ms, size +20%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.Path (took 6 ms, size +17%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.UnionContext (took 2 ms, size +25%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.NodeSetContext (took 2 ms, size +24%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.PredicateContext (took 11 ms, size +34%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.NodeNameTest (took 3 ms, size +47%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.AncestorContext (took 4 ms, size +25%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.AttributeContext (took 3 ms, size +18%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.ChildContext (took 3 ms, size +20%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.DescendantContext (took 5 ms, size +22%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.PrecedingOrFollowingContext (took 3 ms, size +28%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.NamespaceContext (took 2 ms, size +19%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.ParentContext (took 2 ms, size +23%) +INFO: Instrumented org.apache.commons.jxpath.ri.axes.SelfContext (took 4 ms, size +24%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.CoreOperationNegate (took 2 ms, size +9%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.CoreOperation (took 2 ms, size +21%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.Operation (took 1 ms, size +33%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.Constant (took 2 ms, size +17%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.CoreOperationGreaterThan (took 1 ms, size +24%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.CoreOperationRelationalExpression (took 4 ms, size +24%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.CoreFunction (took 20 ms, size +25%) +INFO: Instrumented org.apache.commons.jxpath.NodeSet (took 0 ms, size +0%) +INFO: Instrumented org.apache.commons.jxpath.ri.compiler.ExpressionPath (took 4 ms, size +19%) +INFO: Instrumented org.apache.commons.jxpath.ri.InfoSetUtil (took 3 ms, size +44%) + +== Java Exception: com.code_intelligence.jazzer.api.FuzzerSecurityIssueLow: Stack overflow (use '-Xss921k' to reproduce) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) +Caused by: java.lang.StackOverflowError + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.CoreFunction.toString(CoreFunction.java:233) + at java.base/java.lang.String.valueOf(String.java:4215) + at java.base/java.lang.StringBuilder.append(StringBuilder.java:173) + at org.apache.commons.jxpath.ri.compiler.ExpressionPath.toString(ExpressionPath.java:114) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize(CoreOperation.java:103) + at org.apache.commons.jxpath.ri.compiler.CoreOperation.toString(CoreOperation.java:91) + ... 2 more +DEDUP_TOKEN: 944011e13766de98 +== libFuzzer crashing input == +reproducer_path='.'; Java reproducer written to ./Crash_d45b9eac2cc8d50476203d478d221a3dae12c48c.java + diff --git a/common/tests/test_get_fuzz_targets.py b/common/tests/test_get_fuzz_targets.py new file mode 100644 index 00000000..4226a88c --- /dev/null +++ b/common/tests/test_get_fuzz_targets.py @@ -0,0 +1,87 @@ +import os +import tempfile +import unittest +from unittest.mock import patch + +from buttercup.common.clusterfuzz_utils import get_fuzz_targets, EXTRA_BUILD_DIR + + +class TestGetFuzzTargets(unittest.TestCase): + def setUp(self): + # Create a temporary directory for test files + self.test_dir = tempfile.mkdtemp() + + def tearDown(self): + # Clean up the temporary directory after tests + for root, _, files in os.walk(self.test_dir, topdown=False): + for name in files: + os.remove(os.path.join(root, name)) + os.rmdir(root) + + def create_file(self, path, content=b""): + """Helper method to create a file with optional content""" + os.makedirs(os.path.dirname(path), exist_ok=True) + with open(path, "wb") as f: + f.write(content) + + def test_find_valid_fuzz_targets(self): + # Create some valid fuzz target files + valid_targets = [ + os.path.join(self.test_dir, "test_fuzzer"), + os.path.join(self.test_dir, "subdir", "another_fuzzer"), + ] + + for target in valid_targets: + self.create_file(target, b"LLVMFuzzerTestOneInput") + + # Create some non-fuzz target files + self.create_file(os.path.join(self.test_dir, "regular_file"), b"normal content") + + # Get fuzz targets + found_targets = get_fuzz_targets(self.test_dir) + + # Sort both lists for comparison + self.assertEqual(sorted(found_targets), sorted(valid_targets)) + + def test_ignore_extra_build_directory(self): + # Create a valid fuzz target in main directory + valid_target = os.path.join(self.test_dir, "test_fuzzer") + self.create_file(valid_target, b"LLVMFuzzerTestOneInput") + + # Create a fuzz target in __extra_build directory + extra_build_target = os.path.join(self.test_dir, EXTRA_BUILD_DIR, "extra_fuzzer") + self.create_file(extra_build_target, b"LLVMFuzzerTestOneInput") + + found_targets = get_fuzz_targets(self.test_dir) + + self.assertEqual(found_targets, [valid_target]) + self.assertNotIn(extra_build_target, found_targets) + + def test_empty_directory(self): + # Test with an empty directory + found_targets = get_fuzz_targets(self.test_dir) + self.assertEqual(found_targets, []) + + @patch("buttercup.common.clusterfuzz_utils.is_fuzz_target_local") + def test_file_filtering(self, mock_is_fuzz_target): + # Create some test files + test_files = [ + os.path.join(self.test_dir, "test1_fuzzer"), + os.path.join(self.test_dir, "test2_fuzzer"), + os.path.join(self.test_dir, "not_a_fuzzer"), + ] + + for file_path in test_files: + self.create_file(file_path) + + # Configure mock to only identify specific files as fuzz targets + def is_fuzz_target_side_effect(path): + return path.endswith("_fuzzer") + + mock_is_fuzz_target.side_effect = is_fuzz_target_side_effect + + found_targets = get_fuzz_targets(self.test_dir) + + # Should only find the files ending with _fuzzer + expected_targets = [f for f in test_files if f.endswith("_fuzzer")] + self.assertEqual(sorted(found_targets), sorted(expected_targets)) diff --git a/common/tests/test_stack_parser.py b/common/tests/test_stack_parser.py new file mode 100644 index 00000000..f3a81840 --- /dev/null +++ b/common/tests/test_stack_parser.py @@ -0,0 +1,83 @@ +import pytest +from buttercup.common.stack_parsing import get_crash_data +from pathlib import Path + + +def get_tc_file(name: str) -> Path: + """Get testcase file""" + crash_file = Path(__file__).parent / "data" / "stacktrace_corpus" / f"{name}_stacktrace.txt" + if not crash_file.exists(): + raise FileNotFoundError(f"Crash file not found at {crash_file}") + + return crash_file + + +@pytest.fixture +def java_crash_testcase() -> Path: + """Get java crash_test_case""" + return get_tc_file("java") + + +@pytest.fixture +def c_crash_testcase() -> Path: + """Get c crash_test_case""" + return get_tc_file("c") + + +def test_get_crash_data_basic(): + # Simple stacktrace example + stacktrace = """ + #0 0x7f339b644844 in foo::bar::crash() /src/foo/bar.cc:123:4 + #1 0x7f339b644900 in main /src/main.cc:45:2 + """ + crash_state = get_crash_data(stacktrace) + assert crash_state is not None + assert isinstance(crash_state, str) + + +def test_get_crash_data_symbolized(): + # Test with symbolized stacktrace + stacktrace = """ + #0 foo::bar::crash() /src/foo/bar.cc:123:4 + #1 main /src/main.cc:45:2 + """ + crash_state = get_crash_data(stacktrace, symbolized=True) + assert crash_state is not None + assert isinstance(crash_state, str) + + +def test_get_crash_data_empty(): + # Test with empty stacktrace + stacktrace = "" + crash_state = get_crash_data(stacktrace) + assert crash_state is not None + assert isinstance(crash_state, str) + + +def test_get_crash_data_invalid(): + # Test with invalid stacktrace format + stacktrace = "This is not a valid stacktrace" + crash_state = get_crash_data(stacktrace) + assert crash_state is not None + assert isinstance(crash_state, str) + + +def test_java_stacktrace(java_crash_testcase: Path): + with open(java_crash_testcase, "r") as f: + trace = f.read() + + crash_state = get_crash_data(trace) + expected = "org.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize\norg.apache.commons.jxpath.ri.compiler.CoreOperation.toString\norg.apache.commons.jxpath.ri.compiler.CoreOperation.parenthesize\n" + assert crash_state == expected + + +def test_c_stacktrace(c_crash_testcase: Path): + with open(c_crash_testcase, "r") as f: + trace = f.read() + + crash_state = get_crash_data(trace) + print(crash_state) + assert crash_state is not None + assert isinstance(crash_state, str) + expected = "cil_destroy_block\ncil_destroy_data\ncil_tree_node_destroy\n" + assert crash_state == expected diff --git a/common/uv.lock b/common/uv.lock index b7df7c2b..9b833434 100644 --- a/common/uv.lock +++ b/common/uv.lock @@ -144,31 +144,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/df/73/b6e24bd22e6720ca8ee9a85a0c4a2971af8497d8f3193fa05390cbd46e09/backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8", size = 15148 }, ] -[[package]] -name = "cachetools" -version = "4.2.4" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12.4'", -] -sdist = { url = "https://files.pythonhosted.org/packages/d7/69/c457a860456cbf80ecc2e44ed4c201b49ec7ad124d769b71f6d0a7935dca/cachetools-4.2.4.tar.gz", hash = "sha256:89ea6f1b638d5a73a4f9226be57ac5e4f399d22770b92355f92dcb0f7f001693", size = 25487 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ea/c1/4740af52db75e6dbdd57fc7e9478439815bbac549c1c05881be27d19a17d/cachetools-4.2.4-py3-none-any.whl", hash = "sha256:92971d3cb7d2a97efff7c7bb1657f21a8f5fb309a37530537c71b1774189f2d1", size = 10358 }, -] - -[[package]] -name = "cachetools" -version = "5.5.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and python_full_version < '3.12.4'", - "python_full_version < '3.12'", -] -sdist = { url = "https://files.pythonhosted.org/packages/d9/74/57df1ab0ce6bc5f6fa868e08de20df8ac58f9c44330c7671ad922d2bbeae/cachetools-5.5.1.tar.gz", hash = "sha256:70f238fbba50383ef62e55c6aff6d9673175fe59f7c6782c7a0b9e38f4a9df95", size = 28044 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/4e/de4ff18bcf55857ba18d3a4bd48c8a9fde6bb0980c9d20b263f05387fd88/cachetools-5.5.1-py3-none-any.whl", hash = "sha256:b76651fdc3b24ead3c648bbdeeb940c1b04d365b38b4af66788f9ec4a81d42bb", size = 9530 }, -] - [[package]] name = "certifi" version = "2024.12.14" @@ -272,39 +247,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, ] -[[package]] -name = "clusterfuzz" -version = "2.6.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-api-python-client" }, - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-auth-oauthlib", version = "0.5.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth-oauthlib", version = "1.2.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-cloud-core" }, - { name = "google-cloud-datastore" }, - { name = "google-cloud-logging" }, - { name = "google-cloud-monitoring", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-cloud-monitoring", version = "2.27.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-cloud-ndb" }, - { name = "google-cloud-storage" }, - { name = "grpcio" }, - { name = "httplib2" }, - { name = "mozprocess" }, - { name = "oauth2client" }, - { name = "protobuf" }, - { name = "psutil" }, - { name = "pytz" }, - { name = "pyyaml" }, - { name = "requests" }, - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b3/c0/a81a0d56da7331a15b9cc5a91e42ebe5aca9af1545f3830f7639b699a282/clusterfuzz-2.6.0.tar.gz", hash = "sha256:5ecb5375b8606153cb4b703d653201db88837ec7245860d142764abd1eedf3e5", size = 987133 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/47/8b/71cf4f85ef7f3f613aeee91e1050aa2cffbf9c0d717bd4ef5661ace41b2e/clusterfuzz-2.6.0-py3-none-any.whl", hash = "sha256:e3cacc00af7853ff04baa8f79fb72037bcd7786579461decc4a33372e5effddb", size = 1482932 }, -] - [[package]] name = "colorama" version = "0.4.6" @@ -319,7 +261,6 @@ name = "common" version = "0.1.0" source = { editable = "." } dependencies = [ - { name = "clusterfuzz" }, { name = "langchain" }, { name = "langchain-core" }, { name = "langchain-openai" }, @@ -328,6 +269,7 @@ dependencies = [ { name = "pydantic-settings" }, { name = "pymongo" }, { name = "redis" }, + { name = "six" }, ] [package.dev-dependencies] @@ -338,7 +280,6 @@ dev = [ [package.metadata] requires-dist = [ - { name = "clusterfuzz", specifier = "==2.6.0" }, { name = "langchain", specifier = "~=0.3.18" }, { name = "langchain-core", specifier = "~=0.3.32" }, { name = "langchain-openai", specifier = "~=0.3.2" }, @@ -347,6 +288,7 @@ requires-dist = [ { name = "pydantic-settings", specifier = ">=2.7.1" }, { name = "pymongo", specifier = ">=4.10.1" }, { name = "redis", specifier = ">=5.2.1,<6.0.0" }, + { name = "six", specifier = ">=1.17.0" }, ] [package.metadata.requires-dev] @@ -436,318 +378,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c6/c8/a5be5b7550c10858fcf9b0ea054baccab474da77d37f1e828ce043a3a5d4/frozenlist-1.5.0-py3-none-any.whl", hash = "sha256:d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3", size = 11901 }, ] -[[package]] -name = "google-api-core" -version = "1.34.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "googleapis-common-protos" }, - { name = "protobuf" }, - { name = "requests" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c8/b0/7c8d4a03960da803a4c471545fd7b3404d2819f1585ba3f3d97e887aa91d/google-api-core-1.34.1.tar.gz", hash = "sha256:3399c92887a97d33038baa4bfd3bf07acc05d474b0171f333e1f641c1364e552", size = 129177 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/11/51/1d325e9b7358f15dca82e1ed91413c5cecb9d4665da6c44cb8dd348deeaa/google_api_core-1.34.1-py3-none-any.whl", hash = "sha256:52bcc9d9937735f8a3986fa0bbf9135ae9cf5393a722387e5eced520e39c774a", size = 120355 }, -] - -[package.optional-dependencies] -grpc = [ - { name = "grpcio" }, - { name = "grpcio-status" }, -] - -[[package]] -name = "google-api-python-client" -version = "2.161.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-api-core" }, - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-auth-httplib2" }, - { name = "httplib2" }, - { name = "uritemplate" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/0a/50/c8d2d3c4e65e081c4c07b15e4fe35671676c5ecdb3674a167229e83ce49a/google_api_python_client-2.161.0.tar.gz", hash = "sha256:324c0cce73e9ea0a0d2afd5937e01b7c2d6a4d7e2579cdb6c384f9699d6c9f37", size = 12358839 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9c/e8/ca1efe224166a4c77ac92b4314b90f2fb70fdde1f763c1613ba3b9f50752/google_api_python_client-2.161.0-py2.py3-none-any.whl", hash = "sha256:9476a5a4f200bae368140453df40f9cda36be53fa7d0e9a9aac4cdb859a26448", size = 12869974 }, -] - -[[package]] -name = "google-auth" -version = "1.35.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12.4'", -] -dependencies = [ - { name = "cachetools", version = "4.2.4", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "pyasn1-modules", marker = "python_full_version >= '3.12.4'" }, - { name = "rsa", marker = "python_full_version >= '3.12.4'" }, - { name = "setuptools", marker = "python_full_version >= '3.12.4'" }, - { name = "six", marker = "python_full_version >= '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9a/97/bf2edc87092301da1936b0df4d9d60e5f4287b6910b7d8f5cc0ea796d620/google-auth-1.35.0.tar.gz", hash = "sha256:b7033be9028c188ee30200b204ea00ed82ea1162e8ac1df4aa6ded19a191d88e", size = 181504 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/fb/7a/1b3eb54caee1b8c73c2c3645f78a382eca4805a301a30c64a078e736e446/google_auth-1.35.0-py2.py3-none-any.whl", hash = "sha256:997516b42ecb5b63e8d80f5632c1a61dddf41d2a4c2748057837e06e00014258", size = 152949 }, -] - -[[package]] -name = "google-auth" -version = "2.38.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and python_full_version < '3.12.4'", - "python_full_version < '3.12'", -] -dependencies = [ - { name = "cachetools", version = "5.5.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "pyasn1-modules", marker = "python_full_version < '3.12.4'" }, - { name = "rsa", marker = "python_full_version < '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c6/eb/d504ba1daf190af6b204a9d4714d457462b486043744901a6eeea711f913/google_auth-2.38.0.tar.gz", hash = "sha256:8285113607d3b80a3f1543b75962447ba8a09fe85783432a784fdeef6ac094c4", size = 270866 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/47/603554949a37bca5b7f894d51896a9c534b9eab808e2520a748e081669d0/google_auth-2.38.0-py2.py3-none-any.whl", hash = "sha256:e7dae6694313f434a2727bf2906f27ad259bae090d7aa896590d86feec3d9d4a", size = 210770 }, -] - -[[package]] -name = "google-auth-httplib2" -version = "0.2.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "httplib2" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/56/be/217a598a818567b28e859ff087f347475c807a5649296fb5a817c58dacef/google-auth-httplib2-0.2.0.tar.gz", hash = "sha256:38aa7badf48f974f1eb9861794e9c0cb2a0511a4ec0679b1f886d108f5640e05", size = 10842 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/be/8a/fe34d2f3f9470a27b01c9e76226965863f153d5fbe276f83608562e49c04/google_auth_httplib2-0.2.0-py2.py3-none-any.whl", hash = "sha256:b65a0a2123300dd71281a7bf6e64d65a0759287df52729bdd1ae2e47dc311a3d", size = 9253 }, -] - -[[package]] -name = "google-auth-oauthlib" -version = "0.5.3" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12.4'", -] -dependencies = [ - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "requests-oauthlib", marker = "python_full_version >= '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f0/d0/3521515d13827eb4c68d3b45972ad49a21b02e486c589fdd3c2aee9b9065/google-auth-oauthlib-0.5.3.tar.gz", hash = "sha256:307d21918d61a0741882ad1fd001c67e68ad81206451d05fc4d26f79de56fc90", size = 20967 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/74/8a2664dc7b5494ebef67f876467d7a2336810affcd0b9f7cf325631314ac/google_auth_oauthlib-0.5.3-py2.py3-none-any.whl", hash = "sha256:9e8ff4ed2b21c174a2d6cc2172c698dbf0b1f686509774c663a83c495091fe09", size = 19395 }, -] - -[[package]] -name = "google-auth-oauthlib" -version = "1.2.1" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and python_full_version < '3.12.4'", - "python_full_version < '3.12'", -] -dependencies = [ - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "requests-oauthlib", marker = "python_full_version < '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/cc/0f/1772edb8d75ecf6280f1c7f51cbcebe274e8b17878b382f63738fd96cee5/google_auth_oauthlib-1.2.1.tar.gz", hash = "sha256:afd0cad092a2eaa53cd8e8298557d6de1034c6cb4a740500b5357b648af97263", size = 24970 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1a/8e/22a28dfbd218033e4eeaf3a0533b2b54852b6530da0c0fe934f0cc494b29/google_auth_oauthlib-1.2.1-py2.py3-none-any.whl", hash = "sha256:2d58a27262d55aa1b87678c3ba7142a080098cbc2024f903c62355deb235d91f", size = 24930 }, -] - -[[package]] -name = "google-cloud-appengine-logging" -version = "1.4.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12.4'", -] -dependencies = [ - { name = "google-api-core", extra = ["grpc"], marker = "python_full_version >= '3.12.4'" }, - { name = "proto-plus", marker = "python_full_version >= '3.12.4'" }, - { name = "protobuf", marker = "python_full_version >= '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/9a/09/8124cc4bebb36b6ff23b2fa412e5d09b2a5009fe3f2c7a9f7692b21896a8/google-cloud-appengine-logging-1.4.0.tar.gz", hash = "sha256:fe74f418d0b01ebebe83ae212abf051ad42692a636677e397de3d459e00d7b64", size = 13613 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f3/83/4a3b64bff9c57beebd405e894228702bd2f06ba093d812a1925c8455fb73/google_cloud_appengine_logging-1.4.0-py2.py3-none-any.whl", hash = "sha256:226721903a2d50b6e51c43e59edb548c0bb08cc5f70e1a5f289d3edf2f09a8c9", size = 15413 }, -] - -[[package]] -name = "google-cloud-appengine-logging" -version = "1.6.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and python_full_version < '3.12.4'", - "python_full_version < '3.12'", -] -dependencies = [ - { name = "google-api-core", extra = ["grpc"], marker = "python_full_version < '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "proto-plus", marker = "python_full_version < '3.12.4'" }, - { name = "protobuf", marker = "python_full_version < '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/32/5f/91891f39bfb79ab135a9ed7dfd2f632f6bb6bb93d31004605e4fcf44c55f/google_cloud_appengine_logging-1.6.0.tar.gz", hash = "sha256:2f6ef52dfa88eca3bea078bc3c2b55ea61ff08b5e0c37912027fbb2a5f2d91ce", size = 13827 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/21/86/eaf096fe40906dc99489ee3c8dac916e19f2559435afbfb1af1f16fa742f/google_cloud_appengine_logging-1.6.0-py2.py3-none-any.whl", hash = "sha256:741557e5281e351ccc90f774685a1adb0e5996cc233bcd019ef072280aaad13f", size = 15456 }, -] - -[[package]] -name = "google-cloud-audit-log" -version = "0.3.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "googleapis-common-protos" }, - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/eb/81/c345efe9261a4b0bd0c5957f1685d2b4cc4522ec4fc7b0861f691d4476e7/google_cloud_audit_log-0.3.0.tar.gz", hash = "sha256:901428b257020d8c1d1133e0fa004164a555e5a395c7ca3cdbb8486513df3a65", size = 25473 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f8/d9/d2795cae4a41781269413108cc7fcbfbcb595b89212216d56c4ce6e2482e/google_cloud_audit_log-0.3.0-py2.py3-none-any.whl", hash = "sha256:8340793120a1d5aa143605def8704ecdcead15106f754ef1381ae3bab533722f", size = 27341 }, -] - -[[package]] -name = "google-cloud-core" -version = "1.5.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-api-core" }, - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/ae/9e/91c5af8ce7a55bf359d3bd3e31507a091c769c8b59d2951fe4fc14bd9409/google-cloud-core-1.5.0.tar.gz", hash = "sha256:1277a015f8eeb014c48f2ec094ed5368358318f1146cf49e8de389962dc19106", size = 33410 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/36/82/d54bdbdbae02c66ec26c97eb684cfb27af82b3e286497625b815c4741792/google_cloud_core-1.5.0-py2.py3-none-any.whl", hash = "sha256:99a8a15f406f53f2b11bda1f45f952a9cdfbdbba8abf40c75651019d800879f5", size = 27412 }, -] - -[[package]] -name = "google-cloud-datastore" -version = "1.12.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-api-core", extra = ["grpc"] }, - { name = "google-cloud-core" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/d0/08/e77558a19fa24997f132a5c987d668776b35c2f006c6e4afb0043a76eba0/google-cloud-datastore-1.12.0.tar.gz", hash = "sha256:c98690833ee2e6341a4b802f278ba17d582ce58eb2e73152516ebc77522d82d7", size = 117206 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/27/e9/1132b0e4dce7d96df7620ce7c465bd99803cc62a467396ea93fee3a82931/google_cloud_datastore-1.12.0-py2.py3-none-any.whl", hash = "sha256:4728893641b26f734bd48810903b3dd590a523448da5ba8101f9b78619c138fa", size = 97329 }, -] - -[[package]] -name = "google-cloud-logging" -version = "3.1.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-api-core", extra = ["grpc"] }, - { name = "google-cloud-appengine-logging", version = "1.4.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-cloud-appengine-logging", version = "1.6.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-cloud-audit-log" }, - { name = "google-cloud-core" }, - { name = "grpc-google-iam-v1" }, - { name = "proto-plus" }, - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/06/cb/ad3b113c65a72de208b6f155719a53e8d205657525d6e737bcb06baac9ae/google-cloud-logging-3.1.2.tar.gz", hash = "sha256:3ed00a8bd2076fee7a1dc053880fcb3c973184807e240f8c3c0929dd748eaf7f", size = 213175 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/26/b4/05fecd87f8280af687e98489663fc67a5faadd1cb2c0ad8e8c8820941067/google_cloud_logging-3.1.2-py2.py3-none-any.whl", hash = "sha256:702b69b01c4b98c50a4e4e7cbe12309de8c6685e99ec100c0c902e1765a45e92", size = 188731 }, -] - -[[package]] -name = "google-cloud-monitoring" -version = "2.19.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12.4'", -] -dependencies = [ - { name = "google-api-core", extra = ["grpc"], marker = "python_full_version >= '3.12.4'" }, - { name = "proto-plus", marker = "python_full_version >= '3.12.4'" }, - { name = "protobuf", marker = "python_full_version >= '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/11/26/30b48ab7d77695254a3530489ff08145e632dc74b82c7d35a872f92bd58b/google-cloud-monitoring-2.19.0.tar.gz", hash = "sha256:ce1b43929b89e0d1f594e1589b0fa83be47f1fd80fe8bfae77fe1f7732249f06", size = 338654 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e0/3b/0e82fac631f4e10578afbd80be9d32a4d9ba2e9dd511e66c322ed1b0e0be/google_cloud_monitoring-2.19.0-py2.py3-none-any.whl", hash = "sha256:e42b4dc59b89a8afc09da70b049b91c1ce6d73159ab20833a76650eed9e5ffa8", size = 341699 }, -] - -[[package]] -name = "google-cloud-monitoring" -version = "2.27.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "python_full_version >= '3.12' and python_full_version < '3.12.4'", - "python_full_version < '3.12'", -] -dependencies = [ - { name = "google-api-core", extra = ["grpc"], marker = "python_full_version < '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "proto-plus", marker = "python_full_version < '3.12.4'" }, - { name = "protobuf", marker = "python_full_version < '3.12.4'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2d/da/1e529674dbb57d06d5c28a1502d952b0b9cde944368e950438ef090a0318/google_cloud_monitoring-2.27.0.tar.gz", hash = "sha256:f66552528812e7b6a9f2fb7e0b7c3e7904cc0c13504f4fcb42035722b5da2bc4", size = 388549 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/80/104a46c4be3c4b213391776ebd7ccccfd4c18d406ecaaa684e07727d90b4/google_cloud_monitoring-2.27.0-py2.py3-none-any.whl", hash = "sha256:d51c006b778d2873955c23144a0a13de839c5ebe619e8fca77e1f3aa2643db35", size = 380280 }, -] - -[[package]] -name = "google-cloud-ndb" -version = "1.11.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-cloud-datastore" }, - { name = "pymemcache" }, - { name = "pytz" }, - { name = "redis" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/23/34/7caaef0ec6e5da9a72d335128c5991b67210e1c53289be99738ac749ca8b/google-cloud-ndb-1.11.2.tar.gz", hash = "sha256:48048083040430145f42fb9ea05bc5954c47c53b39b9e02c29a1a7478dc142cb", size = 157360 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/73/f4/fafa5ac551646b2aa39e93c80719e6d8c7fe37cb1929e811b5680807cc95/google_cloud_ndb-1.11.2-py3-none-any.whl", hash = "sha256:b08d3c81b18a8c906cb3e13833471fba78accd91dce954630531e6ffa7b49fee", size = 177354 }, -] - -[[package]] -name = "google-cloud-storage" -version = "1.23.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "google-auth", version = "1.35.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.12.4'" }, - { name = "google-auth", version = "2.38.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.12.4'" }, - { name = "google-cloud-core" }, - { name = "google-resumable-media" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/c4/6c/7a2c35f85cb965f318b5e5080673df082920ecd2c0399c25800c7b9e9b41/google-cloud-storage-1.23.0.tar.gz", hash = "sha256:c66e876ae9547884fa42566a2ebfec51d280f488d7a058af9611ba90c78bed78", size = 5402234 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/87/78/7cf94b3d0961b1a3036ba351c7fdc04170baa73d20fcb41240da214c83fd/google_cloud_storage-1.23.0-py2.py3-none-any.whl", hash = "sha256:9f59c100d3940e38567c48d54cf1a2e7591a2f38e9693dfc11a242d5e54a1626", size = 72323 }, -] - -[[package]] -name = "google-resumable-media" -version = "0.5.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/79/70/8d2afddae61b0a0189dbefcdcd024a4030c9c696ca3ea410e43498520ed9/google-resumable-media-0.5.1.tar.gz", hash = "sha256:97155236971970382b738921f978a6f86a7b5a0b0311703d991e065d3cb55773", size = 2117923 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/f2/cc/cd05c633298fcbba5d61b6b8844de598e001954281a004fc1a13c61a5121/google_resumable_media-0.5.1-py2.py3-none-any.whl", hash = "sha256:cdc64378dc9a7a7bf963a8d0c944c99b549dc0c195a9acbf1fcd465f380b9002", size = 38962 }, -] - -[[package]] -name = "googleapis-common-protos" -version = "1.67.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/31/e1/fbffb85a624f1404133b5bb624834e77e0f549e2b8548146fe18c56e1411/googleapis_common_protos-1.67.0.tar.gz", hash = "sha256:21398025365f138be356d5923e9168737d94d46a72aefee4a6110a1f23463c86", size = 57344 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/89/30/2bd0eb03a7dee7727cd2ec643d1e992979e62d5e7443507381cce0455132/googleapis_common_protos-1.67.0-py2.py3-none-any.whl", hash = "sha256:579de760800d13616f51cf8be00c876f00a9f146d3e6510e19d1f4111758b741", size = 164985 }, -] - -[package.optional-dependencies] -grpc = [ - { name = "grpcio" }, -] - [[package]] name = "greenlet" version = "3.1.1" @@ -783,69 +413,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/43/21/a5d9df1d21514883333fc86584c07c2b49ba7c602e670b174bd73cfc9c7f/greenlet-3.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:7124e16b4c55d417577c2077be379514321916d5790fa287c9ed6f23bd2ffd01", size = 299655 }, ] -[[package]] -name = "grpc-google-iam-v1" -version = "0.14.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "googleapis-common-protos", extra = ["grpc"] }, - { name = "grpcio" }, - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/47/2f/68e43b0e551974fa7dd18798a5974710586a72dc484ecaa2fc023d961342/grpc_google_iam_v1-0.14.0.tar.gz", hash = "sha256:c66e07aa642e39bb37950f9e7f491f70dad150ac9801263b42b2814307c2df99", size = 18327 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/66/b4/ab54f7fda4af43ca5c094bc1d6341780fd669c44ae18952b5337029b1d98/grpc_google_iam_v1-0.14.0-py2.py3-none-any.whl", hash = "sha256:fb4a084b30099ba3ab07d61d620a0d4429570b13ff53bd37bac75235f98b7da4", size = 27276 }, -] - -[[package]] -name = "grpcio" -version = "1.70.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/69/e1/4b21b5017c33f3600dcc32b802bb48fe44a4d36d6c066f52650c7c2690fa/grpcio-1.70.0.tar.gz", hash = "sha256:8d1584a68d5922330025881e63a6c1b54cc8117291d382e4fa69339b6d914c56", size = 12788932 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/10/e9/f72408bac1f7b05b25e4df569b02d6b200c8e7857193aa9f1df7a3744add/grpcio-1.70.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:95469d1977429f45fe7df441f586521361e235982a0b39e33841549143ae2851", size = 5229736 }, - { url = "https://files.pythonhosted.org/packages/b3/17/e65139ea76dac7bcd8a3f17cbd37e3d1a070c44db3098d0be5e14c5bd6a1/grpcio-1.70.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:ed9718f17fbdb472e33b869c77a16d0b55e166b100ec57b016dc7de9c8d236bf", size = 11432751 }, - { url = "https://files.pythonhosted.org/packages/a0/12/42de6082b4ab14a59d30b2fc7786882fdaa75813a4a4f3d4a8c4acd6ed59/grpcio-1.70.0-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:374d014f29f9dfdb40510b041792e0e2828a1389281eb590df066e1cc2b404e5", size = 5711439 }, - { url = "https://files.pythonhosted.org/packages/34/f8/b5a19524d273cbd119274a387bb72d6fbb74578e13927a473bc34369f079/grpcio-1.70.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2af68a6f5c8f78d56c145161544ad0febbd7479524a59c16b3e25053f39c87f", size = 6330777 }, - { url = "https://files.pythonhosted.org/packages/1a/67/3d6c0ad786238aac7fa93b79246fc452978fbfe9e5f86f70da8e8a2797d0/grpcio-1.70.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce7df14b2dcd1102a2ec32f621cc9fab6695effef516efbc6b063ad749867295", size = 5944639 }, - { url = "https://files.pythonhosted.org/packages/76/0d/d9f7cbc41c2743cf18236a29b6a582f41bd65572a7144d92b80bc1e68479/grpcio-1.70.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c78b339869f4dbf89881e0b6fbf376313e4f845a42840a7bdf42ee6caed4b11f", size = 6643543 }, - { url = "https://files.pythonhosted.org/packages/fc/24/bdd7e606b3400c14330e33a4698fa3a49e38a28c9e0a831441adbd3380d2/grpcio-1.70.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:58ad9ba575b39edef71f4798fdb5c7b6d02ad36d47949cd381d4392a5c9cbcd3", size = 6199897 }, - { url = "https://files.pythonhosted.org/packages/d1/33/8132eb370087960c82d01b89faeb28f3e58f5619ffe19889f57c58a19c18/grpcio-1.70.0-cp310-cp310-win32.whl", hash = "sha256:2b0d02e4b25a5c1f9b6c7745d4fa06efc9fd6a611af0fb38d3ba956786b95199", size = 3617513 }, - { url = "https://files.pythonhosted.org/packages/99/bc/0fce5cfc0ca969df66f5dca6cf8d2258abb88146bf9ab89d8cf48e970137/grpcio-1.70.0-cp310-cp310-win_amd64.whl", hash = "sha256:0de706c0a5bb9d841e353f6343a9defc9fc35ec61d6eb6111802f3aa9fef29e1", size = 4303342 }, - { url = "https://files.pythonhosted.org/packages/65/c4/1f67d23d6bcadd2fd61fb460e5969c52b3390b4a4e254b5e04a6d1009e5e/grpcio-1.70.0-cp311-cp311-linux_armv7l.whl", hash = "sha256:17325b0be0c068f35770f944124e8839ea3185d6d54862800fc28cc2ffad205a", size = 5229017 }, - { url = "https://files.pythonhosted.org/packages/e4/bd/cc36811c582d663a740fb45edf9f99ddbd99a10b6ba38267dc925e1e193a/grpcio-1.70.0-cp311-cp311-macosx_10_14_universal2.whl", hash = "sha256:dbe41ad140df911e796d4463168e33ef80a24f5d21ef4d1e310553fcd2c4a386", size = 11472027 }, - { url = "https://files.pythonhosted.org/packages/7e/32/8538bb2ace5cd72da7126d1c9804bf80b4fe3be70e53e2d55675c24961a8/grpcio-1.70.0-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:5ea67c72101d687d44d9c56068328da39c9ccba634cabb336075fae2eab0d04b", size = 5707785 }, - { url = "https://files.pythonhosted.org/packages/ce/5c/a45f85f2a0dfe4a6429dee98717e0e8bd7bd3f604315493c39d9679ca065/grpcio-1.70.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb5277db254ab7586769e490b7b22f4ddab3876c490da0a1a9d7c695ccf0bf77", size = 6331599 }, - { url = "https://files.pythonhosted.org/packages/9f/e5/5316b239380b8b2ad30373eb5bb25d9fd36c0375e94a98a0a60ea357d254/grpcio-1.70.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e7831a0fc1beeeb7759f737f5acd9fdcda520e955049512d68fda03d91186eea", size = 5940834 }, - { url = "https://files.pythonhosted.org/packages/05/33/dbf035bc6d167068b4a9f2929dfe0b03fb763f0f861ecb3bb1709a14cb65/grpcio-1.70.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:27cc75e22c5dba1fbaf5a66c778e36ca9b8ce850bf58a9db887754593080d839", size = 6641191 }, - { url = "https://files.pythonhosted.org/packages/4c/c4/684d877517e5bfd6232d79107e5a1151b835e9f99051faef51fed3359ec4/grpcio-1.70.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d63764963412e22f0491d0d32833d71087288f4e24cbcddbae82476bfa1d81fd", size = 6198744 }, - { url = "https://files.pythonhosted.org/packages/e9/43/92fe5eeaf340650a7020cfb037402c7b9209e7a0f3011ea1626402219034/grpcio-1.70.0-cp311-cp311-win32.whl", hash = "sha256:bb491125103c800ec209d84c9b51f1c60ea456038e4734688004f377cfacc113", size = 3617111 }, - { url = "https://files.pythonhosted.org/packages/55/15/b6cf2c9515c028aff9da6984761a3ab484a472b0dc6435fcd07ced42127d/grpcio-1.70.0-cp311-cp311-win_amd64.whl", hash = "sha256:d24035d49e026353eb042bf7b058fb831db3e06d52bee75c5f2f3ab453e71aca", size = 4304604 }, - { url = "https://files.pythonhosted.org/packages/4c/a4/ddbda79dd176211b518f0f3795af78b38727a31ad32bc149d6a7b910a731/grpcio-1.70.0-cp312-cp312-linux_armv7l.whl", hash = "sha256:ef4c14508299b1406c32bdbb9fb7b47612ab979b04cf2b27686ea31882387cff", size = 5198135 }, - { url = "https://files.pythonhosted.org/packages/30/5c/60eb8a063ea4cb8d7670af8fac3f2033230fc4b75f62669d67c66ac4e4b0/grpcio-1.70.0-cp312-cp312-macosx_10_14_universal2.whl", hash = "sha256:aa47688a65643afd8b166928a1da6247d3f46a2784d301e48ca1cc394d2ffb40", size = 11447529 }, - { url = "https://files.pythonhosted.org/packages/fb/b9/1bf8ab66729f13b44e8f42c9de56417d3ee6ab2929591cfee78dce749b57/grpcio-1.70.0-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:880bfb43b1bb8905701b926274eafce5c70a105bc6b99e25f62e98ad59cb278e", size = 5664484 }, - { url = "https://files.pythonhosted.org/packages/d1/06/2f377d6906289bee066d96e9bdb91e5e96d605d173df9bb9856095cccb57/grpcio-1.70.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e654c4b17d07eab259d392e12b149c3a134ec52b11ecdc6a515b39aceeec898", size = 6303739 }, - { url = "https://files.pythonhosted.org/packages/ae/50/64c94cfc4db8d9ed07da71427a936b5a2bd2b27c66269b42fbda82c7c7a4/grpcio-1.70.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2394e3381071045a706ee2eeb6e08962dd87e8999b90ac15c55f56fa5a8c9597", size = 5910417 }, - { url = "https://files.pythonhosted.org/packages/53/89/8795dfc3db4389c15554eb1765e14cba8b4c88cc80ff828d02f5572965af/grpcio-1.70.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:b3c76701428d2df01964bc6479422f20e62fcbc0a37d82ebd58050b86926ef8c", size = 6626797 }, - { url = "https://files.pythonhosted.org/packages/9c/b2/6a97ac91042a2c59d18244c479ee3894e7fb6f8c3a90619bb5a7757fa30c/grpcio-1.70.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ac073fe1c4cd856ebcf49e9ed6240f4f84d7a4e6ee95baa5d66ea05d3dd0df7f", size = 6190055 }, - { url = "https://files.pythonhosted.org/packages/86/2b/28db55c8c4d156053a8c6f4683e559cd0a6636f55a860f87afba1ac49a51/grpcio-1.70.0-cp312-cp312-win32.whl", hash = "sha256:cd24d2d9d380fbbee7a5ac86afe9787813f285e684b0271599f95a51bce33528", size = 3600214 }, - { url = "https://files.pythonhosted.org/packages/17/c3/a7a225645a965029ed432e5b5e9ed959a574e62100afab553eef58be0e37/grpcio-1.70.0-cp312-cp312-win_amd64.whl", hash = "sha256:0495c86a55a04a874c7627fd33e5beaee771917d92c0e6d9d797628ac40e7655", size = 4292538 }, -] - -[[package]] -name = "grpcio-status" -version = "1.48.2" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "googleapis-common-protos" }, - { name = "grpcio" }, - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/22/62/a86443ec8f7bf635fe0b48abe56cd699816bdc0b29d24e0bcb5cada42d4a/grpcio-status-1.48.2.tar.gz", hash = "sha256:53695f45da07437b7c344ee4ef60d370fd2850179f5a28bb26d8e2aa1102ec11", size = 13485 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/14/32/754cd4474790239c7436a7a9490bc0c4a0a2ed604cb9a940151a3b1055b9/grpcio_status-1.48.2-py3-none-any.whl", hash = "sha256:2c33bbdbe20188b2953f46f31af669263b6ee2a9b2d38fa0d36ee091532e21bf", size = 14441 }, -] - [[package]] name = "h11" version = "0.14.0" @@ -868,18 +435,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/87/f5/72347bc88306acb359581ac4d52f23c0ef445b57157adedb9aee0cd689d2/httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd", size = 78551 }, ] -[[package]] -name = "httplib2" -version = "0.22.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyparsing" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3d/ad/2371116b22d616c194aa25ec410c9c6c37f23599dcd590502b74db197584/httplib2-0.22.0.tar.gz", hash = "sha256:d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d82df81", size = 351116 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/a8/6c/d2fbdaaa5959339d53ba38e94c123e4e84b8fbc4b84beb0e70d7c1608486/httplib2-0.22.0-py3-none-any.whl", hash = "sha256:14ae0a53c1ba8f3d37e9e27cf37eabb0fb9980f435ba405d546948b009dd64dc", size = 96854 }, -] - [[package]] name = "httpx" version = "0.28.1" @@ -1081,43 +636,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0c/a8/9f5816342fb3773882e4dbb1c8e2934b49376d7aca840916590a7b6468cb/langsmith-0.3.2-py3-none-any.whl", hash = "sha256:48ff6bc5eda62f4729596bb68d4f96166d2654728ac32970b69b1be874c61925", size = 333022 }, ] -[[package]] -name = "mozfile" -version = "3.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/25/f8/a1f0076490d50dbe8bdcf15df97856a4734f459aaf0a4d42c64a11ab7231/mozfile-3.0.0.tar.gz", hash = "sha256:92ca1a786abbdf5e6a7aada62d3a4e28f441ef069c7623223add45268e53c789", size = 7699 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/76/cd/fe6b0afa57fbf026631de1435682735dae0aa0ffbe3855f62806da31c55b/mozfile-3.0.0-py2.py3-none-any.whl", hash = "sha256:3b0afcda2fa8b802ef657df80a56f21619008f61fcc14b756124028d7b7adf5c", size = 8227 }, -] - -[[package]] -name = "mozinfo" -version = "1.2.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "distro" }, - { name = "mozfile" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/23/35/96cccb2244a08247f5c1b5e810d6117d35a30e4a3e29679ed0c7dd2406c6/mozinfo-1.2.3.tar.gz", hash = "sha256:5d2b8a5f1b362692f221e33eb3ff47454a580db1a1384614cdc637b31131b438", size = 6358 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/28/b2/0efcb9aa6d1362aa00b567c8f355f028332a5a533f80c45e5dacd12a5466/mozinfo-1.2.3-py2.py3-none-any.whl", hash = "sha256:90e0cfb377fc2cc3fad023d38c1f6d60a9135400ff5684a04abf79ca5cc3c521", size = 7454 }, -] - -[[package]] -name = "mozprocess" -version = "1.4.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mozinfo" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3a/72/ecf7be35e24065c5780412627f4269a8bdae71eb42823d1416ea6968db11/mozprocess-1.4.0.tar.gz", hash = "sha256:6dbb6ebb5e01d6bdf1b24202719ad298331885aee088375e7e4372cdf9d5bb98", size = 21642 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7c/a3/354e9f0c8b629319e6f6334beaf42e38eeb5ddc821c77e9082752b037d3f/mozprocess-1.4.0-py2.py3-none-any.whl", hash = "sha256:9a3b218dab0f1277275be7d89d673cd55b062519043a88a1a1a77eacefdfdf5e", size = 23105 }, -] - [[package]] name = "multidict" version = "6.1.0" @@ -1256,31 +774,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/26/96/deb93f871f401045a684ca08a009382b247d14996d7a94fea6aa43c67b94/numpy-2.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:356ca982c188acbfa6af0d694284d8cf20e95b1c3d0aefa8929376fea9146f60", size = 12822674 }, ] -[[package]] -name = "oauth2client" -version = "4.1.3" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "httplib2" }, - { name = "pyasn1" }, - { name = "pyasn1-modules" }, - { name = "rsa" }, - { name = "six" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/a6/7b/17244b1083e8e604bf154cf9b716aecd6388acd656dd01893d0d244c94d9/oauth2client-4.1.3.tar.gz", hash = "sha256:d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6", size = 155910 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/95/a9/4f25a14d23f0786b64875b91784607c2277eff25d48f915e39ff0cff505a/oauth2client-4.1.3-py2.py3-none-any.whl", hash = "sha256:b8a81cc5d60e2d364f0b1b98f958dbd472887acaf1a5b05e21c28c31a2d6d3ac", size = 98206 }, -] - -[[package]] -name = "oauthlib" -version = "3.2.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688 }, -] - [[package]] name = "openai" version = "1.60.2" @@ -1422,18 +915,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/41/b6/c5319caea262f4821995dca2107483b94a3345d4607ad797c76cb9c36bcc/propcache-0.2.1-py3-none-any.whl", hash = "sha256:52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54", size = 11818 }, ] -[[package]] -name = "proto-plus" -version = "1.26.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "protobuf" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/26/79/a5c6cbb42268cfd3ddc652dc526889044a8798c688a03ff58e5e92b743c8/proto_plus-1.26.0.tar.gz", hash = "sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22", size = 56136 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/42/c3/59308ccc07b34980f9d532f7afc718a9f32b40e52cde7a740df8d55632fb/proto_plus-1.26.0-py3-none-any.whl", hash = "sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7", size = 50166 }, -] - [[package]] name = "protobuf" version = "3.20.3" @@ -1447,42 +928,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8d/14/619e24a4c70df2901e1f4dbc50a6291eb63a759172558df326347dce1f0d/protobuf-3.20.3-py2.py3-none-any.whl", hash = "sha256:a7ca6d488aa8ff7f329d4c545b2dbad8ac31464f1d8b1c87ad1346717731e4db", size = 162128 }, ] -[[package]] -name = "psutil" -version = "7.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/2a/80/336820c1ad9286a4ded7e845b2eccfcb27851ab8ac6abece774a6ff4d3de/psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456", size = 497003 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/ed/e6/2d26234410f8b8abdbf891c9da62bee396583f713fb9f3325a4760875d22/psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25", size = 238051 }, - { url = "https://files.pythonhosted.org/packages/04/8b/30f930733afe425e3cbfc0e1468a30a18942350c1a8816acfade80c005c4/psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da", size = 239535 }, - { url = "https://files.pythonhosted.org/packages/2a/ed/d362e84620dd22876b55389248e522338ed1bf134a5edd3b8231d7207f6d/psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91", size = 275004 }, - { url = "https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34", size = 277986 }, - { url = "https://files.pythonhosted.org/packages/eb/a2/709e0fe2f093556c17fbafda93ac032257242cabcc7ff3369e2cb76a97aa/psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993", size = 279544 }, - { url = "https://files.pythonhosted.org/packages/50/e6/eecf58810b9d12e6427369784efe814a1eec0f492084ce8eb8f4d89d6d61/psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99", size = 241053 }, - { url = "https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553", size = 244885 }, -] - -[[package]] -name = "pyasn1" -version = "0.6.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/e9/01f1a64245b89f039897cb0130016d79f77d52669aae6ee7b159a6c4c018/pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034", size = 145322 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/f1/d6a797abb14f6283c0ddff96bbdd46937f64122b8c925cab503dd37f8214/pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629", size = 83135 }, -] - -[[package]] -name = "pyasn1-modules" -version = "0.4.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyasn1" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/1d/67/6afbf0d507f73c32d21084a79946bfcfca5fbc62a72057e9c23797a737c9/pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c", size = 310028 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/77/89/bc88a6711935ba795a679ea6ebee07e128050d6382eaa35a0a47c8032bdc/pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd", size = 181537 }, -] - [[package]] name = "pycparser" version = "2.22" @@ -1580,15 +1025,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b4/46/93416fdae86d40879714f72956ac14df9c7b76f7d41a4d68aa9f71a0028b/pydantic_settings-2.7.1-py3-none-any.whl", hash = "sha256:590be9e6e24d06db33a4262829edef682500ef008565a969c73d39d5f8bfb3fd", size = 29718 }, ] -[[package]] -name = "pymemcache" -version = "4.0.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d9/b6/4541b664aeaad025dfb8e851dcddf8e25ab22607e674dd2b562ea3e3586f/pymemcache-4.0.0.tar.gz", hash = "sha256:27bf9bd1bbc1e20f83633208620d56de50f14185055e49504f4f5e94e94aff94", size = 70176 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/41/ba/2f7b22d8135b51c4fefb041461f8431e1908778e6539ff5af6eeaaee367a/pymemcache-4.0.0-py2.py3-none-any.whl", hash = "sha256:f507bc20e0dc8d562f8df9d872107a278df049fa496805c1431b926f3ddd0eab", size = 60772 }, -] - [[package]] name = "pymongo" version = "4.11.1" @@ -1627,15 +1063,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d2/e2/b1747eabad8bf172aa66fae50ed7290c4992b8adbeaddbe31944755dbed4/pymongo-4.11.1-cp312-cp312-win_amd64.whl", hash = "sha256:c71655f4188c70032ba56ac7ead688449e4f86a4ccd8e57201ee283f2f591e1d", size = 882299 }, ] -[[package]] -name = "pyparsing" -version = "3.2.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8b/1a/3544f4f299a47911c2ab3710f534e52fea62a633c96806995da5d25be4b2/pyparsing-3.2.1.tar.gz", hash = "sha256:61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a", size = 1067694 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl", hash = "sha256:506ff4f4386c4cec0590ec19e6302d3aedb992fdc02c761e90416f158dacf8e1", size = 107716 }, -] - [[package]] name = "pytest" version = "8.3.4" @@ -1662,15 +1089,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 }, ] -[[package]] -name = "pytz" -version = "2025.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/5f/57/df1c9157c8d5a05117e455d66fd7cf6dbc46974f832b1058ed4856785d8a/pytz-2025.1.tar.gz", hash = "sha256:c2db42be2a2518b28e65f9207c4d05e6ff547d1efa4086469ef855e4ab70178e", size = 319617 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/eb/38/ac33370d784287baa1c3d538978b5e2ea064d4c1b93ffbd12826c190dd10/pytz-2025.1-py2.py3-none-any.whl", hash = "sha256:89dd22dca55b46eac6eda23b2d72721bf1bdfef212645d81513ef5d03038de57", size = 507930 }, -] - [[package]] name = "pyyaml" version = "6.0.2" @@ -1787,19 +1205,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, ] -[[package]] -name = "requests-oauthlib" -version = "2.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "oauthlib" }, - { name = "requests" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179 }, -] - [[package]] name = "requests-toolbelt" version = "1.0.0" @@ -1812,18 +1217,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481 }, ] -[[package]] -name = "rsa" -version = "4.9" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pyasn1" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, -] - [[package]] name = "ruff" version = "0.9.3" @@ -1849,15 +1242,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/69/cb/b3fe58a136a27d981911cba2f18e4b29f15010623b79f0f2510fd0d31fd3/ruff-0.9.3-py3-none-win_arm64.whl", hash = "sha256:800d773f6d4d33b0a3c60e2c6ae8f4c202ea2de056365acfa519aa48acf28e0b", size = 10038168 }, ] -[[package]] -name = "setuptools" -version = "75.8.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/92/ec/089608b791d210aec4e7f97488e67ab0d33add3efccb83a056cbafe3a2a6/setuptools-75.8.0.tar.gz", hash = "sha256:c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6", size = 1343222 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/69/8a/b9dc7678803429e4a3bc9ba462fa3dd9066824d3c607490235c6a796be5a/setuptools-75.8.0-py3-none-any.whl", hash = "sha256:e3982f444617239225d675215d51f6ba05f845d4eec313da4418fdbb56fb27e3", size = 1228782 }, -] - [[package]] name = "six" version = "1.17.0" @@ -2002,15 +1386,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, ] -[[package]] -name = "uritemplate" -version = "4.1.1" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d2/5a/4742fdba39cd02a56226815abfa72fe0aa81c33bed16ed045647d6000eba/uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0", size = 273898 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/81/c0/7461b49cd25aeece13766f02ee576d1db528f1c37ce69aee300e075b485b/uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e", size = 10356 }, -] - [[package]] name = "urllib3" version = "2.3.0" diff --git a/fuzzer/src/buttercup/fuzzing_infra/orchestrator.py b/fuzzer/src/buttercup/fuzzing_infra/orchestrator.py index 3c83798b..429b84ba 100644 --- a/fuzzer/src/buttercup/fuzzing_infra/orchestrator.py +++ b/fuzzer/src/buttercup/fuzzing_infra/orchestrator.py @@ -11,7 +11,7 @@ import argparse from redis import Redis from buttercup.common.datastructures.msg_pb2 import BuildOutput, WeightedHarness import time -from clusterfuzz.fuzz import get_fuzz_targets +from buttercup.common.clusterfuzz_utils import get_fuzz_targets import os from buttercup.common.logger import setup_package_logger from buttercup.common.maps import BUILD_TYPES diff --git a/orchestrator/pyproject.toml b/orchestrator/pyproject.toml index ea880bf9..9756b94e 100644 --- a/orchestrator/pyproject.toml +++ b/orchestrator/pyproject.toml @@ -7,7 +7,6 @@ authors = [{ name = "Trail of Bits", email = "opensource@trailofbits.com" }] requires-python = ">=3.12,<3.13" dependencies = [ "argon2-cffi>=21.0.0", - "clusterfuzz>=2.6.0", "common", "fastapi>=0.115.6", "pydantic>=2.10.5", diff --git a/orchestrator/src/buttercup/orchestrator/scheduler/scheduler.py b/orchestrator/src/buttercup/orchestrator/scheduler/scheduler.py index 60a62270..56c1919e 100644 --- a/orchestrator/src/buttercup/orchestrator/scheduler/scheduler.py +++ b/orchestrator/src/buttercup/orchestrator/scheduler/scheduler.py @@ -17,7 +17,7 @@ from buttercup.common.datastructures.msg_pb2 import ( from buttercup.common.project_yaml import ProjectYaml from buttercup.orchestrator.scheduler.cancellation import Cancellation from buttercup.orchestrator.scheduler.vulnerabilities import Vulnerabilities -from clusterfuzz.fuzz import get_fuzz_targets +from buttercup.common.clusterfuzz_utils import get_fuzz_targets from buttercup.orchestrator.scheduler.patches import Patches from buttercup.orchestrator.scheduler.bundles import Bundles from buttercup.orchestrator.api_client_factory import create_api_client