From b12150bbd6c3a1f0335b2aad663146288a3f9f53 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Mon, 25 Aug 2025 16:43:25 -0700 Subject: [PATCH 01/29] Create minecode_pipeline module and move relevent code over #660 Signed-off-by: Jono Yang --- minecode_pipeline/__init__.py | 8 + minecode_pipeline/pipelines/__init__.py | 8 + minecode_pipeline/pipelines/mine_maven.py | 52 ++ minecode_pipeline/pipes/__init__.py | 8 + minecode_pipeline/pipes/java_stream.py | 51 ++ minecode_pipeline/pipes/java_stream.py.ABOUT | 14 + .../pipes/java_stream.py.LICENSE | 21 + minecode_pipeline/pipes/maven.py | 644 ++++++++++++++++++ minecode_pipeline/tests/__init__.py | 8 + 9 files changed, 814 insertions(+) create mode 100644 minecode_pipeline/__init__.py create mode 100644 minecode_pipeline/pipelines/__init__.py create mode 100644 minecode_pipeline/pipelines/mine_maven.py create mode 100644 minecode_pipeline/pipes/__init__.py create mode 100644 minecode_pipeline/pipes/java_stream.py create mode 100644 minecode_pipeline/pipes/java_stream.py.ABOUT create mode 100644 minecode_pipeline/pipes/java_stream.py.LICENSE create mode 100644 minecode_pipeline/pipes/maven.py create mode 100644 minecode_pipeline/tests/__init__.py diff --git a/minecode_pipeline/__init__.py b/minecode_pipeline/__init__.py new file mode 100644 index 00000000..e1521118 --- /dev/null +++ b/minecode_pipeline/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# purldb is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/purldb for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# diff --git a/minecode_pipeline/pipelines/__init__.py b/minecode_pipeline/pipelines/__init__.py new file mode 100644 index 00000000..e1521118 --- /dev/null +++ b/minecode_pipeline/pipelines/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# purldb is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/purldb for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# diff --git a/minecode_pipeline/pipelines/mine_maven.py b/minecode_pipeline/pipelines/mine_maven.py new file mode 100644 index 00000000..5ba76d45 --- /dev/null +++ b/minecode_pipeline/pipelines/mine_maven.py @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# http://nexb.com and https://github.com/aboutcode-org/scancode.io +# The ScanCode.io software is licensed under the Apache License version 2.0. +# Data generated with ScanCode.io is provided as-is without warranties. +# ScanCode is a trademark of nexB Inc. +# +# You may not use this software except in compliance with the License. +# You may obtain a copy of the License at: http://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. +# +# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES +# OR CONDITIONS OF ANY KIND, either express or implied. No content created from +# ScanCode.io should be considered or used as legal advice. Consult an Attorney +# for any legal advice. +# +# ScanCode.io is a free software code scanning tool from nexB Inc. and others. +# Visit https://github.com/aboutcode-org/scancode.io for support and download. + + +from scanpipe.pipelines.publish_to_federatedcode import PublishToFederatedCode + + +class MineMaven(PublishToFederatedCode): + """ + Create DiscoveredPackages for packages found on maven: + - input: url of maven repo + - process index + - collect purls, grouped by package + - write to files + - publish to fetchcode + - loop + + """ + + @classmethod + def steps(cls): + return ( + cls.collect_packages_from_maven, + cls.check_federatedcode_eligibility, + cls.get_package_repository, + cls.clone_repository, + cls.add_scan_result, + cls.commit_and_push_changes, + cls.delete_local_clone, + ) + + def collect_packages_from_maven(self): + pass diff --git a/minecode_pipeline/pipes/__init__.py b/minecode_pipeline/pipes/__init__.py new file mode 100644 index 00000000..e1521118 --- /dev/null +++ b/minecode_pipeline/pipes/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# purldb is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/purldb for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# diff --git a/minecode_pipeline/pipes/java_stream.py b/minecode_pipeline/pipes/java_stream.py new file mode 100644 index 00000000..63e32287 --- /dev/null +++ b/minecode_pipeline/pipes/java_stream.py @@ -0,0 +1,51 @@ +# The MIT License (MIT) +# +# Copyright (c) 2014 Gustav Arngården +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + +"""Reading from Java DataInputStream format.""" + +import struct + + +class DataInputStream: + def __init__(self, stream): + self.stream = stream + + def read(self, n=1): + data = self.stream.read(n) + if len(data) != n: + # this is a problem but in most cases we have reached EOF + raise EOFError + return data + + def read_byte(self): + return struct.unpack("b", self.read(1))[0] + + def read_long(self): + return struct.unpack(">q", self.read(8))[0] + + def read_utf(self): + utf_length = struct.unpack(">H", self.read(2))[0] + return self.read(utf_length) + + def read_int(self): + return struct.unpack(">i", self.read(4))[0] diff --git a/minecode_pipeline/pipes/java_stream.py.ABOUT b/minecode_pipeline/pipes/java_stream.py.ABOUT new file mode 100644 index 00000000..d6b635ee --- /dev/null +++ b/minecode_pipeline/pipes/java_stream.py.ABOUT @@ -0,0 +1,14 @@ +about_resource: java_stream.py +name: java_stream.py +version: 7d118ceef9746981e6bc198861125ca2bb6f920f +homepage_url: https://github.com/arngarden/python_java_datastream +owner: Gustav Arngården +copyright: Copyright (c) 2014 Gustav Arngården +download_url: https://raw.githubusercontent.com/arngarden/python_java_datastream/7d118ceef9746981e6bc198861125ca2bb6f920f/data_input_stream.py +license_text_file: license_expfession: mit +licenses: + - key: mit + file: java_stream.py.LICENSE + +vcs_tool: git +vcs_repo: https://github.com/arngarden/python_java_datastream \ No newline at end of file diff --git a/minecode_pipeline/pipes/java_stream.py.LICENSE b/minecode_pipeline/pipes/java_stream.py.LICENSE new file mode 100644 index 00000000..e630f4cd --- /dev/null +++ b/minecode_pipeline/pipes/java_stream.py.LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Gustav Arngården + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py new file mode 100644 index 00000000..17566a39 --- /dev/null +++ b/minecode_pipeline/pipes/maven.py @@ -0,0 +1,644 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# purldb is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/nexB/purldb for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# +import os +import gzip +import io +import logging +import arrow +from dateutil import tz +from minecode_pipeline.pipes import java_stream +from collections import namedtuple +from scanpipe.pipes.fetch import fetch_http +from jawa.util.utf import decode_modified_utf8 +from packagedcode.maven import get_urls +from packagedcode.maven import build_filename +from packagedcode.maven import build_url +from packagedcode.models import PackageData + +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) + +TRACE = False +TRACE_DEEP = False + +if TRACE: + import sys + + logging.basicConfig(stream=sys.stdout) + logger.setLevel(logging.DEBUG) + + +MAVEN_BASE_URL = "https://repo1.maven.org/maven2" +MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" + + +def is_worthy_artifact(artifact): + """ + We only care for certain artifacts that are worthy of indexing. + + Maven has some intricate interrelated values for these fields + type, extension, packaging, classifier, language + See http://maven.apache.org/ref/3.2.5/maven-core/artifact-handlers.html + + These are the defaults: + + type extension packaging classifier language + -------------------------------------------------------------- + pom = type = type none + jar = type = type java + maven-plugin jar = type java + ejb jar ejb = type java + ejb3 = type ejb3 = type java + war = type = type java + ear = type = type java + rar = type = type java + par = type = type java + java-source jar = type sources java + javadoc jar = type javadoc java + ejb-client jar ejb client java + test-jar jar jar tests java + """ + if artifact.version == "archetypes": + # we skip these entirely, they have a different shape + return + + worthy_ext_pack = set( + [ + # packaging, classifier, extension + ("jar", "sources", "jar"), + ("jar", None, "jar"), + ("bundle", None, "jar"), + ("war", None, "war"), + ("zip", "source-release", "zip"), + ("maven-plugin", None, "jar"), + ("aar", None, "aar"), + ("jar", "sources-commercial", "jar"), + ("zip", "src", "zip"), + ("tar.gz", "src", "tar.gz"), + ("jar", None, "zip"), + ("zip", "project-src", "zip"), + ("jar", "src", "jar"), + ] + ) + + return ( + artifact.packaging, + artifact.classifier, + artifact.extension, + ) in worthy_ext_pack + + +def is_source(classifier): + """Return True if the `artifact` Artifact is a source artifact.""" + return classifier and ("source" in classifier or "src" in classifier) + + +######################################################################## +# DOCUMENTAION OF the FIELDS aka. Records: +# +# Constants and information for field names can be found in +# https://github.com/apache/maven-indexer/tree/ecddb3c18ee1ee1357a01bffa7f9cb5252f21209 +# in these classes: +# - org.apache.maven.index.ArtifactInfoRecord +# - org.apache.maven.index.ArtifactInfo +# - org.apache.maven.index.creator.MinimalArtifactInfoIndexCreator +# See also org.apache.maven.index.reader +# +# Note: these are the field names found in the Maven central index in +# July 2016: +# i u 1 m n d del +# allGroups allGroupsList rootGroups rootGroupsList +# IDXINFO DESCRIPTOR +# +# Bundle-Description Bundle-DocURL Bundle-License Bundle-Name Bundle- +# SymbolicName Bundle-Version Export-Package Export-Service Import- +# Package Require-Bundle + + +ENTRY_FIELDS = { + "u": "Artifact UINFO: Unique groupId, artifactId, version, classifier, extension (or packaging). using", + "i": "Artifact INFO: data using | separator", + "1": "Artifact SHA1 checksum, hex encoded as in sha1sum", + "m": "Artifact record last modified, a long as a string representing a Java time for the entry record", + "n": "Artifact name", + "d": "Artifact description", +} + +# we IGNORE these fields for now. They can be included optionally. +ENTRY_FIELDS_OTHER = { + # rarely present, mostly is repos other than central + "c": "Artifact Classes (tokenized on newlines only) a list of LF-separated paths, without .class extension", + "sha256": "sha256 of artifact? part of OSGI?", + # OSGI stuffs, not always there but could be useful metadata + "Bundle-SymbolicName": "Bundle-SymbolicName (indexed, stored)", + "Bundle-Version": "Bundle-Version (indexed, stored)", + "Bundle-Description": "Bundle-Description (indexed, stored)", + "Bundle-Name": "Bundle-Name (indexed, stored)", + "Bundle-License": "Bundle-License (indexed, stored)", + "Bundle-DocURL": "Bundle-DocURL (indexed, stored)", + "Require-Bundle": "Require-Bundle (indexed, stored)", +} + +# we ignore these fields entirely for now. +ENTRY_FIELDS_IGNORED = { + "IDXINFO": "", + "DESCRIPTOR": "", + "allGroups": "", + "allGroupsList": "", + "rootGroups": "", + "rootGroupsList": "", + # FIXME: we should deal with these + "del": "Deleted marker, will contain UINFO if document is deleted from index", + "Export-Package": "Export-Package (indexed, stored)", + "Export-Service": "Export-Service (indexed, stored)", + "Import-Package": "Import-Package (indexed, stored)", + # maven-plugin stuffs + "px": "MavenPlugin prefix (as keyword, stored)", + "gx": "MavenPlugin goals (as keyword, stored)", +} + + +def get_artifacts( + location, + fields=frozenset(ENTRY_FIELDS), + worthyness=is_worthy_artifact, + include_all=False, +): + """ + Yield artifact mappings from a Gzipped Maven nexus index data file + at location. + """ + for entry in get_entries(location, fields): + artifact = build_artifact(entry, include_all) + # at this stage we know enough to decide is this data is worthy of being an + # artifact for now we care only about a few things: POMs and binary Jars. + if artifact and worthyness(artifact): + yield artifact + + +_artifact_base_fields = ( + "group_id", + "artifact_id", + "version", + "packaging", + "classifier", + "extension", + "last_modified", + "size", + "sha1", + "name", + "description", + "src_exist", + "jdoc_exist", + "sig_exist", +) + +_artifact_extended_fields = ( + "sha256", + "osgi", + "classes", +) + +# FIXME: named tuples are suboptimal here for a simple dictionary + + +def to_dict(self): + return self._asdict() + + +Artifact = namedtuple("Artifact", _artifact_base_fields) +Artifact.to_dict = to_dict + +ArtifactExtended = namedtuple("ArtifactExtended", _artifact_base_fields + _artifact_extended_fields) +ArtifactExtended.to_dict = to_dict + + +def build_artifact(entry, include_all=False): + """ + Return a Maven artifact mapping collected from a single entry + mapping or None. + """ + SEP = "|" + NA = "NA" + NULL = "null" + + # UINFO + # See org.apache.maven.index.reader.RecordExpander.expandUinfo + # See org.apache.maven.index.creator.MinimalArtifactInfoIndexCreator.updateArtifactInfo + uinfo = entry.get("u") + if not uinfo: + # not much we can do without this + return + + uinfo = uinfo.split(SEP) + gid = uinfo[0] + aid = uinfo[1] + version = uinfo[2] + + classifier = uinfo[3] + if classifier == NA: + classifier = None + + extension = None + if len(uinfo) > 4: + extension = uinfo[4] + + # INFO + # See org.apache.maven.index.reader.RecordExpander.expandAddedArtifact + # See org.apache.maven.index.creator.MinimalArtifactInfoIndexCreator.updateArtifactInfo + + packaging = None + size = 0 + # record last modified is at entry.get('m') and we ignore this + last_modified = None + src_exist = False + jdoc_exist = False + sig_exist = False + + info = entry.get("i") + if info: + info = info.split(SEP) + + packaging = info[0] + if packaging in (NA, NULL): + packaging = None + + # this is the artifact last modified + # create a date/time stamp string from a long as a string + lm = info[1] + if lm and lm.isdigit() and lm != "0": + last_modified = java_time_ts(int(lm)) + + size = info[2] + size = int(size) if size and size.isdigit() else None + + # for *Exists fields of INFO: see org.apache.maven.index.ArtifactAvailability + # not present locally: '0': False, + # present locally: '1': True, ==> the only one we care for + # not available: '2': False, + PRESENT = "1" + src_exist = info[3] == PRESENT + jdoc_exist = info[4] == PRESENT + + if len(info) > 6: + extension = info[6] + else: + # FIXME: is this likely incorrect see worthyness check + if classifier or packaging in ("pom", "war", "ear"): + extension = packaging + else: + extension = "jar" + sig_exist = info[5] == PRESENT + + # other MISC fields + sha1 = entry.get("1") + name = entry.get("n") + description = entry.get("d") + + if not include_all: + artifact = Artifact( + group_id=gid, + artifact_id=aid, + version=version, + packaging=packaging, + classifier=classifier, + extension=extension, + last_modified=last_modified, + size=size, + sha1=sha1, + name=name, + description=description, + src_exist=src_exist, + jdoc_exist=jdoc_exist, + sig_exist=sig_exist, + ) + + else: + # TODO: should this be part of the base set? + sha256 = entry.get("sha256") + + # OSGI: Rarely there. Note that we ignore 'Export-', 'Import-', on + # purpose: these are big and messey for now + osgi = dict() + for key, value in entry.items(): + if key.startswith("Bundle-") and value: + # TODO: could also include 'Require-Bundle' + osgi[key] = value.strip() + + # Classes: Rarely there, but eventually useful in the future + # Can be quite big too + classes = entry.get("c", "").splitlines(False) + + artifact = ArtifactExtended( + group_id=gid, + artifact_id=aid, + version=version, + packaging=packaging, + classifier=classifier, + extension=extension, + last_modified=last_modified, + size=size, + sha1=sha1, + name=name, + description=description, + src_exist=src_exist, + jdoc_exist=jdoc_exist, + sig_exist=sig_exist, + sha256=sha256, + osgi=osgi, + classes=classes, + ) + + return artifact + + +class GzipFileWithTrailing(gzip.GzipFile): + """ + A subclass of gzip.GzipFile supporting files with trailing garbage. Ignore + the garbage. + """ + + # TODO: what is first_file?? + first_file = True + gzip_magic = b"\037\213" + has_trailing_garbage = False + + def _read_gzip_header(self): + # read the first two bytes + magic = self.fileobj.read(2) + # rewind two bytes back + self.fileobj.seek(-2, os.SEEK_CUR) + is_gzip = magic != self.gzip_magic + if is_gzip and not self.first_file: + self.first_file = False + self.has_trailing_garbage = True + raise EOFError("Trailing garbage found") + + self.first_file = False + gzip.GzipFile._read_gzip_header(self) + + +def get_entries(location, fields=frozenset(ENTRY_FIELDS)): + """ + Yield Maven index entry mappings from a Gzipped Maven nexus index + data file at `location`. Only includes `fields` names. + """ + buffer_size = 128 * 1024 * 1024 + if TRACE_DEEP: + entry = None + entries_count = 0 + keys = set() + keys_update = keys.update + + with GzipFileWithTrailing(location, "rb") as compressed: + # using io.BufferedReader for increased perfs + with io.BufferedReader(compressed, buffer_size=buffer_size) as nexus_index: + jstream = java_stream.DataInputStream(nexus_index) + + # FIXME: we do nothing with these two + # NOTE: this reads 1+8=9 bytes of the stream + _index_version, _last_modified = decode_index_header(jstream) + while True: + try: + entry = decode_entry(jstream, fields) + if TRACE_DEEP: + if entry: + keys_update(entry) + entries_count += 1 + + if entry: + yield entry + + except EOFError: + if TRACE_DEEP: + print(f"Index version: {_index_version} last_modified: {_last_modified}") + print(f"Processed {entries_count} docs. Last entry: {entry}") + print("Unique keys:") + for k in sorted(keys): + print(k) + break + + +def decode_index_header(jstream): + """ + Return the index header from a `jstream` Java-like stream as a tuple + of (index_version, last_updated_date) where index_version is an int + and last_updated_date is a an UTC ISO timestamp string or an empty + string. + """ + # this.chunkName = chunkName.trim(); + # this.dataInputStream = new DataInputStream( new GZIPInputStream( inputStream, 2 * 1024 ) ); + # this.version = ( (int) dataInputStream.readByte() ) & 0xff; + # this.timestamp = new Date( dataInputStream.readLong() ); + + supported_format_version = 1 + # one byte + index_version = int(jstream.read_byte()) + assert supported_format_version == index_version + # eight byte + timestamp = jstream.read_long() + last_modified = timestamp != -1 and java_time_ts(timestamp) or "" + return int(index_version), last_modified + + +def decode_entry(jstream, fields=()): + """ + Read and return one entry mapping of name -> values from a Maven + index `jstream` Java-like stream. Note that the stream is not a + standard Java stream for UTF data. + + Only includes `fields` names. + + An entry starts with an integer which is the number of fields for + this entry. + + Then we have this data layout for each field: + + - field storage type: one byte flag which is then compared to + constants. These are flags for Lucene indexing: INDEXED, STORED, + TOKENIZED, ANALYZED it ends up being two booleans: indexed and + stored and we do not care for these. + + - field name: a Java UTF-8 string (using a len on 2 bytes, then the + name proper). Constants for field names are in ArtifactInfoRecord + and ArtifactInfo. The entry for these is available in ENTRY_FIELDS + for reference. + + - field value: a Java UTF-8-encoded string using the Maven Index special encoding + - one int which is the length of the UTF string in bytes + - the utf-8 string proper using Java conventions + """ + read = jstream.read + read_int = jstream.read_int + read_byte = jstream.read_byte + read_utf = jstream.read_utf + + has_fields = bool(fields) + entry = {} + # this read 4 bytes + field_count = read_int() + for _ in range(field_count): + # Flags for lucene: INDEXED, STORED, TOKENIZED, ANALYZED: ignored + # this is a mask and one off: + # field_indexed = 1 + # field_tokenized = 2 + # field_stored = 4 + # this reads 1 byte: total 5 + _indexing_type = read_byte() + + # all field names are ASCII chars, so even though this is UTF-8 + # encoded, this is ascii Constants for field names are in + # ArtifactInfoRecord and ArtifactInfo + # FIXME: we should discard things we do not care for in terms of fields right away + + # Read a regular "Java Modified UTF-8" as unicode. + # this read 2 bytes which are the len then the len. total 7 + len + name = decode_modified_utf8(read_utf()) + + # Read a Maven Nexus index special "Java Modified UTF-8" as + # unicode: Regular Java write/readUTF is a string length on 2 + # bytes followed by a UTF-encoded stream of bytes of that + # length. The Nexus Maven index use a full int rather than a 2 + # bytes int bypassing the 65K char limit for length of the + # standard Java readUTF. + # this read 4 bytes which is a len + value_length = read_int() + # this read bytes len + value = decode_modified_utf8(read(value_length)) + + # why do we skip some fields + if has_fields: + if name in fields: + entry[name] = value + else: + entry[name] = value + + return entry + + +def java_time_ts(tm): + """ + Convert a Java time long (as milliseconds since epoch) to an UTC ISO + timestamp. + """ + tzinfo = tz.tzutc() + ar = arrow.get(tm / 1000).replace(tzinfo=tzinfo).to("utc") + return ar.isoformat() + + +# TODO: consider switching to HTTPS +def build_url_and_filename( + group_id, + artifact_id, + version, + extension, + classifier, + base_repo_url="https://repo1.maven.org/maven2", +): + """ + Return a tuple of (url, filename) for the download URL of a Maven + artifact built from its coordinates. + """ + file_name = build_filename(artifact_id, version, extension, classifier) + url = build_url(group_id, artifact_id, version, file_name, base_repo_url) + return url, file_name + + +# TODO: consider switching to HTTPS +def build_maven_xml_url(group_id, artifact_id, base_repo_url="https://repo1.maven.org/maven2"): + """ + Return a download URL for a Maven artifact built from its + coordinates. + """ + group_id = group_id.replace(".", "/") + path = "{group_id}/{artifact_id}".format(**locals()) + return "{base_repo_url}/{path}/maven-metadata.xml".format(**locals()) + + +class MavenNexusCollector: + """ + Download and process a Nexus Maven index file. + WARNING: Processing is rather long: a full index is ~600MB. + """ + + def fetch_index(self, uri=MAVEN_INDEX_URL, timeout=10): + """ + Return a temporary location where the fetched content was saved. + Does not return the content proper as a regular fetch does. + + `timeout` is a default timeout. + """ + index = fetch_http(uri) + return index.path + + def get_packages(self, content=None): + """Yield Package objects from maven index""" + if content: + index_location = content + else: + index_location = self.fetch_index() + + artifacts = get_artifacts(index_location, worthyness=is_worthy_artifact) + + for artifact in artifacts: + # we cannot do much without these + group_id = artifact.group_id + artifact_id = artifact.artifact_id + version = artifact.version + extension = artifact.extension + + if not (group_id and artifact_id and version and extension): + continue + + qualifiers = {} + if extension and extension != "jar": + qualifiers["type"] = extension + + classifier = artifact.classifier + if classifier: + qualifiers["classifier"] = classifier + + # FIXME: also use the Artifact.src_exist flags too? + + # build a URL: This is the real JAR download URL + # FIXME: this should be set at the time of creating Artifacts + # instead togther with the filename... especially we could use + # different REPOs. + jar_download_url, _ = build_url_and_filename( + group_id, artifact_id, version, extension, classifier + ) + + # FIXME: should this be set in the yielded URI too + last_mod = artifact.last_modified + + urls = get_urls( + namespace=group_id, + name=artifact_id, + version=version, + qualifiers=qualifiers or None, + ) + + repository_homepage_url = urls["repository_homepage_url"] + repository_download_url = urls["repository_download_url"] + api_data_url = urls["api_data_url"] + + yield PackageData( + type="maven", + namespace=group_id, + name=artifact_id, + version=version, + qualifiers=qualifiers or None, + download_url=jar_download_url, + size=artifact.size, + sha1=artifact.sha1, + release_date=last_mod, + repository_homepage_url=repository_homepage_url, + repository_download_url=repository_download_url, + api_data_url=api_data_url, + ) diff --git a/minecode_pipeline/tests/__init__.py b/minecode_pipeline/tests/__init__.py new file mode 100644 index 00000000..e1521118 --- /dev/null +++ b/minecode_pipeline/tests/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) nexB Inc. and others. All rights reserved. +# purldb is a trademark of nexB Inc. +# SPDX-License-Identifier: Apache-2.0 +# See http://www.apache.org/licenses/LICENSE-2.0 for the license text. +# See https://github.com/aboutcode-org/purldb for support or download. +# See https://aboutcode.org for more information about nexB OSS projects. +# From e4fdae917b8f74d08e38a47e1e5060c8efa392fc Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 26 Aug 2025 16:49:32 -0700 Subject: [PATCH 02/29] Move maven crawler code into new module #660 * Create basic work loop Signed-off-by: Jono Yang --- minecode_pipeline/pipelines/mine_maven.py | 10 +- minecode_pipeline/pipes/maven.py | 423 ++++++++++++++++++++++ 2 files changed, 426 insertions(+), 7 deletions(-) diff --git a/minecode_pipeline/pipelines/mine_maven.py b/minecode_pipeline/pipelines/mine_maven.py index 5ba76d45..110f071a 100644 --- a/minecode_pipeline/pipelines/mine_maven.py +++ b/minecode_pipeline/pipelines/mine_maven.py @@ -21,6 +21,7 @@ # Visit https://github.com/aboutcode-org/scancode.io for support and download. +from minecode_pipeline.pipes import maven from scanpipe.pipelines.publish_to_federatedcode import PublishToFederatedCode @@ -39,14 +40,9 @@ class MineMaven(PublishToFederatedCode): @classmethod def steps(cls): return ( - cls.collect_packages_from_maven, cls.check_federatedcode_eligibility, - cls.get_package_repository, - cls.clone_repository, - cls.add_scan_result, - cls.commit_and_push_changes, - cls.delete_local_clone, + cls.collect_packages_from_maven, ) def collect_packages_from_maven(self): - pass + maven.collect_packages_from_maven(self.project, self.log) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index 17566a39..40f094dd 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -6,15 +6,21 @@ # See https://github.com/nexB/purldb for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # +import re +import requests import os import gzip import io import logging import arrow +from aboutcode import hashid +from packageurl import PackageURL +from urllib.parse import urlparse from dateutil import tz from minecode_pipeline.pipes import java_stream from collections import namedtuple from scanpipe.pipes.fetch import fetch_http +from scanpipe.pipes import federatedcode from jawa.util.utf import decode_modified_utf8 from packagedcode.maven import get_urls from packagedcode.maven import build_filename @@ -182,6 +188,19 @@ def get_artifacts( yield artifact +def get_artifacts2( + location, + fields=frozenset(ENTRY_FIELDS), + worthyness=is_worthy_artifact, + include_all=False, +): + """ + Yield artifact mappings from a Gzipped Maven nexus index data file + at location. + """ + print(get_entries2(location, fields)) + + _artifact_base_fields = ( "group_id", "artifact_id", @@ -425,6 +444,43 @@ def get_entries(location, fields=frozenset(ENTRY_FIELDS)): break +def get_entries2(location, fields=frozenset(ENTRY_FIELDS)): + """ + Return Maven index entry mappings from a Gzipped Maven nexus index + data file at `location`. Only includes `fields` names. + """ + buffer_size = 128 * 1024 * 1024 + entry = None + entries_count = 0 + keys = set() + keys_update = keys.update + + with GzipFileWithTrailing(location, "rb") as compressed: + # using io.BufferedReader for increased perfs + with io.BufferedReader(compressed, buffer_size=buffer_size) as nexus_index: + jstream = java_stream.DataInputStream(nexus_index) + + # FIXME: we do nothing with these two + # NOTE: this reads 1+8=9 bytes of the stream + _index_version, _last_modified = decode_index_header(jstream) + while True: + try: + entry = decode_entry(jstream, fields) + if entry: + keys_update(entry) + entries_count += 1 + + except EOFError: + if TRACE_DEEP: + print(f"Index version: {_index_version} last_modified: {_last_modified}") + print(f"Processed {entries_count} docs. Last entry: {entry}") + print("Unique keys:") + for k in sorted(keys): + print(k) + break + return keys + + def decode_index_header(jstream): """ Return the index header from a `jstream` Java-like stream as a tuple @@ -642,3 +698,370 @@ def get_packages(self, content=None): repository_download_url=repository_download_url, api_data_url=api_data_url, ) + + def get_packages2(self, content=None): + """Yield Package objects from maven index""" + if content: + index_location = content + else: + index_location = self.fetch_index() + + get_artifacts2(index_location, worthyness=is_worthy_artifact) + + +############################################################################### + + +collect_links = re.compile(r'href="([^"]+)"').findall +collect_links_and_artifact_timestamps = re.compile( + r'\s+(\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}|-)' +).findall + + +def check_if_file_name_is_linked_on_page(file_name, links, **kwargs): + """Return True if `file_name` is in `links`""" + return any(link.endswith(file_name) for link in links) + + +def check_if_page_has_pom_files(links, **kwargs): + """Return True of any entry in `links` ends with .pom.""" + return any(link.endswith(".pom") for link in links) + + +def check_if_page_has_directories(links, **kwargs): + """Return True if any entry, excluding "../", ends with /.""" + return any(link.endswith("/") for link in links if link != "../") + + +def check_if_package_version_page(links, **kwargs): + """Return True if `links` contains pom files and has no directories""" + return check_if_page_has_pom_files(links=links) and not check_if_page_has_directories( + links=links + ) + + +def check_if_package_page(links, **kwargs): + return check_if_file_name_is_linked_on_page( + file_name="maven-metadata.xml", links=links + ) and not check_if_page_has_pom_files(links=links) + + +def check_if_maven_root(links, **kwargs): + """ + Return True if "archetype-catalog.xml" is in `links`, as the root of a Maven + repo contains "archetype-catalog.xml". + """ + return check_if_file_name_is_linked_on_page(file_name="archetype-catalog.xml", links=links) + + +def check_on_page(url, checker): + """ + Return True if there is a link on `url` that is the same as `file_name`, + False otherwise. + """ + response = requests.get(url) + if response: + links = collect_links(response.text) + return checker(links=links) + return False + + +def is_maven_root(url): + """Return True if `url` is the root of a Maven repo, False otherwise.""" + return check_on_page(url, check_if_maven_root) + + +def is_package_page(url): + """Return True if `url` is a package page on a Maven repo, False otherwise.""" + return check_on_page(url, check_if_package_page) + + +def is_package_version_page(url): + """Return True if `url` is a package version page on a Maven repo, False otherwise.""" + return check_on_page(url, check_if_package_version_page) + + +def url_parts(url): + parsed_url = urlparse(url) + scheme = parsed_url.scheme + netloc = parsed_url.netloc + path_segments = [p for p in parsed_url.path.split("/") if p] + return scheme, netloc, path_segments + + +def create_url(scheme, netloc, path_segments): + url_template = f"{scheme}://{netloc}" + path = "/".join(path_segments) + return f"{url_template}/{path}" + + +def get_maven_root(url): + """ + Given `url`, that is a URL to namespace, package, or artifact in a Maven + repo, return the URL to the root of that repo. If a Maven root cannot be + determined, return None. + + >>> get_maven_root('https://repo1.maven.org/maven2/net/shibboleth/parent/7.11.0/') + 'https://repo1.maven.org/maven2' + """ + scheme, netloc, path_segments = url_parts(url) + for i in range(len(path_segments)): + segments = path_segments[: i + 1] + url_segment = create_url(scheme, netloc, segments) + if is_maven_root(url_segment): + return url_segment + return None + + +def determine_namespace_name_version_from_url(url, root_url=None): + """ + Return a 3-tuple containing strings of a Package namespace, name, and + version, determined from `url`, where `url` points to namespace, package, + specific package version, or artifact on a Maven repo. + + Return None if a Maven root cannot be determined from `url`. + + >>> determine_namespace_name_version_from_url('https://repo1.maven.org/maven2/net/shibboleth/parent/7.11.0/') + ('net.shibboleth', 'parent', '7.11.0') + """ + if not root_url: + root_url = get_maven_root(url) + if not root_url: + raise Exception(f"Error: not a Maven repository: {url}") + + _, remaining_path_segments = url.split(root_url) + remaining_path_segments = remaining_path_segments.split("/") + remaining_path_segments = [p for p in remaining_path_segments if p] + + namespace_segments = [] + package_name = "" + package_version = "" + for i in range(len(remaining_path_segments)): + segment = remaining_path_segments[i] + segments = remaining_path_segments[: i + 1] + path = "/".join(segments) + url_segment = f"{root_url}/{path}" + if is_package_page(url_segment): + package_name = segment + elif is_package_version_page(url_segment): + package_version = segment + else: + namespace_segments.append(segment) + namespace = ".".join(namespace_segments) + return namespace, package_name, package_version + + +def filter_only_directories(timestamps_by_links): + """Given a mapping of `timestamps_by_links`, where the links are directory names (which end with `/`),""" + timestamps_by_links_filtered = {} + for link, timestamp in timestamps_by_links.items(): + if link != "../" and link.endswith("/"): + timestamps_by_links_filtered[link] = timestamp + return timestamps_by_links_filtered + + +valid_artifact_extensions = [ + "ejb3", + "ear", + "aar", + "apk", + "gem", + "jar", + "nar", + # 'pom', + "so", + "swc", + "tar", + "tar.gz", + "war", + "xar", + "zip", +] + + +def filter_for_artifacts(timestamps_by_links): + """ + Given a mapping of `timestamps_by_links`, where the links are the filenames + of Maven artifacts, return a mapping of filenames whose extension is in + `valid_artifact_extensions` and their timestamps. + """ + timestamps_by_links_filtered = {} + for link, timestamp in timestamps_by_links.items(): + for ext in valid_artifact_extensions: + if link.endswith(ext): + timestamps_by_links_filtered[link] = timestamp + return timestamps_by_links_filtered + + +def collect_links_from_text(text, filter): + """ + Return a mapping of link locations and their timestamps, given HTML `text` + content, that is filtered using `filter`. + """ + links_and_timestamps = collect_links_and_artifact_timestamps(text) + timestamps_by_links = {} + for link, timestamp in links_and_timestamps: + if timestamp == "-": + timestamp = "" + timestamps_by_links[link] = timestamp + + timestamps_by_links = filter(timestamps_by_links=timestamps_by_links) + return timestamps_by_links + + +def create_absolute_urls_for_links(text, url, filter): + """ + Given the `text` contents from `url`, return a mapping of absolute URLs to + links from `url` and their timestamps, that is then filtered by `filter`. + """ + timestamps_by_absolute_links = {} + url = url.rstrip("/") + timestamps_by_links = collect_links_from_text(text, filter) + for link, timestamp in timestamps_by_links.items(): + if not link.startswith(url): + link = f"{url}/{link}" + timestamps_by_absolute_links[link] = timestamp + return timestamps_by_absolute_links + + +def get_directory_links(url): + """Return a list of absolute directory URLs of the hyperlinks from `url`""" + timestamps_by_directory_links = {} + response = requests.get(url) + if response: + timestamps_by_directory_links = create_absolute_urls_for_links( + response.text, url=url, filter=filter_only_directories + ) + return timestamps_by_directory_links + + +def get_artifact_links(url): + """Return a list of absolute directory URLs of the hyperlinks from `url`""" + timestamps_by_artifact_links = [] + response = requests.get(url) + if response: + timestamps_by_artifact_links = create_absolute_urls_for_links( + response.text, url=url, filter=filter_for_artifacts + ) + return timestamps_by_artifact_links + + +def get_package_versions(url): + """ + Given a `url` to a maven package page, return a list of the available package versions + """ + versions = [] + response = requests.get(url) + if response: + links = collect_links(response.text) + # filter for directories, skipping "../" and files + # each directory name is a package version + versions = [link for link in links if link.endswith("/") and link != "../"] + # remove trailing / from version + versions = [v.rstrip("/") for v in versions] + return versions + + +def validate_sha1(sha1): + """ + Validate a `sha1` string. + + Return `sha1` if it is valid, None otherwise. + """ + if sha1 and len(sha1) != 40: + logger.warning(f'Invalid SHA1 length ({len(sha1)}): "{sha1}": SHA1 ignored!') + sha1 = None + return sha1 + + +def get_artifact_sha1(artifact_url): + """Return the SHA1 value of the Maven artifact located at `artifact_url`.""" + sha1 = None + artifact_sha1_url = f"{artifact_url}.sha1" + response = requests.get(artifact_sha1_url) + if response: + sha1_contents = response.text.strip().split() + sha1 = sha1_contents[0] + sha1 = validate_sha1(sha1) + return sha1 + + +def get_classifier_from_artifact_url( + artifact_url, package_version_page_url, package_name, package_version +): + """ + Return the classifier from a Maven artifact URL `artifact_url`, otherwise + return None if a classifier cannot be determined from `artifact_url` + """ + classifier = None + # https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0 + package_version_page_url = package_version_page_url.rstrip("/") + # https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0/livereload-jvm-0.2.0 + leading_url_portion = f"{package_version_page_url}/{package_name}-{package_version}" + # artifact_url = 'https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0/livereload-jvm-0.2.0-onejar.jar' + # ['', '-onejar.jar'] + _, remaining_url_portion = artifact_url.split(leading_url_portion) + # ['-onejar', 'jar'] + remaining_url_portions = remaining_url_portion.split(".") + if remaining_url_portions and remaining_url_portions[0]: + # '-onejar' + classifier = remaining_url_portions[0] + if classifier.startswith("-"): + # 'onejar' + classifier = classifier[1:] + return classifier + + +def crawl_to_package(url, root_url): + """ + Given a maven repo `url`, crawl the repo and for each package, yield a + PackageURL and a list of PackageURLs of available versions + """ + if is_package_page(url): + namespace, name, _ = determine_namespace_name_version_from_url(url) + versions = get_package_versions(url) + purl = PackageURL(type="maven", namespace=namespace, name=name) + purls = [ + PackageURL( + type="maven", + namespace=namespace, + name=name, + version=version, + ) + for version in versions + ] + yield purl, purls + + for link in get_directory_links(url): + crawl_to_package(link, root_url) + + +def crawl_maven_repo_from_root(root_url): + """ + Given the `url` to a maven root, traverse the repo depth-first and add + packages to the import queue. + """ + crawl_to_package(root_url, root_url) + + +def collect_packages_from_maven(project, logger): + for purl, purls in crawl_maven_repo_from_root(): + # check out repo + repo = federatedcode.clone_repository( + repo_url="", + logger=logger, + ) + # save purls to yaml + ppath = hashid.get_package_purls_yml_file_path(purl) + federatedcode.write_file( + base_path=repo.working_dir, + file_path=ppath, + data=purls, + ) + # commit and push + federatedcode.commit_and_push_changes( + repo=repo, + file_to_commit=ppath, + purl=purl, + logger=logger, + ) From 8f1f9ac1870161f5b294ea5fdfa15038c4bd3e4d Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Wed, 27 Aug 2025 17:53:19 -0700 Subject: [PATCH 03/29] Yield packages from index, collect, and write to file #660 Signed-off-by: Jono Yang --- minecode_pipeline/pipes/maven.py | 461 ++++--------------------------- 1 file changed, 49 insertions(+), 412 deletions(-) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index 40f094dd..33680462 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -6,8 +6,8 @@ # See https://github.com/nexB/purldb for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # -import re -import requests + +import saneyaml import os import gzip import io @@ -188,19 +188,6 @@ def get_artifacts( yield artifact -def get_artifacts2( - location, - fields=frozenset(ENTRY_FIELDS), - worthyness=is_worthy_artifact, - include_all=False, -): - """ - Yield artifact mappings from a Gzipped Maven nexus index data file - at location. - """ - print(get_entries2(location, fields)) - - _artifact_base_fields = ( "group_id", "artifact_id", @@ -444,43 +431,6 @@ def get_entries(location, fields=frozenset(ENTRY_FIELDS)): break -def get_entries2(location, fields=frozenset(ENTRY_FIELDS)): - """ - Return Maven index entry mappings from a Gzipped Maven nexus index - data file at `location`. Only includes `fields` names. - """ - buffer_size = 128 * 1024 * 1024 - entry = None - entries_count = 0 - keys = set() - keys_update = keys.update - - with GzipFileWithTrailing(location, "rb") as compressed: - # using io.BufferedReader for increased perfs - with io.BufferedReader(compressed, buffer_size=buffer_size) as nexus_index: - jstream = java_stream.DataInputStream(nexus_index) - - # FIXME: we do nothing with these two - # NOTE: this reads 1+8=9 bytes of the stream - _index_version, _last_modified = decode_index_header(jstream) - while True: - try: - entry = decode_entry(jstream, fields) - if entry: - keys_update(entry) - entries_count += 1 - - except EOFError: - if TRACE_DEEP: - print(f"Index version: {_index_version} last_modified: {_last_modified}") - print(f"Processed {entries_count} docs. Last entry: {entry}") - print("Unique keys:") - for k in sorted(keys): - print(k) - break - return keys - - def decode_index_header(jstream): """ Return the index header from a `jstream` Java-like stream as a tuple @@ -684,7 +634,7 @@ def get_packages(self, content=None): repository_download_url = urls["repository_download_url"] api_data_url = urls["api_data_url"] - yield PackageData( + package = PackageData( type="maven", namespace=group_id, name=artifact_id, @@ -698,370 +648,57 @@ def get_packages(self, content=None): repository_download_url=repository_download_url, api_data_url=api_data_url, ) - - def get_packages2(self, content=None): - """Yield Package objects from maven index""" - if content: - index_location = content - else: - index_location = self.fetch_index() - - get_artifacts2(index_location, worthyness=is_worthy_artifact) - - -############################################################################### - - -collect_links = re.compile(r'href="([^"]+)"').findall -collect_links_and_artifact_timestamps = re.compile( - r'\s+(\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}|-)' -).findall - - -def check_if_file_name_is_linked_on_page(file_name, links, **kwargs): - """Return True if `file_name` is in `links`""" - return any(link.endswith(file_name) for link in links) - - -def check_if_page_has_pom_files(links, **kwargs): - """Return True of any entry in `links` ends with .pom.""" - return any(link.endswith(".pom") for link in links) - - -def check_if_page_has_directories(links, **kwargs): - """Return True if any entry, excluding "../", ends with /.""" - return any(link.endswith("/") for link in links if link != "../") - - -def check_if_package_version_page(links, **kwargs): - """Return True if `links` contains pom files and has no directories""" - return check_if_page_has_pom_files(links=links) and not check_if_page_has_directories( - links=links - ) - - -def check_if_package_page(links, **kwargs): - return check_if_file_name_is_linked_on_page( - file_name="maven-metadata.xml", links=links - ) and not check_if_page_has_pom_files(links=links) - - -def check_if_maven_root(links, **kwargs): - """ - Return True if "archetype-catalog.xml" is in `links`, as the root of a Maven - repo contains "archetype-catalog.xml". - """ - return check_if_file_name_is_linked_on_page(file_name="archetype-catalog.xml", links=links) - - -def check_on_page(url, checker): - """ - Return True if there is a link on `url` that is the same as `file_name`, - False otherwise. - """ - response = requests.get(url) - if response: - links = collect_links(response.text) - return checker(links=links) - return False - - -def is_maven_root(url): - """Return True if `url` is the root of a Maven repo, False otherwise.""" - return check_on_page(url, check_if_maven_root) - - -def is_package_page(url): - """Return True if `url` is a package page on a Maven repo, False otherwise.""" - return check_on_page(url, check_if_package_page) - - -def is_package_version_page(url): - """Return True if `url` is a package version page on a Maven repo, False otherwise.""" - return check_on_page(url, check_if_package_version_page) - - -def url_parts(url): - parsed_url = urlparse(url) - scheme = parsed_url.scheme - netloc = parsed_url.netloc - path_segments = [p for p in parsed_url.path.split("/") if p] - return scheme, netloc, path_segments - - -def create_url(scheme, netloc, path_segments): - url_template = f"{scheme}://{netloc}" - path = "/".join(path_segments) - return f"{url_template}/{path}" - - -def get_maven_root(url): - """ - Given `url`, that is a URL to namespace, package, or artifact in a Maven - repo, return the URL to the root of that repo. If a Maven root cannot be - determined, return None. - - >>> get_maven_root('https://repo1.maven.org/maven2/net/shibboleth/parent/7.11.0/') - 'https://repo1.maven.org/maven2' - """ - scheme, netloc, path_segments = url_parts(url) - for i in range(len(path_segments)): - segments = path_segments[: i + 1] - url_segment = create_url(scheme, netloc, segments) - if is_maven_root(url_segment): - return url_segment - return None - - -def determine_namespace_name_version_from_url(url, root_url=None): - """ - Return a 3-tuple containing strings of a Package namespace, name, and - version, determined from `url`, where `url` points to namespace, package, - specific package version, or artifact on a Maven repo. - - Return None if a Maven root cannot be determined from `url`. - - >>> determine_namespace_name_version_from_url('https://repo1.maven.org/maven2/net/shibboleth/parent/7.11.0/') - ('net.shibboleth', 'parent', '7.11.0') - """ - if not root_url: - root_url = get_maven_root(url) - if not root_url: - raise Exception(f"Error: not a Maven repository: {url}") - - _, remaining_path_segments = url.split(root_url) - remaining_path_segments = remaining_path_segments.split("/") - remaining_path_segments = [p for p in remaining_path_segments if p] - - namespace_segments = [] - package_name = "" - package_version = "" - for i in range(len(remaining_path_segments)): - segment = remaining_path_segments[i] - segments = remaining_path_segments[: i + 1] - path = "/".join(segments) - url_segment = f"{root_url}/{path}" - if is_package_page(url_segment): - package_name = segment - elif is_package_version_page(url_segment): - package_version = segment - else: - namespace_segments.append(segment) - namespace = ".".join(namespace_segments) - return namespace, package_name, package_version - - -def filter_only_directories(timestamps_by_links): - """Given a mapping of `timestamps_by_links`, where the links are directory names (which end with `/`),""" - timestamps_by_links_filtered = {} - for link, timestamp in timestamps_by_links.items(): - if link != "../" and link.endswith("/"): - timestamps_by_links_filtered[link] = timestamp - return timestamps_by_links_filtered - - -valid_artifact_extensions = [ - "ejb3", - "ear", - "aar", - "apk", - "gem", - "jar", - "nar", - # 'pom', - "so", - "swc", - "tar", - "tar.gz", - "war", - "xar", - "zip", -] - - -def filter_for_artifacts(timestamps_by_links): - """ - Given a mapping of `timestamps_by_links`, where the links are the filenames - of Maven artifacts, return a mapping of filenames whose extension is in - `valid_artifact_extensions` and their timestamps. - """ - timestamps_by_links_filtered = {} - for link, timestamp in timestamps_by_links.items(): - for ext in valid_artifact_extensions: - if link.endswith(ext): - timestamps_by_links_filtered[link] = timestamp - return timestamps_by_links_filtered - - -def collect_links_from_text(text, filter): - """ - Return a mapping of link locations and their timestamps, given HTML `text` - content, that is filtered using `filter`. - """ - links_and_timestamps = collect_links_and_artifact_timestamps(text) - timestamps_by_links = {} - for link, timestamp in links_and_timestamps: - if timestamp == "-": - timestamp = "" - timestamps_by_links[link] = timestamp - - timestamps_by_links = filter(timestamps_by_links=timestamps_by_links) - return timestamps_by_links - - -def create_absolute_urls_for_links(text, url, filter): - """ - Given the `text` contents from `url`, return a mapping of absolute URLs to - links from `url` and their timestamps, that is then filtered by `filter`. - """ - timestamps_by_absolute_links = {} - url = url.rstrip("/") - timestamps_by_links = collect_links_from_text(text, filter) - for link, timestamp in timestamps_by_links.items(): - if not link.startswith(url): - link = f"{url}/{link}" - timestamps_by_absolute_links[link] = timestamp - return timestamps_by_absolute_links - - -def get_directory_links(url): - """Return a list of absolute directory URLs of the hyperlinks from `url`""" - timestamps_by_directory_links = {} - response = requests.get(url) - if response: - timestamps_by_directory_links = create_absolute_urls_for_links( - response.text, url=url, filter=filter_only_directories - ) - return timestamps_by_directory_links - - -def get_artifact_links(url): - """Return a list of absolute directory URLs of the hyperlinks from `url`""" - timestamps_by_artifact_links = [] - response = requests.get(url) - if response: - timestamps_by_artifact_links = create_absolute_urls_for_links( - response.text, url=url, filter=filter_for_artifacts - ) - return timestamps_by_artifact_links - - -def get_package_versions(url): - """ - Given a `url` to a maven package page, return a list of the available package versions - """ - versions = [] - response = requests.get(url) - if response: - links = collect_links(response.text) - # filter for directories, skipping "../" and files - # each directory name is a package version - versions = [link for link in links if link.endswith("/") and link != "../"] - # remove trailing / from version - versions = [v.rstrip("/") for v in versions] - return versions - - -def validate_sha1(sha1): - """ - Validate a `sha1` string. - - Return `sha1` if it is valid, None otherwise. - """ - if sha1 and len(sha1) != 40: - logger.warning(f'Invalid SHA1 length ({len(sha1)}): "{sha1}": SHA1 ignored!') - sha1 = None - return sha1 - - -def get_artifact_sha1(artifact_url): - """Return the SHA1 value of the Maven artifact located at `artifact_url`.""" - sha1 = None - artifact_sha1_url = f"{artifact_url}.sha1" - response = requests.get(artifact_sha1_url) - if response: - sha1_contents = response.text.strip().split() - sha1 = sha1_contents[0] - sha1 = validate_sha1(sha1) - return sha1 - - -def get_classifier_from_artifact_url( - artifact_url, package_version_page_url, package_name, package_version -): - """ - Return the classifier from a Maven artifact URL `artifact_url`, otherwise - return None if a classifier cannot be determined from `artifact_url` - """ - classifier = None - # https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0 - package_version_page_url = package_version_page_url.rstrip("/") - # https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0/livereload-jvm-0.2.0 - leading_url_portion = f"{package_version_page_url}/{package_name}-{package_version}" - # artifact_url = 'https://repo1.maven.org/maven2/net/alchim31/livereload-jvm/0.2.0/livereload-jvm-0.2.0-onejar.jar' - # ['', '-onejar.jar'] - _, remaining_url_portion = artifact_url.split(leading_url_portion) - # ['-onejar', 'jar'] - remaining_url_portions = remaining_url_portion.split(".") - if remaining_url_portions and remaining_url_portions[0]: - # '-onejar' - classifier = remaining_url_portions[0] - if classifier.startswith("-"): - # 'onejar' - classifier = classifier[1:] - return classifier - - -def crawl_to_package(url, root_url): - """ - Given a maven repo `url`, crawl the repo and for each package, yield a - PackageURL and a list of PackageURLs of available versions - """ - if is_package_page(url): - namespace, name, _ = determine_namespace_name_version_from_url(url) - versions = get_package_versions(url) - purl = PackageURL(type="maven", namespace=namespace, name=name) - purls = [ - PackageURL( + current_purl = PackageURL( type="maven", - namespace=namespace, - name=name, + namespace=group_id, + name=artifact_id, version=version, ) - for version in versions - ] - yield purl, purls + yield current_purl, package + + +def collect_packages_from_maven2(project, logger): + maven_nexus_collector = MavenNexusCollector() + prev_package = None + current_packages = [] + for current_package, package in maven_nexus_collector.get_packages(): + if not prev_package: + prev_package = current_package + elif prev_package != current_package: + # check out repo + repo = federatedcode.clone_repository( + repo_url="https://github.com/JonoYang/test.git", + logger=logger, + ) + # save purls to yaml + ppath = hashid.get_package_purls_yml_file_path(prev_package) + purls = [package.purl for package in current_packages] + write_file( + base_path=repo.working_dir, + file_path=ppath, + data=purls, + ) + # commit and push + federatedcode.commit_and_push_changes( + repo=repo, + file_to_commit=ppath, + purl=prev_package, + logger=logger, + ) + # delete local clone + federatedcode.delete_local_clone(repo) - for link in get_directory_links(url): - crawl_to_package(link, root_url) + current_packages = [] + prev_package = current_package + current_packages.append(package) -def crawl_maven_repo_from_root(root_url): +def write_file(base_path, file_path, data): """ - Given the `url` to a maven root, traverse the repo depth-first and add - packages to the import queue. + Write the ``data`` as YAML to the ``file_path`` in the ``base_path`` root directory. + Create directories in the path as needed. """ - crawl_to_package(root_url, root_url) - - -def collect_packages_from_maven(project, logger): - for purl, purls in crawl_maven_repo_from_root(): - # check out repo - repo = federatedcode.clone_repository( - repo_url="", - logger=logger, - ) - # save purls to yaml - ppath = hashid.get_package_purls_yml_file_path(purl) - federatedcode.write_file( - base_path=repo.working_dir, - file_path=ppath, - data=purls, - ) - # commit and push - federatedcode.commit_and_push_changes( - repo=repo, - file_to_commit=ppath, - purl=purl, - logger=logger, - ) + write_to = base_path / file_path + write_to.parent.mkdir(parents=True, exist_ok=True) + with open(write_to, encoding="utf-8", mode="w") as f: + f.write(saneyaml.dump(data)) From 837d0d186c6a98a956df4872fb76032124191a76 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Thu, 28 Aug 2025 16:36:40 -0700 Subject: [PATCH 04/29] Push commits at regular intervals Signed-off-by: Jono Yang --- minecode_pipeline/pipes/maven.py | 39 ++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 14 deletions(-) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index 33680462..b1261382 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -27,6 +27,7 @@ from packagedcode.maven import build_url from packagedcode.models import PackageData + logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) @@ -657,19 +658,21 @@ def get_packages(self, content=None): yield current_purl, package -def collect_packages_from_maven2(project, logger): +def collect_packages_from_maven(commits_per_push=10, logger=None): + # check out repo + repo = federatedcode.clone_repository( + repo_url="https://github.com/JonoYang/test.git", + logger=logger, + ) + + # download and iterate through maven nexus index maven_nexus_collector = MavenNexusCollector() prev_package = None current_packages = [] - for current_package, package in maven_nexus_collector.get_packages(): + for i, (current_package, package) in enumerate(maven_nexus_collector.get_packages(), start=1): if not prev_package: prev_package = current_package elif prev_package != current_package: - # check out repo - repo = federatedcode.clone_repository( - repo_url="https://github.com/JonoYang/test.git", - logger=logger, - ) # save purls to yaml ppath = hashid.get_package_purls_yml_file_path(prev_package) purls = [package.purl for package in current_packages] @@ -678,20 +681,28 @@ def collect_packages_from_maven2(project, logger): file_path=ppath, data=purls, ) - # commit and push - federatedcode.commit_and_push_changes( + + change_type = "Add" if ppath in repo.untracked_files else "Update" + commit_message = f"""\ + {change_type} list of available {current_package} versions + """ + federatedcode.commit_changes( repo=repo, - file_to_commit=ppath, - purl=prev_package, - logger=logger, + files_to_commit=[ppath], + commit_message=commit_message, ) - # delete local clone - federatedcode.delete_local_clone(repo) + + # see if we should push + if not bool(i % commits_per_push): + federatedcode.push_changes(repo=repo) current_packages = [] prev_package = current_package current_packages.append(package) + # delete local clone + federatedcode.delete_local_clone(repo) + def write_file(base_path, file_path, data): """ From b92a8bddf7b7525891815bee75e4afe4e6579d96 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Mon, 1 Sep 2025 15:38:30 -0700 Subject: [PATCH 05/29] Use new branch of scio #660 Signed-off-by: Jono Yang --- minecode_pipeline/pipes/maven.py | 13 +------------ setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index b1261382..b3b7d651 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -676,7 +676,7 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): # save purls to yaml ppath = hashid.get_package_purls_yml_file_path(prev_package) purls = [package.purl for package in current_packages] - write_file( + federatedcode.write_data_as_yaml( base_path=repo.working_dir, file_path=ppath, data=purls, @@ -702,14 +702,3 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): # delete local clone federatedcode.delete_local_clone(repo) - - -def write_file(base_path, file_path, data): - """ - Write the ``data`` as YAML to the ``file_path`` in the ``base_path`` root directory. - Create directories in the path as needed. - """ - write_to = base_path / file_path - write_to.parent.mkdir(parents=True, exist_ok=True) - with open(write_to, encoding="utf-8", mode="w") as f: - f.write(saneyaml.dump(data)) diff --git a/setup.cfg b/setup.cfg index f401ad33..6ecbb9ef 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,7 +62,7 @@ install_requires = matchcode-toolkit >= 7.2.2 purl2vcs >= 2.0.0 univers >= 30.12.1 - scancodeio >= 35.0.0 + scancodeio @ git+https://github.com/aboutcode-org/scancode.io@f3a581171e201e5fdb20962115a661b4eb4a7850 GitPython >= 3.1.44 samecode >= 0.5.1 # FederatedCode integration @@ -100,3 +100,4 @@ console_scripts = scancodeio_pipelines = matching = matchcode_pipeline.pipelines.matching:Matching d2d = scanpipe.pipelines.deploy_to_develop:DeployToDevelop + mine_maven = minecode_pipeline.pipelines.mine_maven:MineMaven From 6b3372d693fbbc9a3e0b4ab23d9f9d7dffe85279 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Mon, 1 Sep 2025 16:01:10 -0700 Subject: [PATCH 06/29] Create write_purls_to_repo #660 Signed-off-by: Jono Yang --- minecode_pipeline/pipes/__init__.py | 28 ++++++++++++++++++++++++++++ minecode_pipeline/pipes/maven.py | 26 ++++++-------------------- 2 files changed, 34 insertions(+), 20 deletions(-) diff --git a/minecode_pipeline/pipes/__init__.py b/minecode_pipeline/pipes/__init__.py index e1521118..a5b25064 100644 --- a/minecode_pipeline/pipes/__init__.py +++ b/minecode_pipeline/pipes/__init__.py @@ -6,3 +6,31 @@ # See https://github.com/aboutcode-org/purldb for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # + +from aboutcode import hashid +from scanpipe.pipes import federatedcode + + +def write_purls_to_repo(repo, package, packages, push_commit=False): + # save purls to yaml + ppath = hashid.get_package_purls_yml_file_path(package) + purls = [p.purl for p in packages] + federatedcode.write_data_as_yaml( + base_path=repo.working_dir, + file_path=ppath, + data=purls, + ) + + change_type = "Add" if ppath in repo.untracked_files else "Update" + commit_message = f"""\ + {change_type} list of available {package} versions + """ + federatedcode.commit_changes( + repo=repo, + files_to_commit=[ppath], + commit_message=commit_message, + ) + + # see if we should push + if push_commit: + federatedcode.push_changes(repo=repo) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index b3b7d651..8422d164 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -21,6 +21,7 @@ from collections import namedtuple from scanpipe.pipes.fetch import fetch_http from scanpipe.pipes import federatedcode +from minecode_pipeline.pipes import write_purls_to_repo from jawa.util.utf import decode_modified_utf8 from packagedcode.maven import get_urls from packagedcode.maven import build_filename @@ -673,29 +674,14 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): if not prev_package: prev_package = current_package elif prev_package != current_package: + push_commit = not bool(i % commits_per_push) # save purls to yaml - ppath = hashid.get_package_purls_yml_file_path(prev_package) - purls = [package.purl for package in current_packages] - federatedcode.write_data_as_yaml( - base_path=repo.working_dir, - file_path=ppath, - data=purls, - ) - - change_type = "Add" if ppath in repo.untracked_files else "Update" - commit_message = f"""\ - {change_type} list of available {current_package} versions - """ - federatedcode.commit_changes( + write_purls_to_repo( repo=repo, - files_to_commit=[ppath], - commit_message=commit_message, + package=prev_package, + packages=current_packages, + push_commit=push_commit ) - - # see if we should push - if not bool(i % commits_per_push): - federatedcode.push_changes(repo=repo) - current_packages = [] prev_package = current_package current_packages.append(package) From b0a3d6edf67c5b5157de27550a31a1fe64907bf2 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Wed, 3 Sep 2025 19:38:44 -0700 Subject: [PATCH 07/29] Clone repo per package #660 Signed-off-by: Jono Yang --- minecode_pipeline/pipes/maven.py | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index 8422d164..a9123548 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -660,12 +660,6 @@ def get_packages(self, content=None): def collect_packages_from_maven(commits_per_push=10, logger=None): - # check out repo - repo = federatedcode.clone_repository( - repo_url="https://github.com/JonoYang/test.git", - logger=logger, - ) - # download and iterate through maven nexus index maven_nexus_collector = MavenNexusCollector() prev_package = None @@ -674,6 +668,16 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): if not prev_package: prev_package = current_package elif prev_package != current_package: + # check out repo + repo_url, _ = federatedcode.get_package_repository( + project_purl=prev_package, + logger=logger + ) + repo = federatedcode.clone_repository( + repo_url=repo_url, + logger=logger, + ) + push_commit = not bool(i % commits_per_push) # save purls to yaml write_purls_to_repo( @@ -682,9 +686,10 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): packages=current_packages, push_commit=push_commit ) + + # delete local clone + federatedcode.delete_local_clone(repo) + current_packages = [] prev_package = current_package current_packages.append(package) - - # delete local clone - federatedcode.delete_local_clone(repo) From d9c8b8d5366c369767dcd94960f148ea60d75a97 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 5 Sep 2025 16:37:08 -0700 Subject: [PATCH 08/29] Add methods to fetch maven index properties and increments #660 Signed-off-by: Jono Yang --- minecode_pipeline/pipes/maven.py | 60 ++++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipeline/pipes/maven.py index a9123548..ffb0c4bb 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipeline/pipes/maven.py @@ -7,15 +7,15 @@ # See https://aboutcode.org for more information about nexB OSS projects. # -import saneyaml +from itertools import chain import os import gzip import io import logging import arrow -from aboutcode import hashid +import javaproperties from packageurl import PackageURL -from urllib.parse import urlparse + from dateutil import tz from minecode_pipeline.pipes import java_stream from collections import namedtuple @@ -44,6 +44,8 @@ MAVEN_BASE_URL = "https://repo1.maven.org/maven2" MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" +MAVEN_INDEX_INCREMENT_BASE_URL = f"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" +MAVEN_INDEX_PROPERTIES_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties" def is_worthy_artifact(artifact): @@ -575,24 +577,36 @@ class MavenNexusCollector: WARNING: Processing is rather long: a full index is ~600MB. """ - def fetch_index(self, uri=MAVEN_INDEX_URL, timeout=10): + def fetch_index(self, uri=MAVEN_INDEX_URL): """ - Return a temporary location where the fetched content was saved. - Does not return the content proper as a regular fetch does. - - `timeout` is a default timeout. + Return a temporary location where the maven index was saved. """ index = fetch_http(uri) return index.path - def get_packages(self, content=None): - """Yield Package objects from maven index""" - if content: - index_location = content - else: - index_location = self.fetch_index() + def fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): + """ + Return a temporary location where the maven index properties file was saved. + """ + index_properties = fetch_http(uri) + return index_properties.path - artifacts = get_artifacts(index_location, worthyness=is_worthy_artifact) + def fetch_index_increments(self): + """ + Yield maven index increments + """ + content = self.fetch_index_properties() + with open(content) as config_file: + properties = javaproperties.load(config_file) or {} + + for key, increment_index in properties.items(): + if key.startswith("nexus.index.incremental"): + index_increment_url = MAVEN_INDEX_INCREMENT_BASE_URL.format(index=increment_index) + index_increment = fetch_http(index_increment_url) + yield index_increment.path + + def _get_packages(self, content=None): + artifacts = get_artifacts(content, worthyness=is_worthy_artifact) for artifact in artifacts: # we cannot do much without these @@ -658,6 +672,22 @@ def get_packages(self, content=None): ) yield current_purl, package + def _get_packages_from_index_increments(self): + for index_increment in self.fetch_index_increments(): + return self._get_packages(content=index_increment) + + def get_packages(self, content=None, increments=False): + """Yield Package objects from maven index""" + if increments: + packages = chain(self._get_packages_from_index_increments()) + else: + if content: + index_location = content + else: + index_location = self.fetch_index() + packages = self._get_packages(content=index_location) + return packages + def collect_packages_from_maven(commits_per_push=10, logger=None): # download and iterate through maven nexus index From 1bfb2d8fc82acc86d0753eab2c86a9e3f8e69474 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 5 Sep 2025 18:25:10 -0700 Subject: [PATCH 09/29] Move files to minecode_pipelines #660 Signed-off-by: Jono Yang --- {minecode_pipeline => minecode_pipelines}/pipes/java_stream.py | 0 .../pipes/java_stream.py.ABOUT | 0 .../pipes/java_stream.py.LICENSE | 0 {minecode_pipeline => minecode_pipelines}/pipes/maven.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) rename {minecode_pipeline => minecode_pipelines}/pipes/java_stream.py (100%) rename {minecode_pipeline => minecode_pipelines}/pipes/java_stream.py.ABOUT (100%) rename {minecode_pipeline => minecode_pipelines}/pipes/java_stream.py.LICENSE (100%) rename {minecode_pipeline => minecode_pipelines}/pipes/maven.py (99%) diff --git a/minecode_pipeline/pipes/java_stream.py b/minecode_pipelines/pipes/java_stream.py similarity index 100% rename from minecode_pipeline/pipes/java_stream.py rename to minecode_pipelines/pipes/java_stream.py diff --git a/minecode_pipeline/pipes/java_stream.py.ABOUT b/minecode_pipelines/pipes/java_stream.py.ABOUT similarity index 100% rename from minecode_pipeline/pipes/java_stream.py.ABOUT rename to minecode_pipelines/pipes/java_stream.py.ABOUT diff --git a/minecode_pipeline/pipes/java_stream.py.LICENSE b/minecode_pipelines/pipes/java_stream.py.LICENSE similarity index 100% rename from minecode_pipeline/pipes/java_stream.py.LICENSE rename to minecode_pipelines/pipes/java_stream.py.LICENSE diff --git a/minecode_pipeline/pipes/maven.py b/minecode_pipelines/pipes/maven.py similarity index 99% rename from minecode_pipeline/pipes/maven.py rename to minecode_pipelines/pipes/maven.py index ffb0c4bb..660bc47b 100644 --- a/minecode_pipeline/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -17,7 +17,7 @@ from packageurl import PackageURL from dateutil import tz -from minecode_pipeline.pipes import java_stream +from minecode_pipelines.pipes import java_stream from collections import namedtuple from scanpipe.pipes.fetch import fetch_http from scanpipe.pipes import federatedcode From dda2bcaea8f32d92c43befa4fad83cf968b5153a Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 5 Sep 2025 18:54:05 -0700 Subject: [PATCH 10/29] Move tests over to minecode_pipelines #660 Signed-off-by: Jono Yang --- .../buggy/expected_artifacts-defaults.json | 82 + .../maven/index/buggy/expected_artifacts.json | 97 + .../maven/index/buggy/expected_entries.json | 81 + .../data/maven/index/buggy/expected_uris.json | 242 + .../index/buggy/expected_visited_uris.json | 34 + .../buggy/nexus-maven-repository-index.gz | Bin 0 -> 719 bytes .../index/expected_artifacts-all-worthy.json | 466 + .../index/expected_artifacts-defaults.json | 306 + .../data/maven/index/expected_artifacts.json | 1545 + .../data/maven/index/expected_entries.json | 264 + .../tests/data/maven/index/expected_uris.json | 914 + .../expected_artifacts-defaults.json | 18850 ++++++ .../index/increment/expected_artifacts.json | 22643 +++++++ .../index/increment/expected_entries.json | 15019 ++++ .../increment/expected_properties_uris.json | 482 + .../maven/index/increment/expected_uris.json | 56546 ++++++++++++++++ .../nexus-maven-repository-index.445.gz | Bin 0 -> 109335 bytes .../nexus-maven-repository-index.properties | 36 + .../increment2/expected_mini_package.json | 136 + .../maven/index/increment2/expected_uris.json | 98 + .../nexus-maven-repository-index.457.gz | Bin 0 -> 60631 bytes .../index/nexus-maven-repository-index.gz | Bin 0 -> 8508 bytes minecode_pipelines/tests/pipes/test_maven.py | 230 + 23 files changed, 118071 insertions(+) create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts-defaults.json create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts.json create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/expected_entries.json create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/expected_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/expected_visited_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/buggy/nexus-maven-repository-index.gz create mode 100644 minecode_pipelines/tests/data/maven/index/expected_artifacts-all-worthy.json create mode 100644 minecode_pipelines/tests/data/maven/index/expected_artifacts-defaults.json create mode 100644 minecode_pipelines/tests/data/maven/index/expected_artifacts.json create mode 100644 minecode_pipelines/tests/data/maven/index/expected_entries.json create mode 100644 minecode_pipelines/tests/data/maven/index/expected_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/expected_artifacts-defaults.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/expected_artifacts.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/expected_entries.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/expected_properties_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/expected_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.445.gz create mode 100644 minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.properties create mode 100644 minecode_pipelines/tests/data/maven/index/increment2/expected_mini_package.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment2/expected_uris.json create mode 100644 minecode_pipelines/tests/data/maven/index/increment2/nexus-maven-repository-index.457.gz create mode 100644 minecode_pipelines/tests/data/maven/index/nexus-maven-repository-index.gz create mode 100644 minecode_pipelines/tests/pipes/test_maven.py diff --git a/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts-defaults.json b/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts-defaults.json new file mode 100644 index 00000000..7b0c1b01 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts-defaults.json @@ -0,0 +1,82 @@ +[ + { + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-04T22:22:14+00:00", + "size":815503, + "sha1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-04T22:22:17+00:00", + "size":337134, + "sha1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T09:59:44+00:00", + "size":1228583, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-10T09:59:46+00:00", + "size":163021, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.10", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T10:00:21+00:00", + "size":1259191, + "sha1":"./spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts.json b/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts.json new file mode 100644 index 00000000..4a5126d5 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/buggy/expected_artifacts.json @@ -0,0 +1,97 @@ +[ + { + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-04T22:22:14+00:00", + "size":815503, + "sha1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-04T22:22:17+00:00", + "size":337134, + "sha1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T09:59:44+00:00", + "size":1228583, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-10T09:59:46+00:00", + "size":163021, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.10", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T10:00:21+00:00", + "size":1259191, + "sha1":"./spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/buggy/expected_entries.json b/minecode_pipelines/tests/data/maven/index/buggy/expected_entries.json new file mode 100644 index 00000000..d41367ba --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/buggy/expected_entries.json @@ -0,0 +1,81 @@ +[ + { + "u":"org.apache.tez|tez-common|0.5.3|javadoc|jar", + "m":"1419160545440", + "i":"jar|1417731748000|120703|2|2|1|jar", + "1":"1c5bd507e2ee45fa44b06f1a7a5fca97deb8bf2f" + }, + { + "u":"org.apache.tez|tez-api|0.5.3|NA", + "m":"1419160545842", + "i":"jar|1417731734000|815503|1|1|1|jar", + "1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d" + }, + { + "u":"org.apache.tez|tez-api|0.5.3|tests|jar", + "m":"1419160545940", + "i":"jar|1417731736000|76651|2|2|1|jar", + "1":"25ca28cf15ccb60dc3d4dd5e119ea138ededfee2" + }, + { + "u":"org.apache.tez|tez-api|0.5.3|sources|jar", + "m":"1419160545976", + "i":"jar|1417731737000|337134|2|2|1|jar", + "1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f" + }, + { + "u":"org.apache.tez|tez-api|0.5.3|javadoc|jar", + "m":"1419160546013", + "i":"jar|1417731738000|1938942|2|2|1|jar", + "1":"c81f8665ecf5f6ae12be5c3ffa2bf33bfccd4920" + }, + { + "u":"org.apache.tez|tez|0.5.3|tests|jar", + "m":"1419160546317", + "i":"jar|1417731714000|5863|2|2|1|jar", + "n":"tez", + "1":"a3d4b0b129463c2aa8ba01199074d2303431e785" + }, + { + "u":"org.apache.tez|tez|0.5.3|NA", + "m":"1419160546356", + "i":"pom|1417731712000|34203|0|0|1|pom", + "n":"tez", + "1":"66cbf142fb1524acc3e7ac98a25ec59b790a3b67" + }, + { + "u":"org.apache.spark|spark-streaming_2.11|1.2.0|NA", + "m":"1419160673816", + "i":"jar|1418205584000|1228583|1|1|1|jar", + "n":"Spark Project Streaming", + "1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar:" + }, + { + "u":"org.apache.spark|spark-streaming_2.11|1.2.0|tests|jar", + "m":"1419160673904", + "i":"jar|1418205585000|1021750|2|2|1|jar", + "n":"Spark Project Streaming", + "1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-tests.jar:" + }, + { + "u":"org.apache.spark|spark-streaming_2.11|1.2.0|sources|jar", + "m":"1419160673939", + "i":"jar|1418205586000|163021|2|2|1|jar", + "n":"Spark Project Streaming", + "1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar:" + }, + { + "u":"org.apache.spark|spark-streaming_2.11|1.2.0|javadoc|jar", + "m":"1419160673989", + "i":"jar|1418205583000|640869|2|2|1|jar", + "n":"Spark Project Streaming", + "1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-javadoc.jar:" + }, + { + "u":"org.apache.spark|spark-streaming_2.10|1.2.0|NA", + "m":"1419160674127", + "i":"jar|1418205621000|1259191|1|1|1|jar", + "n":"Spark Project Streaming", + "1":"./spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar:" + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/buggy/expected_uris.json b/minecode_pipelines/tests/data/maven/index/buggy/expected_uris.json new file mode 100644 index 00000000..db07985f --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/buggy/expected_uris.json @@ -0,0 +1,242 @@ +[ + { + "uri":"maven-index://repo1.maven.org/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.tez/tez-api@0.5.3", + "file_name":"tez-api-0.5.3.jar", + "size":815503, + "date":"2014-12-04T22:22:14+00:00", + "md5":null, + "sha1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-04T22:22:14+00:00", + "size":815503, + "sha1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.tez/tez-api@0.5.3", + "file_name":"tez-api-0.5.3.pom", + "size":0, + "date":"2014-12-04T22:22:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.tez/tez-api@0.5.3?classifier=sources", + "file_name":"tez-api-0.5.3-sources.jar", + "size":337134, + "date":"2014-12-04T22:22:17+00:00", + "md5":null, + "sha1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.apache.tez", + "artifact_id":"tez-api", + "version":"0.5.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-04T22:22:17+00:00", + "size":337134, + "sha1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.tez/tez-api@0.5.3", + "file_name":"tez-api-0.5.3.pom", + "size":0, + "date":"2014-12-04T22:22:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.11@1.2.0", + "file_name":"spark-streaming_2.11-1.2.0.jar", + "size":1228583, + "date":"2014-12-10T09:59:44+00:00", + "md5":null, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar:", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T09:59:44+00:00", + "size":1228583, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.11@1.2.0", + "file_name":"spark-streaming_2.11-1.2.0.pom", + "size":0, + "date":"2014-12-10T09:59:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.11@1.2.0?classifier=sources", + "file_name":"spark-streaming_2.11-1.2.0-sources.jar", + "size":163021, + "date":"2014-12-10T09:59:46+00:00", + "md5":null, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar:", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2014-12-10T09:59:46+00:00", + "size":163021, + "sha1":"./spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.11@1.2.0", + "file_name":"spark-streaming_2.11-1.2.0.pom", + "size":0, + "date":"2014-12-10T09:59:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.10@1.2.0", + "file_name":"spark-streaming_2.10-1.2.0.jar", + "size":1259191, + "date":"2014-12-10T10:00:21+00:00", + "md5":null, + "sha1":"./spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar:", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.apache.spark", + "artifact_id":"spark-streaming_2.10", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2014-12-10T10:00:21+00:00", + "size":1259191, + "sha1":"./spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar:", + "name":"Spark Project Streaming", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/org.apache.spark/spark-streaming_2.10@1.2.0", + "file_name":"spark-streaming_2.10-1.2.0.pom", + "size":0, + "date":"2014-12-10T10:00:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/buggy/expected_visited_uris.json b/minecode_pipelines/tests/data/maven/index/buggy/expected_visited_uris.json new file mode 100644 index 00000000..8261278f --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/buggy/expected_visited_uris.json @@ -0,0 +1,34 @@ +[ + { + "uri":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.pom", + "sha1":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.pom", + "sha1":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.pom", + "sha1":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.10/1.2.0/spark-streaming_2.10-1.2.0.jar", + "sha1":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0-sources.jar", + "sha1":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/spark/spark-streaming_2.11/1.2.0/spark-streaming_2.11-1.2.0.jar", + "sha1":null + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3-sources.jar", + "sha1":"e4de1d4d12472f2092f9453db507c99f0c1dee2f" + }, + { + "uri":"maven-index://repo1.maven.org/org/apache/tez/tez-api/0.5.3/tez-api-0.5.3.jar", + "sha1":"0a6bcfb101501dba56ecbca7ec63de9fc3fd5f1d" + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/buggy/nexus-maven-repository-index.gz b/minecode_pipelines/tests/data/maven/index/buggy/nexus-maven-repository-index.gz new file mode 100644 index 0000000000000000000000000000000000000000..25809f607849540ced1b11e02f44b4d138bb1d73 GIT binary patch literal 719 zcmV;=0x+6lb(&22rO1#B%)K-BdG0yy z9aPoeMH7Kd11b%qR4-a^J!2`w!G|~dV0tpO=1@VQ;*Lg+cnTHrvND54*oTVyW z$^g2cH(r(Kok=;^P^fe$pY>4s$!UxD{>>(tmDEQjm+S5MvKMr4(C`@(LN)EthlztQz$}&5@V8% zfamVEj0c;HHg74=%ZErH^&ug)8? z%64MiLO(fPF0%JwIzG#BzIS}NSS#|nKI)@5YAAY#hRsmTE4=E+sk_K+>l$`+AbTBE z;|PRC!A9fU;Q02Qj>Cp?-PGL0bo&vrbQNyxh*`NdhahUfws%#1cVE>O^si*MA683Q z+b=7YvRZ=G?!U>lpzE@?3Mgz3s6;Y7&8rDl0acDC{+ocpc1h?2^cRVlKzsBE001YN BV@v=5 literal 0 HcmV?d00001 diff --git a/minecode_pipelines/tests/data/maven/index/expected_artifacts-all-worthy.json b/minecode_pipelines/tests/data/maven/index/expected_artifacts-all-worthy.json new file mode 100644 index 00000000..f8df20ad --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/expected_artifacts-all-worthy.json @@ -0,0 +1,466 @@ +[ + { + "group_id":"com.google.appengine", + "artifact_id":"appengine", + "version":"1.2.0", + "packaging":"pom", + "classifier":null, + "extension":"pom", + "last_modified":"2009-05-21T18:28:58+00:00", + "size":null, + "sha1":null, + "name":"Google App Engine", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-api-1.0-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":5584571, + "sha1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "name":null, + "description":"APIs that App Engine provides to you to build your application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-java-sdk", + "version":"1.2.0", + "packaging":"zip", + "classifier":null, + "extension":"pom", + "last_modified":"2009-05-21T18:28:58+00:00", + "size":null, + "sha1":null, + "name":"Google App Engine for Java SDK", + "description":"Google App Engine is a web application hosting platform that allows you to write\n your web application in one of several programming languages (including Python and Java).\n This SDK includes everything necessary to develop Java applications that can be hosted by\n App Engine. This includes a jar file and documentation for the current set of App\n Engine-specific API's, and a development environment that can be used to test your\n application before deploying.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-tools-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:50+00:00", + "size":3771168, + "sha1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "name":"Google App Engine Tools SDK", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine.orm", + "artifact_id":"datanucleus-appengine", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":205574, + "sha1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":59919, + "sha1":"2190cf9ba1f1f11e0be17f3057ece52026d02291", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":8456, + "sha1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":14667, + "sha1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":620335, + "sha1":"caee7841facb9ed8797a36fac0db19311aee1476", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":230572, + "sha1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":484056, + "sha1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":680356, + "sha1":"41317de7f59b3108b7ebbfeb9fe339f95c312ec5", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":259376, + "sha1":"71306927faa8f68c7cd90d1694a21071332ff439", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":570670, + "sha1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:29:02+00:00", + "size":680516, + "sha1":"79014c55f2bdbb2ae166da37dd12fad6e72c78a2", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:02+00:00", + "size":274317, + "sha1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:01+00:00", + "size":556523, + "sha1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google", + "artifact_id":"google", + "version":"1", + "packaging":"pom", + "classifier":null, + "extension":"pom", + "last_modified":"2009-05-21T18:29:00+00:00", + "size":null, + "sha1":null, + "name":"Google", + "description":"Internally developed code released as open source.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":603159, + "sha1":"434b9a64046d7657e10dab0bdb32c65d8d1b0beb", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":96171, + "sha1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":241380, + "sha1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":111021, + "sha1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":273974, + "sha1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":693897, + "sha1":"0dfe0424e17061d2b14758d05fea2ad5b50e087a", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":121545, + "sha1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":288285, + "sha1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":"javadoc", + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":31002, + "sha1":"c02d5c91208053d57183a690d4f837f7e186119e", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":47123, + "sha1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":48963, + "sha1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/expected_artifacts-defaults.json b/minecode_pipelines/tests/data/maven/index/expected_artifacts-defaults.json new file mode 100644 index 00000000..f517f467 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/expected_artifacts-defaults.json @@ -0,0 +1,306 @@ +[ + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-api-1.0-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":5584571, + "sha1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "name":null, + "description":"APIs that App Engine provides to you to build your application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-tools-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:50+00:00", + "size":3771168, + "sha1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "name":"Google App Engine Tools SDK", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.appengine.orm", + "artifact_id":"datanucleus-appengine", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":205574, + "sha1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":8456, + "sha1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":14667, + "sha1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":230572, + "sha1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":484056, + "sha1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":259376, + "sha1":"71306927faa8f68c7cd90d1694a21071332ff439", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":570670, + "sha1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:02+00:00", + "size":274317, + "sha1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:01+00:00", + "size":556523, + "sha1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":96171, + "sha1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":241380, + "sha1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":111021, + "sha1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":273974, + "sha1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":121545, + "sha1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":288285, + "sha1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":47123, + "sha1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":48963, + "sha1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/expected_artifacts.json b/minecode_pipelines/tests/data/maven/index/expected_artifacts.json new file mode 100644 index 00000000..280987e0 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/expected_artifacts.json @@ -0,0 +1,1545 @@ +[ + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-api-1.0-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":5584571, + "sha1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "name":null, + "description":"APIs that App Engine provides to you to build your application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/apphosting/api/ApiProxy", + "/com/google/apphosting/api/DeadlineExceededException", + "/com/google/apphosting/api/ApiBasePb", + "/com/google/apphosting/api/DatastorePb", + "/com/google/apphosting/api/UserServicePb", + "/com/google/apphosting/utils/servlet/SessionCleanupServlet", + "/com/google/apphosting/utils/servlet/TransactionCleanupFilter", + "/com/google/appengine/repackaged/com/google/io/protocol/GrowableProtocolSink", + "/com/google/appengine/repackaged/com/google/io/protocol/MessageSet", + "/com/google/appengine/repackaged/com/google/io/protocol/MessageVisitor", + "/com/google/appengine/repackaged/com/google/io/protocol/Protocol", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessage", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessageEnum", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSink", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSource", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSupport", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolType", + "/com/google/appengine/repackaged/com/google/io/protocol/RawMessage", + "/com/google/appengine/repackaged/com/google/io/protocol/UninterpretedTags", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolTextParser", + "/com/google/appengine/repackaged/com/google/io/protocol/HtmlFormGenerator", + "/com/google/appengine/repackaged/com/google/io/protocol/proto/ProtocolDescriptor", + "/com/google/appengine/repackaged/com/google/io/protocol/proto/RPC_ServiceDescriptor", + "/com/google/appengine/repackaged/com/google/io/base/Buffers", + "/com/google/appengine/repackaged/com/google/io/base/FileSystem", + "/com/google/appengine/repackaged/com/google/io/base/IORuntimeException", + "/com/google/appengine/repackaged/com/google/io/base/Marshaller", + "/com/google/appengine/repackaged/com/google/io/base/PerThreadByteCounter", + "/com/google/appengine/repackaged/com/google/io/base/ServerAddress", + "/com/google/appengine/repackaged/com/google/io/base/VarInt", + "/com/google/appengine/repackaged/com/google/io/base/Marshallers", + "/com/google/appengine/repackaged/com/google/common/base/ByteArrays", + "/com/google/appengine/repackaged/com/google/common/base/CharEscaper", + "/com/google/appengine/repackaged/com/google/common/base/CharEscaperBuilder", + "/com/google/appengine/repackaged/com/google/common/base/CharEscapers", + "/com/google/appengine/repackaged/com/google/common/base/CharMatcher", + "/com/google/appengine/repackaged/com/google/common/base/CharsetCache", + "/com/google/appengine/repackaged/com/google/common/base/Charsets", + "/com/google/appengine/repackaged/com/google/common/base/Escaper", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableReference", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableReferenceQueue", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableSoftReference", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableWeakReference", + "/com/google/appengine/repackaged/com/google/common/base/Flag", + "/com/google/appengine/repackaged/com/google/common/base/Function", + "/com/google/appengine/repackaged/com/google/common/base/Hash", + "/com/google/appengine/repackaged/com/google/common/base/InterruptedRuntimeException", + "/com/google/appengine/repackaged/com/google/common/base/Join", + "/com/google/appengine/repackaged/com/google/common/base/Joiner", + "/com/google/appengine/repackaged/com/google/common/base/LogContext", + "/com/google/appengine/repackaged/com/google/common/base/Objects", + "/com/google/appengine/repackaged/com/google/common/base/Pair", + "/com/google/appengine/repackaged/com/google/common/base/PercentEscaper", + "/com/google/appengine/repackaged/com/google/common/base/Preconditions", + "/com/google/appengine/repackaged/com/google/common/base/Predicate", + "/com/google/appengine/repackaged/com/google/common/base/Predicates", + "/com/google/appengine/repackaged/com/google/common/base/Range", + "/com/google/appengine/repackaged/com/google/common/base/Receiver", + "/com/google/appengine/repackaged/com/google/common/base/ReferenceType", + "/com/google/appengine/repackaged/com/google/common/base/RotatingDateLogStream", + "/com/google/appengine/repackaged/com/google/common/base/RotatingLogStream", + "/com/google/appengine/repackaged/com/google/common/base/StringUtil", + "/com/google/appengine/repackaged/com/google/common/base/Supplier", + "/com/google/appengine/repackaged/com/google/common/base/Throwables", + "/com/google/appengine/repackaged/com/google/common/base/UnicodeEscaper", + "/com/google/appengine/repackaged/com/google/common/base/X", + "/com/google/appengine/repackaged/com/google/common/base/genfiles/ByteArray", + "/com/google/appengine/repackaged/com/google/common/base/genfiles/IntArray", + "/com/google/appengine/repackaged/com/google/common/base/internal/Finalizer", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractIterator", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMapBasedMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMapEntry", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ArrayListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/AsynchronousComputationException", + "/com/google/appengine/repackaged/com/google/common/collect/BiMap", + "/com/google/appengine/repackaged/com/google/common/collect/CancelableReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ClassToInstanceMap", + "/com/google/appengine/repackaged/com/google/common/collect/Collections2", + "/com/google/appengine/repackaged/com/google/common/collect/Comparators", + "/com/google/appengine/repackaged/com/google/common/collect/ComputationException", + "/com/google/appengine/repackaged/com/google/common/collect/ConcreteMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ConcurrentMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/Constraint", + "/com/google/appengine/repackaged/com/google/common/collect/Constraints", + "/com/google/appengine/repackaged/com/google/common/collect/CustomConcurrentHashMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumHashBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ExpirationTimer", + "/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingCollection", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingConcurrentMap", + "/com/google/appengine/repackaged/com/google/common/collect/HashBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingIterator", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingList", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingListIterator", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMapEntry", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingObject", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingQueue", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSet", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedSet", + "/com/google/appengine/repackaged/com/google/common/collect/HashBasedTable", + "/com/google/appengine/repackaged/com/google/common/collect/HashMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/HashMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/Hashing", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableCollection", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableEntry", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableList", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableSet", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableSortedSet", + "/com/google/appengine/repackaged/com/google/common/collect/Iterables", + "/com/google/appengine/repackaged/com/google/common/collect/Iterators", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/Lists", + "/com/google/appengine/repackaged/com/google/common/collect/MapConstraint", + "/com/google/appengine/repackaged/com/google/common/collect/MapConstraints", + "/com/google/appengine/repackaged/com/google/common/collect/MapDifference", + "/com/google/appengine/repackaged/com/google/common/collect/MapMaker", + "/com/google/appengine/repackaged/com/google/common/collect/Maps", + "/com/google/appengine/repackaged/com/google/common/collect/Multimap", + "/com/google/appengine/repackaged/com/google/common/collect/Multimaps", + "/com/google/appengine/repackaged/com/google/common/collect/Multiset", + "/com/google/appengine/repackaged/com/google/common/collect/Multisets", + "/com/google/appengine/repackaged/com/google/common/collect/NpeThrowingAbstractMap", + "/com/google/appengine/repackaged/com/google/common/collect/NullOutputException", + "/com/google/appengine/repackaged/com/google/common/collect/ObjectArrays", + "/com/google/appengine/repackaged/com/google/common/collect/Ordering", + "/com/google/appengine/repackaged/com/google/common/collect/PeekingIterator", + "/com/google/appengine/repackaged/com/google/common/collect/Platform", + "/com/google/appengine/repackaged/com/google/common/collect/PrefixMap", + "/com/google/appengine/repackaged/com/google/common/collect/PrefixTrie", + "/com/google/appengine/repackaged/com/google/common/collect/PrimitiveArrays", + "/com/google/appengine/repackaged/com/google/common/collect/ReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ReferenceMap", + "/com/google/appengine/repackaged/com/google/common/collect/Serialization", + "/com/google/appengine/repackaged/com/google/common/collect/SetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/Sets", + "/com/google/appengine/repackaged/com/google/common/collect/SortedArraySet", + "/com/google/appengine/repackaged/com/google/common/collect/SortedSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardRowSortedTable", + "/com/google/appengine/repackaged/com/google/common/collect/StandardSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardSortedSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardTable", + "/com/google/appengine/repackaged/com/google/common/collect/Synchronized", + "/com/google/appengine/repackaged/com/google/common/collect/Table", + "/com/google/appengine/repackaged/com/google/common/collect/Tables", + "/com/google/appengine/repackaged/com/google/common/collect/TreeBasedTable", + "/com/google/appengine/repackaged/com/google/common/collect/TreeMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/TreeMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/UncheckedThrower", + "/com/google/appengine/repackaged/com/google/common/collect/UnmodifiableIterator", + "/com/google/appengine/repackaged/com/google/common/primitives/IntQueue", + "/com/google/appengine/repackaged/com/google/common/primitives/IntStack", + "/com/google/appengine/repackaged/com/google/common/primitives/Ints", + "/com/google/appengine/repackaged/com/google/common/primitives/Longs", + "/com/google/appengine/repackaged/com/google/common/io/AppendableWriter", + "/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataInput", + "/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataOutput", + "/com/google/appengine/repackaged/com/google/common/io/ByteBuffers", + "/com/google/appengine/repackaged/com/google/common/io/Bytes", + "/com/google/appengine/repackaged/com/google/common/io/Characters", + "/com/google/appengine/repackaged/com/google/common/io/Closeables", + "/com/google/appengine/repackaged/com/google/common/io/Files", + "/com/google/appengine/repackaged/com/google/common/io/Flushables", + "/com/google/appengine/repackaged/com/google/common/io/InputSupplier", + "/com/google/appengine/repackaged/com/google/common/io/LimitInputStream", + "/com/google/appengine/repackaged/com/google/common/io/LineBuffer", + "/com/google/appengine/repackaged/com/google/common/io/LineProcessor", + "/com/google/appengine/repackaged/com/google/common/io/LineReader", + "/com/google/appengine/repackaged/com/google/common/io/MultiInputStream", + "/com/google/appengine/repackaged/com/google/common/io/MultiReader", + "/com/google/appengine/repackaged/com/google/common/io/OutputSupplier", + "/com/google/appengine/repackaged/com/google/common/util/Base64", + "/com/google/appengine/repackaged/com/google/common/util/Base64DecoderException", + "/com/google/appengine/api/NamespaceManager", + "/com/google/appengine/api/urlfetch/FetchOptions", + "/com/google/appengine/api/urlfetch/HTTPHeader", + "/com/google/appengine/api/urlfetch/HTTPMethod", + "/com/google/appengine/api/urlfetch/HTTPRequest", + "/com/google/appengine/api/urlfetch/HTTPResponse", + "/com/google/appengine/api/urlfetch/ResponseTooLargeException", + "/com/google/appengine/api/urlfetch/URLFetchService", + "/com/google/appengine/api/urlfetch/URLFetchServiceFactory", + "/com/google/appengine/api/urlfetch/URLFetchServiceImpl", + "/com/google/appengine/api/urlfetch/URLFetchServicePb", + "/com/google/appengine/api/users/User", + "/com/google/appengine/api/users/UserService", + "/com/google/appengine/api/users/UserServiceFactory", + "/com/google/appengine/api/users/UserServiceFailureException", + "/com/google/appengine/api/users/UserServiceImpl", + "/com/google/appengine/api/datastore/Blob", + "/com/google/appengine/api/datastore/DataTypeTranslator", + "/com/google/appengine/api/datastore/DataTypeUtils", + "/com/google/appengine/api/datastore/DatastoreApiHelper", + "/com/google/appengine/api/datastore/DatastoreConfig", + "/com/google/appengine/api/datastore/DatastoreFailureException", + "/com/google/appengine/api/datastore/DatastoreNeedIndexException", + "/com/google/appengine/api/datastore/DatastoreService", + "/com/google/appengine/api/datastore/DatastoreServiceFactory", + "/com/google/appengine/api/datastore/DatastoreServiceImpl", + "/com/google/appengine/api/datastore/DatastoreTimeoutException", + "/com/google/appengine/api/datastore/Entity", + "/com/google/appengine/api/datastore/EntityNotFoundException", + "/com/google/appengine/api/datastore/EntityTranslator", + "/com/google/appengine/api/datastore/FetchOptions", + "/com/google/appengine/api/datastore/ImplicitTransactionManagementPolicy", + "/com/google/appengine/api/datastore/Key", + "/com/google/appengine/api/datastore/KeyFactory", + "/com/google/appengine/api/datastore/KeyTranslator", + "/com/google/appengine/api/datastore/Link", + "/com/google/appengine/api/datastore/PreparedQuery", + "/com/google/appengine/api/datastore/Query", + "/com/google/appengine/api/datastore/QueryIterator", + "/com/google/appengine/api/datastore/QueryResultsSource", + "/com/google/appengine/api/datastore/QueryTranslator", + "/com/google/appengine/api/datastore/ShortBlob", + "/com/google/appengine/api/datastore/Text", + "/com/google/appengine/api/datastore/Transaction", + "/com/google/appengine/api/datastore/TransactionImpl", + "/com/google/appengine/api/datastore/TransactionRunner", + "/com/google/appengine/api/datastore/TransactionStack", + "/com/google/appengine/api/datastore/TransactionStackImpl", + "/com/google/appengine/api/memcache/ErrorHandler", + "/com/google/appengine/api/memcache/Expiration", + "/com/google/appengine/api/memcache/InvalidValueException", + "/com/google/appengine/api/memcache/LogAndContinueErrorHandler", + "/com/google/appengine/api/memcache/MemcacheSerialization", + "/com/google/appengine/api/memcache/MemcacheService", + "/com/google/appengine/api/memcache/MemcacheServiceException", + "/com/google/appengine/api/memcache/MemcacheServiceFactory", + "/com/google/appengine/api/memcache/MemcacheServiceImpl", + "/com/google/appengine/api/memcache/Stats", + "/com/google/appengine/api/memcache/StrictErrorHandler", + "/com/google/appengine/api/memcache/MemcacheServicePb", + "/com/google/appengine/api/memcache/stdimpl/GCache", + "/com/google/appengine/api/memcache/stdimpl/GCacheEntry", + "/com/google/appengine/api/memcache/stdimpl/GCacheException", + "/com/google/appengine/api/memcache/stdimpl/GCacheFactory", + "/com/google/appengine/api/images/Composite", + "/com/google/appengine/api/images/CompositeImpl", + "/com/google/appengine/api/images/CompositeTransform", + "/com/google/appengine/api/images/Crop", + "/com/google/appengine/api/images/HorizontalFlip", + "/com/google/appengine/api/images/ImFeelingLucky", + "/com/google/appengine/api/images/Image", + "/com/google/appengine/api/images/ImageImpl", + "/com/google/appengine/api/images/ImagesService", + "/com/google/appengine/api/images/ImagesServiceFactory", + "/com/google/appengine/api/images/ImagesServiceFailureException", + "/com/google/appengine/api/images/ImagesServiceImpl", + "/com/google/appengine/api/images/ImagesServicePb", + "/com/google/appengine/api/images/Resize", + "/com/google/appengine/api/images/Rotate", + "/com/google/appengine/api/images/Transform", + "/com/google/appengine/api/images/VerticalFlip", + "/com/google/appengine/api/mail/MailService", + "/com/google/appengine/api/mail/MailServiceFactory", + "/com/google/appengine/api/mail/MailServiceImpl", + "/com/google/appengine/api/mail/MailServicePb", + "/com/google/appengine/api/mail/stdimpl/GMTransport", + "/com/google/storage/onestore/v3/OnestoreEntity", + "/javax/mail/Address", + "/javax/mail/AuthenticationFailedException", + "/javax/mail/Authenticator", + "/javax/mail/BodyPart", + "/javax/mail/EventQueue", + "/javax/mail/FetchProfile", + "/javax/mail/Flags", + "/javax/mail/Folder", + "/javax/mail/FolderClosedException", + "/javax/mail/FolderNotFoundException", + "/javax/mail/Header", + "/javax/mail/IllegalWriteException", + "/javax/mail/Message", + "/javax/mail/MessageAware", + "/javax/mail/MessageContext", + "/javax/mail/MessageRemovedException", + "/javax/mail/MessagingException", + "/javax/mail/MethodNotSupportedException", + "/javax/mail/Multipart", + "/javax/mail/MultipartDataSource", + "/javax/mail/NoSuchProviderException", + "/javax/mail/Part", + "/javax/mail/PasswordAuthentication", + "/javax/mail/Provider", + "/javax/mail/Quota", + "/javax/mail/QuotaAwareStore", + "/javax/mail/ReadOnlyFolderException", + "/javax/mail/SendFailedException", + "/javax/mail/Service", + "/javax/mail/Session", + "/javax/mail/Store", + "/javax/mail/StoreClosedException", + "/javax/mail/Transport", + "/javax/mail/UIDFolder", + "/javax/mail/URLName", + "/javax/mail/event/ConnectionAdapter", + "/javax/mail/event/ConnectionEvent", + "/javax/mail/event/ConnectionListener", + "/javax/mail/event/FolderAdapter", + "/javax/mail/event/FolderEvent", + "/javax/mail/event/FolderListener", + "/javax/mail/event/MailEvent", + "/javax/mail/event/MessageChangedEvent", + "/javax/mail/event/MessageChangedListener", + "/javax/mail/event/MessageCountAdapter", + "/javax/mail/event/MessageCountEvent", + "/javax/mail/event/MessageCountListener", + "/javax/mail/event/StoreEvent", + "/javax/mail/event/StoreListener", + "/javax/mail/event/TransportAdapter", + "/javax/mail/event/TransportEvent", + "/javax/mail/event/TransportListener", + "/javax/mail/internet/AddressException", + "/javax/mail/internet/AddressParser", + "/javax/mail/internet/ContentCheckingOutputStream", + "/javax/mail/internet/ContentDisposition", + "/javax/mail/internet/ContentType", + "/javax/mail/internet/HeaderTokenizer", + "/javax/mail/internet/InternetAddress", + "/javax/mail/internet/InternetHeaders", + "/javax/mail/internet/MailDateFormat", + "/javax/mail/internet/MimeBodyPart", + "/javax/mail/internet/MimeMessage", + "/javax/mail/internet/MimeMultipart", + "/javax/mail/internet/MimePart", + "/javax/mail/internet/MimePartDataSource", + "/javax/mail/internet/MimeUtility", + "/javax/mail/internet/NewsAddress", + "/javax/mail/internet/ParameterList", + "/javax/mail/internet/ParseException", + "/javax/mail/internet/PreencodedMimeBodyPart", + "/javax/mail/internet/SharedInputStream", + "/javax/mail/search/AddressStringTerm", + "/javax/mail/search/AddressTerm", + "/javax/mail/search/AndTerm", + "/javax/mail/search/BodyTerm", + "/javax/mail/search/ComparisonTerm", + "/javax/mail/search/DateTerm", + "/javax/mail/search/FlagTerm", + "/javax/mail/search/FromStringTerm", + "/javax/mail/search/FromTerm", + "/javax/mail/search/HeaderTerm", + "/javax/mail/search/IntegerComparisonTerm", + "/javax/mail/search/MessageIDTerm", + "/javax/mail/search/MessageNumberTerm", + "/javax/mail/search/NotTerm", + "/javax/mail/search/OrTerm", + "/javax/mail/search/ReceivedDateTerm", + "/javax/mail/search/RecipientStringTerm", + "/javax/mail/search/RecipientTerm", + "/javax/mail/search/SearchException", + "/javax/mail/search/SearchTerm", + "/javax/mail/search/SentDateTerm", + "/javax/mail/search/SizeTerm", + "/javax/mail/search/StringTerm", + "/javax/mail/search/SubjectTerm", + "/javax/mail/util/ByteArrayDataSource", + "/javax/mail/util/SharedByteArrayInputStream", + "/javax/mail/util/SharedFileInputStream", + "/javax/activation/ActivationDataFlavor", + "/javax/activation/CommandInfo", + "/javax/activation/CommandMap", + "/javax/activation/CommandObject", + "/javax/activation/DataContentHandler", + "/javax/activation/DataContentHandlerFactory", + "/javax/activation/DataHandler", + "/javax/activation/DataSource", + "/javax/activation/FileDataSource", + "/javax/activation/FileTypeMap", + "/javax/activation/MailcapCommandMap", + "/javax/activation/MimeType", + "/javax/activation/MimeTypeParameterList", + "/javax/activation/MimeTypeParseException", + "/javax/activation/MimetypesFileTypeMap", + "/javax/activation/UnsupportedDataTypeException", + "/javax/activation/URLDataSource", + "/javax/cache/Cache", + "/javax/cache/CacheListener", + "/javax/cache/CacheEntry", + "/javax/cache/CacheStatistics", + "/javax/cache/CacheException", + "/javax/cache/CacheFactory", + "/javax/cache/CacheLoader", + "/javax/cache/CacheManager", + "/javax/cache/EvictionStrategy", + "/org/apache/geronimo/mail/handlers/HtmlHandler", + "/org/apache/geronimo/mail/handlers/MessageHandler", + "/org/apache/geronimo/mail/handlers/MultipartHandler", + "/org/apache/geronimo/mail/handlers/TextHandler", + "/org/apache/geronimo/mail/handlers/XMLHandler", + "/org/apache/geronimo/mail/util/ASCIIUtil", + "/org/apache/geronimo/mail/util/Base64", + "/org/apache/geronimo/mail/util/Base64DecoderStream", + "/org/apache/geronimo/mail/util/Base64Encoder", + "/org/apache/geronimo/mail/util/Base64EncoderStream", + "/org/apache/geronimo/mail/util/Encoder", + "/org/apache/geronimo/mail/util/Hex", + "/org/apache/geronimo/mail/util/HexEncoder", + "/org/apache/geronimo/mail/util/QuotedPrintable", + "/org/apache/geronimo/mail/util/QuotedPrintableDecoderStream", + "/org/apache/geronimo/mail/util/QuotedPrintableEncoder", + "/org/apache/geronimo/mail/util/QuotedPrintableEncoderStream", + "/org/apache/geronimo/mail/util/RFC2231Encoder", + "/org/apache/geronimo/mail/util/SessionUtil", + "/org/apache/geronimo/mail/util/StringBufferOutputStream", + "/org/apache/geronimo/mail/util/UUDecoderStream", + "/org/apache/geronimo/mail/util/UUEncode", + "/org/apache/geronimo/mail/util/UUEncoder", + "/org/apache/geronimo/mail/util/UUEncoderStream", + "/org/apache/geronimo/mail/util/XText", + "/org/apache/geronimo/mail/util/XTextEncoder" + ] + }, + { + "group_id":"com.google.appengine", + "artifact_id":"appengine-tools-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:50+00:00", + "size":3771168, + "sha1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "name":"Google App Engine Tools SDK", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/apphosting/runtime/security/WhiteList", + "/com/google/apphosting/runtime/security/preverifier/ClassSource", + "/com/google/apphosting/runtime/security/preverifier/RefVerifier", + "/com/google/apphosting/utils/security/SecurityManagerInstaller", + "/com/google/apphosting/utils/security/urlfetch/URLFetchServiceStreamHandler", + "/com/google/apphosting/utils/config/AbstractConfigXmlReader", + "/com/google/apphosting/utils/config/AppEngineConfigException", + "/com/google/apphosting/utils/config/AppEngineWebXml", + "/com/google/apphosting/utils/config/AppEngineWebXmlProcessor", + "/com/google/apphosting/utils/config/AppEngineWebXmlReader", + "/com/google/apphosting/utils/config/CronXml", + "/com/google/apphosting/utils/config/CronXmlReader", + "/com/google/apphosting/utils/config/GenerationDirectory", + "/com/google/apphosting/utils/config/IndexesXml", + "/com/google/apphosting/utils/config/IndexesXmlReader", + "/com/google/apphosting/utils/config/WebXml", + "/com/google/apphosting/utils/config/WebXmlReader", + "/com/google/apphosting/utils/glob/AbstractGlob", + "/com/google/apphosting/utils/glob/BranchGlob", + "/com/google/apphosting/utils/glob/ConflictResolver", + "/com/google/apphosting/utils/glob/Glob", + "/com/google/apphosting/utils/glob/GlobFactory", + "/com/google/apphosting/utils/glob/GlobIntersector", + "/com/google/apphosting/utils/glob/LeafGlob", + "/com/google/apphosting/utils/glob/LongestPatternConflictResolver", + "/com/google/appengine/repackaged/com/google/io/protocol/GrowableProtocolSink", + "/com/google/appengine/repackaged/com/google/io/protocol/MessageSet", + "/com/google/appengine/repackaged/com/google/io/protocol/MessageVisitor", + "/com/google/appengine/repackaged/com/google/io/protocol/Protocol", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessage", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessageEnum", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSink", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSource", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSupport", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolType", + "/com/google/appengine/repackaged/com/google/io/protocol/RawMessage", + "/com/google/appengine/repackaged/com/google/io/protocol/UninterpretedTags", + "/com/google/appengine/repackaged/com/google/io/protocol/ProtocolTextParser", + "/com/google/appengine/repackaged/com/google/io/protocol/HtmlFormGenerator", + "/com/google/appengine/repackaged/com/google/io/protocol/proto/ProtocolDescriptor", + "/com/google/appengine/repackaged/com/google/io/protocol/proto/RPC_ServiceDescriptor", + "/com/google/appengine/repackaged/com/google/io/base/Buffers", + "/com/google/appengine/repackaged/com/google/io/base/FileSystem", + "/com/google/appengine/repackaged/com/google/io/base/IORuntimeException", + "/com/google/appengine/repackaged/com/google/io/base/Marshaller", + "/com/google/appengine/repackaged/com/google/io/base/PerThreadByteCounter", + "/com/google/appengine/repackaged/com/google/io/base/ServerAddress", + "/com/google/appengine/repackaged/com/google/io/base/VarInt", + "/com/google/appengine/repackaged/com/google/io/base/Marshallers", + "/com/google/appengine/repackaged/com/google/common/base/ByteArrays", + "/com/google/appengine/repackaged/com/google/common/base/CharEscaper", + "/com/google/appengine/repackaged/com/google/common/base/CharEscaperBuilder", + "/com/google/appengine/repackaged/com/google/common/base/CharEscapers", + "/com/google/appengine/repackaged/com/google/common/base/CharMatcher", + "/com/google/appengine/repackaged/com/google/common/base/CharsetCache", + "/com/google/appengine/repackaged/com/google/common/base/Charsets", + "/com/google/appengine/repackaged/com/google/common/base/Escaper", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableReference", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableReferenceQueue", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableSoftReference", + "/com/google/appengine/repackaged/com/google/common/base/FinalizableWeakReference", + "/com/google/appengine/repackaged/com/google/common/base/Flag", + "/com/google/appengine/repackaged/com/google/common/base/Function", + "/com/google/appengine/repackaged/com/google/common/base/Hash", + "/com/google/appengine/repackaged/com/google/common/base/InterruptedRuntimeException", + "/com/google/appengine/repackaged/com/google/common/base/Join", + "/com/google/appengine/repackaged/com/google/common/base/Joiner", + "/com/google/appengine/repackaged/com/google/common/base/LogContext", + "/com/google/appengine/repackaged/com/google/common/base/Objects", + "/com/google/appengine/repackaged/com/google/common/base/Pair", + "/com/google/appengine/repackaged/com/google/common/base/PercentEscaper", + "/com/google/appengine/repackaged/com/google/common/base/Preconditions", + "/com/google/appengine/repackaged/com/google/common/base/Predicate", + "/com/google/appengine/repackaged/com/google/common/base/Predicates", + "/com/google/appengine/repackaged/com/google/common/base/Range", + "/com/google/appengine/repackaged/com/google/common/base/Receiver", + "/com/google/appengine/repackaged/com/google/common/base/ReferenceType", + "/com/google/appengine/repackaged/com/google/common/base/RotatingDateLogStream", + "/com/google/appengine/repackaged/com/google/common/base/RotatingLogStream", + "/com/google/appengine/repackaged/com/google/common/base/StringUtil", + "/com/google/appengine/repackaged/com/google/common/base/Supplier", + "/com/google/appengine/repackaged/com/google/common/base/Throwables", + "/com/google/appengine/repackaged/com/google/common/base/UnicodeEscaper", + "/com/google/appengine/repackaged/com/google/common/base/X", + "/com/google/appengine/repackaged/com/google/common/base/genfiles/ByteArray", + "/com/google/appengine/repackaged/com/google/common/base/genfiles/IntArray", + "/com/google/appengine/repackaged/com/google/common/base/internal/Finalizer", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractIterator", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMapBasedMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMapEntry", + "/com/google/appengine/repackaged/com/google/common/collect/AbstractMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ArrayListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/AsynchronousComputationException", + "/com/google/appengine/repackaged/com/google/common/collect/BiMap", + "/com/google/appengine/repackaged/com/google/common/collect/CancelableReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ClassToInstanceMap", + "/com/google/appengine/repackaged/com/google/common/collect/Collections2", + "/com/google/appengine/repackaged/com/google/common/collect/Comparators", + "/com/google/appengine/repackaged/com/google/common/collect/ComputationException", + "/com/google/appengine/repackaged/com/google/common/collect/ConcreteMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ConcurrentMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/Constraint", + "/com/google/appengine/repackaged/com/google/common/collect/Constraints", + "/com/google/appengine/repackaged/com/google/common/collect/CustomConcurrentHashMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumHashBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/EnumMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ExpirationTimer", + "/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingCollection", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingConcurrentMap", + "/com/google/appengine/repackaged/com/google/common/collect/HashBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingIterator", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingList", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingListIterator", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMapEntry", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingObject", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingQueue", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSet", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedMap", + "/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedSet", + "/com/google/appengine/repackaged/com/google/common/collect/HashBasedTable", + "/com/google/appengine/repackaged/com/google/common/collect/HashMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/HashMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/Hashing", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableCollection", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableEntry", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableList", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimapBuilder", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableSet", + "/com/google/appengine/repackaged/com/google/common/collect/ImmutableSortedSet", + "/com/google/appengine/repackaged/com/google/common/collect/Iterables", + "/com/google/appengine/repackaged/com/google/common/collect/Iterators", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/LinkedListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/ListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/Lists", + "/com/google/appengine/repackaged/com/google/common/collect/MapConstraint", + "/com/google/appengine/repackaged/com/google/common/collect/MapConstraints", + "/com/google/appengine/repackaged/com/google/common/collect/MapDifference", + "/com/google/appengine/repackaged/com/google/common/collect/MapMaker", + "/com/google/appengine/repackaged/com/google/common/collect/Maps", + "/com/google/appengine/repackaged/com/google/common/collect/Multimap", + "/com/google/appengine/repackaged/com/google/common/collect/Multimaps", + "/com/google/appengine/repackaged/com/google/common/collect/Multiset", + "/com/google/appengine/repackaged/com/google/common/collect/Multisets", + "/com/google/appengine/repackaged/com/google/common/collect/NpeThrowingAbstractMap", + "/com/google/appengine/repackaged/com/google/common/collect/NullOutputException", + "/com/google/appengine/repackaged/com/google/common/collect/ObjectArrays", + "/com/google/appengine/repackaged/com/google/common/collect/Ordering", + "/com/google/appengine/repackaged/com/google/common/collect/PeekingIterator", + "/com/google/appengine/repackaged/com/google/common/collect/Platform", + "/com/google/appengine/repackaged/com/google/common/collect/PrefixMap", + "/com/google/appengine/repackaged/com/google/common/collect/PrefixTrie", + "/com/google/appengine/repackaged/com/google/common/collect/PrimitiveArrays", + "/com/google/appengine/repackaged/com/google/common/collect/ReferenceCache", + "/com/google/appengine/repackaged/com/google/common/collect/ReferenceMap", + "/com/google/appengine/repackaged/com/google/common/collect/Serialization", + "/com/google/appengine/repackaged/com/google/common/collect/SetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/Sets", + "/com/google/appengine/repackaged/com/google/common/collect/SortedArraySet", + "/com/google/appengine/repackaged/com/google/common/collect/SortedSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardBiMap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardListMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardRowSortedTable", + "/com/google/appengine/repackaged/com/google/common/collect/StandardSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardSortedSetMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/StandardTable", + "/com/google/appengine/repackaged/com/google/common/collect/Synchronized", + "/com/google/appengine/repackaged/com/google/common/collect/Table", + "/com/google/appengine/repackaged/com/google/common/collect/Tables", + "/com/google/appengine/repackaged/com/google/common/collect/TreeBasedTable", + "/com/google/appengine/repackaged/com/google/common/collect/TreeMultimap", + "/com/google/appengine/repackaged/com/google/common/collect/TreeMultiset", + "/com/google/appengine/repackaged/com/google/common/collect/UncheckedThrower", + "/com/google/appengine/repackaged/com/google/common/collect/UnmodifiableIterator", + "/com/google/appengine/repackaged/com/google/common/primitives/IntQueue", + "/com/google/appengine/repackaged/com/google/common/primitives/IntStack", + "/com/google/appengine/repackaged/com/google/common/primitives/Ints", + "/com/google/appengine/repackaged/com/google/common/primitives/Longs", + "/com/google/appengine/repackaged/com/google/common/io/AppendableWriter", + "/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataInput", + "/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataOutput", + "/com/google/appengine/repackaged/com/google/common/io/ByteBuffers", + "/com/google/appengine/repackaged/com/google/common/io/Bytes", + "/com/google/appengine/repackaged/com/google/common/io/Characters", + "/com/google/appengine/repackaged/com/google/common/io/Closeables", + "/com/google/appengine/repackaged/com/google/common/io/Files", + "/com/google/appengine/repackaged/com/google/common/io/Flushables", + "/com/google/appengine/repackaged/com/google/common/io/InputSupplier", + "/com/google/appengine/repackaged/com/google/common/io/LimitInputStream", + "/com/google/appengine/repackaged/com/google/common/io/LineBuffer", + "/com/google/appengine/repackaged/com/google/common/io/LineProcessor", + "/com/google/appengine/repackaged/com/google/common/io/LineReader", + "/com/google/appengine/repackaged/com/google/common/io/MultiInputStream", + "/com/google/appengine/repackaged/com/google/common/io/MultiReader", + "/com/google/appengine/repackaged/com/google/common/io/OutputSupplier", + "/com/google/appengine/repackaged/com/google/common/util/Base64", + "/com/google/appengine/repackaged/com/google/common/util/Base64DecoderException", + "/com/google/appengine/tools/KickStart", + "/com/google/appengine/tools/development/DevAppServer", + "/com/google/appengine/tools/development/DevAppServerClassLoader", + "/com/google/appengine/tools/development/DevAppServerFactory", + "/com/google/appengine/tools/development/DevAppServerMain", + "/com/google/appengine/tools/development/gwt/AppEngineLauncher", + "/com/google/appengine/tools/info/LocalVersionFactory", + "/com/google/appengine/tools/info/RemoteVersionFactory", + "/com/google/appengine/tools/info/SdkImplInfo", + "/com/google/appengine/tools/info/SdkInfo", + "/com/google/appengine/tools/info/SupportInfo", + "/com/google/appengine/tools/info/UpdateCheck", + "/com/google/appengine/tools/info/UpdateCheckResults", + "/com/google/appengine/tools/info/Version", + "/com/google/appengine/tools/util/Action", + "/com/google/appengine/tools/util/ApiVersionFinder", + "/com/google/appengine/tools/util/FileIterator", + "/com/google/appengine/tools/util/JarSplitter", + "/com/google/appengine/tools/util/Option", + "/com/google/appengine/tools/util/Parser", + "/com/google/appengine/tools/util/Logging", + "/com/google/appengine/tools/util/ClientCookie", + "/com/google/appengine/tools/util/ClientCookieManager", + "/com/google/appengine/tools/util/HttpHeaderParseException", + "/com/google/appengine/tools/util/HttpHeaderParser", + "/com/google/appengine/tools/admin/AdminException", + "/com/google/appengine/tools/admin/AppAdmin", + "/com/google/appengine/tools/admin/AppAdminFactory", + "/com/google/appengine/tools/admin/AppAdminImpl", + "/com/google/appengine/tools/admin/AppCfg", + "/com/google/appengine/tools/admin/AppVersionUpload", + "/com/google/appengine/tools/admin/AppYamlTranslator", + "/com/google/appengine/tools/admin/Application", + "/com/google/appengine/tools/admin/LogFetcher", + "/com/google/appengine/tools/admin/MappedFile", + "/com/google/appengine/tools/admin/MappedFileIterator", + "/com/google/appengine/tools/admin/OutputPump", + "/com/google/appengine/tools/admin/ServerConnection", + "/com/google/appengine/tools/admin/UpdateFailureEvent", + "/com/google/appengine/tools/admin/UpdateListener", + "/com/google/appengine/tools/admin/UpdateProgressEvent", + "/com/google/appengine/tools/admin/UpdateSuccessEvent", + "/com/google/appengine/tools/admin/Utility", + "/com/google/appengine/tools/enhancer/Enhance", + "/com/google/appengine/tools/enhancer/Enhancer", + "/com/google/appengine/tools/enhancer/EnhancerLoader", + "/com/google/appengine/tools/enhancer/EnhancerTask", + "/org/mortbay/log/Slf4jLog", + "/org/mortbay/log/Logger", + "/org/mortbay/log/Log", + "/org/mortbay/log/StdErrLog", + "/org/mortbay/util/DateCache", + "/org/mortbay/util/ByteArrayOutputStream2", + "/org/mortbay/util/MultiMap", + "/org/mortbay/util/LazyList", + "/org/mortbay/util/Loader", + "/org/mortbay/util/RolloverFileOutputStream", + "/org/mortbay/util/StringMap", + "/org/mortbay/util/StringUtil", + "/org/mortbay/util/IO", + "/org/mortbay/util/ByteArrayISO8859Writer", + "/org/mortbay/util/Utf8StringBuffer", + "/org/mortbay/util/IntrospectionUtil", + "/org/mortbay/util/MultiException", + "/org/mortbay/util/MultiPartWriter", + "/org/mortbay/util/TypeUtil", + "/org/mortbay/util/MultiPartOutputStream", + "/org/mortbay/util/AttributesMap", + "/org/mortbay/util/Attributes", + "/org/mortbay/util/QuotedStringTokenizer", + "/org/mortbay/util/UrlEncoded", + "/org/mortbay/util/Scanner", + "/org/mortbay/util/URIUtil", + "/org/mortbay/util/SingletonList", + "/org/mortbay/util/ajax/Continuation", + "/org/mortbay/util/ajax/ContinuationSupport", + "/org/mortbay/util/ajax/AjaxFilter", + "/org/mortbay/util/ajax/JSON", + "/org/mortbay/util/ajax/WaitingContinuation", + "/org/mortbay/jetty/MimeTypes", + "/org/mortbay/io/BufferCache", + "/org/mortbay/io/Connection", + "/org/mortbay/io/EndPoint", + "/org/mortbay/io/Buffer", + "/org/mortbay/io/Buffers", + "/org/mortbay/io/ByteArrayBuffer", + "/org/mortbay/io/AbstractBuffer", + "/org/mortbay/io/View", + "/org/mortbay/io/BufferDateCache", + "/org/mortbay/io/ByteArrayEndPoint", + "/org/mortbay/io/SimpleBuffers", + "/org/mortbay/io/BufferUtil", + "/org/mortbay/io/Portable", + "/org/mortbay/io/WriterOutputStream", + "/org/mortbay/io/bio/SocketEndPoint", + "/org/mortbay/io/bio/StreamEndPoint", + "/org/mortbay/io/bio/StringEndPoint", + "/org/mortbay/io/nio/ChannelEndPoint", + "/org/mortbay/io/nio/SelectorManager", + "/org/mortbay/io/nio/SelectChannelEndPoint", + "/org/mortbay/io/nio/NIOBuffer", + "/org/mortbay/xml/XmlParser", + "/org/mortbay/xml/XmlConfiguration" + ] + }, + { + "group_id":"com.google.appengine.orm", + "artifact_id":"datanucleus-appengine", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":205574, + "sha1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/org/datanucleus/store/appengine/ConcurrentHashMapHelper", + "/org/datanucleus/store/appengine/DatastoreAbstractArrayStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreAbstractCollectionStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreAbstractListStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreAbstractSetStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreAdapter", + "/org/datanucleus/store/appengine/DatastoreConnectionFactoryImpl", + "/org/datanucleus/store/appengine/DatastoreElementContainerStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreExceptionTranslator", + "/org/datanucleus/store/appengine/DatastoreExtent", + "/org/datanucleus/store/appengine/DatastoreFKArrayStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreFKListStoreSpecialization", + "/org/datanucleus/store/appengine/DatastoreFKMapping", + "/org/datanucleus/store/appengine/DatastoreFKSetStore", + "/org/datanucleus/store/appengine/DatastoreFieldManager", + "/org/datanucleus/store/appengine/DatastoreKind", + "/org/datanucleus/store/appengine/DatastoreManager", + "/org/datanucleus/store/appengine/DatastoreMappingManager", + "/org/datanucleus/store/appengine/DatastorePersistenceHandler", + "/org/datanucleus/store/appengine/DatastoreProperty", + "/org/datanucleus/store/appengine/DatastoreQueryExpression", + "/org/datanucleus/store/appengine/DatastoreRelationFieldManager", + "/org/datanucleus/store/appengine/DatastoreServiceFactoryInternal", + "/org/datanucleus/store/appengine/DatastoreTable", + "/org/datanucleus/store/appengine/DatastoreTransaction", + "/org/datanucleus/store/appengine/DatastoreUnionIteratorStatement", + "/org/datanucleus/store/appengine/DatastoreXAResource", + "/org/datanucleus/store/appengine/DependentDeleteRequest", + "/org/datanucleus/store/appengine/EmulatedXAResource", + "/org/datanucleus/store/appengine/EntityUtils", + "/org/datanucleus/store/appengine/FetchMappingConsumer", + "/org/datanucleus/store/appengine/InsertMappingConsumer", + "/org/datanucleus/store/appengine/Ints", + "/org/datanucleus/store/appengine/KeyMapping", + "/org/datanucleus/store/appengine/KeyRegistry", + "/org/datanucleus/store/appengine/Longs", + "/org/datanucleus/store/appengine/MetaDataValidator", + "/org/datanucleus/store/appengine/PrimitiveArrays", + "/org/datanucleus/store/appengine/PrimitiveUtils", + "/org/datanucleus/store/appengine/RuntimeExceptionWrappingDatastoreService", + "/org/datanucleus/store/appengine/SerializationManager", + "/org/datanucleus/store/appengine/SerializationStrategy", + "/org/datanucleus/store/appengine/TypeConversionUtils", + "/org/datanucleus/store/appengine/Utils", + "/org/datanucleus/store/appengine/jdo/DatastoreJDOPersistenceManager", + "/org/datanucleus/store/appengine/jdo/DatastoreJDOPersistenceManagerFactory", + "/org/datanucleus/store/appengine/jpa/DatastoreEntityManager", + "/org/datanucleus/store/appengine/jpa/DatastoreEntityManagerFactory", + "/org/datanucleus/store/appengine/jpa/DatastorePersistenceProvider", + "/org/datanucleus/store/appengine/query/DatastoreQuery", + "/org/datanucleus/store/appengine/query/JDOQLQuery", + "/org/datanucleus/store/appengine/query/JPQLQuery", + "/org/datanucleus/store/appengine/query/RuntimeExceptionWrappingIterable", + "/org/datanucleus/store/appengine/query/RuntimeExceptionWrappingIterator", + "/org/datanucleus/store/appengine/query/StreamingQueryResult" + ] + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":8456, + "sha1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":14667, + "sha1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/classpath/ClassPath", + "/com/google/classpath/ClassPathFactory", + "/com/google/classpath/CompositeClassPath", + "/com/google/classpath/DirectoryClassPath", + "/com/google/classpath/JARClassPath", + "/com/google/classpath/RegExpResourceFilter", + "/com/google/classpath/ResourceFilter", + "/com/google/classpath/ResourceFinder" + ] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":230572, + "sha1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":484056, + "sha1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/common/collect/ImmutableMultiset", + "/com/google/common/collect/ImmutableCollection", + "/com/google/common/collect/Multiset", + "/com/google/common/collect/Iterables", + "/com/google/common/collect/ImmutableSet", + "/com/google/common/collect/ImmutableMap", + "/com/google/common/collect/ForwardingIterator", + "/com/google/common/collect/ForwardingObject", + "/com/google/common/collect/ForwardingMultiset", + "/com/google/common/collect/ForwardingCollection", + "/com/google/common/collect/ImmutableBiMap", + "/com/google/common/collect/BiMap", + "/com/google/common/collect/MapConstraints", + "/com/google/common/collect/Maps", + "/com/google/common/collect/HashBiMap", + "/com/google/common/collect/StandardBiMap", + "/com/google/common/collect/ForwardingMap", + "/com/google/common/collect/EnumHashBiMap", + "/com/google/common/collect/EnumBiMap", + "/com/google/common/collect/ClassToInstanceMap", + "/com/google/common/collect/MapConstraint", + "/com/google/common/collect/Multimap", + "/com/google/common/collect/ListMultimap", + "/com/google/common/collect/SetMultimap", + "/com/google/common/collect/SortedSetMultimap", + "/com/google/common/collect/AbstractMapEntry", + "/com/google/common/collect/TreeMultimap", + "/com/google/common/collect/StandardSortedSetMultimap", + "/com/google/common/collect/StandardSetMultimap", + "/com/google/common/collect/StandardMultimap", + "/com/google/common/collect/AbstractIterator", + "/com/google/common/collect/Collections2", + "/com/google/common/collect/Sets", + "/com/google/common/collect/PeekingIterator", + "/com/google/common/collect/ForwardingSet", + "/com/google/common/collect/Constraints", + "/com/google/common/collect/Constraint", + "/com/google/common/collect/ForwardingSortedSet", + "/com/google/common/collect/ForwardingList", + "/com/google/common/collect/ForwardingListIterator", + "/com/google/common/collect/TreeMultiset", + "/com/google/common/collect/AbstractMapBasedMultiset", + "/com/google/common/collect/AbstractMultiset", + "/com/google/common/collect/ImmutableSortedSet", + "/com/google/common/collect/Ordering", + "/com/google/common/collect/AbstractMultisetEntry", + "/com/google/common/collect/StandardListMultimap", + "/com/google/common/collect/Multisets", + "/com/google/common/collect/HashMultiset", + "/com/google/common/collect/EnumMultiset", + "/com/google/common/collect/UnmodifiableIterator", + "/com/google/common/collect/NpeThrowingAbstractMap", + "/com/google/common/collect/LinkedHashMultiset", + "/com/google/common/collect/ArrayListMultimap", + "/com/google/common/collect/Iterators", + "/com/google/common/collect/ForwardingMultimap", + "/com/google/common/collect/ReferenceMap", + "/com/google/common/collect/AbstractRemovableIterator", + "/com/google/common/collect/ObjectArrays", + "/com/google/common/collect/ForwardingSortedMap", + "/com/google/common/collect/ImmutableList", + "/com/google/common/collect/PrimitiveArrays", + "/com/google/common/collect/LinkedHashMultimap", + "/com/google/common/collect/ForwardingQueue", + "/com/google/common/collect/ForwardingMapEntry", + "/com/google/common/collect/Synchronized", + "/com/google/common/collect/ImmutableMultimap", + "/com/google/common/collect/Comparators", + "/com/google/common/collect/Lists", + "/com/google/common/collect/ConcurrentMultiset", + "/com/google/common/collect/AbstractIterable", + "/com/google/common/collect/Multimaps", + "/com/google/common/collect/HashMultimap", + "/com/google/common/collect/Serialization", + "/com/google/common/collect/ForwardingConcurrentMap", + "/com/google/common/collect/Hashing", + "/com/google/common/base/Preconditions", + "/com/google/common/base/Predicate", + "/com/google/common/base/Function", + "/com/google/common/base/FinalizableReferenceQueue", + "/com/google/common/base/FinalizableReference", + "/com/google/common/base/Supplier", + "/com/google/common/base/ReferenceType", + "/com/google/common/base/FinalizableWeakReference", + "/com/google/common/base/FinalizablePhantomReference", + "/com/google/common/base/Predicates", + "/com/google/common/base/Objects", + "/com/google/common/base/FinalizableSoftReference", + "/com/google/common/base/Nullable", + "/com/google/common/base/Suppliers", + "/com/google/common/base/Join", + "/com/google/common/base/Functions" + ] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":259376, + "sha1":"71306927faa8f68c7cd90d1694a21071332ff439", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":570670, + "sha1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/common/base/Preconditions", + "/com/google/common/base/Predicate", + "/com/google/common/base/Function", + "/com/google/common/base/Functions", + "/com/google/common/base/Join", + "/com/google/common/base/Suppliers", + "/com/google/common/base/Supplier", + "/com/google/common/base/Nullable", + "/com/google/common/base/FinalizableSoftReference", + "/com/google/common/base/FinalizableReference", + "/com/google/common/base/FinalizableReferenceQueue", + "/com/google/common/base/Predicates", + "/com/google/common/base/FinalizablePhantomReference", + "/com/google/common/base/FinalizableWeakReference", + "/com/google/common/base/internal/Finalizer", + "/com/google/common/base/Objects", + "/com/google/common/collect/ForwardingObject", + "/com/google/common/collect/BiMap", + "/com/google/common/collect/MapConstraint", + "/com/google/common/collect/AbstractMultiset", + "/com/google/common/collect/Multiset", + "/com/google/common/collect/Hashing", + "/com/google/common/collect/Serialization", + "/com/google/common/collect/Multimap", + "/com/google/common/collect/Collections2", + "/com/google/common/collect/ListMultimap", + "/com/google/common/collect/UnmodifiableIterator", + "/com/google/common/collect/SetMultimap", + "/com/google/common/collect/SortedSetMultimap", + "/com/google/common/collect/ForwardingMultimap", + "/com/google/common/collect/AbstractMapEntry", + "/com/google/common/collect/ObjectArrays", + "/com/google/common/collect/Platform", + "/com/google/common/collect/ComputationException", + "/com/google/common/collect/ExpirationTimer", + "/com/google/common/collect/Iterables", + "/com/google/common/collect/PeekingIterator", + "/com/google/common/collect/ForwardingIterator", + "/com/google/common/collect/Ordering", + "/com/google/common/collect/AbstractIterator", + "/com/google/common/collect/ClassToInstanceMap", + "/com/google/common/collect/Lists", + "/com/google/common/collect/Constraint", + "/com/google/common/collect/ForwardingListIterator", + "/com/google/common/collect/ConcurrentMultiset", + "/com/google/common/collect/NullOutputException", + "/com/google/common/collect/Iterators", + "/com/google/common/collect/ForwardingMapEntry", + "/com/google/common/collect/AsynchronousComputationException", + "/com/google/common/collect/MapMaker", + "/com/google/common/collect/ImmutableEntry", + "/com/google/common/collect/ForwardingQueue", + "/com/google/common/collect/ForwardingCollection", + "/com/google/common/collect/EnumBiMap", + "/com/google/common/collect/StandardBiMap", + "/com/google/common/collect/ForwardingMap", + "/com/google/common/collect/TreeMultiset", + "/com/google/common/collect/AbstractMapBasedMultiset", + "/com/google/common/collect/ForwardingSet", + "/com/google/common/collect/ForwardingMultiset", + "/com/google/common/collect/ForwardingList", + "/com/google/common/collect/NpeThrowingAbstractMap", + "/com/google/common/collect/LinkedListMultimap", + "/com/google/common/collect/Multisets", + "/com/google/common/collect/ImmutableCollection", + "/com/google/common/collect/MapConstraints", + "/com/google/common/collect/CustomConcurrentHashMap", + "/com/google/common/collect/ImmutableMultiset", + "/com/google/common/collect/ImmutableSet", + "/com/google/common/collect/ImmutableMap", + "/com/google/common/collect/ImmutableList", + "/com/google/common/collect/Sets", + "/com/google/common/collect/StandardListMultimap", + "/com/google/common/collect/StandardMultimap", + "/com/google/common/collect/ForwardingSortedMap", + "/com/google/common/collect/ForwardingSortedSet", + "/com/google/common/collect/Synchronized", + "/com/google/common/collect/HashBiMap", + "/com/google/common/collect/ImmutableBiMap", + "/com/google/common/collect/EnumHashBiMap", + "/com/google/common/collect/EnumMultiset", + "/com/google/common/collect/StandardSortedSetMultimap", + "/com/google/common/collect/StandardSetMultimap", + "/com/google/common/collect/ForwardingConcurrentMap", + "/com/google/common/collect/Maps", + "/com/google/common/collect/ImmutableSortedSet", + "/com/google/common/collect/ImmutableMultimap", + "/com/google/common/collect/Multimaps", + "/com/google/common/collect/HashMultimap", + "/com/google/common/collect/ArrayListMultimap", + "/com/google/common/collect/LinkedHashMultimap", + "/com/google/common/collect/TreeMultimap", + "/com/google/common/collect/HashMultiset", + "/com/google/common/collect/LinkedHashMultiset", + "/com/google/common/collect/Constraints" + ] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:02+00:00", + "size":274317, + "sha1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:01+00:00", + "size":556523, + "sha1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/common/collect/package-info", + "/com/google/common/collect/ForwardingObject", + "/com/google/common/collect/ForwardingMap", + "/com/google/common/collect/BiMap", + "/com/google/common/collect/MapConstraint", + "/com/google/common/collect/AbstractMultiset", + "/com/google/common/collect/Multiset", + "/com/google/common/collect/Hashing", + "/com/google/common/collect/Serialization", + "/com/google/common/collect/Multimap", + "/com/google/common/collect/Collections2", + "/com/google/common/collect/ListMultimap", + "/com/google/common/collect/ClassToInstanceMap", + "/com/google/common/collect/ImmutableClassToInstanceMap", + "/com/google/common/collect/Iterables", + "/com/google/common/collect/ImmutableMap", + "/com/google/common/collect/UnmodifiableIterator", + "/com/google/common/collect/AbstractMapEntry", + "/com/google/common/collect/ObjectArrays", + "/com/google/common/collect/Platform", + "/com/google/common/collect/ComputationException", + "/com/google/common/collect/ExpirationTimer", + "/com/google/common/collect/PeekingIterator", + "/com/google/common/collect/Sets", + "/com/google/common/collect/ForwardingSortedMap", + "/com/google/common/collect/SetMultimap", + "/com/google/common/collect/SortedSetMultimap", + "/com/google/common/collect/ForwardingIterator", + "/com/google/common/collect/Ordering", + "/com/google/common/collect/ImmutableBiMap", + "/com/google/common/collect/AbstractIterator", + "/com/google/common/collect/ForwardingConcurrentMap", + "/com/google/common/collect/ForwardingMultimap", + "/com/google/common/collect/MapDifference", + "/com/google/common/collect/Lists", + "/com/google/common/collect/ForwardingListIterator", + "/com/google/common/collect/NullOutputException", + "/com/google/common/collect/Iterators", + "/com/google/common/collect/ForwardingMapEntry", + "/com/google/common/collect/AsynchronousComputationException", + "/com/google/common/collect/MapMaker", + "/com/google/common/collect/ImmutableEntry", + "/com/google/common/collect/ForwardingQueue", + "/com/google/common/collect/ForwardingCollection", + "/com/google/common/collect/EnumBiMap", + "/com/google/common/collect/StandardBiMap", + "/com/google/common/collect/TreeMultiset", + "/com/google/common/collect/Multisets", + "/com/google/common/collect/AbstractMapBasedMultiset", + "/com/google/common/collect/ForwardingSet", + "/com/google/common/collect/ForwardingMultiset", + "/com/google/common/collect/ForwardingList", + "/com/google/common/collect/LinkedListMultimap", + "/com/google/common/collect/MapConstraints", + "/com/google/common/collect/MutableClassToInstanceMap", + "/com/google/common/collect/ImmutableSet", + "/com/google/common/collect/ImmutableCollection", + "/com/google/common/collect/RegularImmutableMap", + "/com/google/common/collect/CustomConcurrentHashMap", + "/com/google/common/collect/SingletonImmutableSet", + "/com/google/common/collect/ImmutableMultiset", + "/com/google/common/collect/ImmutableList", + "/com/google/common/collect/StandardListMultimap", + "/com/google/common/collect/StandardMultimap", + "/com/google/common/collect/ForwardingSortedSet", + "/com/google/common/collect/Synchronized", + "/com/google/common/collect/RegularImmutableList", + "/com/google/common/collect/HashBiMap", + "/com/google/common/collect/EnumHashBiMap", + "/com/google/common/collect/EnumMultiset", + "/com/google/common/collect/StandardSortedSetMultimap", + "/com/google/common/collect/StandardSetMultimap", + "/com/google/common/collect/AbstractImmutableMultimap", + "/com/google/common/collect/RegularImmutableSet", + "/com/google/common/collect/Maps", + "/com/google/common/collect/ImmutableSortedSet", + "/com/google/common/collect/ImmutableMultimap", + "/com/google/common/collect/Multimaps", + "/com/google/common/collect/HashMultimap", + "/com/google/common/collect/HashMultiset", + "/com/google/common/collect/LinkedHashMultimap", + "/com/google/common/collect/ConcurrentHashMultiset", + "/com/google/common/collect/TreeMultimap", + "/com/google/common/collect/LinkedHashMultiset", + "/com/google/common/collect/ImmutableSetMultimap", + "/com/google/common/collect/ArrayListMultimap", + "/com/google/common/collect/SingletonImmutableMap", + "/com/google/common/annotations/GwtCompatible", + "/com/google/common/annotations/VisibleForTesting", + "/com/google/common/annotations/GwtIncompatible", + "/com/google/common/base/Preconditions", + "/com/google/common/base/Predicate", + "/com/google/common/base/Function", + "/com/google/common/base/Joiner", + "/com/google/common/base/Platform", + "/com/google/common/base/Functions", + "/com/google/common/base/Suppliers", + "/com/google/common/base/Supplier", + "/com/google/common/base/FinalizableSoftReference", + "/com/google/common/base/FinalizableReference", + "/com/google/common/base/FinalizableReferenceQueue", + "/com/google/common/base/Predicates", + "/com/google/common/base/FinalizablePhantomReference", + "/com/google/common/base/FinalizableWeakReference", + "/com/google/common/base/internal/Finalizer", + "/com/google/common/base/Objects" + ] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":96171, + "sha1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":241380, + "sha1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/protobuf/RpcUtil", + "/com/google/protobuf/Message", + "/com/google/protobuf/RpcCallback", + "/com/google/protobuf/Descriptors", + "/com/google/protobuf/UnknownFieldSet", + "/com/google/protobuf/CodedOutputStream", + "/com/google/protobuf/ByteString", + "/com/google/protobuf/AbstractMessage", + "/com/google/protobuf/CodedInputStream", + "/com/google/protobuf/InvalidProtocolBufferException", + "/com/google/protobuf/ExtensionRegistry", + "/com/google/protobuf/FieldSet", + "/com/google/protobuf/RpcChannel", + "/com/google/protobuf/RpcController", + "/com/google/protobuf/WireFormat", + "/com/google/protobuf/DynamicMessage", + "/com/google/protobuf/UninitializedMessageException", + "/com/google/protobuf/Service", + "/com/google/protobuf/TextFormat", + "/com/google/protobuf/DescriptorProtos", + "/com/google/protobuf/GeneratedMessage" + ] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":111021, + "sha1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":273974, + "sha1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/protobuf/AbstractMessage", + "/com/google/protobuf/ByteString", + "/com/google/protobuf/CodedInputStream", + "/com/google/protobuf/CodedOutputStream", + "/com/google/protobuf/DescriptorProtos", + "/com/google/protobuf/Descriptors", + "/com/google/protobuf/DynamicMessage", + "/com/google/protobuf/ExtensionRegistry", + "/com/google/protobuf/FieldSet", + "/com/google/protobuf/GeneratedMessage", + "/com/google/protobuf/InvalidProtocolBufferException", + "/com/google/protobuf/Message", + "/com/google/protobuf/RpcCallback", + "/com/google/protobuf/RpcChannel", + "/com/google/protobuf/RpcController", + "/com/google/protobuf/RpcUtil", + "/com/google/protobuf/Service", + "/com/google/protobuf/TextFormat", + "/com/google/protobuf/UninitializedMessageException", + "/com/google/protobuf/UnknownFieldSet", + "/com/google/protobuf/WireFormat" + ] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":121545, + "sha1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":288285, + "sha1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/protobuf/AbstractMessage", + "/com/google/protobuf/BlockingRpcChannel", + "/com/google/protobuf/BlockingService", + "/com/google/protobuf/ByteString", + "/com/google/protobuf/CodedInputStream", + "/com/google/protobuf/CodedOutputStream", + "/com/google/protobuf/DescriptorProtos", + "/com/google/protobuf/Descriptors", + "/com/google/protobuf/DynamicMessage", + "/com/google/protobuf/ExtensionRegistry", + "/com/google/protobuf/FieldSet", + "/com/google/protobuf/GeneratedMessage", + "/com/google/protobuf/InvalidProtocolBufferException", + "/com/google/protobuf/Message", + "/com/google/protobuf/ProtocolMessageEnum", + "/com/google/protobuf/RpcCallback", + "/com/google/protobuf/RpcChannel", + "/com/google/protobuf/RpcController", + "/com/google/protobuf/RpcUtil", + "/com/google/protobuf/Service", + "/com/google/protobuf/ServiceException", + "/com/google/protobuf/TextFormat", + "/com/google/protobuf/UninitializedMessageException", + "/com/google/protobuf/UnknownFieldSet", + "/com/google/protobuf/WireFormat" + ] + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":47123, + "sha1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":48963, + "sha1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[ + "/com/google/code/sgnodemapper/ClassUtils", + "/com/google/code/sgnodemapper/FileUtils", + "/com/google/code/sgnodemapper/NodeMapper" + ] + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/expected_entries.json b/minecode_pipelines/tests/data/maven/index/expected_entries.json new file mode 100644 index 00000000..7bee81e4 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/expected_entries.json @@ -0,0 +1,264 @@ +[ + { + "u":"com.google.appengine|appengine|1.2.0|NA", + "m":"1242931406866", + "i":"pom|1242930538000|-1|0|0|0|pom", + "n":"Google App Engine" + }, + { + "u":"com.google.appengine|appengine-api-1.0-sdk|1.2.0|NA", + "m":"1242931406870", + "i":"jar|1242930539000|5584571|0|0|0|jar", + "d":"APIs that App Engine provides to you to build your application.", + "1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "c":"/com/google/apphosting/api/ApiProxy\n/com/google/apphosting/api/DeadlineExceededException\n/com/google/apphosting/api/ApiBasePb\n/com/google/apphosting/api/DatastorePb\n/com/google/apphosting/api/UserServicePb\n/com/google/apphosting/utils/servlet/SessionCleanupServlet\n/com/google/apphosting/utils/servlet/TransactionCleanupFilter\n/com/google/appengine/repackaged/com/google/io/protocol/GrowableProtocolSink\n/com/google/appengine/repackaged/com/google/io/protocol/MessageSet\n/com/google/appengine/repackaged/com/google/io/protocol/MessageVisitor\n/com/google/appengine/repackaged/com/google/io/protocol/Protocol\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessage\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessageEnum\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSink\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSource\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSupport\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolType\n/com/google/appengine/repackaged/com/google/io/protocol/RawMessage\n/com/google/appengine/repackaged/com/google/io/protocol/UninterpretedTags\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolTextParser\n/com/google/appengine/repackaged/com/google/io/protocol/HtmlFormGenerator\n/com/google/appengine/repackaged/com/google/io/protocol/proto/ProtocolDescriptor\n/com/google/appengine/repackaged/com/google/io/protocol/proto/RPC_ServiceDescriptor\n/com/google/appengine/repackaged/com/google/io/base/Buffers\n/com/google/appengine/repackaged/com/google/io/base/FileSystem\n/com/google/appengine/repackaged/com/google/io/base/IORuntimeException\n/com/google/appengine/repackaged/com/google/io/base/Marshaller\n/com/google/appengine/repackaged/com/google/io/base/PerThreadByteCounter\n/com/google/appengine/repackaged/com/google/io/base/ServerAddress\n/com/google/appengine/repackaged/com/google/io/base/VarInt\n/com/google/appengine/repackaged/com/google/io/base/Marshallers\n/com/google/appengine/repackaged/com/google/common/base/ByteArrays\n/com/google/appengine/repackaged/com/google/common/base/CharEscaper\n/com/google/appengine/repackaged/com/google/common/base/CharEscaperBuilder\n/com/google/appengine/repackaged/com/google/common/base/CharEscapers\n/com/google/appengine/repackaged/com/google/common/base/CharMatcher\n/com/google/appengine/repackaged/com/google/common/base/CharsetCache\n/com/google/appengine/repackaged/com/google/common/base/Charsets\n/com/google/appengine/repackaged/com/google/common/base/Escaper\n/com/google/appengine/repackaged/com/google/common/base/FinalizableReference\n/com/google/appengine/repackaged/com/google/common/base/FinalizableReferenceQueue\n/com/google/appengine/repackaged/com/google/common/base/FinalizableSoftReference\n/com/google/appengine/repackaged/com/google/common/base/FinalizableWeakReference\n/com/google/appengine/repackaged/com/google/common/base/Flag\n/com/google/appengine/repackaged/com/google/common/base/Function\n/com/google/appengine/repackaged/com/google/common/base/Hash\n/com/google/appengine/repackaged/com/google/common/base/InterruptedRuntimeException\n/com/google/appengine/repackaged/com/google/common/base/Join\n/com/google/appengine/repackaged/com/google/common/base/Joiner\n/com/google/appengine/repackaged/com/google/common/base/LogContext\n/com/google/appengine/repackaged/com/google/common/base/Objects\n/com/google/appengine/repackaged/com/google/common/base/Pair\n/com/google/appengine/repackaged/com/google/common/base/PercentEscaper\n/com/google/appengine/repackaged/com/google/common/base/Preconditions\n/com/google/appengine/repackaged/com/google/common/base/Predicate\n/com/google/appengine/repackaged/com/google/common/base/Predicates\n/com/google/appengine/repackaged/com/google/common/base/Range\n/com/google/appengine/repackaged/com/google/common/base/Receiver\n/com/google/appengine/repackaged/com/google/common/base/ReferenceType\n/com/google/appengine/repackaged/com/google/common/base/RotatingDateLogStream\n/com/google/appengine/repackaged/com/google/common/base/RotatingLogStream\n/com/google/appengine/repackaged/com/google/common/base/StringUtil\n/com/google/appengine/repackaged/com/google/common/base/Supplier\n/com/google/appengine/repackaged/com/google/common/base/Throwables\n/com/google/appengine/repackaged/com/google/common/base/UnicodeEscaper\n/com/google/appengine/repackaged/com/google/common/base/X\n/com/google/appengine/repackaged/com/google/common/base/genfiles/ByteArray\n/com/google/appengine/repackaged/com/google/common/base/genfiles/IntArray\n/com/google/appengine/repackaged/com/google/common/base/internal/Finalizer\n/com/google/appengine/repackaged/com/google/common/collect/AbstractIterator\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMapBasedMultiset\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMapEntry\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ArrayListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/AsynchronousComputationException\n/com/google/appengine/repackaged/com/google/common/collect/BiMap\n/com/google/appengine/repackaged/com/google/common/collect/CancelableReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ClassToInstanceMap\n/com/google/appengine/repackaged/com/google/common/collect/Collections2\n/com/google/appengine/repackaged/com/google/common/collect/Comparators\n/com/google/appengine/repackaged/com/google/common/collect/ComputationException\n/com/google/appengine/repackaged/com/google/common/collect/ConcreteMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ConcurrentMultiset\n/com/google/appengine/repackaged/com/google/common/collect/Constraint\n/com/google/appengine/repackaged/com/google/common/collect/Constraints\n/com/google/appengine/repackaged/com/google/common/collect/CustomConcurrentHashMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumBiMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumHashBiMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ExpirationTimer\n/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingCollection\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingConcurrentMap\n/com/google/appengine/repackaged/com/google/common/collect/HashBiMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingIterator\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingList\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingListIterator\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMapEntry\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingObject\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingQueue\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSet\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedSet\n/com/google/appengine/repackaged/com/google/common/collect/HashBasedTable\n/com/google/appengine/repackaged/com/google/common/collect/HashMultimap\n/com/google/appengine/repackaged/com/google/common/collect/HashMultiset\n/com/google/appengine/repackaged/com/google/common/collect/Hashing\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableCollection\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableEntry\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableList\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableSet\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableSortedSet\n/com/google/appengine/repackaged/com/google/common/collect/Iterables\n/com/google/appengine/repackaged/com/google/common/collect/Iterators\n/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultimap\n/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultiset\n/com/google/appengine/repackaged/com/google/common/collect/LinkedListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/Lists\n/com/google/appengine/repackaged/com/google/common/collect/MapConstraint\n/com/google/appengine/repackaged/com/google/common/collect/MapConstraints\n/com/google/appengine/repackaged/com/google/common/collect/MapDifference\n/com/google/appengine/repackaged/com/google/common/collect/MapMaker\n/com/google/appengine/repackaged/com/google/common/collect/Maps\n/com/google/appengine/repackaged/com/google/common/collect/Multimap\n/com/google/appengine/repackaged/com/google/common/collect/Multimaps\n/com/google/appengine/repackaged/com/google/common/collect/Multiset\n/com/google/appengine/repackaged/com/google/common/collect/Multisets\n/com/google/appengine/repackaged/com/google/common/collect/NpeThrowingAbstractMap\n/com/google/appengine/repackaged/com/google/common/collect/NullOutputException\n/com/google/appengine/repackaged/com/google/common/collect/ObjectArrays\n/com/google/appengine/repackaged/com/google/common/collect/Ordering\n/com/google/appengine/repackaged/com/google/common/collect/PeekingIterator\n/com/google/appengine/repackaged/com/google/common/collect/Platform\n/com/google/appengine/repackaged/com/google/common/collect/PrefixMap\n/com/google/appengine/repackaged/com/google/common/collect/PrefixTrie\n/com/google/appengine/repackaged/com/google/common/collect/PrimitiveArrays\n/com/google/appengine/repackaged/com/google/common/collect/ReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ReferenceMap\n/com/google/appengine/repackaged/com/google/common/collect/Serialization\n/com/google/appengine/repackaged/com/google/common/collect/SetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/Sets\n/com/google/appengine/repackaged/com/google/common/collect/SortedArraySet\n/com/google/appengine/repackaged/com/google/common/collect/SortedSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardBiMap\n/com/google/appengine/repackaged/com/google/common/collect/StandardListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardRowSortedTable\n/com/google/appengine/repackaged/com/google/common/collect/StandardSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardSortedSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardTable\n/com/google/appengine/repackaged/com/google/common/collect/Synchronized\n/com/google/appengine/repackaged/com/google/common/collect/Table\n/com/google/appengine/repackaged/com/google/common/collect/Tables\n/com/google/appengine/repackaged/com/google/common/collect/TreeBasedTable\n/com/google/appengine/repackaged/com/google/common/collect/TreeMultimap\n/com/google/appengine/repackaged/com/google/common/collect/TreeMultiset\n/com/google/appengine/repackaged/com/google/common/collect/UncheckedThrower\n/com/google/appengine/repackaged/com/google/common/collect/UnmodifiableIterator\n/com/google/appengine/repackaged/com/google/common/primitives/IntQueue\n/com/google/appengine/repackaged/com/google/common/primitives/IntStack\n/com/google/appengine/repackaged/com/google/common/primitives/Ints\n/com/google/appengine/repackaged/com/google/common/primitives/Longs\n/com/google/appengine/repackaged/com/google/common/io/AppendableWriter\n/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataInput\n/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataOutput\n/com/google/appengine/repackaged/com/google/common/io/ByteBuffers\n/com/google/appengine/repackaged/com/google/common/io/Bytes\n/com/google/appengine/repackaged/com/google/common/io/Characters\n/com/google/appengine/repackaged/com/google/common/io/Closeables\n/com/google/appengine/repackaged/com/google/common/io/Files\n/com/google/appengine/repackaged/com/google/common/io/Flushables\n/com/google/appengine/repackaged/com/google/common/io/InputSupplier\n/com/google/appengine/repackaged/com/google/common/io/LimitInputStream\n/com/google/appengine/repackaged/com/google/common/io/LineBuffer\n/com/google/appengine/repackaged/com/google/common/io/LineProcessor\n/com/google/appengine/repackaged/com/google/common/io/LineReader\n/com/google/appengine/repackaged/com/google/common/io/MultiInputStream\n/com/google/appengine/repackaged/com/google/common/io/MultiReader\n/com/google/appengine/repackaged/com/google/common/io/OutputSupplier\n/com/google/appengine/repackaged/com/google/common/util/Base64\n/com/google/appengine/repackaged/com/google/common/util/Base64DecoderException\n/com/google/appengine/api/NamespaceManager\n/com/google/appengine/api/urlfetch/FetchOptions\n/com/google/appengine/api/urlfetch/HTTPHeader\n/com/google/appengine/api/urlfetch/HTTPMethod\n/com/google/appengine/api/urlfetch/HTTPRequest\n/com/google/appengine/api/urlfetch/HTTPResponse\n/com/google/appengine/api/urlfetch/ResponseTooLargeException\n/com/google/appengine/api/urlfetch/URLFetchService\n/com/google/appengine/api/urlfetch/URLFetchServiceFactory\n/com/google/appengine/api/urlfetch/URLFetchServiceImpl\n/com/google/appengine/api/urlfetch/URLFetchServicePb\n/com/google/appengine/api/users/User\n/com/google/appengine/api/users/UserService\n/com/google/appengine/api/users/UserServiceFactory\n/com/google/appengine/api/users/UserServiceFailureException\n/com/google/appengine/api/users/UserServiceImpl\n/com/google/appengine/api/datastore/Blob\n/com/google/appengine/api/datastore/DataTypeTranslator\n/com/google/appengine/api/datastore/DataTypeUtils\n/com/google/appengine/api/datastore/DatastoreApiHelper\n/com/google/appengine/api/datastore/DatastoreConfig\n/com/google/appengine/api/datastore/DatastoreFailureException\n/com/google/appengine/api/datastore/DatastoreNeedIndexException\n/com/google/appengine/api/datastore/DatastoreService\n/com/google/appengine/api/datastore/DatastoreServiceFactory\n/com/google/appengine/api/datastore/DatastoreServiceImpl\n/com/google/appengine/api/datastore/DatastoreTimeoutException\n/com/google/appengine/api/datastore/Entity\n/com/google/appengine/api/datastore/EntityNotFoundException\n/com/google/appengine/api/datastore/EntityTranslator\n/com/google/appengine/api/datastore/FetchOptions\n/com/google/appengine/api/datastore/ImplicitTransactionManagementPolicy\n/com/google/appengine/api/datastore/Key\n/com/google/appengine/api/datastore/KeyFactory\n/com/google/appengine/api/datastore/KeyTranslator\n/com/google/appengine/api/datastore/Link\n/com/google/appengine/api/datastore/PreparedQuery\n/com/google/appengine/api/datastore/Query\n/com/google/appengine/api/datastore/QueryIterator\n/com/google/appengine/api/datastore/QueryResultsSource\n/com/google/appengine/api/datastore/QueryTranslator\n/com/google/appengine/api/datastore/ShortBlob\n/com/google/appengine/api/datastore/Text\n/com/google/appengine/api/datastore/Transaction\n/com/google/appengine/api/datastore/TransactionImpl\n/com/google/appengine/api/datastore/TransactionRunner\n/com/google/appengine/api/datastore/TransactionStack\n/com/google/appengine/api/datastore/TransactionStackImpl\n/com/google/appengine/api/memcache/ErrorHandler\n/com/google/appengine/api/memcache/Expiration\n/com/google/appengine/api/memcache/InvalidValueException\n/com/google/appengine/api/memcache/LogAndContinueErrorHandler\n/com/google/appengine/api/memcache/MemcacheSerialization\n/com/google/appengine/api/memcache/MemcacheService\n/com/google/appengine/api/memcache/MemcacheServiceException\n/com/google/appengine/api/memcache/MemcacheServiceFactory\n/com/google/appengine/api/memcache/MemcacheServiceImpl\n/com/google/appengine/api/memcache/Stats\n/com/google/appengine/api/memcache/StrictErrorHandler\n/com/google/appengine/api/memcache/MemcacheServicePb\n/com/google/appengine/api/memcache/stdimpl/GCache\n/com/google/appengine/api/memcache/stdimpl/GCacheEntry\n/com/google/appengine/api/memcache/stdimpl/GCacheException\n/com/google/appengine/api/memcache/stdimpl/GCacheFactory\n/com/google/appengine/api/images/Composite\n/com/google/appengine/api/images/CompositeImpl\n/com/google/appengine/api/images/CompositeTransform\n/com/google/appengine/api/images/Crop\n/com/google/appengine/api/images/HorizontalFlip\n/com/google/appengine/api/images/ImFeelingLucky\n/com/google/appengine/api/images/Image\n/com/google/appengine/api/images/ImageImpl\n/com/google/appengine/api/images/ImagesService\n/com/google/appengine/api/images/ImagesServiceFactory\n/com/google/appengine/api/images/ImagesServiceFailureException\n/com/google/appengine/api/images/ImagesServiceImpl\n/com/google/appengine/api/images/ImagesServicePb\n/com/google/appengine/api/images/Resize\n/com/google/appengine/api/images/Rotate\n/com/google/appengine/api/images/Transform\n/com/google/appengine/api/images/VerticalFlip\n/com/google/appengine/api/mail/MailService\n/com/google/appengine/api/mail/MailServiceFactory\n/com/google/appengine/api/mail/MailServiceImpl\n/com/google/appengine/api/mail/MailServicePb\n/com/google/appengine/api/mail/stdimpl/GMTransport\n/com/google/storage/onestore/v3/OnestoreEntity\n/javax/mail/Address\n/javax/mail/AuthenticationFailedException\n/javax/mail/Authenticator\n/javax/mail/BodyPart\n/javax/mail/EventQueue\n/javax/mail/FetchProfile\n/javax/mail/Flags\n/javax/mail/Folder\n/javax/mail/FolderClosedException\n/javax/mail/FolderNotFoundException\n/javax/mail/Header\n/javax/mail/IllegalWriteException\n/javax/mail/Message\n/javax/mail/MessageAware\n/javax/mail/MessageContext\n/javax/mail/MessageRemovedException\n/javax/mail/MessagingException\n/javax/mail/MethodNotSupportedException\n/javax/mail/Multipart\n/javax/mail/MultipartDataSource\n/javax/mail/NoSuchProviderException\n/javax/mail/Part\n/javax/mail/PasswordAuthentication\n/javax/mail/Provider\n/javax/mail/Quota\n/javax/mail/QuotaAwareStore\n/javax/mail/ReadOnlyFolderException\n/javax/mail/SendFailedException\n/javax/mail/Service\n/javax/mail/Session\n/javax/mail/Store\n/javax/mail/StoreClosedException\n/javax/mail/Transport\n/javax/mail/UIDFolder\n/javax/mail/URLName\n/javax/mail/event/ConnectionAdapter\n/javax/mail/event/ConnectionEvent\n/javax/mail/event/ConnectionListener\n/javax/mail/event/FolderAdapter\n/javax/mail/event/FolderEvent\n/javax/mail/event/FolderListener\n/javax/mail/event/MailEvent\n/javax/mail/event/MessageChangedEvent\n/javax/mail/event/MessageChangedListener\n/javax/mail/event/MessageCountAdapter\n/javax/mail/event/MessageCountEvent\n/javax/mail/event/MessageCountListener\n/javax/mail/event/StoreEvent\n/javax/mail/event/StoreListener\n/javax/mail/event/TransportAdapter\n/javax/mail/event/TransportEvent\n/javax/mail/event/TransportListener\n/javax/mail/internet/AddressException\n/javax/mail/internet/AddressParser\n/javax/mail/internet/ContentCheckingOutputStream\n/javax/mail/internet/ContentDisposition\n/javax/mail/internet/ContentType\n/javax/mail/internet/HeaderTokenizer\n/javax/mail/internet/InternetAddress\n/javax/mail/internet/InternetHeaders\n/javax/mail/internet/MailDateFormat\n/javax/mail/internet/MimeBodyPart\n/javax/mail/internet/MimeMessage\n/javax/mail/internet/MimeMultipart\n/javax/mail/internet/MimePart\n/javax/mail/internet/MimePartDataSource\n/javax/mail/internet/MimeUtility\n/javax/mail/internet/NewsAddress\n/javax/mail/internet/ParameterList\n/javax/mail/internet/ParseException\n/javax/mail/internet/PreencodedMimeBodyPart\n/javax/mail/internet/SharedInputStream\n/javax/mail/search/AddressStringTerm\n/javax/mail/search/AddressTerm\n/javax/mail/search/AndTerm\n/javax/mail/search/BodyTerm\n/javax/mail/search/ComparisonTerm\n/javax/mail/search/DateTerm\n/javax/mail/search/FlagTerm\n/javax/mail/search/FromStringTerm\n/javax/mail/search/FromTerm\n/javax/mail/search/HeaderTerm\n/javax/mail/search/IntegerComparisonTerm\n/javax/mail/search/MessageIDTerm\n/javax/mail/search/MessageNumberTerm\n/javax/mail/search/NotTerm\n/javax/mail/search/OrTerm\n/javax/mail/search/ReceivedDateTerm\n/javax/mail/search/RecipientStringTerm\n/javax/mail/search/RecipientTerm\n/javax/mail/search/SearchException\n/javax/mail/search/SearchTerm\n/javax/mail/search/SentDateTerm\n/javax/mail/search/SizeTerm\n/javax/mail/search/StringTerm\n/javax/mail/search/SubjectTerm\n/javax/mail/util/ByteArrayDataSource\n/javax/mail/util/SharedByteArrayInputStream\n/javax/mail/util/SharedFileInputStream\n/javax/activation/ActivationDataFlavor\n/javax/activation/CommandInfo\n/javax/activation/CommandMap\n/javax/activation/CommandObject\n/javax/activation/DataContentHandler\n/javax/activation/DataContentHandlerFactory\n/javax/activation/DataHandler\n/javax/activation/DataSource\n/javax/activation/FileDataSource\n/javax/activation/FileTypeMap\n/javax/activation/MailcapCommandMap\n/javax/activation/MimeType\n/javax/activation/MimeTypeParameterList\n/javax/activation/MimeTypeParseException\n/javax/activation/MimetypesFileTypeMap\n/javax/activation/UnsupportedDataTypeException\n/javax/activation/URLDataSource\n/javax/cache/Cache\n/javax/cache/CacheListener\n/javax/cache/CacheEntry\n/javax/cache/CacheStatistics\n/javax/cache/CacheException\n/javax/cache/CacheFactory\n/javax/cache/CacheLoader\n/javax/cache/CacheManager\n/javax/cache/EvictionStrategy\n/org/apache/geronimo/mail/handlers/HtmlHandler\n/org/apache/geronimo/mail/handlers/MessageHandler\n/org/apache/geronimo/mail/handlers/MultipartHandler\n/org/apache/geronimo/mail/handlers/TextHandler\n/org/apache/geronimo/mail/handlers/XMLHandler\n/org/apache/geronimo/mail/util/ASCIIUtil\n/org/apache/geronimo/mail/util/Base64\n/org/apache/geronimo/mail/util/Base64DecoderStream\n/org/apache/geronimo/mail/util/Base64Encoder\n/org/apache/geronimo/mail/util/Base64EncoderStream\n/org/apache/geronimo/mail/util/Encoder\n/org/apache/geronimo/mail/util/Hex\n/org/apache/geronimo/mail/util/HexEncoder\n/org/apache/geronimo/mail/util/QuotedPrintable\n/org/apache/geronimo/mail/util/QuotedPrintableDecoderStream\n/org/apache/geronimo/mail/util/QuotedPrintableEncoder\n/org/apache/geronimo/mail/util/QuotedPrintableEncoderStream\n/org/apache/geronimo/mail/util/RFC2231Encoder\n/org/apache/geronimo/mail/util/SessionUtil\n/org/apache/geronimo/mail/util/StringBufferOutputStream\n/org/apache/geronimo/mail/util/UUDecoderStream\n/org/apache/geronimo/mail/util/UUEncode\n/org/apache/geronimo/mail/util/UUEncoder\n/org/apache/geronimo/mail/util/UUEncoderStream\n/org/apache/geronimo/mail/util/XText\n/org/apache/geronimo/mail/util/XTextEncoder\n" + }, + { + "u":"com.google.appengine|appengine-java-sdk|1.2.0|NA", + "m":"1242931406947", + "i":"zip|1242930538000|-1|0|0|0|pom", + "n":"Google App Engine for Java SDK", + "d":"Google App Engine is a web application hosting platform that allows you to write\n your web application in one of several programming languages (including Python and Java).\n This SDK includes everything necessary to develop Java applications that can be hosted by\n App Engine. This includes a jar file and documentation for the current set of App\n Engine-specific API's, and a development environment that can be used to test your\n application before deploying." + }, + { + "u":"com.google.appengine|appengine-tools-sdk|1.2.0|NA", + "m":"1242931406951", + "i":"jar|1242930530000|3771168|0|0|0|jar", + "n":"Google App Engine Tools SDK", + "1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "c":"/com/google/apphosting/runtime/security/WhiteList\n/com/google/apphosting/runtime/security/preverifier/ClassSource\n/com/google/apphosting/runtime/security/preverifier/RefVerifier\n/com/google/apphosting/utils/security/SecurityManagerInstaller\n/com/google/apphosting/utils/security/urlfetch/URLFetchServiceStreamHandler\n/com/google/apphosting/utils/config/AbstractConfigXmlReader\n/com/google/apphosting/utils/config/AppEngineConfigException\n/com/google/apphosting/utils/config/AppEngineWebXml\n/com/google/apphosting/utils/config/AppEngineWebXmlProcessor\n/com/google/apphosting/utils/config/AppEngineWebXmlReader\n/com/google/apphosting/utils/config/CronXml\n/com/google/apphosting/utils/config/CronXmlReader\n/com/google/apphosting/utils/config/GenerationDirectory\n/com/google/apphosting/utils/config/IndexesXml\n/com/google/apphosting/utils/config/IndexesXmlReader\n/com/google/apphosting/utils/config/WebXml\n/com/google/apphosting/utils/config/WebXmlReader\n/com/google/apphosting/utils/glob/AbstractGlob\n/com/google/apphosting/utils/glob/BranchGlob\n/com/google/apphosting/utils/glob/ConflictResolver\n/com/google/apphosting/utils/glob/Glob\n/com/google/apphosting/utils/glob/GlobFactory\n/com/google/apphosting/utils/glob/GlobIntersector\n/com/google/apphosting/utils/glob/LeafGlob\n/com/google/apphosting/utils/glob/LongestPatternConflictResolver\n/com/google/appengine/repackaged/com/google/io/protocol/GrowableProtocolSink\n/com/google/appengine/repackaged/com/google/io/protocol/MessageSet\n/com/google/appengine/repackaged/com/google/io/protocol/MessageVisitor\n/com/google/appengine/repackaged/com/google/io/protocol/Protocol\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessage\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolMessageEnum\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSink\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSource\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolSupport\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolType\n/com/google/appengine/repackaged/com/google/io/protocol/RawMessage\n/com/google/appengine/repackaged/com/google/io/protocol/UninterpretedTags\n/com/google/appengine/repackaged/com/google/io/protocol/ProtocolTextParser\n/com/google/appengine/repackaged/com/google/io/protocol/HtmlFormGenerator\n/com/google/appengine/repackaged/com/google/io/protocol/proto/ProtocolDescriptor\n/com/google/appengine/repackaged/com/google/io/protocol/proto/RPC_ServiceDescriptor\n/com/google/appengine/repackaged/com/google/io/base/Buffers\n/com/google/appengine/repackaged/com/google/io/base/FileSystem\n/com/google/appengine/repackaged/com/google/io/base/IORuntimeException\n/com/google/appengine/repackaged/com/google/io/base/Marshaller\n/com/google/appengine/repackaged/com/google/io/base/PerThreadByteCounter\n/com/google/appengine/repackaged/com/google/io/base/ServerAddress\n/com/google/appengine/repackaged/com/google/io/base/VarInt\n/com/google/appengine/repackaged/com/google/io/base/Marshallers\n/com/google/appengine/repackaged/com/google/common/base/ByteArrays\n/com/google/appengine/repackaged/com/google/common/base/CharEscaper\n/com/google/appengine/repackaged/com/google/common/base/CharEscaperBuilder\n/com/google/appengine/repackaged/com/google/common/base/CharEscapers\n/com/google/appengine/repackaged/com/google/common/base/CharMatcher\n/com/google/appengine/repackaged/com/google/common/base/CharsetCache\n/com/google/appengine/repackaged/com/google/common/base/Charsets\n/com/google/appengine/repackaged/com/google/common/base/Escaper\n/com/google/appengine/repackaged/com/google/common/base/FinalizableReference\n/com/google/appengine/repackaged/com/google/common/base/FinalizableReferenceQueue\n/com/google/appengine/repackaged/com/google/common/base/FinalizableSoftReference\n/com/google/appengine/repackaged/com/google/common/base/FinalizableWeakReference\n/com/google/appengine/repackaged/com/google/common/base/Flag\n/com/google/appengine/repackaged/com/google/common/base/Function\n/com/google/appengine/repackaged/com/google/common/base/Hash\n/com/google/appengine/repackaged/com/google/common/base/InterruptedRuntimeException\n/com/google/appengine/repackaged/com/google/common/base/Join\n/com/google/appengine/repackaged/com/google/common/base/Joiner\n/com/google/appengine/repackaged/com/google/common/base/LogContext\n/com/google/appengine/repackaged/com/google/common/base/Objects\n/com/google/appengine/repackaged/com/google/common/base/Pair\n/com/google/appengine/repackaged/com/google/common/base/PercentEscaper\n/com/google/appengine/repackaged/com/google/common/base/Preconditions\n/com/google/appengine/repackaged/com/google/common/base/Predicate\n/com/google/appengine/repackaged/com/google/common/base/Predicates\n/com/google/appengine/repackaged/com/google/common/base/Range\n/com/google/appengine/repackaged/com/google/common/base/Receiver\n/com/google/appengine/repackaged/com/google/common/base/ReferenceType\n/com/google/appengine/repackaged/com/google/common/base/RotatingDateLogStream\n/com/google/appengine/repackaged/com/google/common/base/RotatingLogStream\n/com/google/appengine/repackaged/com/google/common/base/StringUtil\n/com/google/appengine/repackaged/com/google/common/base/Supplier\n/com/google/appengine/repackaged/com/google/common/base/Throwables\n/com/google/appengine/repackaged/com/google/common/base/UnicodeEscaper\n/com/google/appengine/repackaged/com/google/common/base/X\n/com/google/appengine/repackaged/com/google/common/base/genfiles/ByteArray\n/com/google/appengine/repackaged/com/google/common/base/genfiles/IntArray\n/com/google/appengine/repackaged/com/google/common/base/internal/Finalizer\n/com/google/appengine/repackaged/com/google/common/collect/AbstractIterator\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMapBasedMultiset\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMapEntry\n/com/google/appengine/repackaged/com/google/common/collect/AbstractMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ArrayListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/AsynchronousComputationException\n/com/google/appengine/repackaged/com/google/common/collect/BiMap\n/com/google/appengine/repackaged/com/google/common/collect/CancelableReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ClassToInstanceMap\n/com/google/appengine/repackaged/com/google/common/collect/Collections2\n/com/google/appengine/repackaged/com/google/common/collect/Comparators\n/com/google/appengine/repackaged/com/google/common/collect/ComputationException\n/com/google/appengine/repackaged/com/google/common/collect/ConcreteMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ConcurrentMultiset\n/com/google/appengine/repackaged/com/google/common/collect/Constraint\n/com/google/appengine/repackaged/com/google/common/collect/Constraints\n/com/google/appengine/repackaged/com/google/common/collect/CustomConcurrentHashMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumBiMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumHashBiMap\n/com/google/appengine/repackaged/com/google/common/collect/EnumMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ExpirationTimer\n/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ExpiringReferenceMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingCollection\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingConcurrentMap\n/com/google/appengine/repackaged/com/google/common/collect/HashBiMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingIterator\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingList\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingListIterator\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMapEntry\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingObject\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingQueue\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSet\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedMap\n/com/google/appengine/repackaged/com/google/common/collect/ForwardingSortedSet\n/com/google/appengine/repackaged/com/google/common/collect/HashBasedTable\n/com/google/appengine/repackaged/com/google/common/collect/HashMultimap\n/com/google/appengine/repackaged/com/google/common/collect/HashMultiset\n/com/google/appengine/repackaged/com/google/common/collect/Hashing\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableBiMapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableCollection\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableEntry\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableList\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultimapBuilder\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableMultiset\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableSet\n/com/google/appengine/repackaged/com/google/common/collect/ImmutableSortedSet\n/com/google/appengine/repackaged/com/google/common/collect/Iterables\n/com/google/appengine/repackaged/com/google/common/collect/Iterators\n/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultimap\n/com/google/appengine/repackaged/com/google/common/collect/LinkedHashMultiset\n/com/google/appengine/repackaged/com/google/common/collect/LinkedListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/ListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/Lists\n/com/google/appengine/repackaged/com/google/common/collect/MapConstraint\n/com/google/appengine/repackaged/com/google/common/collect/MapConstraints\n/com/google/appengine/repackaged/com/google/common/collect/MapDifference\n/com/google/appengine/repackaged/com/google/common/collect/MapMaker\n/com/google/appengine/repackaged/com/google/common/collect/Maps\n/com/google/appengine/repackaged/com/google/common/collect/Multimap\n/com/google/appengine/repackaged/com/google/common/collect/Multimaps\n/com/google/appengine/repackaged/com/google/common/collect/Multiset\n/com/google/appengine/repackaged/com/google/common/collect/Multisets\n/com/google/appengine/repackaged/com/google/common/collect/NpeThrowingAbstractMap\n/com/google/appengine/repackaged/com/google/common/collect/NullOutputException\n/com/google/appengine/repackaged/com/google/common/collect/ObjectArrays\n/com/google/appengine/repackaged/com/google/common/collect/Ordering\n/com/google/appengine/repackaged/com/google/common/collect/PeekingIterator\n/com/google/appengine/repackaged/com/google/common/collect/Platform\n/com/google/appengine/repackaged/com/google/common/collect/PrefixMap\n/com/google/appengine/repackaged/com/google/common/collect/PrefixTrie\n/com/google/appengine/repackaged/com/google/common/collect/PrimitiveArrays\n/com/google/appengine/repackaged/com/google/common/collect/ReferenceCache\n/com/google/appengine/repackaged/com/google/common/collect/ReferenceMap\n/com/google/appengine/repackaged/com/google/common/collect/Serialization\n/com/google/appengine/repackaged/com/google/common/collect/SetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/Sets\n/com/google/appengine/repackaged/com/google/common/collect/SortedArraySet\n/com/google/appengine/repackaged/com/google/common/collect/SortedSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardBiMap\n/com/google/appengine/repackaged/com/google/common/collect/StandardListMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardRowSortedTable\n/com/google/appengine/repackaged/com/google/common/collect/StandardSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardSortedSetMultimap\n/com/google/appengine/repackaged/com/google/common/collect/StandardTable\n/com/google/appengine/repackaged/com/google/common/collect/Synchronized\n/com/google/appengine/repackaged/com/google/common/collect/Table\n/com/google/appengine/repackaged/com/google/common/collect/Tables\n/com/google/appengine/repackaged/com/google/common/collect/TreeBasedTable\n/com/google/appengine/repackaged/com/google/common/collect/TreeMultimap\n/com/google/appengine/repackaged/com/google/common/collect/TreeMultiset\n/com/google/appengine/repackaged/com/google/common/collect/UncheckedThrower\n/com/google/appengine/repackaged/com/google/common/collect/UnmodifiableIterator\n/com/google/appengine/repackaged/com/google/common/primitives/IntQueue\n/com/google/appengine/repackaged/com/google/common/primitives/IntStack\n/com/google/appengine/repackaged/com/google/common/primitives/Ints\n/com/google/appengine/repackaged/com/google/common/primitives/Longs\n/com/google/appengine/repackaged/com/google/common/io/AppendableWriter\n/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataInput\n/com/google/appengine/repackaged/com/google/common/io/ByteArrayDataOutput\n/com/google/appengine/repackaged/com/google/common/io/ByteBuffers\n/com/google/appengine/repackaged/com/google/common/io/Bytes\n/com/google/appengine/repackaged/com/google/common/io/Characters\n/com/google/appengine/repackaged/com/google/common/io/Closeables\n/com/google/appengine/repackaged/com/google/common/io/Files\n/com/google/appengine/repackaged/com/google/common/io/Flushables\n/com/google/appengine/repackaged/com/google/common/io/InputSupplier\n/com/google/appengine/repackaged/com/google/common/io/LimitInputStream\n/com/google/appengine/repackaged/com/google/common/io/LineBuffer\n/com/google/appengine/repackaged/com/google/common/io/LineProcessor\n/com/google/appengine/repackaged/com/google/common/io/LineReader\n/com/google/appengine/repackaged/com/google/common/io/MultiInputStream\n/com/google/appengine/repackaged/com/google/common/io/MultiReader\n/com/google/appengine/repackaged/com/google/common/io/OutputSupplier\n/com/google/appengine/repackaged/com/google/common/util/Base64\n/com/google/appengine/repackaged/com/google/common/util/Base64DecoderException\n/com/google/appengine/tools/KickStart\n/com/google/appengine/tools/development/DevAppServer\n/com/google/appengine/tools/development/DevAppServerClassLoader\n/com/google/appengine/tools/development/DevAppServerFactory\n/com/google/appengine/tools/development/DevAppServerMain\n/com/google/appengine/tools/development/gwt/AppEngineLauncher\n/com/google/appengine/tools/info/LocalVersionFactory\n/com/google/appengine/tools/info/RemoteVersionFactory\n/com/google/appengine/tools/info/SdkImplInfo\n/com/google/appengine/tools/info/SdkInfo\n/com/google/appengine/tools/info/SupportInfo\n/com/google/appengine/tools/info/UpdateCheck\n/com/google/appengine/tools/info/UpdateCheckResults\n/com/google/appengine/tools/info/Version\n/com/google/appengine/tools/util/Action\n/com/google/appengine/tools/util/ApiVersionFinder\n/com/google/appengine/tools/util/FileIterator\n/com/google/appengine/tools/util/JarSplitter\n/com/google/appengine/tools/util/Option\n/com/google/appengine/tools/util/Parser\n/com/google/appengine/tools/util/Logging\n/com/google/appengine/tools/util/ClientCookie\n/com/google/appengine/tools/util/ClientCookieManager\n/com/google/appengine/tools/util/HttpHeaderParseException\n/com/google/appengine/tools/util/HttpHeaderParser\n/com/google/appengine/tools/admin/AdminException\n/com/google/appengine/tools/admin/AppAdmin\n/com/google/appengine/tools/admin/AppAdminFactory\n/com/google/appengine/tools/admin/AppAdminImpl\n/com/google/appengine/tools/admin/AppCfg\n/com/google/appengine/tools/admin/AppVersionUpload\n/com/google/appengine/tools/admin/AppYamlTranslator\n/com/google/appengine/tools/admin/Application\n/com/google/appengine/tools/admin/LogFetcher\n/com/google/appengine/tools/admin/MappedFile\n/com/google/appengine/tools/admin/MappedFileIterator\n/com/google/appengine/tools/admin/OutputPump\n/com/google/appengine/tools/admin/ServerConnection\n/com/google/appengine/tools/admin/UpdateFailureEvent\n/com/google/appengine/tools/admin/UpdateListener\n/com/google/appengine/tools/admin/UpdateProgressEvent\n/com/google/appengine/tools/admin/UpdateSuccessEvent\n/com/google/appengine/tools/admin/Utility\n/com/google/appengine/tools/enhancer/Enhance\n/com/google/appengine/tools/enhancer/Enhancer\n/com/google/appengine/tools/enhancer/EnhancerLoader\n/com/google/appengine/tools/enhancer/EnhancerTask\n/org/mortbay/log/Slf4jLog\n/org/mortbay/log/Logger\n/org/mortbay/log/Log\n/org/mortbay/log/StdErrLog\n/org/mortbay/util/DateCache\n/org/mortbay/util/ByteArrayOutputStream2\n/org/mortbay/util/MultiMap\n/org/mortbay/util/LazyList\n/org/mortbay/util/Loader\n/org/mortbay/util/RolloverFileOutputStream\n/org/mortbay/util/StringMap\n/org/mortbay/util/StringUtil\n/org/mortbay/util/IO\n/org/mortbay/util/ByteArrayISO8859Writer\n/org/mortbay/util/Utf8StringBuffer\n/org/mortbay/util/IntrospectionUtil\n/org/mortbay/util/MultiException\n/org/mortbay/util/MultiPartWriter\n/org/mortbay/util/TypeUtil\n/org/mortbay/util/MultiPartOutputStream\n/org/mortbay/util/AttributesMap\n/org/mortbay/util/Attributes\n/org/mortbay/util/QuotedStringTokenizer\n/org/mortbay/util/UrlEncoded\n/org/mortbay/util/Scanner\n/org/mortbay/util/URIUtil\n/org/mortbay/util/SingletonList\n/org/mortbay/util/ajax/Continuation\n/org/mortbay/util/ajax/ContinuationSupport\n/org/mortbay/util/ajax/AjaxFilter\n/org/mortbay/util/ajax/JSON\n/org/mortbay/util/ajax/WaitingContinuation\n/org/mortbay/jetty/MimeTypes\n/org/mortbay/io/BufferCache\n/org/mortbay/io/Connection\n/org/mortbay/io/EndPoint\n/org/mortbay/io/Buffer\n/org/mortbay/io/Buffers\n/org/mortbay/io/ByteArrayBuffer\n/org/mortbay/io/AbstractBuffer\n/org/mortbay/io/View\n/org/mortbay/io/BufferDateCache\n/org/mortbay/io/ByteArrayEndPoint\n/org/mortbay/io/SimpleBuffers\n/org/mortbay/io/BufferUtil\n/org/mortbay/io/Portable\n/org/mortbay/io/WriterOutputStream\n/org/mortbay/io/bio/SocketEndPoint\n/org/mortbay/io/bio/StreamEndPoint\n/org/mortbay/io/bio/StringEndPoint\n/org/mortbay/io/nio/ChannelEndPoint\n/org/mortbay/io/nio/SelectorManager\n/org/mortbay/io/nio/SelectChannelEndPoint\n/org/mortbay/io/nio/NIOBuffer\n/org/mortbay/xml/XmlParser\n/org/mortbay/xml/XmlConfiguration\n" + }, + { + "u":"com.google.appengine.orm|datanucleus-appengine|1.0.0|NA", + "m":"1242931406976", + "i":"jar|1242930539000|205574|0|0|0|jar", + "1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "c":"/org/datanucleus/store/appengine/ConcurrentHashMapHelper\n/org/datanucleus/store/appengine/DatastoreAbstractArrayStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreAbstractCollectionStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreAbstractListStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreAbstractSetStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreAdapter\n/org/datanucleus/store/appengine/DatastoreConnectionFactoryImpl\n/org/datanucleus/store/appengine/DatastoreElementContainerStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreExceptionTranslator\n/org/datanucleus/store/appengine/DatastoreExtent\n/org/datanucleus/store/appengine/DatastoreFKArrayStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreFKListStoreSpecialization\n/org/datanucleus/store/appengine/DatastoreFKMapping\n/org/datanucleus/store/appengine/DatastoreFKSetStore\n/org/datanucleus/store/appengine/DatastoreFieldManager\n/org/datanucleus/store/appengine/DatastoreKind\n/org/datanucleus/store/appengine/DatastoreManager\n/org/datanucleus/store/appengine/DatastoreMappingManager\n/org/datanucleus/store/appengine/DatastorePersistenceHandler\n/org/datanucleus/store/appengine/DatastoreProperty\n/org/datanucleus/store/appengine/DatastoreQueryExpression\n/org/datanucleus/store/appengine/DatastoreRelationFieldManager\n/org/datanucleus/store/appengine/DatastoreServiceFactoryInternal\n/org/datanucleus/store/appengine/DatastoreTable\n/org/datanucleus/store/appengine/DatastoreTransaction\n/org/datanucleus/store/appengine/DatastoreUnionIteratorStatement\n/org/datanucleus/store/appengine/DatastoreXAResource\n/org/datanucleus/store/appengine/DependentDeleteRequest\n/org/datanucleus/store/appengine/EmulatedXAResource\n/org/datanucleus/store/appengine/EntityUtils\n/org/datanucleus/store/appengine/FetchMappingConsumer\n/org/datanucleus/store/appengine/InsertMappingConsumer\n/org/datanucleus/store/appengine/Ints\n/org/datanucleus/store/appengine/KeyMapping\n/org/datanucleus/store/appengine/KeyRegistry\n/org/datanucleus/store/appengine/Longs\n/org/datanucleus/store/appengine/MetaDataValidator\n/org/datanucleus/store/appengine/PrimitiveArrays\n/org/datanucleus/store/appengine/PrimitiveUtils\n/org/datanucleus/store/appengine/RuntimeExceptionWrappingDatastoreService\n/org/datanucleus/store/appengine/SerializationManager\n/org/datanucleus/store/appengine/SerializationStrategy\n/org/datanucleus/store/appengine/TypeConversionUtils\n/org/datanucleus/store/appengine/Utils\n/org/datanucleus/store/appengine/jdo/DatastoreJDOPersistenceManager\n/org/datanucleus/store/appengine/jdo/DatastoreJDOPersistenceManagerFactory\n/org/datanucleus/store/appengine/jpa/DatastoreEntityManager\n/org/datanucleus/store/appengine/jpa/DatastoreEntityManagerFactory\n/org/datanucleus/store/appengine/jpa/DatastorePersistenceProvider\n/org/datanucleus/store/appengine/query/DatastoreQuery\n/org/datanucleus/store/appengine/query/JDOQLQuery\n/org/datanucleus/store/appengine/query/JPQLQuery\n/org/datanucleus/store/appengine/query/RuntimeExceptionWrappingIterable\n/org/datanucleus/store/appengine/query/RuntimeExceptionWrappingIterator\n/org/datanucleus/store/appengine/query/StreamingQueryResult\n" + }, + { + "u":"com.google.classpath-explorer|classpath-explorer|1.0|javadoc|jar", + "m":"1242931406980", + "i":"jar|1242930527000|59919|2|2|0|jar", + "n":"Classpath explorer", + "d":"Library which allows discovering classes at runtime", + "1":"2190cf9ba1f1f11e0be17f3057ece52026d02291", + "c":"" + }, + { + "u":"com.google.classpath-explorer|classpath-explorer|1.0|sources|jar", + "m":"1242931406988", + "i":"jar|1242930527000|8456|2|2|0|jar", + "n":"Classpath explorer", + "d":"Library which allows discovering classes at runtime", + "1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "c":"" + }, + { + "u":"com.google.classpath-explorer|classpath-explorer|1.0|NA", + "m":"1242931406992", + "i":"jar|1242930527000|14667|1|1|0|jar", + "n":"Classpath explorer", + "d":"Library which allows discovering classes at runtime", + "1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "c":"/com/google/classpath/ClassPath\n/com/google/classpath/ClassPathFactory\n/com/google/classpath/CompositeClassPath\n/com/google/classpath/DirectoryClassPath\n/com/google/classpath/JARClassPath\n/com/google/classpath/RegExpResourceFilter\n/com/google/classpath/ResourceFilter\n/com/google/classpath/ResourceFinder\n" + }, + { + "u":"com.google.collections|google-collections|0.8|javadoc|jar", + "m":"1242931407009", + "i":"jar|1242930543000|620335|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"caee7841facb9ed8797a36fac0db19311aee1476", + "c":"" + }, + { + "u":"com.google.collections|google-collections|0.8|sources|jar", + "m":"1242931407012", + "i":"jar|1242930543000|230572|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "c":"" + }, + { + "u":"com.google.collections|google-collections|0.8|NA", + "m":"1242931407015", + "i":"jar|1242930543000|484056|1|1|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "c":"/com/google/common/collect/ImmutableMultiset\n/com/google/common/collect/ImmutableCollection\n/com/google/common/collect/Multiset\n/com/google/common/collect/Iterables\n/com/google/common/collect/ImmutableSet\n/com/google/common/collect/ImmutableMap\n/com/google/common/collect/ForwardingIterator\n/com/google/common/collect/ForwardingObject\n/com/google/common/collect/ForwardingMultiset\n/com/google/common/collect/ForwardingCollection\n/com/google/common/collect/ImmutableBiMap\n/com/google/common/collect/BiMap\n/com/google/common/collect/MapConstraints\n/com/google/common/collect/Maps\n/com/google/common/collect/HashBiMap\n/com/google/common/collect/StandardBiMap\n/com/google/common/collect/ForwardingMap\n/com/google/common/collect/EnumHashBiMap\n/com/google/common/collect/EnumBiMap\n/com/google/common/collect/ClassToInstanceMap\n/com/google/common/collect/MapConstraint\n/com/google/common/collect/Multimap\n/com/google/common/collect/ListMultimap\n/com/google/common/collect/SetMultimap\n/com/google/common/collect/SortedSetMultimap\n/com/google/common/collect/AbstractMapEntry\n/com/google/common/collect/TreeMultimap\n/com/google/common/collect/StandardSortedSetMultimap\n/com/google/common/collect/StandardSetMultimap\n/com/google/common/collect/StandardMultimap\n/com/google/common/collect/AbstractIterator\n/com/google/common/collect/Collections2\n/com/google/common/collect/Sets\n/com/google/common/collect/PeekingIterator\n/com/google/common/collect/ForwardingSet\n/com/google/common/collect/Constraints\n/com/google/common/collect/Constraint\n/com/google/common/collect/ForwardingSortedSet\n/com/google/common/collect/ForwardingList\n/com/google/common/collect/ForwardingListIterator\n/com/google/common/collect/TreeMultiset\n/com/google/common/collect/AbstractMapBasedMultiset\n/com/google/common/collect/AbstractMultiset\n/com/google/common/collect/ImmutableSortedSet\n/com/google/common/collect/Ordering\n/com/google/common/collect/AbstractMultisetEntry\n/com/google/common/collect/StandardListMultimap\n/com/google/common/collect/Multisets\n/com/google/common/collect/HashMultiset\n/com/google/common/collect/EnumMultiset\n/com/google/common/collect/UnmodifiableIterator\n/com/google/common/collect/NpeThrowingAbstractMap\n/com/google/common/collect/LinkedHashMultiset\n/com/google/common/collect/ArrayListMultimap\n/com/google/common/collect/Iterators\n/com/google/common/collect/ForwardingMultimap\n/com/google/common/collect/ReferenceMap\n/com/google/common/collect/AbstractRemovableIterator\n/com/google/common/collect/ObjectArrays\n/com/google/common/collect/ForwardingSortedMap\n/com/google/common/collect/ImmutableList\n/com/google/common/collect/PrimitiveArrays\n/com/google/common/collect/LinkedHashMultimap\n/com/google/common/collect/ForwardingQueue\n/com/google/common/collect/ForwardingMapEntry\n/com/google/common/collect/Synchronized\n/com/google/common/collect/ImmutableMultimap\n/com/google/common/collect/Comparators\n/com/google/common/collect/Lists\n/com/google/common/collect/ConcurrentMultiset\n/com/google/common/collect/AbstractIterable\n/com/google/common/collect/Multimaps\n/com/google/common/collect/HashMultimap\n/com/google/common/collect/Serialization\n/com/google/common/collect/ForwardingConcurrentMap\n/com/google/common/collect/Hashing\n/com/google/common/base/Preconditions\n/com/google/common/base/Predicate\n/com/google/common/base/Function\n/com/google/common/base/FinalizableReferenceQueue\n/com/google/common/base/FinalizableReference\n/com/google/common/base/Supplier\n/com/google/common/base/ReferenceType\n/com/google/common/base/FinalizableWeakReference\n/com/google/common/base/FinalizablePhantomReference\n/com/google/common/base/Predicates\n/com/google/common/base/Objects\n/com/google/common/base/FinalizableSoftReference\n/com/google/common/base/Nullable\n/com/google/common/base/Suppliers\n/com/google/common/base/Join\n/com/google/common/base/Functions\n" + }, + { + "u":"com.google.collections|google-collections|0.9|javadoc|jar", + "m":"1242931407023", + "i":"jar|1242930544000|680356|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"41317de7f59b3108b7ebbfeb9fe339f95c312ec5", + "c":"" + }, + { + "u":"com.google.collections|google-collections|0.9|sources|jar", + "m":"1242931407028", + "i":"jar|1242930544000|259376|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"71306927faa8f68c7cd90d1694a21071332ff439", + "c":"" + }, + { + "u":"com.google.collections|google-collections|0.9|NA", + "m":"1242931407030", + "i":"jar|1242930544000|570670|1|1|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "c":"/com/google/common/base/Preconditions\n/com/google/common/base/Predicate\n/com/google/common/base/Function\n/com/google/common/base/Functions\n/com/google/common/base/Join\n/com/google/common/base/Suppliers\n/com/google/common/base/Supplier\n/com/google/common/base/Nullable\n/com/google/common/base/FinalizableSoftReference\n/com/google/common/base/FinalizableReference\n/com/google/common/base/FinalizableReferenceQueue\n/com/google/common/base/Predicates\n/com/google/common/base/FinalizablePhantomReference\n/com/google/common/base/FinalizableWeakReference\n/com/google/common/base/internal/Finalizer\n/com/google/common/base/Objects\n/com/google/common/collect/ForwardingObject\n/com/google/common/collect/BiMap\n/com/google/common/collect/MapConstraint\n/com/google/common/collect/AbstractMultiset\n/com/google/common/collect/Multiset\n/com/google/common/collect/Hashing\n/com/google/common/collect/Serialization\n/com/google/common/collect/Multimap\n/com/google/common/collect/Collections2\n/com/google/common/collect/ListMultimap\n/com/google/common/collect/UnmodifiableIterator\n/com/google/common/collect/SetMultimap\n/com/google/common/collect/SortedSetMultimap\n/com/google/common/collect/ForwardingMultimap\n/com/google/common/collect/AbstractMapEntry\n/com/google/common/collect/ObjectArrays\n/com/google/common/collect/Platform\n/com/google/common/collect/ComputationException\n/com/google/common/collect/ExpirationTimer\n/com/google/common/collect/Iterables\n/com/google/common/collect/PeekingIterator\n/com/google/common/collect/ForwardingIterator\n/com/google/common/collect/Ordering\n/com/google/common/collect/AbstractIterator\n/com/google/common/collect/ClassToInstanceMap\n/com/google/common/collect/Lists\n/com/google/common/collect/Constraint\n/com/google/common/collect/ForwardingListIterator\n/com/google/common/collect/ConcurrentMultiset\n/com/google/common/collect/NullOutputException\n/com/google/common/collect/Iterators\n/com/google/common/collect/ForwardingMapEntry\n/com/google/common/collect/AsynchronousComputationException\n/com/google/common/collect/MapMaker\n/com/google/common/collect/ImmutableEntry\n/com/google/common/collect/ForwardingQueue\n/com/google/common/collect/ForwardingCollection\n/com/google/common/collect/EnumBiMap\n/com/google/common/collect/StandardBiMap\n/com/google/common/collect/ForwardingMap\n/com/google/common/collect/TreeMultiset\n/com/google/common/collect/AbstractMapBasedMultiset\n/com/google/common/collect/ForwardingSet\n/com/google/common/collect/ForwardingMultiset\n/com/google/common/collect/ForwardingList\n/com/google/common/collect/NpeThrowingAbstractMap\n/com/google/common/collect/LinkedListMultimap\n/com/google/common/collect/Multisets\n/com/google/common/collect/ImmutableCollection\n/com/google/common/collect/MapConstraints\n/com/google/common/collect/CustomConcurrentHashMap\n/com/google/common/collect/ImmutableMultiset\n/com/google/common/collect/ImmutableSet\n/com/google/common/collect/ImmutableMap\n/com/google/common/collect/ImmutableList\n/com/google/common/collect/Sets\n/com/google/common/collect/StandardListMultimap\n/com/google/common/collect/StandardMultimap\n/com/google/common/collect/ForwardingSortedMap\n/com/google/common/collect/ForwardingSortedSet\n/com/google/common/collect/Synchronized\n/com/google/common/collect/HashBiMap\n/com/google/common/collect/ImmutableBiMap\n/com/google/common/collect/EnumHashBiMap\n/com/google/common/collect/EnumMultiset\n/com/google/common/collect/StandardSortedSetMultimap\n/com/google/common/collect/StandardSetMultimap\n/com/google/common/collect/ForwardingConcurrentMap\n/com/google/common/collect/Maps\n/com/google/common/collect/ImmutableSortedSet\n/com/google/common/collect/ImmutableMultimap\n/com/google/common/collect/Multimaps\n/com/google/common/collect/HashMultimap\n/com/google/common/collect/ArrayListMultimap\n/com/google/common/collect/LinkedHashMultimap\n/com/google/common/collect/TreeMultimap\n/com/google/common/collect/HashMultiset\n/com/google/common/collect/LinkedHashMultiset\n/com/google/common/collect/Constraints\n" + }, + { + "u":"com.google.collections|google-collections|1.0-rc1|javadoc|jar", + "m":"1242931407034", + "i":"jar|1242930542000|680516|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"79014c55f2bdbb2ae166da37dd12fad6e72c78a2", + "c":"" + }, + { + "u":"com.google.collections|google-collections|1.0-rc1|sources|jar", + "m":"1242931407037", + "i":"jar|1242930542000|274317|2|2|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "c":"" + }, + { + "u":"com.google.collections|google-collections|1.0-rc1|NA", + "m":"1242931407039", + "i":"jar|1242930541000|556523|1|1|0|jar", + "n":"Google Collections Library", + "d":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "c":"/com/google/common/collect/package-info\n/com/google/common/collect/ForwardingObject\n/com/google/common/collect/ForwardingMap\n/com/google/common/collect/BiMap\n/com/google/common/collect/MapConstraint\n/com/google/common/collect/AbstractMultiset\n/com/google/common/collect/Multiset\n/com/google/common/collect/Hashing\n/com/google/common/collect/Serialization\n/com/google/common/collect/Multimap\n/com/google/common/collect/Collections2\n/com/google/common/collect/ListMultimap\n/com/google/common/collect/ClassToInstanceMap\n/com/google/common/collect/ImmutableClassToInstanceMap\n/com/google/common/collect/Iterables\n/com/google/common/collect/ImmutableMap\n/com/google/common/collect/UnmodifiableIterator\n/com/google/common/collect/AbstractMapEntry\n/com/google/common/collect/ObjectArrays\n/com/google/common/collect/Platform\n/com/google/common/collect/ComputationException\n/com/google/common/collect/ExpirationTimer\n/com/google/common/collect/PeekingIterator\n/com/google/common/collect/Sets\n/com/google/common/collect/ForwardingSortedMap\n/com/google/common/collect/SetMultimap\n/com/google/common/collect/SortedSetMultimap\n/com/google/common/collect/ForwardingIterator\n/com/google/common/collect/Ordering\n/com/google/common/collect/ImmutableBiMap\n/com/google/common/collect/AbstractIterator\n/com/google/common/collect/ForwardingConcurrentMap\n/com/google/common/collect/ForwardingMultimap\n/com/google/common/collect/MapDifference\n/com/google/common/collect/Lists\n/com/google/common/collect/ForwardingListIterator\n/com/google/common/collect/NullOutputException\n/com/google/common/collect/Iterators\n/com/google/common/collect/ForwardingMapEntry\n/com/google/common/collect/AsynchronousComputationException\n/com/google/common/collect/MapMaker\n/com/google/common/collect/ImmutableEntry\n/com/google/common/collect/ForwardingQueue\n/com/google/common/collect/ForwardingCollection\n/com/google/common/collect/EnumBiMap\n/com/google/common/collect/StandardBiMap\n/com/google/common/collect/TreeMultiset\n/com/google/common/collect/Multisets\n/com/google/common/collect/AbstractMapBasedMultiset\n/com/google/common/collect/ForwardingSet\n/com/google/common/collect/ForwardingMultiset\n/com/google/common/collect/ForwardingList\n/com/google/common/collect/LinkedListMultimap\n/com/google/common/collect/MapConstraints\n/com/google/common/collect/MutableClassToInstanceMap\n/com/google/common/collect/ImmutableSet\n/com/google/common/collect/ImmutableCollection\n/com/google/common/collect/RegularImmutableMap\n/com/google/common/collect/CustomConcurrentHashMap\n/com/google/common/collect/SingletonImmutableSet\n/com/google/common/collect/ImmutableMultiset\n/com/google/common/collect/ImmutableList\n/com/google/common/collect/StandardListMultimap\n/com/google/common/collect/StandardMultimap\n/com/google/common/collect/ForwardingSortedSet\n/com/google/common/collect/Synchronized\n/com/google/common/collect/RegularImmutableList\n/com/google/common/collect/HashBiMap\n/com/google/common/collect/EnumHashBiMap\n/com/google/common/collect/EnumMultiset\n/com/google/common/collect/StandardSortedSetMultimap\n/com/google/common/collect/StandardSetMultimap\n/com/google/common/collect/AbstractImmutableMultimap\n/com/google/common/collect/RegularImmutableSet\n/com/google/common/collect/Maps\n/com/google/common/collect/ImmutableSortedSet\n/com/google/common/collect/ImmutableMultimap\n/com/google/common/collect/Multimaps\n/com/google/common/collect/HashMultimap\n/com/google/common/collect/HashMultiset\n/com/google/common/collect/LinkedHashMultimap\n/com/google/common/collect/ConcurrentHashMultiset\n/com/google/common/collect/TreeMultimap\n/com/google/common/collect/LinkedHashMultiset\n/com/google/common/collect/ImmutableSetMultimap\n/com/google/common/collect/ArrayListMultimap\n/com/google/common/collect/SingletonImmutableMap\n/com/google/common/annotations/GwtCompatible\n/com/google/common/annotations/VisibleForTesting\n/com/google/common/annotations/GwtIncompatible\n/com/google/common/base/Preconditions\n/com/google/common/base/Predicate\n/com/google/common/base/Function\n/com/google/common/base/Joiner\n/com/google/common/base/Platform\n/com/google/common/base/Functions\n/com/google/common/base/Suppliers\n/com/google/common/base/Supplier\n/com/google/common/base/FinalizableSoftReference\n/com/google/common/base/FinalizableReference\n/com/google/common/base/FinalizableReferenceQueue\n/com/google/common/base/Predicates\n/com/google/common/base/FinalizablePhantomReference\n/com/google/common/base/FinalizableWeakReference\n/com/google/common/base/internal/Finalizer\n/com/google/common/base/Objects\n" + }, + { + "u":"com.google|google|1|NA", + "m":"1242931407044", + "i":"pom|1242930540000|-1|0|0|0|pom", + "n":"Google", + "d":"Internally developed code released as open source." + }, + { + "u":"com.google.protobuf|protobuf-java|2.0.1|javadoc|jar", + "m":"1242931407046", + "i":"jar|1242930526000|603159|2|2|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"434b9a64046d7657e10dab0bdb32c65d8d1b0beb", + "c":"" + }, + { + "u":"com.google.protobuf|protobuf-java|2.0.1|sources|jar", + "m":"1242931407049", + "i":"jar|1242930526000|96171|2|2|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "c":"" + }, + { + "u":"com.google.protobuf|protobuf-java|2.0.1|NA", + "m":"1242931407053", + "i":"jar|1242930526000|241380|1|1|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "c":"/com/google/protobuf/RpcUtil\n/com/google/protobuf/Message\n/com/google/protobuf/RpcCallback\n/com/google/protobuf/Descriptors\n/com/google/protobuf/UnknownFieldSet\n/com/google/protobuf/CodedOutputStream\n/com/google/protobuf/ByteString\n/com/google/protobuf/AbstractMessage\n/com/google/protobuf/CodedInputStream\n/com/google/protobuf/InvalidProtocolBufferException\n/com/google/protobuf/ExtensionRegistry\n/com/google/protobuf/FieldSet\n/com/google/protobuf/RpcChannel\n/com/google/protobuf/RpcController\n/com/google/protobuf/WireFormat\n/com/google/protobuf/DynamicMessage\n/com/google/protobuf/UninitializedMessageException\n/com/google/protobuf/Service\n/com/google/protobuf/TextFormat\n/com/google/protobuf/DescriptorProtos\n/com/google/protobuf/GeneratedMessage\n" + }, + { + "u":"com.google.protobuf|protobuf-java|2.0.3|sources|jar", + "m":"1242931407058", + "i":"jar|1242930524000|111021|2|2|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "c":"" + }, + { + "u":"com.google.protobuf|protobuf-java|2.0.3|NA", + "m":"1242931407061", + "i":"jar|1242930524000|273974|1|0|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "c":"/com/google/protobuf/AbstractMessage\n/com/google/protobuf/ByteString\n/com/google/protobuf/CodedInputStream\n/com/google/protobuf/CodedOutputStream\n/com/google/protobuf/DescriptorProtos\n/com/google/protobuf/Descriptors\n/com/google/protobuf/DynamicMessage\n/com/google/protobuf/ExtensionRegistry\n/com/google/protobuf/FieldSet\n/com/google/protobuf/GeneratedMessage\n/com/google/protobuf/InvalidProtocolBufferException\n/com/google/protobuf/Message\n/com/google/protobuf/RpcCallback\n/com/google/protobuf/RpcChannel\n/com/google/protobuf/RpcController\n/com/google/protobuf/RpcUtil\n/com/google/protobuf/Service\n/com/google/protobuf/TextFormat\n/com/google/protobuf/UninitializedMessageException\n/com/google/protobuf/UnknownFieldSet\n/com/google/protobuf/WireFormat\n" + }, + { + "u":"com.google.protobuf|protobuf-java|2.1.0|javadoc|jar", + "m":"1242931407064", + "i":"jar|1242930675000|693897|2|2|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"0dfe0424e17061d2b14758d05fea2ad5b50e087a", + "c":"" + }, + { + "u":"com.google.protobuf|protobuf-java|2.1.0|sources|jar", + "m":"1242931407067", + "i":"jar|1242930675000|121545|2|2|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "c":"" + }, + { + "u":"com.google.protobuf|protobuf-java|2.1.0|NA", + "m":"1242931407070", + "i":"jar|1242930675000|288285|1|1|0|jar", + "n":"Protocol Buffer Java API", + "d":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "c":"/com/google/protobuf/AbstractMessage\n/com/google/protobuf/BlockingRpcChannel\n/com/google/protobuf/BlockingService\n/com/google/protobuf/ByteString\n/com/google/protobuf/CodedInputStream\n/com/google/protobuf/CodedOutputStream\n/com/google/protobuf/DescriptorProtos\n/com/google/protobuf/Descriptors\n/com/google/protobuf/DynamicMessage\n/com/google/protobuf/ExtensionRegistry\n/com/google/protobuf/FieldSet\n/com/google/protobuf/GeneratedMessage\n/com/google/protobuf/InvalidProtocolBufferException\n/com/google/protobuf/Message\n/com/google/protobuf/ProtocolMessageEnum\n/com/google/protobuf/RpcCallback\n/com/google/protobuf/RpcChannel\n/com/google/protobuf/RpcController\n/com/google/protobuf/RpcUtil\n/com/google/protobuf/Service\n/com/google/protobuf/ServiceException\n/com/google/protobuf/TextFormat\n/com/google/protobuf/UninitializedMessageException\n/com/google/protobuf/UnknownFieldSet\n/com/google/protobuf/WireFormat\n" + }, + { + "u":"com.google.sgnodemapper|sgnodemapper|1.0|javadoc|jar", + "m":"1242931407079", + "i":"jar|1242930528000|31002|2|2|0|jar", + "n":"Social Graph NodeMapper", + "d":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "1":"c02d5c91208053d57183a690d4f837f7e186119e", + "c":"" + }, + { + "u":"com.google.sgnodemapper|sgnodemapper|1.0|sources|jar", + "m":"1242931407081", + "i":"jar|1242930528000|47123|2|2|0|jar", + "n":"Social Graph NodeMapper", + "d":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "c":"" + }, + { + "u":"com.google.sgnodemapper|sgnodemapper|1.0|NA", + "m":"1242931407083", + "i":"jar|1242930528000|48963|1|1|0|jar", + "n":"Social Graph NodeMapper", + "d":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "c":"/com/google/code/sgnodemapper/ClassUtils\n/com/google/code/sgnodemapper/FileUtils\n/com/google/code/sgnodemapper/NodeMapper\n" + }, + { + "rootGroups":"rootGroups", + "rootGroupsList":"com" + }, + { + "allGroups":"allGroups", + "allGroupsList":"com.google.classpath-explorer|com.google.sgnodemapper|com.google.appengine|com.google.appengine.orm|com.google.collections|com.google.protobuf|com.google" + }, + { + "DESCRIPTOR":"NexusIndex", + "IDXINFO":"1.0|google-maven-repository" + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/expected_uris.json b/minecode_pipelines/tests/data/maven/index/expected_uris.json new file mode 100644 index 00000000..04b1b9cf --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/expected_uris.json @@ -0,0 +1,914 @@ +[ + { + "uri":"maven-index://repo1.maven.org/com/google/appengine/appengine-api-1.0-sdk/1.2.0/appengine-api-1.0-sdk-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine/appengine-api-1.0-sdk@1.2.0", + "file_name":"appengine-api-1.0-sdk-1.2.0.jar", + "size":5584571, + "date":"2009-05-21T18:28:59+00:00", + "md5":null, + "sha1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.appengine", + "artifact_id":"appengine-api-1.0-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":5584571, + "sha1":"51e86684849eee21dba1d8bce3d5365a3eff6739", + "name":null, + "description":"APIs that App Engine provides to you to build your application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/appengine/appengine-api-1.0-sdk/1.2.0/appengine-api-1.0-sdk-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/appengine/appengine-api-1.0-sdk/1.2.0/appengine-api-1.0-sdk-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine/appengine-api-1.0-sdk@1.2.0", + "file_name":"appengine-api-1.0-sdk-1.2.0.pom", + "size":0, + "date":"2009-05-21T18:28:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/appengine/appengine-tools-sdk/1.2.0/appengine-tools-sdk-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine/appengine-tools-sdk@1.2.0", + "file_name":"appengine-tools-sdk-1.2.0.jar", + "size":3771168, + "date":"2009-05-21T18:28:50+00:00", + "md5":null, + "sha1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.appengine", + "artifact_id":"appengine-tools-sdk", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:50+00:00", + "size":3771168, + "sha1":"4f25af39ba02cc45f351b9d1b5bfad91ac482b97", + "name":"Google App Engine Tools SDK", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/appengine/appengine-tools-sdk/1.2.0/appengine-tools-sdk-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/appengine/appengine-tools-sdk/1.2.0/appengine-tools-sdk-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine/appengine-tools-sdk@1.2.0", + "file_name":"appengine-tools-sdk-1.2.0.pom", + "size":0, + "date":"2009-05-21T18:28:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/appengine/orm/datanucleus-appengine/1.0.0/datanucleus-appengine-1.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine.orm/datanucleus-appengine@1.0.0", + "file_name":"datanucleus-appengine-1.0.0.jar", + "size":205574, + "date":"2009-05-21T18:28:59+00:00", + "md5":null, + "sha1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.appengine.orm", + "artifact_id":"datanucleus-appengine", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:59+00:00", + "size":205574, + "sha1":"3a2f2afd03be206dfc8ae88e2d6a63924035a976", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/appengine/orm/datanucleus-appengine/1.0.0/datanucleus-appengine-1.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/appengine/orm/datanucleus-appengine/1.0.0/datanucleus-appengine-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.appengine.orm/datanucleus-appengine@1.0.0", + "file_name":"datanucleus-appengine-1.0.0.pom", + "size":0, + "date":"2009-05-21T18:28:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.classpath-explorer/classpath-explorer@1.0?classifier=sources", + "file_name":"classpath-explorer-1.0-sources.jar", + "size":8456, + "date":"2009-05-21T18:28:47+00:00", + "md5":null, + "sha1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":8456, + "sha1":"33ac52cbbbc30624084d37aec26e3bad6e6e8e2c", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.classpath-explorer/classpath-explorer@1.0", + "file_name":"classpath-explorer-1.0.pom", + "size":0, + "date":"2009-05-21T18:28:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.classpath-explorer/classpath-explorer@1.0", + "file_name":"classpath-explorer-1.0.jar", + "size":14667, + "date":"2009-05-21T18:28:47+00:00", + "md5":null, + "sha1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.classpath-explorer", + "artifact_id":"classpath-explorer", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:47+00:00", + "size":14667, + "sha1":"97aff60fd96696dba2f424e0c598b01f4c107df5", + "name":"Classpath explorer", + "description":"Library which allows discovering classes at runtime", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/classpath-explorer/classpath-explorer/1.0/classpath-explorer-1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.classpath-explorer/classpath-explorer@1.0", + "file_name":"classpath-explorer-1.0.pom", + "size":0, + "date":"2009-05-21T18:28:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/0.8/google-collections-0.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.8?classifier=sources", + "file_name":"google-collections-0.8-sources.jar", + "size":230572, + "date":"2009-05-21T18:29:03+00:00", + "md5":null, + "sha1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":230572, + "sha1":"5adfb39c3a88fcf890cd641e385dece14e6f987a", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.8/google-collections-0.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.8/google-collections-0.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.8", + "file_name":"google-collections-0.8.pom", + "size":0, + "date":"2009-05-21T18:29:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/0.8/google-collections-0.8.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.8", + "file_name":"google-collections-0.8.jar", + "size":484056, + "date":"2009-05-21T18:29:03+00:00", + "md5":null, + "sha1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:03+00:00", + "size":484056, + "sha1":"17e8a9297947abb6b4ba7ca5351f841b6071cd30", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.8/google-collections-0.8.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.8/google-collections-0.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.8", + "file_name":"google-collections-0.8.pom", + "size":0, + "date":"2009-05-21T18:29:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/0.9/google-collections-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.9?classifier=sources", + "file_name":"google-collections-0.9-sources.jar", + "size":259376, + "date":"2009-05-21T18:29:04+00:00", + "md5":null, + "sha1":"71306927faa8f68c7cd90d1694a21071332ff439", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":259376, + "sha1":"71306927faa8f68c7cd90d1694a21071332ff439", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.9/google-collections-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.9/google-collections-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.9", + "file_name":"google-collections-0.9.pom", + "size":0, + "date":"2009-05-21T18:29:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/0.9/google-collections-0.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.9", + "file_name":"google-collections-0.9.jar", + "size":570670, + "date":"2009-05-21T18:29:04+00:00", + "md5":null, + "sha1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"0.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:04+00:00", + "size":570670, + "sha1":"ec6d2a864c3948b0a14eed37040ed27863d0e078", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.9/google-collections-0.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/0.9/google-collections-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@0.9", + "file_name":"google-collections-0.9.pom", + "size":0, + "date":"2009-05-21T18:29:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@1.0-rc1?classifier=sources", + "file_name":"google-collections-1.0-rc1-sources.jar", + "size":274317, + "date":"2009-05-21T18:29:02+00:00", + "md5":null, + "sha1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:29:02+00:00", + "size":274317, + "sha1":"a828c95ca3441fd27bece8400918b2048b0b4287", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@1.0-rc1", + "file_name":"google-collections-1.0-rc1.pom", + "size":0, + "date":"2009-05-21T18:29:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@1.0-rc1", + "file_name":"google-collections-1.0-rc1.jar", + "size":556523, + "date":"2009-05-21T18:29:01+00:00", + "md5":null, + "sha1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.collections", + "artifact_id":"google-collections", + "version":"1.0-rc1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:29:01+00:00", + "size":556523, + "sha1":"60b38113d27173db5de9923a5b34a7dc188cec86", + "name":"Google Collections Library", + "description":"Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/collections/google-collections/1.0-rc1/google-collections-1.0-rc1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.collections/google-collections@1.0-rc1", + "file_name":"google-collections-1.0-rc1.pom", + "size":0, + "date":"2009-05-21T18:29:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.1?classifier=sources", + "file_name":"protobuf-java-2.0.1-sources.jar", + "size":96171, + "date":"2009-05-21T18:28:46+00:00", + "md5":null, + "sha1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":96171, + "sha1":"f68def5b45b1339f00e424213e0b5967fc52ee4b", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.1", + "file_name":"protobuf-java-2.0.1.pom", + "size":0, + "date":"2009-05-21T18:28:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.1", + "file_name":"protobuf-java-2.0.1.jar", + "size":241380, + "date":"2009-05-21T18:28:46+00:00", + "md5":null, + "sha1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:46+00:00", + "size":241380, + "sha1":"7f2b4fea21d6eae6b1628a6db3b84407df739ccb", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.1/protobuf-java-2.0.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.1", + "file_name":"protobuf-java-2.0.1.pom", + "size":0, + "date":"2009-05-21T18:28:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.3?classifier=sources", + "file_name":"protobuf-java-2.0.3-sources.jar", + "size":111021, + "date":"2009-05-21T18:28:44+00:00", + "md5":null, + "sha1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":111021, + "sha1":"47477685d7e7ab8cc5f91f6f80d355303f15672e", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.3", + "file_name":"protobuf-java-2.0.3.pom", + "size":0, + "date":"2009-05-21T18:28:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.3", + "file_name":"protobuf-java-2.0.3.jar", + "size":273974, + "date":"2009-05-21T18:28:44+00:00", + "md5":null, + "sha1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:44+00:00", + "size":273974, + "sha1":"1abbaec76ddc804bb48be33d9a46d7fe43180a9c", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.0.3/protobuf-java-2.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.0.3", + "file_name":"protobuf-java-2.0.3.pom", + "size":0, + "date":"2009-05-21T18:28:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.1.0?classifier=sources", + "file_name":"protobuf-java-2.1.0-sources.jar", + "size":121545, + "date":"2009-05-21T18:31:15+00:00", + "md5":null, + "sha1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":121545, + "sha1":"e4dcd9a316f1d1048a49378497dee715c5d79dfd", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.1.0", + "file_name":"protobuf-java-2.1.0.pom", + "size":0, + "date":"2009-05-21T18:31:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.1.0", + "file_name":"protobuf-java-2.1.0.jar", + "size":288285, + "date":"2009-05-21T18:31:15+00:00", + "md5":null, + "sha1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.protobuf", + "artifact_id":"protobuf-java", + "version":"2.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:31:15+00:00", + "size":288285, + "sha1":"4b9146b5ef6fa3d876fe0f6612b7eb0afc17152d", + "name":"Protocol Buffer Java API", + "description":"Protocol Buffers are a way of encoding structured data in an efficient yet\n extensible format.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/2.1.0/protobuf-java-2.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.protobuf/protobuf-java@2.1.0", + "file_name":"protobuf-java-2.1.0.pom", + "size":0, + "date":"2009-05-21T18:31:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.sgnodemapper/sgnodemapper@1.0?classifier=sources", + "file_name":"sgnodemapper-1.0-sources.jar", + "size":47123, + "date":"2009-05-21T18:28:48+00:00", + "md5":null, + "sha1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":47123, + "sha1":"5823362a754fe9966352cf1dbbecd8f0300c65f7", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.sgnodemapper/sgnodemapper@1.0", + "file_name":"sgnodemapper-1.0.pom", + "size":0, + "date":"2009-05-21T18:28:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.sgnodemapper/sgnodemapper@1.0", + "file_name":"sgnodemapper-1.0.jar", + "size":48963, + "date":"2009-05-21T18:28:48+00:00", + "md5":null, + "sha1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.sgnodemapper", + "artifact_id":"sgnodemapper", + "version":"1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2009-05-21T18:28:48+00:00", + "size":48963, + "sha1":"06c1561b884d715fdb5091328c05d998b3cbdfb9", + "name":"Social Graph NodeMapper", + "description":"The Social Graph Node Mapper is a community project to build a portable library to map social networking sites' URLs to and from a new canonical form (sgn:// URLs).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/sgnodemapper/sgnodemapper/1.0/sgnodemapper-1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz", + "package_url":"pkg:maven/com.google.sgnodemapper/sgnodemapper@1.0", + "file_name":"sgnodemapper-1.0.pom", + "size":0, + "date":"2009-05-21T18:28:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts-defaults.json b/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts-defaults.json new file mode 100644 index 00000000..3b78cef7 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts-defaults.json @@ -0,0 +1,18850 @@ +[ + { + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:57:35+00:00", + "size":26402, + "sha1":"ed4e1fc30fe5df3e663deead1501ac4fa72c7d58", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:57:37+00:00", + "size":14766, + "sha1":"1d8339275d436e3a19c41e9145acc4860a75fb14", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:29:04+00:00", + "size":128889, + "sha1":"015cf02919fed76b6d44e133d3cd33d8448104d8", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:29:07+00:00", + "size":56160, + "sha1":"a1ca8d589d8e2474ffe091df3533db93f9f9023b", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:42+00:00", + "size":40057, + "sha1":"d08e451a8cb54c6f01051b5c531eddf6f2515387", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:41+00:00", + "size":3888, + "sha1":"692580d3963f34c9b056724f8a967c2a98996891", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:25+00:00", + "size":45287, + "sha1":"4596f3be51938fe0e46a8c1ee35365e873ac9f30", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:24+00:00", + "size":3888, + "sha1":"50395ad6d68ff0b383c710f0a20a3d3f50419190", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:53+00:00", + "size":39470, + "sha1":"ec127d1451280f9c80fb3682a123418b9a637966", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:54+00:00", + "size":5402, + "sha1":"210a54990568740a462384796c87c776c19faac3", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:45+00:00", + "size":56385, + "sha1":"66dd6cc38d12fa27b01536d2aa33c1e5dacf10fa", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:46+00:00", + "size":5402, + "sha1":"2ab00bd801f7f82c599c99b5b424e65612ba8495", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:03+00:00", + "size":26679, + "sha1":"31877779190ab6bf8edfac489739957a97db577b", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:04+00:00", + "size":2341, + "sha1":"3f307f0f1a76140e88efe4e6558f3674b5ae3973", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:25+00:00", + "size":27990, + "sha1":"e16346bd99aa731b2fe50de6a86b46cccc8e2db6", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:26+00:00", + "size":2341, + "sha1":"39d89bf8ef7b5c8a145b49a1e7ae84ffb8eb50a0", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:30+00:00", + "size":70465, + "sha1":"c177235bac41d55c6449b1677ea30414b2becd93", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:28+00:00", + "size":8825, + "sha1":"384520bafa9f5b07ecf095eaa743ad4e0d488545", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:59+00:00", + "size":82817, + "sha1":"f4f85308327a833c1ce5c4c23e37c04d461b54c7", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:50+00:00", + "size":8825, + "sha1":"214a57b83558247b05885d42833e082055d88e6f", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:37+00:00", + "size":21924, + "sha1":"cb3d35fe78c211b7d513ad3d7756c5f8e8cb7795", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:33+00:00", + "size":3373, + "sha1":"33b96779499a790144c69e94e17f45acbbe9d05c", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:20+00:00", + "size":35539, + "sha1":"5f66f89b5a7a57a5cbe7151d429ef32b110e071d", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:09+00:00", + "size":3373, + "sha1":"1d75d62f11c4b23709a8b45bc5946a94d72d2bab", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:57+00:00", + "size":103795, + "sha1":"872762183561e05e688dc5819b32c149458847a4", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:00+00:00", + "size":9867, + "sha1":"ecf05354d5cc02463308296f32d4797351259b63", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:31+00:00", + "size":126866, + "sha1":"fb5a69c23c9a9107c279d1b138ab75c6ebb2a4dc", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:33+00:00", + "size":9867, + "sha1":"938a6ec022c4d7cc0a523174e1c6a8b760ef13ee", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:49+00:00", + "size":18135, + "sha1":"6f8dffd475762a2b93dd310a27fdfaaefa4c7520", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:50+00:00", + "size":3431, + "sha1":"f51ec1abf22f0f7a3f30448f9641260ebb128095", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:37+00:00", + "size":18443, + "sha1":"d05f6810d6290c7be0393616b3523297128f0f19", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:38+00:00", + "size":3431, + "sha1":"6ad85fc6eea52f8a1e82c6cac737af825d1c7508", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:16+00:00", + "size":112994, + "sha1":"93b40f35291ba917fb653d1887b7cdf3e93168a7", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:15+00:00", + "size":14550, + "sha1":"bb2a2f22a62aba6da42e80e8d1e1df37bd9cebca", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:31+00:00", + "size":128041, + "sha1":"1c2f14f715fb7c2aa89f645e63c4c6d6ed3eb0d2", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:30+00:00", + "size":14550, + "sha1":"9dd3f88439219f94363467ef8a773d084afbe69f", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:10+00:00", + "size":18642, + "sha1":"be15daf3261cce15e010a5cbc706bab84025b208", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:13+00:00", + "size":3881, + "sha1":"da1b18ebfb145fbf4ab3393b3e90b381584f455f", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:02+00:00", + "size":25100, + "sha1":"2ad5805fb990a94bda1f18c538058e988d4fd2fc", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:04+00:00", + "size":3881, + "sha1":"248dc272046a2d9a002ebfa2a3c3dd1e9c9cc12a", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:24+00:00", + "size":104163, + "sha1":"80236c93ab0287d33667dbdd50db9d61d90c0322", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:25+00:00", + "size":9439, + "sha1":"d5bbf0620d479a62f06b7243535a268d347c7288", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:43+00:00", + "size":107085, + "sha1":"8384efe58606dd533d32b5a313fc623526f4b050", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:45+00:00", + "size":9439, + "sha1":"3027da7063ff492a47c9ed9a5781a12690740c6a", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:06+00:00", + "size":235126, + "sha1":"7ac0ac440cf223603e33b7705c73694977724817", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:09+00:00", + "size":25717, + "sha1":"9e297d2857da80411c2a71d3f6434b166a99a0b0", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:39+00:00", + "size":276970, + "sha1":"1320eaf6635ec5c7ed2763e926fa07a0b5566804", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:42+00:00", + "size":25717, + "sha1":"e0839afa82cfe289d43f5463cc43255962be7bf9", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:48:21+00:00", + "size":2231830, + "sha1":"4e5805ee9f296f18d4a7cbaaee2091a8eeb69e5b", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:48:27+00:00", + "size":30728, + "sha1":"476945b335cfa0c672992a9eee26c631caf49c6a", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:42:54+00:00", + "size":1966327, + "sha1":"22c4c6e4f444f7da61db8f7f825039e0f73a6cf9", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:43:01+00:00", + "size":1379990, + "sha1":"10cd83d0bfe61a204da486410dbda8bc6740067f", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:46+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:49+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:39+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:42+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:24+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:28+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:31+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:32+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:05+00:00", + "size":37827, + "sha1":"7212a2f595012404511f7bdd588a89858f97c36e", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:08+00:00", + "size":18343, + "sha1":"ea527e744ee235fa2a07f8fb1af970a2e27e87d9", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:15+00:00", + "size":7883, + "sha1":"defb07accd7aa9410a8124fc807b2bc010b40a79", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:20+00:00", + "size":4684, + "sha1":"167feeda2af5ee7fd4048d526b081aa781673edb", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:57+00:00", + "size":9124, + "sha1":"a3bfe5df502af598ef772765bddd7d044d92ee5c", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:00+00:00", + "size":5264, + "sha1":"16cbcaea37f11289d3a94257a529e9a7e0a111f8", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:30+00:00", + "size":10045, + "sha1":"4b9797c7f8638ce8fc1b5e1cb0207f56490caec5", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:32+00:00", + "size":4592, + "sha1":"b78974acf9b26c1bff0ce931d385751a0955b7e4", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:23+00:00", + "size":7484, + "sha1":"308ce202815849b05d162089b8836b521f10fc71", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:25+00:00", + "size":4091, + "sha1":"b04d42609ad28a965d8f566a0a23ba81fbcfaea6", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:15+00:00", + "size":82338, + "sha1":"10f6ef42d83c643dcfd07ebb6ebb17d87a45224c", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:17+00:00", + "size":44424, + "sha1":"0e3b3b25fbcc11ffef71aaaf57a164d39ea97861", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:07+00:00", + "size":36389, + "sha1":"7c305dbc51ac9a16188f0b8ec530f11a5e3b96f7", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:10+00:00", + "size":20645, + "sha1":"030cff8b79b112b7adfced1512d9cdfee9faca97", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:00+00:00", + "size":114250, + "sha1":"83301f2f15b479a7d69588b27b3634de9cc7e6dd", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:02+00:00", + "size":60221, + "sha1":"4d0e1498a8cd7ca095b21b124f47d6972fb64a8b", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:52+00:00", + "size":17078, + "sha1":"62a3f6789bf7fbcf5bc615e686fdabd087eb43f3", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:53+00:00", + "size":10577, + "sha1":"45c3e8ac90817f69a7cb5dc93eb30e824e3bc432", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:44+00:00", + "size":65561, + "sha1":"e12ea5cd01d448021ba298397e038773228fc1f2", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:47+00:00", + "size":37017, + "sha1":"a1e868d5706ddf881760a6bdf11a4246e2986207", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:37+00:00", + "size":22492, + "sha1":"a952687116943b46dbd054ebde81e95404aab621", + "name":"http1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:41+00:00", + "size":10915, + "sha1":"35dffc6f854c29c70837251f0c39ff094a8a74c3", + "name":"http1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:06+00:00", + "size":17236, + "sha1":"33d6b56b43ecede32018fe239f62bb89eb01f63f", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:09+00:00", + "size":10899, + "sha1":"fc43909597eec87d02d49b32a645a52f9e6db035", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:58+00:00", + "size":57989, + "sha1":"bdb4fd9e9f3c1133a0c6e91975ed5d35b028dce4", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:01+00:00", + "size":30513, + "sha1":"55f0b0e77ef733f7b88a694d363c37d43a25fe72", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:48+00:00", + "size":50182, + "sha1":"664114861723e0e9ff74c65ac60353d3c6a46169", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:52+00:00", + "size":30057, + "sha1":"5665817c2fbe54e0be46a7c16c88b55c7ab9f4bf", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:39+00:00", + "size":52684, + "sha1":"82cafbbbb220455ed2754c7ee39d2f30f093b67d", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:41+00:00", + "size":32831, + "sha1":"866e5d34869b45189c2ec593127c5e8a247f4f18", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:32+00:00", + "size":11571, + "sha1":"4086b01040b49f6e9d7acd5c650d77ec7b39d497", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:35+00:00", + "size":7919, + "sha1":"e04c0ea2b882a180a01d4000a9e4db2c732587f4", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:25+00:00", + "size":13897, + "sha1":"56a971d9ebd709b7c8fdbbea62301a50e2b73039", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:29+00:00", + "size":8441, + "sha1":"1a48f4b7c2268a34faca05c756d1cf7b19843717", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:16+00:00", + "size":191986, + "sha1":"d9d6e370aaadedb69b7532203c5ae8963d214183", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:21+00:00", + "size":105422, + "sha1":"7e595506c015cd2f7f324b6eca531aae85bab6f1", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:29+00:00", + "size":45670, + "sha1":"3d39d23b2f8e8967cc48af382ee027f9ff4f17b1", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:32+00:00", + "size":22429, + "sha1":"61cb7baddf71a27488bb57b2d16b3eac706f6632", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:21+00:00", + "size":361, + "sha1":"0b8cac5e42d358f8052888adf5e3c8d1d8d790e9", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:23+00:00", + "size":361, + "sha1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:30+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:35+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:49+00:00", + "size":10853, + "sha1":"4efd5955453240db8018ddccdf6bc4743d32b628", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:51+00:00", + "size":6374, + "sha1":"b6b33d66b6e68f2975b70fc370bb00b262fe28ca", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:42+00:00", + "size":5575, + "sha1":"87fa6bf1cdc23cc4322937203efbfb5466e03cfa", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:45+00:00", + "size":3989, + "sha1":"7da486aca8455f0bc0bd872b33705c8123111ce0", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:08+00:00", + "size":14591, + "sha1":"7dd5a6d2cbdaaa754384677f85b12d83ff018037", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:10+00:00", + "size":6068, + "sha1":"3ba9698bf406038872359fdb2a84bbea72acd86c", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:56+00:00", + "size":54648, + "sha1":"acc4f58c575e255c4544a2a5e2c275589c8b622f", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:59+00:00", + "size":25749, + "sha1":"568ea56496d57db24b053954150d5faf82fc0fa0", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:48+00:00", + "size":10848, + "sha1":"bf424872df3f09d498a61e0782a8f348e3307671", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:50+00:00", + "size":7314, + "sha1":"d50517a11c934d5a3306bb048003dfe367555daa", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:40+00:00", + "size":14341, + "sha1":"28813b0131366be24796f79b72dbc6eb7ac5f0b1", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:43+00:00", + "size":8972, + "sha1":"d84c4c07889c2161e0887fb8e1694ae4a6bd802d", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:33+00:00", + "size":11318, + "sha1":"d9d49b29902b6245b02cebc107f6ef2d9da1c9ab", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:34+00:00", + "size":5194, + "sha1":"3d7208c4eeabb4bafb0533a272f0918ec47b404b", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:24+00:00", + "size":4270, + "sha1":"61f3e155e138475e25766871102781ca2794d6e0", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:27+00:00", + "size":2744, + "sha1":"568dc20f4c62f3de6af168911f19b62654f0dedb", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:15+00:00", + "size":21400, + "sha1":"9768cb3758212f7acfa3dd04d95900ffd2d7e545", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:18+00:00", + "size":14292, + "sha1":"88ecae2fd21c434be55497107fc91f86706664db", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:07+00:00", + "size":116879, + "sha1":"82748abd173cb13b2f3a3464fe4fa4ca7d42f385", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:11+00:00", + "size":69670, + "sha1":"e6a2ca933752332891b6f6a044d6251c3d3a853b", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:00+00:00", + "size":13087, + "sha1":"fc0470af4a1ffe8924af8d0ed725d4015dbdc6dc", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:02+00:00", + "size":8951, + "sha1":"bc354a3cb46bbae92a3a75e191d1203b2fdcdfed", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:23+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:28+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:48+00:00", + "size":6996, + "sha1":"90e4dad9f9df849a44c2e53571da9b8873c6bd08", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:50+00:00", + "size":6271, + "sha1":"5de9e7e24cab00e744099787ee224d5303f90adf", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:40+00:00", + "size":101725, + "sha1":"0a479539970ece32636a6262f5030ef111fa03ee", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:42+00:00", + "size":52771, + "sha1":"e7ad84bfad4136161af245c65054f8f1362cae6e", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:49:29+00:00", + "size":189216, + "sha1":"1b25f4c6adfe1d2d3bea9a483c67fcc100030a47", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:49:30+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:51:52+00:00", + "size":4329686, + "sha1":"74704cf2089ad239d8571505dae1aa156d5c7fde", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:51:53+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":6195, + "sha1":"3b75592cba0e809388bcb3c7c7bd23718a1be2ae", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:07:22+00:00", + "size":8772, + "sha1":"5a5d599e7b047478fbc86f57861875f9e786c214", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:26+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":31041, + "sha1":"005d438b982a3b515741322aadb83d217861d2cc", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":10535, + "sha1":"5e131b5fecc133171a862349e935561bf684d777", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":206262, + "sha1":"52092d98ef99ed32028f3aa5b8e5988bbf856e28", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":136426, + "sha1":"f4e51d30d5a9c803fed183230ccce77b58a01cc8", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":231752, + "sha1":"63efec9923beb99517a585c9b581f2071b1a4309", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:38:58+00:00", + "size":78932, + "sha1":"5eec2669896e2c6723638319c8901d0074482adf", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:38:57+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":106704, + "sha1":"e47f0aba0d98e5265813c98b3c935ddeabcdc24f", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:41:31+00:00", + "size":2135239, + "sha1":"00dc1a7c9f6deb2be25c745962164764ae53c99c", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:41:32+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T05:02:35+00:00", + "size":80567, + "sha1":"33fa9ca83747b80fdf0f59db9ace5f58cc05391c", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T05:02:36+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":126029, + "sha1":"56915ea67ec810dba0b90fa674f7ea3715c64246", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":333555, + "sha1":"78decf84e8b47054ee91fa64111338970c62f7f9", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":162386, + "sha1":"0150841deb5d4bdab5b2bc037e517d604d494086", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":494235, + "sha1":"1e1a5d20dbd2b1b454c25ccd8a6abaa73596caa4", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":14930, + "sha1":"fc0e7cb40dbe37590a170fc027c33dd0a6a9cc01", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":189856, + "sha1":"f1256442c75e64565ccdf69e5bf7ea13d0d0e3ee", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":176836, + "sha1":"df97170363666f4d2280a7a175d961b90157c91e", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":60224, + "sha1":"91f2483d8fc617a1c9edbb39e44b70f45556544a", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":373467, + "sha1":"8d1f1658a7a0b806839dcd98cc896641be660b3c", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":213937, + "sha1":"a455b48ecfa77d2a3b3b04a28f5f09a9a38458f7", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":348660, + "sha1":"4298b500f87d0024873900825ecfd9af6be67905", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":1112124, + "sha1":"23a646487addc0f3aaa963c4a4a33ae85696b6f1", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":104872, + "sha1":"e4372886dbb35e1f3194979d9bc3fb75b9d0463e", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":1828312, + "sha1":"6a17503da7d6e3ef91e044dac2b7ff1a54588ade", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":318114, + "sha1":"58d89c2812580ec7d089b2a4fa5298a0dd3ee0ab", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":508560, + "sha1":"df071fa8c26cef423ac6a9cae666b49a1c88d197", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:44:48+00:00", + "size":65121, + "sha1":"bf291b5122b74afd02155ea41456ae1b0595c46d", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:44:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:30+00:00", + "size":104696, + "sha1":"141f29a88cbef62c589f5d7eea9430a0aa6f0e92", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:27+00:00", + "size":125795, + "sha1":"9e474f8f1c8f2b3174b02e9bdd9d368e6e0d82e9", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:05+00:00", + "size":128436, + "sha1":"7e1469bd45cc919d03c6f14a61c24708271f5a8e", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:54+00:00", + "size":125795, + "sha1":"9eac4f5ffb3a58fececdd02bc4bc7e25ba9a42a7", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:26+00:00", + "size":60153, + "sha1":"3df1d2e5d7a0b19280c7364e9dbe55256a907cbb", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:25+00:00", + "size":6730, + "sha1":"56efe4e6bfeb17e31bdaf50d0d9f523951fd4273", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:34+00:00", + "size":105576, + "sha1":"f60f5cdd8071d45f6610b20050223685ffb40d7b", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:33+00:00", + "size":6730, + "sha1":"ea81c5ecbc66b6ddc966bdc8f6440d8b62b3cac1", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:32+00:00", + "size":488079, + "sha1":"ae8778ab7e7c8760e635248b76b74c0dff9ebbe4", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:31+00:00", + "size":20342, + "sha1":"3069011122f5a86a8ec3bd55c89fbb821aed40c3", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:42+00:00", + "size":610329, + "sha1":"99464ef3df393ce218b10360c6cb1b09d301f3aa", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:37+00:00", + "size":20342, + "sha1":"95ed499cf53332cefab40a0fc56581d8a54c327c", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T02:42:15+00:00", + "size":326356, + "sha1":"fdbf5a0dbe4e65eec2a870d077864836d1f13df6", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T02:42:17+00:00", + "size":242102, + "sha1":"736b6a283c201e130b01c4453de0133ae2a3efdc", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:39+00:00", + "size":21626, + "sha1":"557782ebe8fc9a580b08bac9ef77d5e8c64d7177", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:36+00:00", + "size":19036, + "sha1":"46c1523e3a9702761a6323676e72693bc75b4c71", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:18+00:00", + "size":21180, + "sha1":"23120f881916d33ae046fd1a584966aec91e475e", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:16+00:00", + "size":19655, + "sha1":"d539d5fda574c040f15d194bd82ea7922cbaec1c", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:30+00:00", + "size":10640, + "sha1":"925266c7922a06888b1344bba6283c452aaac9bb", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:38+00:00", + "size":10857, + "sha1":"4c6f98d5cae895276da5073a6524bc7c2ff4dcde", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:20+00:00", + "size":7647, + "sha1":"477d714c863ac7629f10816a2d40ec57abdf7578", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:21+00:00", + "size":8687, + "sha1":"a15ed9c67a00362936e9fad33e6f6ed3d2cae541", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":32327, + "sha1":"229d4d9e7d5ed96f0e787a7ed49529fa8db4dc7d", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":4770, + "sha1":"9eb248edc6977d398c06bab9b831e9901c5f2f93", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:35+00:00", + "size":43100, + "sha1":"059afa5c68e0ef979033df98ec91107b1454c4c1", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:34+00:00", + "size":4770, + "sha1":"7da055f885b0a5ebe9b604b0df2461b67925c44c", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":8712, + "sha1":"18b14e931134e0ddf785ddcc279d84a461e4c7d2", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:40+00:00", + "size":799, + "sha1":"3e7674389f685c30a7a4d9833ba077ab6c61fa1a", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":8495, + "sha1":"2604a24ab822110d0025f5cc4ed752011d0a6ae8", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":799, + "sha1":"a1c414f85c583608583beb843dafdcbdf080a7a7", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:16+00:00", + "size":8124, + "sha1":"ade86c9bd61ffd41aeed5e78aa7b32037a61b310", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":799, + "sha1":"88d57dcb1b4dbd06ff897577bb8dcf0fb287767d", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":65772, + "sha1":"ad2f590dc1382c99d809a4b98bc9c32689055fa4", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":8976, + "sha1":"164c599039abb9180b22a863e32d084248485e16", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:11+00:00", + "size":141373, + "sha1":"ebe8e9cb531fe117afe6a93f198dca30827d594b", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:12+00:00", + "size":8976, + "sha1":"7a91583b6db13543494efe1260df006149e56968", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:39+00:00", + "size":14385, + "sha1":"e20a71b440c3dfeb656be8ddc1d0709cad3476c2", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:38+00:00", + "size":2939, + "sha1":"25d37292455e95c8885a23a62e3c0d8b63906255", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":30696, + "sha1":"a9aafd5ecac05683a9945b1da8b6a0159b429f49", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":2939, + "sha1":"46fb4cc10287c199c5dd962af3a4bf792a3913fa", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":49623, + "sha1":"f334aea787214558a15a58e2d2250856a19218c8", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:51+00:00", + "size":5320, + "sha1":"be3b5ea23dbdb3e90cbac9ae584a2a03508d095d", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":68235, + "sha1":"b649d74c6184c3706351a34867c163ea542a3d9b", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:33+00:00", + "size":5320, + "sha1":"de74a6b013f58bc4f714c8fd951ad8ba1f86c48f", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":227544, + "sha1":"ca71893c6b9308c606ea5b028c1895411ffab8bb", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:48+00:00", + "size":25196, + "sha1":"e1bd336714d85739b44c48612bb7c7ed8f4693bd", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:30+00:00", + "size":266622, + "sha1":"1690a0a6e9ccca4acc485f48a0a4e365f9e8bfe4", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:29+00:00", + "size":25196, + "sha1":"1cd9bd09f5bc9dbecb65947bcc049051a7e0f309", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:18+00:00", + "size":261963, + "sha1":"1ea16fe244dfcf0c06e07166234a1183f1011001", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:17+00:00", + "size":25196, + "sha1":"749cf5d9bc6fd03a2c660fc7d4c9a93ab9f76d34", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":5280, + "sha1":"934cf307fde68441222115da5afedc993b2afceb", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":2944, + "sha1":"d19833670326945369b833349134871cd61cef6d", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:43+00:00", + "size":12453, + "sha1":"1bf831a6ae45de7856a25521a4561a82fc94d150", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":2387, + "sha1":"a8d403ac2a80fc98ff8f2b563831a87d63115a19", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:28+00:00", + "size":13343, + "sha1":"3b92c4421dd7858915cacb7b5b01dcfa05bbe250", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:26+00:00", + "size":2387, + "sha1":"080a5e194ff6a17f4b3af65d94a97540eb3294ab", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":256315, + "sha1":"e6d176ae6b8ca90c2fc9e3420552d0c1419d778b", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":27554, + "sha1":"9018372a6622be92621b5cc47a53d3f11a5cf2ff", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":406072, + "sha1":"e61dff7f8eefcdefd3c53e61af672d791e9ed62c", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:31+00:00", + "size":27554, + "sha1":"e2252a534b12a02f5b882c1e011a446046f316be", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:54+00:00", + "size":336211, + "sha1":"7b37933db563310a7f1019639c5cb32ab7229c74", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":28280, + "sha1":"6941942ab4462f4518bdad36d72ec4f1c2e8d6ee", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":454304, + "sha1":"68bff39198e053db1ea0d040ef89a2f451308627", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":28280, + "sha1":"809f96abba52b67aebfd02068d64722868aa8f21", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":449387, + "sha1":"1f7a3792759cf94a30ffe54d3d3b945b8ed6cf8c", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":28280, + "sha1":"bf59d15f1955b018dbcd3fc50f40cce08d2aea63", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":207172, + "sha1":"6ab749cae6bd9d814c5a8d5e185657b0e6aafabc", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":8567, + "sha1":"7aff4ad5634eff6066fced5b840a6a7e8e1c6aab", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:10+00:00", + "size":208431, + "sha1":"26b1c180ea8fcf9197a096708f46c7ac7ed89357", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:13+00:00", + "size":8567, + "sha1":"2641f3693fe788ad0ab16d84bf64a43ff80a9440", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:45+00:00", + "size":77166, + "sha1":"374fe0c6c3871afdaab07fca204aa58cd5b64944", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:46+00:00", + "size":13696, + "sha1":"693542bddc15e9fc061d80427bab8073db152d49", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":88765, + "sha1":"6c47f8d341596aef388321489c05fb6826de36f5", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:14+00:00", + "size":13696, + "sha1":"1820cc267dfe2adbf3691643d72313b53fb268cb", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:19+00:00", + "size":1203208, + "sha1":"242a43f9770069de3ad467a5d17a43a132b1f5a8", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":209251, + "sha1":"d272d973972911435ed73ce245eefac4b77c1caa", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":1805859, + "sha1":"232dacfba271a872d18493f047ea7546dd4d4dd7", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:13+00:00", + "size":209251, + "sha1":"ac0f46616dd2766cccf11593e494a1054c7b44c3", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":120091, + "sha1":"0c20de2eddaa17256239012bfdd5a38cbfdd2c6d", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":6897, + "sha1":"bedf80d72822022a20f8395c433a176a7814fa9b", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:44+00:00", + "size":119731, + "sha1":"f9fbdae28d8cfcffa02483c956027c3b4a068182", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:45+00:00", + "size":6897, + "sha1":"00fc4beb821e1d1228b4c63222a82d0598bd540a", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:44+00:00", + "size":117966, + "sha1":"691041e81ec1206af9426df670bdc8253015a0b0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:49+00:00", + "size":6897, + "sha1":"89146848fc9ad433d6418df880ba64437c776498", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:56:45+00:00", + "size":62658, + "sha1":"58ec8b0c927a3e0b5bbb38d8bee4c0a30fb6ff48", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:56:46+00:00", + "size":6109, + "sha1":"dc6f16508a2222f09438b6d4c47cc00db3da6c4c", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:52:10+00:00", + "size":62638, + "sha1":"18d7ce01c236ea084bdb1e170b727f5ab554d69f", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:52:12+00:00", + "size":6109, + "sha1":"f4b4a84b8f7f357d6d0192d642bb013e1ff7b6c1", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:54:28+00:00", + "size":60883, + "sha1":"fa6688c6ebcc07aa09d26fc328e66553eef9a8d0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:54:32+00:00", + "size":6109, + "sha1":"2ff8e8adfd85235d9bb911ac3b98af108e1c5216", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:41:08+00:00", + "size":158840, + "sha1":"06c1f92fa6cacfe50c0e9973ffe956da25aed089", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:41:10+00:00", + "size":35184, + "sha1":"061240194d73a352a49c0cac1fec2e0ec72cd885", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:55+00:00", + "size":158840, + "sha1":"0383e87287979591689f0803d40e062e34350810", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:57+00:00", + "size":35184, + "sha1":"7eaf8694295f4c9e9b6d0d9f872c154915ed1c89", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:32+00:00", + "size":155918, + "sha1":"a924c7b0eb6a0ec1d667de3316d1acec25ad9c13", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:34+00:00", + "size":35184, + "sha1":"f2ac22b9045082adee8a6a357d8ae805a2815106", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:43+00:00", + "size":155901, + "sha1":"ee04cbd7a11f4fcd3f3937c963bd499e7d0138e9", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:44+00:00", + "size":35184, + "sha1":"80ccea87d3235404a8f615b724c79540ecbedfee", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:52+00:00", + "size":158991, + "sha1":"b260e5f316698ea9bc8ba851088a0a136fe97393", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:54+00:00", + "size":35184, + "sha1":"ad15b75b40eb7868baced39fcf5fc270f70cdcd5", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:39+00:00", + "size":158991, + "sha1":"a61d50fa23ce0c99c6b6c4b9940ed576dc26c756", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:40+00:00", + "size":35184, + "sha1":"a2f22047739ca655d4a3a3074e8b3af359ac623a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:15+00:00", + "size":156026, + "sha1":"6bf0c490df5fb4993c1016c5ae1e89cf3ae9a1f2", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:17+00:00", + "size":35184, + "sha1":"eeb49cd960c007d1f741e2a4a4de569f5e2a2e2a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:25+00:00", + "size":155975, + "sha1":"fb7fa16e78986de15b0246af23b952292eda25b4", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:27+00:00", + "size":35184, + "sha1":"2b040c4c698cb702afe5e213508d71491a76d4aa", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":30039, + "sha1":"66428aef0fbf4d12f5034a5aed1cabeffb83d98d", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":8574, + "sha1":"378f7530aee4eb94987aa8eab8128ad0d8819896", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:01+00:00", + "size":30039, + "sha1":"4efb3890ebb6c90fb9ab6c2459b63fc21ca36507", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:02+00:00", + "size":8574, + "sha1":"98e345eee6471d4bb62337f63c1a187df332e159", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":28643, + "sha1":"7174a20172d5cb1392904aa0b7e3536ec98a6fba", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":8574, + "sha1":"b30a9f3b8f8f808a80bdde5ee1791c43c53bceb8", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":28606, + "sha1":"f76ade7a1b5a651331a73f69849e23660dd4383f", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":8574, + "sha1":"a4fdd4aa1d8d7d44ca65c453c178b620083f8c48", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:04+00:00", + "size":30178, + "sha1":"b45a5ea1aaf81e3aa31aa1808388dc2f4cd0f37a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:05+00:00", + "size":8574, + "sha1":"71077646045586357df01e798ac8abf8823afcb0", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":30178, + "sha1":"f73fdf9648e9f851a01c7c72dd200f707f20c331", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":8574, + "sha1":"b7320587fb90013a7795beef74cb6d30e5340b7a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:37+00:00", + "size":28787, + "sha1":"004b322964680e27cd296d81806ec645e29abbd9", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:38+00:00", + "size":8574, + "sha1":"186e2ba7f8130d12e446d1bc31c8fd023b6c5114", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":28766, + "sha1":"88416033e9f111f3348d672a0d1cb5c694dd4719", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":8574, + "sha1":"d24d9dbcbef99d9172e833f59e902bba2ba602cb", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:43:25+00:00", + "size":158057, + "sha1":"87bde3fc4c682cd811cd74a30c2bfb1242b47114", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:43:27+00:00", + "size":76250, + "sha1":"13eb4325f0f8f3f9f2a1b1cfcdb555a9d9482033", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:37+00:00", + "size":345746, + "sha1":"a16fd53851ea8be0f10fb234c8989e52fd26487b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:59+00:00", + "size":15075, + "sha1":"03a58ad19ef2023777deddd8bbf087e567a1d986", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:09+00:00", + "size":489643, + "sha1":"088196ef6bfca9ce19ba8f1ea12f25fcd25c740b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:29+00:00", + "size":15075, + "sha1":"229ea95a8e7c2116457fdfbadaafb4ec54db7568", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:04+00:00", + "size":303339, + "sha1":"ecfb825624c896922122a74bf79cbf14b7adfbf5", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:37+00:00", + "size":24250, + "sha1":"75b39e08508689c9f65465c366f86a1fa9925351", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":504969, + "sha1":"0ec876b6f0b5e5f891b8cd25f97c2745a9d73de9", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:54+00:00", + "size":24204, + "sha1":"5d69e1e6b5bb0b3a890aae18accf4772b24195af", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:04+00:00", + "size":33727, + "sha1":"4dfd80701bc77d494e588dfe06284f2bfa5d3652", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:03+00:00", + "size":30351, + "sha1":"d97d01216a0cd9216259f8a06fd57433b7772137", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:26+00:00", + "size":8778, + "sha1":"f5b7d1811b8d9947f4963e96e9c1b02106762f72", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:25+00:00", + "size":8650, + "sha1":"1eaff3869bf2bf930e4eac8ac06a2428cd433825", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":50360, + "sha1":"78209bc4a08b57ce726602cb879904f5890e7558", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":34245, + "sha1":"c2dff4cc614f86da774843e03d1df6a445ccfc2b", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:26+00:00", + "size":557408, + "sha1":"3db691aac7c33cf6680d36d8263017e69ecc8f80", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:22+00:00", + "size":512732, + "sha1":"b06c956af4d7bd04030babdf2e1b5cab8a018e79", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:53+00:00", + "size":26633, + "sha1":"7ee00ef781a60cddcecc3e46d9c81de8df77b2f7", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:50+00:00", + "size":27162, + "sha1":"9e681d3fc9180c40fc2dfc43d580c138f291459a", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:40:51+00:00", + "size":91825, + "sha1":"bfd17957c72e18d221d3e17e4a0b7835447674ea", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:41:01+00:00", + "size":33744, + "sha1":"bac25d40389f333cbb5f6c786fa521e4d1d647fc", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:16+00:00", + "size":69564, + "sha1":"e968b488e8aa5d7f24f476873aad97d054f479b0", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:21+00:00", + "size":46690, + "sha1":"4027c7ff0374b003fbbaeea3c438c0b7330ff975", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:01+00:00", + "size":62583, + "sha1":"005bf1930701ef9a16daaf528e01fd83ebd00b6a", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:04+00:00", + "size":42293, + "sha1":"449e86e56f082d1f595b34d442359f32ca5b9b11", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:29+00:00", + "size":4726, + "sha1":"cda761c0224e6e2f9e80a07d232115b2cf9df48d", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:46+00:00", + "size":5543, + "sha1":"5188ea0db96741fcbb94122cabd63f00bec267cc", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":59652, + "sha1":"515d084cb65cee07ed1fd33877713cff3ac6ef3b", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:57+00:00", + "size":41116, + "sha1":"b61f04a1e4de6fae395658b6827912be9341d705", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:18+00:00", + "size":10586, + "sha1":"c052d47511fcdff1f9fafa9026bf600c75f48690", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:29+00:00", + "size":7544, + "sha1":"ddeba3b91abff513ba57efc4760405ca597d92e5", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:57+00:00", + "size":8648, + "sha1":"3afb4f0cf6c3199cf41fbfbe3f7c6aca9034dd4e", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:06+00:00", + "size":8690, + "sha1":"7eb83a51af49646c8b2b006830140a41047a3500", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:37+00:00", + "size":7912, + "sha1":"a4b72c50e2c78b961971bf354d668479e26eb282", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:48+00:00", + "size":7149, + "sha1":"ed5b289b00658e958ea465dcf646c312f29f1418", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:19+00:00", + "size":3914, + "sha1":"9f24bf28ebc79c12d62f149a2c9eed846724681a", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:31+00:00", + "size":4535, + "sha1":"cb851300d67ad0fe1e455275148df8bfd963e783", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:01+00:00", + "size":3183, + "sha1":"333b514cfc9ed90e7a2c544bad1d4c7337b11fcb", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:11+00:00", + "size":4128, + "sha1":"6584dfe86fb3e46e0116e086cb6e547621e87f84", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:06:39+00:00", + "size":16557, + "sha1":"e8d2c9e24b6fd23d162e7e0664284b1c3966ae1e", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:48+00:00", + "size":8037, + "sha1":"1ac43f472cf2db16f56926e8c4c5254c6b92c990", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:22+00:00", + "size":2836, + "sha1":"2f93a67f9cb8c71d33143608b2efe210bb6ff06b", + "name":"Smack", + "description":"Smack integration tests for OMEMO using libsignal.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:32+00:00", + "size":15418, + "sha1":"9cb8a0bc1bbf7ba47e2dcb3b6a15a955118a522c", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:44+00:00", + "size":11734, + "sha1":"483edede9edcda5466691efa861ba9ba2a97223c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:01+00:00", + "size":99758, + "sha1":"c79e5844707653301c876369f03fff680a84f24d", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:05+00:00", + "size":80462, + "sha1":"ea53c6128d501ec24f6d44c5339194584b50ac4c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:04:33+00:00", + "size":174227, + "sha1":"e975b6053783ec6f06a369010558ce78cb85e633", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:38+00:00", + "size":138389, + "sha1":"02c64befa094c152eaf8fd6c6aea41c583ec815f", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:56+00:00", + "size":255215, + "sha1":"1729bc03478ce6234bb082dfbcb67ef94c8bf873", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:15+00:00", + "size":178500, + "sha1":"bc7c655aeb1d8e0d485e9353ea7ef82bd7b7382a", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:26+00:00", + "size":21604, + "sha1":"53f3600400697927fc1a1555589333e4e3d21da2", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:31+00:00", + "size":21533, + "sha1":"7d4d39109e51126b373602cb25a0cd36292d16b4", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:05+00:00", + "size":74963, + "sha1":"75c55e8808e42cb66646de5fcbd606ec037c53b1", + "name":"Smack", + "description":"Smack integration tests.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:54+00:00", + "size":71456, + "sha1":"c6a2d02bcb7fa7ec659a064d7ae0a3a96b531a86", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:02:04+00:00", + "size":54173, + "sha1":"f292efdac3aa1a300022ff6c6d8c956b657067da", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:09+00:00", + "size":703800, + "sha1":"cb9bfcfcf7fb8df2667d274c2ed87c3149600067", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:01:45+00:00", + "size":608627, + "sha1":"6f2420b8076be9d712df84fc600795132db734ef", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:34+00:00", + "size":279592, + "sha1":"1c085e68d00e814961675c434740b8c93137b1d8", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:55+00:00", + "size":235884, + "sha1":"9a8e4182878943d4705becbcef31e00818b1872b", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:06+00:00", + "size":7397, + "sha1":"3267d930a5b9c452b3400bafdb274d766e199a4b", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:15+00:00", + "size":8494, + "sha1":"0912bc8ea12e4a9b6b8a2f84f9e8435324b54d6f", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:27+00:00", + "size":69419, + "sha1":"bdb3c540e8cd64af2723b0ee9b873f68463d81e5", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":25386, + "sha1":"b2887ef9d898d8d343a0a766ecab70a7ff6d6eb0", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:47+00:00", + "size":356114, + "sha1":"7ed4430fb1da78a57d11e6e43e3a71d7c86ddb49", + "name":"Smack", + "description":"Smack core components.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:13+00:00", + "size":291791, + "sha1":"7d22d2e168859c667bd87c2d73760a689f335cc4", + "name":"Smack", + "description":"Smack core components.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:21+00:00", + "size":2274, + "sha1":"eeb189a95f81905508b9d00b508a5d4fe51b4745", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:33+00:00", + "size":3172, + "sha1":"d4c4cffd2694389ba8ebe448e77a1ab5de2a0554", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:01+00:00", + "size":16739, + "sha1":"be39578579e85be976293248f1b1f94b899c58af", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:04+00:00", + "size":7839, + "sha1":"bfc6ab6703871c034b4c76732bfb72eaa79e318d", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:57:05+00:00", + "size":6124, + "sha1":"c79d959758e9eac4b54ef3c27941a693083f5d8d", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:31+00:00", + "size":5403, + "sha1":"5f79674105972df233c03c3817fb61f7b585a3c5", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:56:31+00:00", + "size":5559, + "sha1":"30097f463b9315dc1c05b313cc775082e5915822", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:56:36+00:00", + "size":10239, + "sha1":"ef489c02386f2070dc1f5077f80b8f93cc48b573", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:42+00:00", + "size":4976, + "sha1":"f03bc820bfa99089f19afa30b49dbdc55b8e8f51", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:50+00:00", + "size":2190, + "sha1":"e23d6a6d9dfc994786684aeb1ace190fc285430f", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:33+00:00", + "size":5146, + "sha1":"cf58e1ee45ea9b9fc4eda00f54630e43c8460233", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:37+00:00", + "size":2172, + "sha1":"d920f7091fea1d5bf4497c683bbd55dd44f2874f", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:19+00:00", + "size":4268, + "sha1":"5313d374a8733f28ee083ff5db4047c437ba22a7", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:20+00:00", + "size":2071, + "sha1":"8e65bcbd992e4ae1c4b73fb6cc80a0ad7d6897eb", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:37+00:00", + "size":4342, + "sha1":"644f0764a97458b46cf3ab726fa1a2cbc2039ece", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:39+00:00", + "size":2257, + "sha1":"1007ea42630c9c3d28375d99a929a5f728e7737c", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:23+00:00", + "size":2343, + "sha1":"97fb29f946b8c6c67b6061a3ffd935c92248a0c4", + "name":"Cargo Simple WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:19+00:00", + "size":2831, + "sha1":"99e0eba1afbf860f5b7e600bdf3dd43110a8cd37", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:21+00:00", + "size":1454, + "sha1":"8e2fe853ed0cb53ba728166ace4f70b69b94f838", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-har", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:31+00:00", + "size":705, + "sha1":"636682c3acfa687c406b9e556ba9b245b5811a03", + "name":"Cargo Simple HAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-ejb", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:24+00:00", + "size":3937, + "sha1":"218e9e51aa7b975413e43d20e5c09dbf89be7fcd", + "name":"Cargo Simple EJB test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:09:25+00:00", + "size":4257, + "sha1":"57d6675c8ff906733a03066295a449f0d25e3c82", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:27+00:00", + "size":1995, + "sha1":"6d8761a79194aa66ef27cc715db83ee193f3d39f", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-aop", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:34+00:00", + "size":602, + "sha1":"da92a6c0bb4818f503fa0d4eddd234cac6457419", + "name":"Cargo Simple AOP test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:57+00:00", + "size":5025, + "sha1":"725824e7efab28e1c865421e200b0eb36a3dbb0b", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:59+00:00", + "size":2101, + "sha1":"902fb017d9e69949d427b351490a57ac2f354e1d", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:44+00:00", + "size":5013, + "sha1":"f15e6fff88538345f2fb78d0a006363bdd8c1aea", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:00+00:00", + "size":2111, + "sha1":"8d8713dcf22fb6cdbf43898c921a558e5884b331", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:12+00:00", + "size":4687, + "sha1":"a0fb71545e9ba1fa55aa5008721c9642510b2c86", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:06:25+00:00", + "size":2107, + "sha1":"3de4f3551309b88986239af16735cf721e829456", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"expanded-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:15+00:00", + "size":2203, + "sha1":"92c7a62f10e4ee5c52bc1e6ff069a342153ecb72", + "name":"Cargo Expanded WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"empty-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:13+00:00", + "size":1911, + "sha1":"069efb05cfa986c7bb973ae21381828b80795160", + "name":"Cargo Empty JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:26+00:00", + "size":5309, + "sha1":"37e3e485cdd2d44deaadb7359bcbf27716d77313", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:28+00:00", + "size":2142, + "sha1":"76e41ce16e2d65283e93a9ba74d055e7c2cc2723", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:24+00:00", + "size":2648000, + "sha1":"a34027b4e8088b8fd6d8bd792af68eb022482f47", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:34+00:00", + "size":4368, + "sha1":"8566c57bc12cbd8c0a7f12578a278a5041ef0ef1", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:54+00:00", + "size":4014, + "sha1":"a4f6b00859ec54628109b02a65efecd4932d364c", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:07+00:00", + "size":2020, + "sha1":"f818c1f4358b3745d1940c4c34d969c956baf914", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-websphere-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:13+00:00", + "size":3452, + "sha1":"3d932d4e634efa13af528711d87ef6872a75b24b", + "name":"Cargo Samples - Maven 2 - WebSphere test", + "description":"Sample application that will be used to test the WebSphere container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-weblogic-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:11+00:00", + "size":3178, + "sha1":"5383058f941a84a0b791c14172d937a06445da92", + "name":"Cargo Samples - Maven 2 - WebLogic test", + "description":"Sample application that will be used to test the WebLogic container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-users-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:08+00:00", + "size":2833, + "sha1":"d82d5e3861a14a8635d54d1e76837da7f2912dc4", + "name":"Cargo Samples - Maven 2 - Users test", + "description":"Sample application that will be used to test configuration of users and roles.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:50+00:00", + "size":3812, + "sha1":"f1ef7a69cd3903e7455e12cbc9c27d104e93313f", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:35:52+00:00", + "size":1472, + "sha1":"622a3343e0c8c54b48ef130fc0a5fbe08040d730", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:44+00:00", + "size":3107, + "sha1":"5d4f90594c3baf5f0506ff47af5502987801ffe2", + "name":"Cargo Samples - Maven 2 - Tomcat 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:27+00:00", + "size":3100, + "sha1":"affad1083bcbb5b91cd46affaebb40a5424b2876", + "name":"Cargo Samples - Maven 2 - Tomcat 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:55+00:00", + "size":3071, + "sha1":"4b974046efc889dc4329cb4bd50c856e26e49c7f", + "name":"Cargo Samples - Maven 2 - Tomcat 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-systemProperty-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:11+00:00", + "size":2931, + "sha1":"d5eb53b4a6c7e55679db24a714b324b0747a0d33", + "name":"Cargo Samples - Maven 2 - Tomcat 7 system property test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined system properties", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:39+00:00", + "size":2856, + "sha1":"718e614117efc24db72487bb11f648195610dfe0", + "name":"Cargo Samples - Maven 2 - Tomcat 7 context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:22+00:00", + "size":2788, + "sha1":"3ef353b4cdf9568256edd91656035bd17da52738", + "name":"Cargo Samples - Maven 2 - Tomcat 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:05+00:00", + "size":3940, + "sha1":"c9cb40138eb64d5973d81489d32917d51704f597", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:34:07+00:00", + "size":1468, + "sha1":"f4d53fc40cb96523dd38fce1fc4c1d01a9cc403b", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:45+00:00", + "size":4073, + "sha1":"9f7dce5bcd80004d1d9a1e2e4545f35495d25f7a", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:47+00:00", + "size":1408, + "sha1":"f01f437c6cee0a32aee55bab3d0eee82a302a2c3", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:33:03+00:00", + "size":4980, + "sha1":"f117db69179b64b7a1054ca2444f8cbd72b03e10", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:05+00:00", + "size":2247, + "sha1":"20627f0e1d8bcb8196a8d111cf956f82f532bc05", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-multi-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:24+00:00", + "size":3167, + "sha1":"3d8cfc514768360a3292ad308fecce2d58452e93", + "name":"Cargo Samples - Maven 2 - Multi datasource test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 6.x container and multiple datasources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:26+00:00", + "size":2812, + "sha1":"8bbfe7b7708c1ab0cae9cb0202ef450ccfeefb27", + "name":"Cargo Samples - Maven 2 - Jetty 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:14+00:00", + "size":2782, + "sha1":"a3db0e3a9b1114f7a1edcccdc82465bb9a6986ad", + "name":"Cargo Samples - Maven 2 - Jetty 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-root-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:03+00:00", + "size":2883, + "sha1":"a06578ebf3841ee56ee5d7db2737cfc608a6e16e", + "name":"Cargo Samples - Maven 2 - Jetty 7 root context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Jetty 7.x container and the root context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:38+00:00", + "size":2979, + "sha1":"106285a70a1212ddfef0236da0882527acf9e275", + "name":"Cargo Samples - Maven 2 - Jetty 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:36+00:00", + "size":2783, + "sha1":"2a5832805d0a6ecd7b4885136dc881aaa2c3ea1a", + "name":"Cargo Samples - Maven 2 - Jetty 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty5x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:23+00:00", + "size":2783, + "sha1":"29fadd536226d768913ef747a0d8ac6bfe8d609b", + "name":"Cargo Samples - Maven 2 - Jetty 5.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 5.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty4x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:11+00:00", + "size":2785, + "sha1":"23471fedfea3843118c73e7852d2783e3de57fa2", + "name":"Cargo Samples - Maven 2 - Jetty 4.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 4.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-inPlaceDevelopment-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:59+00:00", + "size":3329, + "sha1":"ba1809dfbb7fb2af5bfbdcf795c127c1d50fbe79", + "name":"Cargo Samples - Maven 2 - In-place Development test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's in-place development capabilities. Note that this sample currently works only for Jetty and Tomcat as it requires that container implementations support deploying an expanded WAR from a directory without copying it to the container deploy directory.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-implementationClasses-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:35+00:00", + "size":2982, + "sha1":"2d0fb78d0225629b5abb8a9d90fc051ff70e156d", + "name":"Cargo Samples - Maven 2 - Implementation classes' personalisation test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with personalized implementation classes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:30:33+00:00", + "size":2846, + "sha1":"49611773b8b55c63d8b9d04e860f7e1f6470e7fb", + "name":"Cargo Samples - Maven 2 - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-autoDeployable-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:12+00:00", + "size":2819, + "sha1":"aa54ddee48a3c9023710b9874b997a9b7f62c87e", + "name":"Cargo Samples - Maven 2 - AutoDeployable test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's AutoDeployable capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-artifactInstaller-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:29:48+00:00", + "size":2470, + "sha1":"0d5d469cc0eb132e1886000a7b73f405145b2bc1", + "name":"Cargo Samples - Maven 2 - Artifact installer test", + "description":"Sample application that tests the artifact installer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:43+00:00", + "size":33283, + "sha1":"d8ad4bba55b18afaa3bb55f279b68d128a47bb52", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:45+00:00", + "size":36278, + "sha1":"9e83c823403bf13c30e271b4a53f4a3ef8b18dde", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-remote-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:04+00:00", + "size":2780, + "sha1":"2d679aacd03ac4d47dc257b54931aada2e873de7", + "name":"Cargo Samples - ANT - Remote container test", + "description":"Sample application that exercises the Cargo ANT tasks with a remote container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:45+00:00", + "size":2579, + "sha1":"1fe0525f5544657f122d4ae56405317f0fb2a31f", + "name":"Cargo Samples - ANT - Datasource test", + "description":"Sample application that exercises the Cargo ANT tasks with a container and a datasource", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-daemon-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:26+00:00", + "size":3194, + "sha1":"7c5f02c5e7c1887599bf94da19a295fdbebc1168", + "name":"Cargo Samples - ANT - Daemon test", + "description":"Sample application that exercises the Cargo ANT tasks with the daemon", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:22+00:00", + "size":2586, + "sha1":"5dca351cf72e38fe41c1523f27eb9cd63b555f40", + "name":"Cargo Samples - ANT - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:59+00:00", + "size":122096, + "sha1":"14113bc8324dbb23df427969e7773ca6aba32645", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:23:02+00:00", + "size":94094, + "sha1":"125eec3ccc054a6018c5f5b466771ce7dbb53b67", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:48+00:00", + "size":11102, + "sha1":"6bbbc3cf5682b91d218d1d71915d22751b5f4ea8", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:49+00:00", + "size":6157, + "sha1":"e959d7d07c5365fbf1bb7c36f008d72806b24bc5", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:42+00:00", + "size":9737, + "sha1":"9fa685336fd5cd9259516b6359d8d321ff04feca", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:44+00:00", + "size":5225, + "sha1":"1d623bb7d50cd4af3750db85b7804dd5ae385c64", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:52+00:00", + "size":133300, + "sha1":"31827bdd7a6fb77559803fcabc6169b8fcf5fc45", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:53+00:00", + "size":15598, + "sha1":"5b9158389912322a8a3a775030bce17548defeac", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:22:45+00:00", + "size":8436519, + "sha1":"a6a2a0a183cea6089759bd213fc550fdfadc6c4d", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:47+00:00", + "size":29920, + "sha1":"5f7e929637476cbf9c70204e864a13f15c478ffa", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:07+00:00", + "size":2773, + "sha1":"c8d28ab4cf80f53938b320e1a59ce9ff5c7e8fa0", + "name":"Cargo Daemon Integration Tests - Deployable on Tomcat", + "description":"Cargo Daemon Client - Deployable on Tomcat", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:36+00:00", + "size":2704, + "sha1":"abe8346bc8fe4a23f481f2acf6d276b270723d01", + "name":"Cargo Daemon Integration Tests - Deployable on Jetty", + "description":"Cargo Daemon Client - Deployable on Jetty", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:01+00:00", + "size":2068, + "sha1":"501c43bfb97a7173416613be53a93258eca464a4", + "name":"Cargo Daemon Integration Tests - Java client", + "description":"Cargo Daemon Client - Java client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-browser", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:24+00:00", + "size":2095, + "sha1":"691b00a3e5b338a7d5f899a053dd381c9aef2bc0", + "name":"Cargo Daemon Integration Tests - Browser", + "description":"Cargo Daemon Client - Browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:01+00:00", + "size":19619, + "sha1":"42dad631c61aecbd76b2d61434b0aef8593a0f9a", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:03+00:00", + "size":16573, + "sha1":"525eaf186b8ab338fdef38f78cb0f80936d47713", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:39+00:00", + "size":2840628, + "sha1":"a06625db0728b3f62894a90136647caef37e0be0", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:41+00:00", + "size":1875, + "sha1":"8211a0dd66e1ba93d7736a1d83a6caad639c0e63", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:54+00:00", + "size":6652, + "sha1":"98c1de3b102147ffa6ae9d68401e67d8a28d404b", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:56+00:00", + "size":6146, + "sha1":"b5d218e3548bec0c62b3e3984f2d0fac69e89c92", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:11+00:00", + "size":7642, + "sha1":"6ecc273d5503bc1dd9f65f7e4dcb1a8de9f5101e", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:13+00:00", + "size":2861, + "sha1":"c6b0774fecef1d41bd6f8fa8b8248dad22c4b419", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:05+00:00", + "size":6362, + "sha1":"da1bdc0fdb8dae6e33674762b181a8482908d4df", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:07+00:00", + "size":3156, + "sha1":"c4bfa0c3029b6e50ebc432c296feda1afc120d4e", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:00+00:00", + "size":6355, + "sha1":"371051e26e93aa8c7b588ee7e12dcef20665b488", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:02+00:00", + "size":3167, + "sha1":"8592feaae9fd479831b98dc7abfdeb6221f21b28", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:32+00:00", + "size":167715, + "sha1":"fa61f3b1537f8714c5bd430b81c8b7c5c3441c38", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:34+00:00", + "size":90525, + "sha1":"bffc6a728e3e3d1bed6f379e9ab200cd368eba07", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:23+00:00", + "size":183853, + "sha1":"7ec2fbec5602023d9ca74571397dc8d417e0dbfa", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:25+00:00", + "size":179608, + "sha1":"7639bcdd9eca05bfecf1ce6774db90b20c599222", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:14+00:00", + "size":142008, + "sha1":"dfc49e716d967202c7f76f0edbe19691a072f358", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:16+00:00", + "size":145777, + "sha1":"919784f4a28b9eaaf4c3084ca16b235e1b17e4c2", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:00+00:00", + "size":99640, + "sha1":"505b3c3ac2b78aa3b6011e5f0a38226c86e15b9a", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:02+00:00", + "size":19582, + "sha1":"3b918128b28562ad0242ef2953caa3b5161b7a06", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:53+00:00", + "size":150155, + "sha1":"966b13ca12cb6bf6d1ce788c71480caf15e30804", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:56+00:00", + "size":140922, + "sha1":"5af9134e87afc2bb9d99e60a5b63a4669dc6f826", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:38+00:00", + "size":38856, + "sha1":"cf59444d3c26635c9403e5efb9c2724adc27fea0", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:40+00:00", + "size":35147, + "sha1":"d51c16814d1d69eb6179a194b2cf92136963357e", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:28+00:00", + "size":31146, + "sha1":"e34cc5a3c83bb9fa764bc77bdd10e81a795ece1e", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:30+00:00", + "size":27963, + "sha1":"6559a78d70ac78f747a0b60ed28a07a67f372498", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:20+00:00", + "size":21031, + "sha1":"2c2bd418fbce822c6023737cf7edfd7d6dff4749", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:22+00:00", + "size":17049, + "sha1":"17eb5c0be6880360aa1b2f8edaab43b3ec764833", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:14+00:00", + "size":31709, + "sha1":"6d29e45c94a535b9adcfa247bcc8179dbe51a333", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:16+00:00", + "size":28743, + "sha1":"42cafde700bbc0d59048cd4f3ddbeb95e040da88", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:07+00:00", + "size":62775, + "sha1":"84ef7296fa120fb1a353b54bdfc2d44b6172144a", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:09+00:00", + "size":57065, + "sha1":"d35ffa074868809a0ca70f1e08ab3400ca6b30d3", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:57+00:00", + "size":20133, + "sha1":"180df9a99693382ac8cd06b85cf80c5c3d887f3c", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:59+00:00", + "size":17626, + "sha1":"5d7c6897af123c82b7d7764c08711e20f4b9c866", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:51+00:00", + "size":1116481, + "sha1":"df625fc892caf4c0d0993c9131a01219b3f14a34", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:53+00:00", + "size":112776, + "sha1":"1be2286480bce7d5dc39809dff45b7c884ca11ce", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:41+00:00", + "size":167723, + "sha1":"bc5406f67f0e22e3f4c2d827d97b6d9206f20a4b", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:43+00:00", + "size":137901, + "sha1":"d3e4f02615d38d29cd436dce3c1453e8dcab4e99", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:29+00:00", + "size":49031, + "sha1":"fcf38290ed5b9193fc19eba6f965671fd6842f05", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:31+00:00", + "size":46891, + "sha1":"fd04b9c4f97f695e51eadfe88a0885e4ef227ad7", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:20+00:00", + "size":53520, + "sha1":"e898c3c7587b942d8dd675b8734e762a30d44793", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:22+00:00", + "size":45639, + "sha1":"834b52f3afdda44c9e72338c69791c14beb075a1", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:04+00:00", + "size":39873, + "sha1":"cfd827c8b7f19750acb7270c3081d8040b734ae7", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:06+00:00", + "size":36348, + "sha1":"d9a64d2540fb5224f94d7792c2f87d0800142d24", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:22+00:00", + "size":314695, + "sha1":"1dd8d46adc3a68a8580eeb71f985498670dd41b6", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:24+00:00", + "size":318979, + "sha1":"a3da22529c3016d4dc5e05c4224c91934fd6e14b", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:46+00:00", + "size":38042, + "sha1":"4a8dba8d4b37cd79480c434850365f2fc3d49674", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:48+00:00", + "size":32719, + "sha1":"51046c9559319256e87ddbc5cceafc1f2b9bfe8c", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:37+00:00", + "size":157513, + "sha1":"2662013e1e1e3d25c5e491e190dd51d373ef24cf", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:40+00:00", + "size":173794, + "sha1":"1f238461684b938efc68c562c1bfc6fcf16b7b32", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:09+00:00", + "size":6281, + "sha1":"e9536ad4afe4bdfb694e276454afcd241535f9b5", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:10+00:00", + "size":4656, + "sha1":"e1168b547a5c3dbc2bf60353585c33391eb539a7", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-with-datasource", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:07+00:00", + "size":7161, + "sha1":"72f0f845947f9a009de89d19edc5540d47cedfb9", + "name":"Cargo Maven Archetype Webapp with DataSource", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-single-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:09+00:00", + "size":5694, + "sha1":"f7c583cf4a4f89dab50252447c2282251bd3997e", + "name":"Cargo Maven Archetype Single Webapp Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-functional-tests-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:41+00:00", + "size":8402, + "sha1":"accd3ab036b0458eaa4224fbc94a0afe700f0284", + "name":"Cargo Maven Archetype Webapp Functional Tests Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-remote-deployment", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:35+00:00", + "size":5340, + "sha1":"579c84f5552f5053e6c63fbe40ba302541c65e41", + "name":"Cargo Maven Archetype demonstrating Remote Deployment", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-multiple-containers", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:27:36+00:00", + "size":5648, + "sha1":"fcfe6275a125466afc0b18e8e4c97e6b8cb343d1", + "name":"Cargo Maven Archetype Starting and Stopping Mulitple Containers", + "description":"Sample Maven archetype showing how to start / stop multiple containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-daemon", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:54+00:00", + "size":5017, + "sha1":"e246f549dbc6ceedb87507291daf0b970fae9450", + "name":"Cargo Maven Archetype demonstrating the Cargo Daemon", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:11+00:00", + "size":26267, + "sha1":"f947dfc72607f3d56bb035fa64d2ba6fe3108e88", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:13+00:00", + "size":21050, + "sha1":"63f20758b0aafb411151bde3ad9250fbdd4c7a50", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:00+00:00", + "size":4766, + "sha1":"95638bad750e7fb3e39b74d4b1bd602c344bc56f", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:08+00:00", + "size":2067, + "sha1":"bf152142f630de9bf47db617add423538f099787", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:35+00:00", + "size":374422, + "sha1":"1a990804787f3e9f5ed4808a286f30b51b18dba9", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:34+00:00", + "size":88323, + "sha1":"aca748ff3cb0920fb645cb4fd5293cf7e008ea30", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:58+00:00", + "size":374443, + "sha1":"5d05610ab60757b2ea190fbf572547c4ec7fc5a8", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":88323, + "sha1":"3a3a52e38e72171aceb118e03a6dd1fb65405157", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:33+00:00", + "size":649998, + "sha1":"742d914f2c32b68b93dd7ad064006ccd83b34b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:32+00:00", + "size":88323, + "sha1":"f04a7b17ff47c4b95342a156cab37cab80d62b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":650018, + "sha1":"5d04bd494fbad16b301a8a6d647be51ceffafd37", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:54+00:00", + "size":88323, + "sha1":"43c815622432c13cef31e5f9a0251a1b8bcad33d", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:31+00:00", + "size":643342, + "sha1":"b59e02c752c629cee677be2fe270db97e605612c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:29+00:00", + "size":88323, + "sha1":"9de0ff627753926feee49a179aae517c954b29de", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:53+00:00", + "size":643320, + "sha1":"495df25d654e481beb9ef2fb134eafe57998d091", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:51+00:00", + "size":88323, + "sha1":"3a02b980e28345004973878a46cd1d927ffdd60c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:39+00:00", + "size":123140, + "sha1":"b351c5becb877f760afc87156bf1f7508e7c1804", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:38+00:00", + "size":21407, + "sha1":"5e89c6aaf88c273ddfe75869df02d3479639b272", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":231808, + "sha1":"c6747b47b17192a532281bb11ea16dc507a9de53", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":21407, + "sha1":"69cc47bac44b7874406d1837da04190dcd41019b", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:35+00:00", + "size":229363, + "sha1":"cfdc25bcabbbd24e1e001c50583282419124f3d8", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:34+00:00", + "size":21407, + "sha1":"859353f87e39b0742f9d44f482ed046aaa1a3db3", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:34:49+00:00", + "size":104206, + "sha1":"c0ceb9dae9b84a47d8ad2809db9e62a1fd5d3b0d", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:34:50+00:00", + "size":32978, + "sha1":"28caa56aacb24572cd95f186ecd3770318b8d0a2", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:32+00:00", + "size":4095916, + "sha1":"b7c6c52850a5e4eeb0c41daaab6445598214902b", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:23+00:00", + "size":770368, + "sha1":"c10df2443f247ad5708e264616e376e95a8dc581", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:43+00:00", + "size":6409742, + "sha1":"8b9b6cd21fcb7a795fd7218e05348cf857b601cf", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:31+00:00", + "size":770330, + "sha1":"812ec1960090c8736b0858548bc32cf005b01ae0", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:27+00:00", + "size":1003316, + "sha1":"5f8946c085454dbb5dbd55e5a53a6c335fc83aa2", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:28+00:00", + "size":136518, + "sha1":"059e5fef6172df74934e85406be632cf1a07d343", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":1533879, + "sha1":"1cf8eea4614ad339e3e768938d59e517a62751a9", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":136518, + "sha1":"df85009c2927ff2db0856496e2719562c064b4bc", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:12+00:00", + "size":135595, + "sha1":"216c830faecb693c790045f8795d187d97b9161d", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:13+00:00", + "size":19056, + "sha1":"b7fc18461daf7ad6699f63953e4119872e31befe", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:35+00:00", + "size":242098, + "sha1":"c8d8d31d8475f8f2229ea86b8109641e957f7359", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:36+00:00", + "size":19056, + "sha1":"76ec54a37c6179a10c8e3a3a931bd3ed189153b4", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":136158, + "sha1":"7fbbbeb0e4f9767f7636a6fbd9ffe7becdadfbc4", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:59+00:00", + "size":11490, + "sha1":"4759d857c28f0d3c637247dda7abee7a098c66ab", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:19+00:00", + "size":141789, + "sha1":"c2df12ff06c1be6596385a8dd8269db0fc66136a", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:18+00:00", + "size":11491, + "sha1":"e63ab9acd14324765b766fc97af7acb6350ed9de", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:11+00:00", + "size":366737, + "sha1":"eeb913862e0f901ba2f4a0f0330821ff7922121e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:12+00:00", + "size":42887, + "sha1":"6b7b68c40c1acce4922558a590f799770efc6a1e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:28+00:00", + "size":530641, + "sha1":"9b71ca0442a5719a7d1196cb8d0b660f195858e4", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:29+00:00", + "size":42887, + "sha1":"e97e7112605f32cfb3b700daba803ff1fd9e5aae", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:48+00:00", + "size":118413, + "sha1":"c3717179aab8bae7862eb55e09742ee3f0cd15b5", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":15329, + "sha1":"5c8d4f156fc08c72615f2cf47e900f46dd84a546", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:08+00:00", + "size":263133, + "sha1":"26c0aea3a86d2c2962aa1112f29af7dd0c8a5687", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:06+00:00", + "size":15329, + "sha1":"3a2038b6111ca8fead18e44b87bc017e4112c871", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:08+00:00", + "size":118372, + "sha1":"c140b5b55bd2ab0564e1def22e2e44651784cbb8", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:07+00:00", + "size":17804, + "sha1":"cbbb3add8c592f00b430ce48a9fa2f81d268cd2d", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":155967, + "sha1":"2432656c5a8dfff83ef3d7b0bfa40bd395e6df75", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":17804, + "sha1":"0a91bb806104cd5196b66e36b639a8df3a338463", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:06+00:00", + "size":212078, + "sha1":"46978faba03b9acddbcc217a13a8d1e61b32544c", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":32623, + "sha1":"5e3cdc0ca8c8f971017b99db94d84dac916a250b", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:24+00:00", + "size":358067, + "sha1":"9f443827783084a5bb2513f37dfa200ceb33ffe7", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:20+00:00", + "size":32623, + "sha1":"bd7cf834da157805e7cad0d920e25ed186f9dcc6", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:45+00:00", + "size":212735, + "sha1":"66c43da0646258b19a3eaaeae8e646542633bb39", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:46+00:00", + "size":27880, + "sha1":"c88ed40622b991e5e427b71ac7d7d9668eaf0363", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":467487, + "sha1":"87d5c31c6e9a8b709d67eb1754d1e9993b1a314e", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":27881, + "sha1":"4fa456ffefe67c55aa302d56fff2d9cb3461846d", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:16+00:00", + "size":890682, + "sha1":"bf349176a47a5fc625c9dae2975fcb3b42201adc", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:13+00:00", + "size":103645, + "sha1":"2e6c0670dc20668983b836d6b9e5ced70bbe2196", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:21:04+00:00", + "size":1501544, + "sha1":"f1102f77af793fd39e100ff58d7b66e7ed9d8a91", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:54+00:00", + "size":103645, + "sha1":"d6be7e4ecc13dc649f05c3cc9462101bb5007714", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":369329, + "sha1":"cc7c8b07ce47f825a32b9cc8b1b621d98b177b9c", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:37+00:00", + "size":40738, + "sha1":"042a2b07cd80af63ae5fd1281c6028b05e454307", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:59+00:00", + "size":544699, + "sha1":"815e258cfc911380df6c1af8fe1239935fc06cae", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:50+00:00", + "size":40738, + "sha1":"4b08c3f5755046d67274fbdc8c2a5eadf3036b77", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":87692, + "sha1":"6f4527ad94f34c9b02a875c6eed495f54bd82356", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":5537, + "sha1":"77303e82197a89d20bd05617f6bf77ad6b8615c8", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:16+00:00", + "size":109050, + "sha1":"6b53a68e151a808120333ae25e1015d67ba847a0", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:15+00:00", + "size":5538, + "sha1":"d87524d2e47cb0f5058c4ae325b98563c4fa0215", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:58+00:00", + "size":88090, + "sha1":"5a09911da63262748bb193bfb9a722b011ab5cf8", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:57+00:00", + "size":4882, + "sha1":"bdfa2da248ae3f66979c7970a53b6c0ddee0f42c", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:14+00:00", + "size":88357, + "sha1":"de02459cd1e519ad4c016cdfb3bab646b0282e08", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:13+00:00", + "size":4882, + "sha1":"3f74250fffc651cd8d72c3e253306ee9435e7295", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:42+00:00", + "size":149517, + "sha1":"bdb921e2f8eea358144e706dca2be42aa10d8abc", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":20170, + "sha1":"a93320ade505b4b36bde1cf434588becb57155de", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:03+00:00", + "size":322929, + "sha1":"e6ec1e95aabad445c90d85ba0240eefb9bfddf3f", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:05+00:00", + "size":20169, + "sha1":"7f86c3925b44473bd5dc4b66e3e59a076f143506", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:50+00:00", + "size":191911, + "sha1":"3cc0c4fb74dcad2784a624f63847d331d6060aa5", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:54+00:00", + "size":36399, + "sha1":"5a46a36cacd96cbc87ed5f488c2056b1a57aaccb", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:05+00:00", + "size":246588, + "sha1":"2bd44c585d682664649823e06316dbda2a74295e", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:08+00:00", + "size":36400, + "sha1":"43b293427736c87f70a9e0a62f168bc7a74ea887", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:35+00:00", + "size":77026, + "sha1":"7f33ab403fc3c488ccb81d2158787466e0e86807", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:34+00:00", + "size":11654, + "sha1":"88e123eba5b0397d145dd226f497208329389662", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:43+00:00", + "size":133033, + "sha1":"f8952a0b30af94d6bf5eec8e022574987e225b4e", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:36+00:00", + "size":11655, + "sha1":"3cd071fb50b832f7064d04b6876f12da50d82009", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:57:21+00:00", + "size":41351, + "sha1":"8ab307d42b33defbb1639e3c188b13d748581e5a", + "name":"validated-config", + "description":"validated-config", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:57:22+00:00", + "size":4547, + "sha1":"8d7ac2aac6d1b6651c92e2f2396ba1c125dd19e3", + "name":"validated-config", + "description":"validated-config", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:01:12+00:00", + "size":7736, + "sha1":"fc3cb01dcbe60ff37fdac87e962e6b794e841290", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:01:26+00:00", + "size":7254, + "sha1":"46afb630bd636cc6eb2566cc3ebbb298a2593ec8", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:57:58+00:00", + "size":1283457, + "sha1":"65e4d9a31c4b1d5b3a55401be70a8eb41f05a879", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:58:25+00:00", + "size":1052150, + "sha1":"99a6c46bb62dc51b323f5bae2039e69e0510e331", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-collector-server", + "version":"1.68.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T15:00:51+00:00", + "size":10176776, + "sha1":"2e670f652b44425b5b85281d9b14663e14ac7664", + "name":"JavaMelody - Collector server", + "description":"Optional centralized collector server for Java Melody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-thunk", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:36+00:00", + "size":1108, + "sha1":"764b511c1d9dbb5c46ca9e2cfbc32f29de270829", + "name":"redux-thunk", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx2", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:28+00:00", + "size":3447, + "sha1":"e045358beb5d1b91e34904d4ae7962919f726185", + "name":"redux-rx2", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:22+00:00", + "size":2479, + "sha1":"ae9a1bfe2900901092614b7405847c37a8b8c56b", + "name":"redux-rx", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-replay", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:15+00:00", + "size":1295, + "sha1":"66560aad0d6a96adbda27bedfd4bd3bf2eb6d396", + "name":"redux-replay", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-core", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:13+00:00", + "size":6588, + "sha1":"955948173220f011b95aec13b26585dd9b0fd106", + "name":"redux-core", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:09+00:00", + "size":5879, + "sha1":"b2fa12ed115aa9ebac59d5ff4eeab71864c87f7d", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:10+00:00", + "size":3250, + "sha1":"3ea015eb6462ba1a1ef9ff4702474959b3a5f581", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":5220, + "sha1":"1bdc42e1bf582f4b73d06a0844165ae9bafe2224", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":2544, + "sha1":"5ba60ca98f8659f4e738aef7546b085326cc36ac", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:24:10+00:00", + "size":39598, + "sha1":"d23beac1111080fc04c10b8eb5c84fdaa3053f97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:24:09+00:00", + "size":2848, + "sha1":"0854c3b12851a19b92a34da86590940ac028fd97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"mplc", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:13:22+00:00", + "size":87528, + "sha1":"744b0e5a758fdbe8621fdf53460401270f09a147", + "name":"TABB :: MPLC", + "description":"TABB :: MPLC", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":52438, + "sha1":"40c2711c115b7326412f397ca9b840fd834f27c0", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":33658, + "sha1":"3935e228f247cdc1d74809283e0836154a7f43d6", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":64856, + "sha1":"ba1b98a3f9587a095e81dadb14befa423be9be7b", + "name":"future-java", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:25+00:00", + "size":24359, + "sha1":"96bf76446e0fdd5feb49299d856555bdb4b9f9a6", + "name":"future-java", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":537377, + "sha1":"4f8a93afcab79ca1f08299b62bcd51777b9e6b22", + "name":"future-benchmark", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":5365, + "sha1":"034e02762dac0939fa204ba9b15c496b9e7718de", + "name":"future-benchmark", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:17:59+00:00", + "size":21818, + "sha1":"b10512d23601eaeeff318b2c98005c300e277c17", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:17:57+00:00", + "size":7521, + "sha1":"eb7ddc73912294d202487324e3e0834bcc5a481b", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:02+00:00", + "size":33931, + "sha1":"e2e6fbc0689fe4ca5a6dc2cb11f52f126742145b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:07+00:00", + "size":20315, + "sha1":"41209e53d9f3acec3e63eb067f09656f4c64bae1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":6371, + "sha1":"3822f29c626f57c225d616cb8f955f1cae18cb5f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:06+00:00", + "size":3156, + "sha1":"385c6d2a4bf024050a975764c7100dc2810b9caf", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:05+00:00", + "size":28274, + "sha1":"43474d9b42b18c36f2b9225493f4ee09ea75c96e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":18370, + "sha1":"f08a06d6cd11b48efec0ddee8275ace66bfa1889", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:36+00:00", + "size":242837, + "sha1":"f907f4c25d98ca13ffb734f41913d4ec2dd55bed", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:37+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:59+00:00", + "size":273943, + "sha1":"c7fb257b6e1ea75f650b645fe813642d0feb5c3a", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:00+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:16+00:00", + "size":137186, + "sha1":"043254098224ecac232438d821453b27e6ca5538", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:17+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:46+00:00", + "size":159837, + "sha1":"00c005c604c335f0ecd5d2795c17b370673b964d", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:47+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:10+00:00", + "size":50310, + "sha1":"ede0867dbaa1d73c64511d20c3f4cca2c1e5a871", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:12+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:29+00:00", + "size":56569, + "sha1":"e177d79f6d12a27d993bbc974590aa543b790367", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:31+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:22+00:00", + "size":28680, + "sha1":"b29fd2ba93b12830e3d70793cf5b76c1131436d1", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:24+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:24+00:00", + "size":36192, + "sha1":"44a5aa889be9ce938719b0826505f222cf85eefd", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:26+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:54+00:00", + "size":72696, + "sha1":"eb2a395f9ff7fc7352923b87115c44a4958dc721", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:51+00:00", + "size":1694, + "sha1":"a92779a9d7924e5bb62e59e9de0d7d072b4b981e", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:41+00:00", + "size":73915, + "sha1":"f5b47173e90c2075f606c3b7ff951ec4bb19ee31", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:38+00:00", + "size":1694, + "sha1":"9cf4eb1cebfdbebe24165d5b28fcb8d62ae42562", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:43+00:00", + "size":38207, + "sha1":"1e43999614468b9c30f481adb3a76a94b0ee0c23", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:40+00:00", + "size":1692, + "sha1":"5fc399f6395dd053b1e2d04a2ed5109028a2e1b9", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:36+00:00", + "size":38165, + "sha1":"349613a11fff49a4f63e1002e1d547cc0c8bbd28", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:33+00:00", + "size":1692, + "sha1":"dfc591256471078fbb8d1d4b239dbc4bed7bd5d0", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:18+00:00", + "size":359962, + "sha1":"5be7bec658bd98bd445359326697df46da472a2c", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:20+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:23+00:00", + "size":384267, + "sha1":"bbc16058e8401bfaeb7b621d0704cc7c7f0c4153", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:26+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:04+00:00", + "size":194499, + "sha1":"4274ecf66ae641a559aded2d5618e3fe4fe010e5", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:07+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:30+00:00", + "size":208893, + "sha1":"3eb0d509562dcfa42dd6327f4e5c2e919ff18329", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:33+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:28+00:00", + "size":23209, + "sha1":"3dfb81b67806e50eedd35bbbc0cb49c6a9bf32b3", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:26+00:00", + "size":1404, + "sha1":"34b71b4d24f0c7764689e94f9485e3cac66b56da", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:19+00:00", + "size":30679, + "sha1":"cf1aaa3d59a36613257bbf93ef69d91f0c95aee0", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:18+00:00", + "size":1404, + "sha1":"198440eda2c8ed48f127ef7f76bfa450a71c669c", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:25+00:00", + "size":119281, + "sha1":"e690526bb1973f079dabaa06ee6fc1271eabe59a", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:23+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:06+00:00", + "size":132742, + "sha1":"f88454581e85b7ed447817febab8124cd9da5c04", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:03+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:48+00:00", + "size":61928, + "sha1":"0babed618b1889e4397acbf6adbc15bc04624bee", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:46+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:16+00:00", + "size":72492, + "sha1":"410dbd67787fc9b70b98a11d284bbad2f6e44eb0", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:14+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:57+00:00", + "size":29445, + "sha1":"09fd9075344815fc42d468e7b7ced2d3d7d5457c", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:58+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:09+00:00", + "size":34115, + "sha1":"dfc9100b029f837d8227ad1cff2a1a027fafc60e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:10+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:08+00:00", + "size":17102, + "sha1":"92c1069544cfea459c632e1fcaed27a6a06e704e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:09+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:50+00:00", + "size":19901, + "sha1":"cae7ddd9a9f35d04643e196eeac61c9b77dfb4f1", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:51+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:30+00:00", + "size":8432, + "sha1":"2783456039a2fc47736335e573ea26108e1d3441", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:31+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:52+00:00", + "size":13046, + "sha1":"90602fc221ac9e842960b06c0e5ad3d60a2fd135", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:53+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:40+00:00", + "size":4947, + "sha1":"bc5d95766456972c0842be89eea7a187262cab23", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:41+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:42+00:00", + "size":8003, + "sha1":"02f4a2d94ec061bad021925b796b024b25bf1396", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:44+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:47+00:00", + "size":4542, + "sha1":"dfa0b55bee93f34798884ff1fba585e2e8fae419", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:49+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:37+00:00", + "size":4467, + "sha1":"df4d8332a6f644252a4d4a29f4dab43af582a63c", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:39+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:35+00:00", + "size":2892, + "sha1":"6a82dab9239a6ed3b8c88c83ef711143800e2338", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:36+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:47+00:00", + "size":2827, + "sha1":"5e8011aae41b5838c0196c22420ae28d1e511889", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:48+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:59+00:00", + "size":2541963, + "sha1":"58568d4024ff1a04eb49d1af299317afb70e92cd", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":250, + "sha1":"6697b7545efe634845f217daa4f423a3c6d56b0e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:26+00:00", + "size":4121739, + "sha1":"21b51abc04e51026679908afef5309fe1d09ae7f", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":250, + "sha1":"7826e25f8097f3aa1b10ca48b15396391dea2702", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:48+00:00", + "size":3779808, + "sha1":"20cd76900635eaeb3baef7d7d246dd97b6f99d01", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:50+00:00", + "size":250, + "sha1":"622dcf73010084128f19f2beba9bbc292cbe098e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:09+00:00", + "size":53920, + "sha1":"2c6d7b4531e6835289952ddbedaff7bbaff85a13", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:06+00:00", + "size":7218, + "sha1":"847d4c63868bc63f351a7224851fcf2834b0a8ca", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:37+00:00", + "size":65878, + "sha1":"9a98d55f3abc0953a43071172fe9dec994f45fb4", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:35+00:00", + "size":7218, + "sha1":"4a4681657d8eace5f8f157cee24f4f3da421d614", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:04+00:00", + "size":65189, + "sha1":"4217cc50b55910915b32796c4934819248703aac", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:55:56+00:00", + "size":7218, + "sha1":"9094eac7a6d263607461c501177a1512d0b363ef", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:46+00:00", + "size":1712949, + "sha1":"489477a72ecc73557d4f03b40f92fd1eb8b2cf61", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:53+00:00", + "size":157726, + "sha1":"d91a2bab0aadc938cf5d82474ece95eb02e6bce6", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:12+00:00", + "size":3027372, + "sha1":"6e53ccb8533d6aa94da56bb0c4ccd02817cd0e5d", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:19+00:00", + "size":157726, + "sha1":"cfc88628adae49b1060afc384b34877c2206d35b", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:12+00:00", + "size":3012131, + "sha1":"9bcda396173b20983884c22d718951aef66d2f36", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:19+00:00", + "size":157726, + "sha1":"4d2d11a77bff38bcbd554a384f9d2b8d481e2faa", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:12+00:00", + "size":2117178, + "sha1":"8f91a3461df01bf192c3f63c9715444ed68b0e36", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:19+00:00", + "size":213195, + "sha1":"4e09d6853e578b5251b0b27dbc67eb034104d666", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:40+00:00", + "size":3775477, + "sha1":"59231e2e098c1e974b32f9eeccd294f97b4f2535", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:45+00:00", + "size":213195, + "sha1":"f82e3192fe72fff366f905e2a42b7dff175ace50", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:01+00:00", + "size":3757713, + "sha1":"cec02dd7258859ad9f573bfdf1fe375ad46efd23", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:06+00:00", + "size":213195, + "sha1":"a250906a0303c36c7851de7536f942c73500d2f4", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:27+00:00", + "size":379125, + "sha1":"62b93fe38b65437c3f9aec9d59847c36df904c2d", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:31+00:00", + "size":29491, + "sha1":"7427a35e75ccc4acc5ea58553d0f3b2f1ba68d21", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:53+00:00", + "size":483973, + "sha1":"7c8d20a6102a82031660a6201674c319180b439c", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:57+00:00", + "size":29491, + "sha1":"6bf6f71c8066b56a45e2814d8c3bae5bfcd2d391", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:14+00:00", + "size":481943, + "sha1":"c5d7663339ddd6d15ea51d4e4eb5f7407b3f9ea0", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:31+00:00", + "size":29491, + "sha1":"c4c5bf0480426fe8d61651f870e7e1ee909fec91", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:36+00:00", + "size":71692, + "sha1":"3793a558598e780232a7fcf052c85befab67d0a2", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:34+00:00", + "size":10700, + "sha1":"8fa3e86b991ed9ace2a01095261f39585075be06", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:02+00:00", + "size":99758, + "sha1":"6b5a6bb893b01b093daaaa0513540b34754b4d39", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:00+00:00", + "size":10700, + "sha1":"6fb332740360fa6178ab43facf0e740fa20b8564", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:23+00:00", + "size":98895, + "sha1":"aef453a60f5f4e5a0d7cc9deb2a44840921a0cff", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:21+00:00", + "size":10700, + "sha1":"d097c2b751e01bc1d997088e77214e6de27cb929", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:08+00:00", + "size":300, + "sha1":"80dc446a34abc6142433120e870eb317e8c85f66", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":243, + "sha1":"6a23a8d74684c4b83f96f7f3175d95d145e0ba79", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:34+00:00", + "size":300, + "sha1":"018499fe3acd0846f27488a3cf5027199f87bd4c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":243, + "sha1":"da22c42861fb4ec49c2cc677dd894a4a11f5d9ae", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:55+00:00", + "size":300, + "sha1":"02e784a8141a71628a9a7692136f56e3124a767c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:51+00:00", + "size":243, + "sha1":"7acd693e69a91d4a8352f9be82c61d13968e8115", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:25+00:00", + "size":148120, + "sha1":"8ecb81b95d5ee47413ff2a610f41676e0a299aaa", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:22+00:00", + "size":6412, + "sha1":"d9deb24dd3b1b95f1c7cb904c31c145fba16c866", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:51+00:00", + "size":181850, + "sha1":"aa237ec4f715d8c03f7513cc44b4599d7381f677", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:49+00:00", + "size":6412, + "sha1":"d05fb9d7ec63423dbf37fb302fbd6ecdcdb3f823", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:41+00:00", + "size":176486, + "sha1":"60d0fb433f962ab08ae84fac897e65fb4b3e9a84", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:39+00:00", + "size":6412, + "sha1":"27f91d2bef2dab080704db7e3739927e7f0c859a", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:51:56+00:00", + "size":951074, + "sha1":"0feb610600ffea4384d4a656b3f7c1b7a93000ce", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:51:57+00:00", + "size":269535, + "sha1":"96993a71e8f95ee4888f24d71d88c33dc92c1267", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:50:42+00:00", + "size":1613049, + "sha1":"48c82ca8f362ae8c8c7507eeac967a6d737f0b35", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:50:53+00:00", + "size":269535, + "sha1":"02ab9d81d2ee87ec54e846ccb8c7fd6e7564a9de", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":7558, + "sha1":"d5707e807f09cf4c12a31382e6d5bdc45fa7095f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":1993, + "sha1":"e49b0ac86ec75671876cbd6aefd947bc1149681f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:28:59+00:00", + "size":50831771, + "sha1":"aebcba1c2103acb23baf5bb6049c029fabeb1389", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:07+00:00", + "size":14113, + "sha1":"5641aafc9b5e5da713227a0dfda8bdfc55b526fb", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:27:53+00:00", + "size":3247, + "sha1":"69b374a8278b0ef6cb87d45822b096120916162e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:09+00:00", + "size":3576, + "sha1":"cd89bd42f00581a65ca96ccda98916db9c10c5ca", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:28:00+00:00", + "size":15856, + "sha1":"f6c6ae48190c6e44b34c2250f0f5195a5a46b481", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:04+00:00", + "size":22621, + "sha1":"57e7f828881904e52b08437f9cbf7d191ba07cf3", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:39:14+00:00", + "size":53545137, + "sha1":"5b31ef1422b39b28468378eaf45b991ba2ba84da", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:19+00:00", + "size":1380053, + "sha1":"ea709c50832877e8b12178a21d29fcef056e2970", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:31+00:00", + "size":4370, + "sha1":"3b537a196a2f1d3d4d48d51b18c735cc4c100610", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:04+00:00", + "size":4277, + "sha1":"66b297d2da72813b58609517331ab9e496fb7cd5", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":22602, + "sha1":"e7383c1510f3c41a09f917880871e1251f53b4b3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:32+00:00", + "size":30637, + "sha1":"af7c508d709b70edadf978ea5a9cebb20b4451e9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:08+00:00", + "size":1421680, + "sha1":"f73dde94287df25f8261029d6abcbf87b7069ad3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:02+00:00", + "size":1422559, + "sha1":"1385c0791ca108035df1213284f9fa59ce28fe62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:33+00:00", + "size":21275, + "sha1":"b4e7c2212651b8cf2a7c75ec02993948fa25f6dd", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:29+00:00", + "size":25319, + "sha1":"0e8ac2cd41040f57c56e4716c1dab4a35a7ada07", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:11+00:00", + "size":51736, + "sha1":"e8698f4aa7a3e6f2ec837d62986bd9125360018c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:09+00:00", + "size":47225, + "sha1":"772006fe18cb8f073a34b287e9d1f93f99f380ac", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:28+00:00", + "size":50743, + "sha1":"bd97402494a00291bcd4f11aa18863147ecae28c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":48581, + "sha1":"7d29207dc35dda90730b5582d988dc7cc94bdd05", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:10+00:00", + "size":47078, + "sha1":"1c9e5f0ef290ede2cd950f5d347fc28777edc34a", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:02+00:00", + "size":48015, + "sha1":"2ad78b943c4a002f142aa8840a0fb400b952c9b9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:14+00:00", + "size":17196, + "sha1":"8d6bac9dc20cb5cfbff9dd529e7327f73fd0b7ff", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:08+00:00", + "size":20921, + "sha1":"bfb7380b1f9f76c98448b12b19f7257c6c4b01e7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:03+00:00", + "size":36237, + "sha1":"671a8b7959fe5da49c3a1a723f728a53b397443d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:04+00:00", + "size":35232, + "sha1":"84d9a5ca878b941a386d9cde15407b1ab8b59903", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:15+00:00", + "size":24039, + "sha1":"0c41db9bf0ece6d7ac46cc6de47cd7b30a56267e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:12+00:00", + "size":27856, + "sha1":"ce35fa79bd7b9c092d53e9f3568eab5c34b974b2", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:20+00:00", + "size":9457, + "sha1":"ddf847f74738c88515592147769cd0a3eb55f651", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":7908, + "sha1":"25cebd3c9bec23b20f2c5477cf3b0997a27e5fcc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:03+00:00", + "size":10341, + "sha1":"eb1b25bbeea8f43a8c10d02108b21a6192c731e2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":10547, + "sha1":"09dffef8467b17f5298cf291a9786acb2b07d117", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:31:21+00:00", + "size":42834946, + "sha1":"64712c35917e84d5e89230e02121e80a9b6981f6", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:42+00:00", + "size":192703, + "sha1":"208b2408da37629d602dc3c047b70ad772203a94", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:32+00:00", + "size":3215, + "sha1":"c5589b99dafcfbea875e03f88869ffb887903902", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":3705, + "sha1":"843fa7d2555d1de93872a7416498c2bbd9e6e08d", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:30+00:00", + "size":8203, + "sha1":"fffbb11611bf1c06ddda89235c2ae5f9028a4ef3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:54+00:00", + "size":8905, + "sha1":"f14eb06e8bc75b1cbcdb29fe59ec931994a5b0ea", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:25+00:00", + "size":201826, + "sha1":"e8792695ad2538a177e6ceba7adf163e379d84ce", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:50+00:00", + "size":202757, + "sha1":"a6d4ebd3c2466b5d9298808e748a64dbfab93a63", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:43+00:00", + "size":5740, + "sha1":"0b5f564f28989d9239e470fa8b5b0d3773ec14d8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:49+00:00", + "size":6686, + "sha1":"4a1648ec94c9948537ef29cbb7b051299b380754", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:52+00:00", + "size":9680, + "sha1":"eca43be10e27abbb270bb997cf53cbfc329a8929", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:51+00:00", + "size":8140, + "sha1":"8d40b2c42c99792d92c83c3e505a44f1458fc450", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":12098, + "sha1":"535eb60dc7df6e888416fe10223e451d916f421e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:45+00:00", + "size":12909, + "sha1":"2de3bb93f283bf73df1d863d026ea109917b1b33", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:58:51+00:00", + "size":42059244, + "sha1":"bfe0e3ec2a83460cf353248afc00b9fe1827a92e", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:55+00:00", + "size":16166, + "sha1":"bfc09d8d03e2120fd4bd19c2d282771c2753ba33", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:02+00:00", + "size":3259, + "sha1":"5ff6cbfcc2b0d81d9e67f3af0c2196d5f508e75f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:44+00:00", + "size":3786, + "sha1":"24aa031ada8cfcf17fa24125738537ab24274de7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":5020, + "sha1":"5a84eb31c35710f3503516fcea4b3a2eacd65f66", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:04+00:00", + "size":5669, + "sha1":"6f72dfa7993e990da5e4a91a45f707b96e0027e0", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:00+00:00", + "size":47591, + "sha1":"3f965cf68ba5c4addddc49f64219fd6c5ac3bedf", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:57+00:00", + "size":48596, + "sha1":"8ebe996206fa4977291ac2b7c676083116725082", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:08+00:00", + "size":26131, + "sha1":"96c7fade6a0aef5cc08c9c2b71ba3f66b5cf018d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:05+00:00", + "size":24620, + "sha1":"f111ee185037456d373ff5987308a8166de7b0f1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:54+00:00", + "size":28964, + "sha1":"01e05aeaa4e64674f4072293e613d1bb68428724", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":24753, + "sha1":"eff9576524c2e9d6ab3f1be6d20028fa18fae256", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":28383, + "sha1":"7d7ce8861441afdb861a3e0331efee3f21e32a7b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":34786, + "sha1":"045c1dfa673a9666b29c3e97a91c7793dad34f88", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:08+00:00", + "size":14180, + "sha1":"bc5584a8251e7ca760d4382cd6dfecdf30189ac4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":12405, + "sha1":"945f4974d6d4a9b3bc9e774f0898d0162707ef78", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:02+00:00", + "size":4404, + "sha1":"62b198d4ae9b2ce53d3f224643226ab3e738db7e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":4257, + "sha1":"ce6acfd2547ac6e70b42b5d62a8153abd5257fe9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":7552, + "sha1":"4e8e954f917286b219d2ab5bfe70da75eca59f15", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:01+00:00", + "size":5899, + "sha1":"d31ea5666965e1553ad39c73bf7e3e8d8d1dc014", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:15+00:00", + "size":36865, + "sha1":"5881f8fdab27496c937f5f1fe4d48ac2c1bfa059", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":36437, + "sha1":"4e4be804436fb52d2aab9534ee70f91c5b33fd62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:10+00:00", + "size":8340, + "sha1":"236f33f4a275d733385bd01acd3eef06c1e209d2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:23+00:00", + "size":8621, + "sha1":"94d5b0852a90927dcaf88e7ccc5ed6d5787ea611", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:49:41+00:00", + "size":47183472, + "sha1":"9c4fa741527bd97f46bf809edd688f03078e01c8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:40+00:00", + "size":2746478, + "sha1":"5391cb173c6a4727cdf761d8c9e10fe13f1718cc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:25+00:00", + "size":3248, + "sha1":"e2a52504a40bfb4123fb2c725b210f89a1524523", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:08+00:00", + "size":3684, + "sha1":"3ffa66da8e880ebf41d48e19fa2970abd38ce955", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:34+00:00", + "size":14157, + "sha1":"186700ebe761f16a4b090a62edc856bae08a665b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:00+00:00", + "size":16222, + "sha1":"cd134296c2559193556b37b98a834ebb96cec831", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:07+00:00", + "size":2858244, + "sha1":"722aed6300e75613375e4e26aa29cc3a41d82341", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:49:47+00:00", + "size":2859154, + "sha1":"297be0b55daab34912fcd5b84b039d04e4cdc62e", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:01+00:00", + "size":372089, + "sha1":"abb54d1954d2f545b71652e9f557c02d419205e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:42+00:00", + "size":375358, + "sha1":"a0f3bb83e79b46da50ac25ecb3dee89c22f12759", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:29+00:00", + "size":34743, + "sha1":"c6a579e4c4cd415de4f3c5671856dcc0995fb83c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:30+00:00", + "size":28377, + "sha1":"2715309fb5f3921c0354446540c2b34393990d30", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:35+00:00", + "size":46925, + "sha1":"79424b57d1e7f5a239cc070ace119d83f5f5e649", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:02+00:00", + "size":37098, + "sha1":"a6377c75fd5d44dbad43e0f736fdbe048f90e294", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:39:31+00:00", + "size":2234323, + "sha1":"12a18ca9c7a45c937c1b8d74f7486e8efde3a710", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:39:51+00:00", + "size":20264, + "sha1":"01872003ae17a543a44fae4982ab0af8d1d6e189", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:37:44+00:00", + "size":3010384, + "sha1":"538ca8598d9e818afca011226c89be80ef1f82e0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:03+00:00", + "size":20003, + "sha1":"b222ff796e010f0fa2801804d4cc66b5872ebf5a", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:38+00:00", + "size":1906344, + "sha1":"afe5bcbff5b2a5fd789a50a30e069464793ea3b8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:44+00:00", + "size":16701, + "sha1":"826a3da4947eec1d6305464bc0564f711fdd697b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:42+00:00", + "size":4961132, + "sha1":"f30fcb1be4210cd5eb9e25a5c7b01d40c385025d", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:51+00:00", + "size":19917, + "sha1":"e8b8aa2d8dab43da2084c02ea679caf83c47dfde", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:19+00:00", + "size":4961730, + "sha1":"c4d710cc00d69ed6fe87092df277fcbdab7ba134", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:23+00:00", + "size":19937, + "sha1":"24259cb69a11d621a2240079175bf87150071ed8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:51+00:00", + "size":3308434, + "sha1":"13ff88806146d5b6afc1deafd8f05ec45a3e85d0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:26:15+00:00", + "size":20011, + "sha1":"1a3adc7a0b19c01f40988ff613e2e0f6f9d8a9a8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:23+00:00", + "size":74348, + "sha1":"46d1ef2e5f3a09b852560b8845ef2f30e47a8b2b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:25:30+00:00", + "size":29227, + "sha1":"52a6d8f21e60b8e1eefa99ce726159c1f28d6df9", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:48:34+00:00", + "size":56329, + "sha1":"4b91c9ceb4ead9258ab3916ccfd516e1f2e3d204", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:48:41+00:00", + "size":20334, + "sha1":"4bec2ab1443afc239d4c3a853bc3cfc987e67942", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:57:28+00:00", + "size":56514, + "sha1":"a97e9ee632a1f25fc6ea9b044be14bd766d1c84e", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:57:29+00:00", + "size":11834, + "sha1":"c9d45644a76d79c40aac0cc3d8a10284e1f19c5b", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:29+00:00", + "size":6064, + "sha1":"564734c77ec889bb42a9ab5c6a703a8236adfe09", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:31+00:00", + "size":6010, + "sha1":"e3d33f5b0b40ec3a113213763b304199591a4335", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:16+00:00", + "size":102002, + "sha1":"0638539fe9dea85881b98ebd71aa9709ab7295b8", + "name":"Pushy", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:18+00:00", + "size":88362, + "sha1":"94498e475f442ab1fd054818a6cd1fbc8339a677", + "name":"Pushy", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:27+00:00", + "size":26081, + "sha1":"e49013e192379968fe07f14d945c3842e0ae6b4e", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:43+00:00", + "size":3808, + "sha1":"43ebd93251857d20a81b05d3d43333fa824593d5", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:28+00:00", + "size":59559, + "sha1":"ccf97b601be7c7a0ea6fe39f375bf34890a8868d", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:47+00:00", + "size":10321, + "sha1":"8030cdf46d3e99f9408229cafd92c64ca4998352", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:38+00:00", + "size":677475, + "sha1":"d173d3b3e1375e3ff7a639248187b42482401265", + "name":"docker-client", + "description":"A docker client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:00+00:00", + "size":380304, + "sha1":"0eaf853246fac2538ffa3e059b9e3ebef3be8e2c", + "name":"docker-client", + "description":"A docker client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:49:28+00:00", + "size":44473, + "sha1":"26111ebe89bf0e71068e3ade534015de90035907", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:49:41+00:00", + "size":9423, + "sha1":"3c1e7d805e2a64194e5f3ec3ef8b6929e0610238", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:25:00+00:00", + "size":43937, + "sha1":"4cbdd29f40cee0fc156f1b74f3b204a3ea599679", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:25:17+00:00", + "size":9025, + "sha1":"534787127d6a90d0852c1f171f97be6ab993ce59", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:42:39+00:00", + "size":520418, + "sha1":"8689d1e66a4800f5945c4d4874996d22f4fe9a25", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:42:49+00:00", + "size":598288, + "sha1":"e334bc0026db1f4a7c45e5b361fbe03230280c85", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":47144, + "sha1":"c6302e04ba5eca4aac68d43213d0d01012170483", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:20+00:00", + "size":2677, + "sha1":"a20bbb64ebadd74efe032e99513405dbd5b2fe5f", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:21+00:00", + "size":61678, + "sha1":"9d1070129be73cdbde893e4b92268dedd33da330", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":2677, + "sha1":"79e8555e472d3c1e56138fb7f2021cd15fd3a9fb", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:57+00:00", + "size":5121, + "sha1":"72968435a6eb2280e86a2c0c0f0e5b77485bfd56", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"13bb85616cdc0b8fa0bc62e39a093804ac796936", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":5494, + "sha1":"e46e2eb21bc47a85edb9ae309c2837d4310f4ec4", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"4bb834d495501f89c3cd870cb4d6f055ec729afb", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:36:06+00:00", + "size":439051, + "sha1":"63241080552f41d9c1bc2c3e3e7e58f91aa91be4", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:36:14+00:00", + "size":235653, + "sha1":"07f327cba772f6857384b507a34cbbf7f89918c3", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:57+00:00", + "size":900455, + "sha1":"551f04394c8819f07ce7fe4fecbd5d580e0c99da", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:25+00:00", + "size":164524, + "sha1":"aedc463329c93634c769295a65b562d9bf48b5a2", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:47+00:00", + "size":1208914, + "sha1":"557332267baead582d9f3b7e3c01b3a1373896d7", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:19+00:00", + "size":164524, + "sha1":"71c980d583100f712defc62d50c972ccd4b1bd6d", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:15+00:00", + "size":51461, + "sha1":"04494b708650ca89058927ac0bf475fbc1196431", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:17+00:00", + "size":4450, + "sha1":"1e3494bd0ebaf96b952df54f49a16c900ed8c890", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:52+00:00", + "size":52856, + "sha1":"9e82349f10425a7b32b7f9b67e408d0f808e89f9", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:54+00:00", + "size":4450, + "sha1":"48805f9b33bfbeeef2be44028125021ebfe6d388", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:21+00:00", + "size":16231, + "sha1":"afe13c85c5a45abcc7a9a8332d7e3438076c5dc0", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:19+00:00", + "size":8930, + "sha1":"0062678e5d026f12a8d875d1f5769f1147b422cf", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:06+00:00", + "size":23539, + "sha1":"9a7e8911542afaca420ded579396e4d499387572", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:04+00:00", + "size":8930, + "sha1":"99f9c9c1e5dd9637f4368d4ddc633c28518a641e", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:45:56+00:00", + "size":25398, + "sha1":"a9d742a167aa93ccaf035dac253686ad2ac47c78", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:45:55+00:00", + "size":4125, + "sha1":"085e71d23dd0e241abca14f28e70a11b61c03ad2", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":8612, + "sha1":"999e43d1072cab7c4e30a2310d32adb8a6a83e43", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":4337, + "sha1":"da9fcdfc4c836d7aa0a52a8da80dd8151260ff72", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:09+00:00", + "size":8436, + "sha1":"0aa25da4394873262db2fb452c75296fccdb18ca", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:12+00:00", + "size":4337, + "sha1":"d57dc7dea6c6d0c9132ac2ff8a83cc82a8da0442", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:13+00:00", + "size":19185, + "sha1":"34ee106e4c20dafc91e8547997e9a082410ad3d4", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:12+00:00", + "size":4634, + "sha1":"555cfacb2f74005ac1fce70b4bbe1ace9fb3eb5d", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":23562, + "sha1":"36b1f63a6cc7c78c14729203386a061875a39349", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":4634, + "sha1":"751a3a9bdb76bd4b523d48ba3c1ee022f4a8015e", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":36894, + "sha1":"4df4fc2eae1827871c55703bc04c7dc26bf6033c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":4745, + "sha1":"2765e09e117c7278c0e5560e24ea31e491d7856d", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":49500, + "sha1":"a951f81b543ade07d9cdc65cb327f430c313d07c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":4745, + "sha1":"05d1976f405d9e0b5626a34663edc0c872c62a54", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:18+00:00", + "size":19978, + "sha1":"2ef26083588d69a9284dd71a460a7b5462d69fd9", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:16+00:00", + "size":5327, + "sha1":"57e7b6e7d469989cf87cb22a72cb9b281230c504", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:47+00:00", + "size":30583, + "sha1":"9120a87905cbfd224b26a92478a4a9709d8871fc", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:45+00:00", + "size":5327, + "sha1":"da1b849b61c9deb1b28a9f9bc65d2786c267d344", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:17:15+00:00", + "size":196431, + "sha1":"f4d8856e98bc05fcc93e75a1dc0fb59b73ee7f8c", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:17:24+00:00", + "size":219637, + "sha1":"a21b421682d3062c80dfaeb5ca2081b933b8f2ba", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:54:50+00:00", + "size":33683, + "sha1":"c32338bcf123194142578818aaccab9688272766", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:54:56+00:00", + "size":19444, + "sha1":"675df81c0f14ccb5dc4fb82df9ab52d514e793eb", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:32:38+00:00", + "size":67119, + "sha1":"2a6908e6b182deec99ff76d0eacc6a806db546c3", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:32:43+00:00", + "size":84942, + "sha1":"1c999a27d3ef2a49b61f6727dd5e5c5ac45b8931", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":37648, + "sha1":"177cbe74b3501ae78e305d12bb91e875d0c87d51", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":19005, + "sha1":"75955e9cc2f07d381e9b1a03cb17abc17a5c59d1", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":9896, + "sha1":"8f5009531cd52108560aaf56131164cb87745c2f", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":4729, + "sha1":"45fea2fc8daa58aeb7749fd16047a11eeaa430ec", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:47+00:00", + "size":41395, + "sha1":"efd2fe86c52099dcd158a7a6531012928179796c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:24+00:00", + "size":26794, + "sha1":"18e8e553b7257a65784ca7510e721c5e8f10112c", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:21+00:00", + "size":10719, + "sha1":"043e55bffc5d1fbf657a58465aa5abdef49e15e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":8729, + "sha1":"9b12839cac0eb8e5f38e45704160390f62280196", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:12+00:00", + "size":102033, + "sha1":"76442295bd911c77acd42487d73a3ab1f20e3428", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:45+00:00", + "size":59836, + "sha1":"2564460f46cad8abea2101ee7f2e4c9a50ecfa5f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-integrationtest", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:10+00:00", + "size":5194, + "sha1":"430daf26d709d8664b59c7fe08340c506c6af627", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":12851, + "sha1":"ca8f214718a22c77eca5dfcfcc937f937676b740", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:09+00:00", + "size":12478, + "sha1":"e2942078a273287381acc1275866a7a68b655f83", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:01+00:00", + "size":515486, + "sha1":"e17e03c7cfd010e7cee43c68ec6639ddd5006d88", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:17+00:00", + "size":359827, + "sha1":"ed6efb8ab79f5bdbcfee2a69e9799116c98b3546", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:54+00:00", + "size":459389, + "sha1":"eb05a5671e40571e8389d68688e6aec7b34aad1e", + "name":"Better control with cibet", + "description":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:24+00:00", + "size":9763, + "sha1":"dceb77315269adbbf1231f039c4db0b6a9fd40b8", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:26+00:00", + "size":3240, + "sha1":"e597cccd73a65c9d8711d329391036754b2e1ac5", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:39+00:00", + "size":18482, + "sha1":"e3cb786de2759b00956e170e3f8c5e46cb92be95", + "name":"Sample Templates", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:40+00:00", + "size":4052, + "sha1":"e9cef2fe17f79d051fc1b46787a5649c88f5ea09", + "name":"Sample Templates", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:44+00:00", + "size":2344, + "sha1":"8a86873a1ffcde1bb21ea86b9d777a4ce6a6d3d0", + "name":"Sample Runtime", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:45+00:00", + "size":783, + "sha1":"0339eb68b809460304ebcdf7ac11eb0ae6644c97", + "name":"Sample Runtime", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:56:22+00:00", + "size":3265, + "sha1":"0aa2f3750e9c61a554a06b818b841d77130423a0", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:56:34+00:00", + "size":1502, + "sha1":"68977afff8cfce2ee4d7e1c51d2c31e73b4f956e", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:12+00:00", + "size":7568, + "sha1":"42f0c738e1954699e26511fcd471849427612221", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:32+00:00", + "size":2318, + "sha1":"6ebd35a8bad75d099097ce8a4b5a5f8fcd4d9da6", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:32:19+00:00", + "size":57255, + "sha1":"dfc181597410df308f5a0f58d01ce87beabfef66", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:32:20+00:00", + "size":27455, + "sha1":"a9b43ee36a71764fa13792dddc25e0e4d410f4c5", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":55362, + "sha1":"f8ca48120de19f4a637bfe5c750df512951e1a12", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":9356, + "sha1":"dc2941c7e2894af0939012eab278f5a58532eab6", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:32:36+00:00", + "size":354880, + "sha1":"a64cd3ce4250487c2ede6bf5c1e6c0f31cfb642b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:32:28+00:00", + "size":246398, + "sha1":"ef28e4ff6fbed90c9afeafda14b2d16bf044dc80", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:48:19+00:00", + "size":149545, + "sha1":"2cc001a6b7588daf5b4d5d12c3fd949b1cb9e6e1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:48:41+00:00", + "size":141664, + "sha1":"45329ae4aed0298fcfddcc02396afd687d6798b1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-war", + "version":"2.13.9", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T23:44:25+00:00", + "size":51278489, + "sha1":"769bc441e42089a9d052a7be1bb1a0954ca176ce", + "name":"Gerrit Code Review - WAR", + "description":"Gerrit WAR", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-js-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:58+00:00", + "size":15524, + "sha1":"0b87cb6c36b848071fffe43902117cc59b77c53a", + "name":"Gerrit Code Review - Web UI JavaScript Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI JavaScript Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:46:08+00:00", + "size":7051241, + "sha1":"e63e18db9fcc72b262bd71bcafb948b8c3858714", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:55+00:00", + "size":141110, + "sha1":"05822cac9819697ffd8d83bcdac49ca06b41ef7c", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwt-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:57:09+00:00", + "size":23019, + "sha1":"e8ac5315956ba633b82c90e835ded1e497d15373", + "name":"Gerrit Code Review - Web UI GWT Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI GWT Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:46+00:00", + "size":19516, + "sha1":"6e3da5aaea8442161f92c94097780761eaac2299", + "name":"Gerrit Code Review - Plugin Archetype", + "description":"Maven Archetype for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:53+00:00", + "size":32872670, + "sha1":"a9b00025900f68c1f86036ea07591a2876b10c37", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:44+00:00", + "size":2419934, + "sha1":"6f07372e482e6b1e99bd5bc57ee1ba6b534d8439", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:34+00:00", + "size":3592866, + "sha1":"166819680c2dc501fa7f8bd13b4d6846297777de", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:31+00:00", + "size":215508, + "sha1":"8018e0def6a84fd1ec51533c2a3250479afc3e53", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:20+00:00", + "size":14229198, + "sha1":"53a6e2baca19303bbf3967b861cf9814323c31f6", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:19+00:00", + "size":47482, + "sha1":"f75ba862b02156a0ca24e9220a712dbf3dcc582e", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:45:28+00:00", + "size":50059, + "sha1":"741d19644f5b5ce125f4a8dec3c1aee4be426e5a", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:45:33+00:00", + "size":20757, + "sha1":"57ac9eff03b2eb9aa52f581aeb22e734923e375b", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:49:52+00:00", + "size":42125, + "sha1":"cc737471028fff9c866fba75cef52db6d07e473f", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:49:30+00:00", + "size":4153, + "sha1":"c481ae945627bafa519b1a703974e4e18148e0b4", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:27:49+00:00", + "size":42169, + "sha1":"afa08cd5648ff86b13b70c23bba532204dd07183", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:27:42+00:00", + "size":4153, + "sha1":"7fad43ad2dbcea936842f73b950c9eca4844aca8", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:54+00:00", + "size":4565, + "sha1":"e8404c4da7a998baee790e618cf8956496726c22", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:57+00:00", + "size":1372, + "sha1":"88d38bde4fcec255c22cf67740265fc8759d3190", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:10+00:00", + "size":5185, + "sha1":"7d738f29d68e3975af6a86ff46c123d40d3f0971", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:36+00:00", + "size":1372, + "sha1":"648dd53dc7894555db3b1ff2b21abdba09494365", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:30:46+00:00", + "size":52579, + "sha1":"6dff070f50f2f8a3e7ecc1e644ac7c02f1b03a2e", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:30:43+00:00", + "size":5782, + "sha1":"268d64e25439460ed90ceafdc85ff1c1bbc76a4c", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:31:02+00:00", + "size":54893, + "sha1":"89b25b2dfab6bd3faf8ee1ce5c78f7bc5a709bfa", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:31:00+00:00", + "size":5782, + "sha1":"b7dd00dcfceceed7dfd5b5043fb8f67fd2b55a73", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:56+00:00", + "size":55353, + "sha1":"8d545e08beb91470e3bda795cbe80699feaa2faf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:57+00:00", + "size":11984, + "sha1":"3cb663582e21232daea2c7e619d90ba45c66debd", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:13+00:00", + "size":113913, + "sha1":"ecb77013ade117f16d5800d4d6d2f732af8821cf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:14+00:00", + "size":11984, + "sha1":"f63f0203093c1987859f71c90c22ff39b58b7387", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:30+00:00", + "size":34048, + "sha1":"03a73352c733d8ee56a1c7a62c1e2645d7c30fad", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:48:29+00:00", + "size":6053, + "sha1":"749c93193dac155e6596cf770bccb6d85fd50364", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-sonar-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:53:10+00:00", + "size":12882, + "sha1":"044d3f7a4de24d791877f19881368eb978564bdb", + "name":"SevNTU Checkstyle Sonar Extension Plugin", + "description":"SevNTU Checkstyle extension plugin for Sonar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:38+00:00", + "size":2924, + "sha1":"ae54fb7c650203298e0b806dc97b3cdd6788c05e", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:37+00:00", + "size":764, + "sha1":"222d9c1618f283b51315a393333461a4e88cb39a", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:45+00:00", + "size":193304, + "sha1":"defeab02fc4197910d5a0d6b5b995ec1c5c20841", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:43+00:00", + "size":27396, + "sha1":"bec575c41072d7e2e4a596804544c214a04537bf", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:28+00:00", + "size":169476, + "sha1":"31778216a037513d3e184e4f1ca70a340436d339", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:31+00:00", + "size":179879, + "sha1":"af8b89da3bd59a64d09c3fc6a5817932ac211b71", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:08:53+00:00", + "size":10598, + "sha1":"c66fdd91baa322b8ce1d82457931dd9ca20e01cf", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:08:54+00:00", + "size":5055, + "sha1":"864417782b6e3277788bdb16c359b896085c55ae", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:43:59+00:00", + "size":10602, + "sha1":"e6359ae5d7c5ce26acca1e03fbc99461f4a43bb5", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:44:00+00:00", + "size":5057, + "sha1":"527d367cd36bafb846bbf31c325f35e047f6aeeb", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":10097, + "sha1":"ab85baaae9574464783b1a801626a5850b8cd9cd", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":4983, + "sha1":"baa6909399ea6da13ea44ad10e9471ec5d3d9f4e", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:07:31+00:00", + "size":8377586, + "sha1":"3cc11ab8b3d7cbe3577b640c59152815ee8122d2", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:07:24+00:00", + "size":3366, + "sha1":"e30219a4b559221faa27da388476c05137812e82", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":8377368, + "sha1":"8bdb588fe1bc94a7161283267af0acc405f4b445", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":3367, + "sha1":"f0e9377525b9ad6f44fa7e0d11d3fa15eb04128a", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:42+00:00", + "size":8373153, + "sha1":"5d3156db77dd327a98cb2de88bd431b850365691", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:15:34+00:00", + "size":3366, + "sha1":"4a45d75f5efda8f4977f307b1758bc8fbc910425", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:33:22+00:00", + "size":200944, + "sha1":"1a5e966b031ef4a46f5c9af253d4ad5e7f146dc2", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:33:26+00:00", + "size":143964, + "sha1":"abd2f9076463485bc3134e60c97f158eaa898e19", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":7052, + "sha1":"be0efbe91c363f05d1c0d0b399a4bfce3bb4f658", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":6113, + "sha1":"f4155f2283fd8da59f07b618110a6a141b42074f", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":33405, + "sha1":"9216d400042cf0b39ac6a515b24ef744ed4b140e", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":19747, + "sha1":"78d15c354188247302b056a85ef0f1800ad2911c", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":75836, + "sha1":"22cf1cd02b756610ebc1573cc248c3d3e5bdccb6", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":51693, + "sha1":"7b010f28aeabbe62eb031d7026945a6351bd2e87", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:38+00:00", + "size":21171, + "sha1":"8aa99a7e7b57b3f1642ede69aa39546dd9e3b200", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:36+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:14+00:00", + "size":21885, + "sha1":"71e91e648a4417db4270e0b14826e04a0456e612", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:12+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:01+00:00", + "size":11495, + "sha1":"6fe60fd021bb19a2b1f958dddd20655de2165c99", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:00+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:44+00:00", + "size":12007, + "sha1":"c64a8673a706015e5c232d141ad3434ebb5f8042", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:53:43+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:08+00:00", + "size":49699, + "sha1":"f2995c66cfba1aa059def6ea4259b78196369ad1", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:10+00:00", + "size":3617, + "sha1":"c65e3647fb0c2fbb15921737f7032e273d58802d", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:19+00:00", + "size":67525, + "sha1":"c30e7b4def4e6d33a82e5f8f943e49f80e289bd4", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:21+00:00", + "size":3617, + "sha1":"a147a75317ff1c0a9364807fa1f26d3ceb99ca29", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:43+00:00", + "size":280417, + "sha1":"fbbf863df4aed0a2252ab18448c8ef76ee5ee603", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:50+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:04+00:00", + "size":299174, + "sha1":"f474358aa47e5c17353aadff262e27306e5f8dbd", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:10+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:52+00:00", + "size":147582, + "sha1":"e4967735d2981e4bce8f08e17f3afb9722fdd4f2", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:59+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:52+00:00", + "size":161261, + "sha1":"82fb96733b476031483b725052f8f88e40a13b2c", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:02+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:21+00:00", + "size":137832, + "sha1":"76c0d2be3891d004cc0ca0c642160157f1b92cae", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:25+00:00", + "size":15408, + "sha1":"79f5ea89217808bf0d425861b4e44a94c930c567", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:05+00:00", + "size":137825, + "sha1":"da391a34c44b2253f079f0c8386a37b9b908ae64", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:08+00:00", + "size":15410, + "sha1":"061774504514a81614df20c2f17c8eb3a8aa6157", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:28+00:00", + "size":213338, + "sha1":"02cc82b1161199fab701a37af3a3ad14e394360c", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:32+00:00", + "size":15408, + "sha1":"17b47d8a0f66f8f10b6c14eb7c5d1385d3fd9932", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:54+00:00", + "size":213335, + "sha1":"cf30ff10d4108b642d7cff2dfb44e8fd38241be6", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":15410, + "sha1":"e60563be89d077defa284e0fe464c7c3a48bcb6d", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:39+00:00", + "size":131280, + "sha1":"cf35abe567acec8680b945e11ab46bd491909888", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:44+00:00", + "size":19325, + "sha1":"fede6b0c5d59d86d4ed0c65d266638f3e95bd212", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:33+00:00", + "size":131285, + "sha1":"2b11b94e9a002b114cea1f4bd249a55097035d46", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:51+00:00", + "size":19325, + "sha1":"eb7f30c356d6510bfe0798d4e66a7fd670c30259", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:50+00:00", + "size":196379, + "sha1":"9325d871c10d24dd4cfa8d92e6edbeeaead0ce9c", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:53+00:00", + "size":19325, + "sha1":"e8b11c14a898c3f628a4b6ac8f591c8b544385bb", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:28+00:00", + "size":196383, + "sha1":"842f67d21c284903faff44797b8f7d65bc650b06", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":19325, + "sha1":"30e003efed74bb6a8ebf65cc087b6bbdf82d300b", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":51410, + "sha1":"a9345e7ec4fa7eadfe03ee2e95659baa88d8b4f3", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:49+00:00", + "size":8069, + "sha1":"d774255a8358708d9bcf3d704093e5024831691f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:30+00:00", + "size":51410, + "sha1":"ee35cdbe79666699f715c2760699cfb50132d34f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:18+00:00", + "size":8069, + "sha1":"fd7a6ebae93c8b74c31d2e260cd3da43217284dc", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:47+00:00", + "size":72902, + "sha1":"1342b23502c22936ccbe204d0c2621a2e780648d", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:44+00:00", + "size":8069, + "sha1":"8373216ea395c27b68d3e7ffa2b3d50d0a979f04", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:24+00:00", + "size":72903, + "sha1":"9edf80b76718966df9b40141ce82416eaa71c7a5", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:21+00:00", + "size":8069, + "sha1":"2cd737060e0ba9fa0801d901b3f6f5ccbfa602b1", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":443, + "sha1":"2ed5a5892d53d1b0de67297f9dafd3f786b8183d", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:59+00:00", + "size":1742, + "sha1":"cccdd6d533bfd5a97e62a88e51893c55e6767b4c", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:44:04+00:00", + "size":444, + "sha1":"942b149c751b2cbab9fbc43cd0ba704e9a5f7486", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:44:28+00:00", + "size":1742, + "sha1":"81543b8f952c5acdf415e6f9151a7c82c8d252c9", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:34+00:00", + "size":444, + "sha1":"26de758f91ee0539569da74cf92e3f668bd5ed15", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:40+00:00", + "size":1742, + "sha1":"e88e98a9f73c17f0251e486241e45b0a04ef8b60", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:11+00:00", + "size":445, + "sha1":"f42c53b6c08798141300d51baaf066c0424c1537", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:18+00:00", + "size":1742, + "sha1":"e7c4499577701d6ec915de69d6873c175c0abc73", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:09+00:00", + "size":28968, + "sha1":"4dc61446f324000fc1f80b3cb177b23f0d24dbc6", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:14+00:00", + "size":7263, + "sha1":"3d8e14032b936109183314c6eee245713040d330", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:54+00:00", + "size":28969, + "sha1":"e42dd1d4557e84e5a1e2a5578c2f0453c6079697", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:58+00:00", + "size":7263, + "sha1":"3844e4173091473f1bd5900a4e2a88564be7a758", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:17+00:00", + "size":29674, + "sha1":"a258484cf0a71d7e0cf703cab2531f31dbe15138", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:21+00:00", + "size":7263, + "sha1":"76f22a1020e13cf1014910c0b3e36c1eeb1495cf", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:05+00:00", + "size":29675, + "sha1":"55f14fb6b3b77408a5caa42d657b0ff378eee4f3", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:08+00:00", + "size":7263, + "sha1":"b70e3e31cfb539675f44f02c62cb7dd7266bb35d", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:03+00:00", + "size":16879, + "sha1":"f44f210ae562c8cf52305355279b2695fbd34a68", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:04+00:00", + "size":1576, + "sha1":"77739e60f995899ff7a06b10f37a85a8c6847b35", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:44+00:00", + "size":16879, + "sha1":"cfadba70f46142e328d769e37efe2b5ce47a6b7c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:46+00:00", + "size":1576, + "sha1":"5355c4c8a106b7dc9a0eb0c19a1e8599b19fba3b", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:02+00:00", + "size":17652, + "sha1":"75c2d00546e48a896daefd295d05533fd92de425", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:03+00:00", + "size":1576, + "sha1":"a114946226e509a40b9a32ccc1cc43e32f9c7e54", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:03+00:00", + "size":17653, + "sha1":"f5ed73bd121926b665a906e0c12c2576006d794c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:40:05+00:00", + "size":1576, + "sha1":"4709bce9ce75f8e1049c1c79d2b914fa3d34f776", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T18:00:09+00:00", + "size":182183, + "sha1":"4b8cd4f63b9a7e1f5e33c3dd6da5d568817d5781", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:00:16+00:00", + "size":94001, + "sha1":"2d2be8cb45354329b2d4ffa542cca9fbc5d204e5", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:29:52+00:00", + "size":181642, + "sha1":"295f8754aeb2871644f95218fd12a22b119dbf2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:29:59+00:00", + "size":93745, + "sha1":"cd2c29b4763d1189cd64c840953a327851a44c2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:28+00:00", + "size":162541, + "sha1":"54a4b6ab92c6ded7ac026e8848488c868326cc4a", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:32+00:00", + "size":94220, + "sha1":"cd836239d8006f613f9dd827bedcc8c39be97c42", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:33:27+00:00", + "size":179798, + "sha1":"b1efb7bb2be48a45bbe764f1e1e32e864ff44503", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:33:42+00:00", + "size":94045, + "sha1":"784a06cd225dc017cd470f42e1e41c52cb5f668d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:58+00:00", + "size":261248, + "sha1":"cf8cd658e0e63236d006b6427c0f916c77f1e182", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":339581, + "sha1":"9b21295813bd947a0931a50b27e0ffa0fbc4506d", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:54:24+00:00", + "size":4569, + "sha1":"7eb6a68ee07a8b3f6db326b83e42358df29549bf", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:54:22+00:00", + "size":4561, + "sha1":"6ac059907e786152d83849b19de3042c5182d58b", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:19:49+00:00", + "size":94809, + "sha1":"b459c0398f87625c2474a1004a01ffc22bb75898", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:19:50+00:00", + "size":46155, + "sha1":"dd8531228a3946282c25e460724db310991781b9", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:00:31+00:00", + "size":140519, + "sha1":"e964123e4a8dc9da33f7241b9b14c6500636e5ec", + "name":"zip4j", + "description":"zip4j library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:00:36+00:00", + "size":106470, + "sha1":"65e1d212f7d92f2f8ef5839667d1dd4ac83375ca", + "name":"zip4j", + "description":"zip4j library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:58:16+00:00", + "size":297334, + "sha1":"02e0be3264e8e750cbbffff2a764bb276a019a87", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:58:20+00:00", + "size":211398, + "sha1":"2364391bb37ef433a21e8cd099361eb827626c24", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:22:10+00:00", + "size":254004, + "sha1":"5e82a8ba62deef96ba4a80d8c9c96fd6a312f5ca", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:22:14+00:00", + "size":182973, + "sha1":"28fbbfe0da5f476a0cda39ae8b27f3ac460b26be", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T22:59:44+00:00", + "size":137832, + "sha1":"8a94836272bed887791df2b103748757b9e289a7", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T22:59:47+00:00", + "size":111685, + "sha1":"9a4fed602d63452d2a896cb9233630e0ebad6862", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:05:19+00:00", + "size":246294, + "sha1":"990fbb50014f3306c3f131483476c68c7a8acced", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:23+00:00", + "size":96763, + "sha1":"a803b44168a5428b1298523e1184cb809e6015ae", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:56:51+00:00", + "size":246253, + "sha1":"1c754425fef94da099f458c64357d91c5faa5255", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:01+00:00", + "size":96778, + "sha1":"f906f9ef776f7162bf58929a416cd7f2c8630794", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":169425, + "sha1":"a0bfc86dd6d60714a6f3d45d80ea6f488947b86c", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:51+00:00", + "size":39048, + "sha1":"019707898d84b680acd716dd6e30c74c5d052a2e", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-02T11:48:39+00:00", + "size":4672549, + "sha1":"b8c60d8f7f44360c12adf757c231f49e7e8e9b97", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:50:02+00:00", + "size":126537, + "sha1":"934f90070dc7ab44184870795494697a3ea97af3", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:15:59+00:00", + "size":4672537, + "sha1":"49709f9c575259de6e021ddbdfdb20a5c84a30ff", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:17:38+00:00", + "size":126537, + "sha1":"c6d93a6de0bc0aff6d03be54ee0e83f87bde09c2", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:44:10+00:00", + "size":4674082, + "sha1":"59ae893c3c2403a4d9c81ee0fbdd0510e7476ac7", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:45:45+00:00", + "size":126535, + "sha1":"7893da1a472ae51553c0400490d2c7c96b797bee", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:28:16+00:00", + "size":4647552, + "sha1":"e198347e134f8f80b1e420c0729c9da2f95b60a6", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:29:43+00:00", + "size":126512, + "sha1":"3f822f0ff12628cf7130fc4e8b861cb4c2c8f661", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:00:03+00:00", + "size":4762737, + "sha1":"7d1836107e75316c3b533a636007ca212b3b1802", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:01:31+00:00", + "size":126095, + "sha1":"e2fd602a911f1868179125175311c010dbd7e9ef", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:08:31+00:00", + "size":174913, + "sha1":"239f0e6a8e8353a933d552ce2ef3bf00957bdb34", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:08:28+00:00", + "size":117201, + "sha1":"e03691792ba7b6f8a9c09ec6af2a9d507712220c", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:44:28+00:00", + "size":28951, + "sha1":"0b2f55a8a04eadd5334f2bd35ba3d81787255c46", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:44:46+00:00", + "size":9958, + "sha1":"d2bb1226740e1fc95f7298395477e11b1350be73", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:43:43+00:00", + "size":28952, + "sha1":"28a8c2710ca7628ed9ec8fcc18548156a8bea5ef", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:43:45+00:00", + "size":9958, + "sha1":"324e61ffe0d067bda25b78f8452edc2e8681db71", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:40:46+00:00", + "size":10762, + "sha1":"24f06a0fedfcf6cb476c1f8d47d636ad1931fae4", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:40:52+00:00", + "size":4165, + "sha1":"15282f34bf340ea9dbf9aef2da69782ed840a689", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:49+00:00", + "size":85830, + "sha1":"e8365535ac24f57e414c969c08d1fe1cba33ab4d", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:50+00:00", + "size":56247, + "sha1":"de3054d25e5bfd4612a0ea4596b2ce2dc71bd025", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:37:20+00:00", + "size":8684, + "sha1":"8231b7dbbfd13facf36626cd381a9b1cfd7c7a47", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:37:35+00:00", + "size":4998, + "sha1":"e72686587daec0b8de676f2842eaf0b6520ed6e2", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:30+00:00", + "size":157341, + "sha1":"a5f9d1c9281cb8857ec6d5959911b8a4549180cb", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:31+00:00", + "size":44356, + "sha1":"ab3216113da6d20360d8d70f5b109a565b9a6788", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:13+00:00", + "size":233806, + "sha1":"90cd6023ca2c8b9b43da9c65baf515df1b8c0bb6", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:14+00:00", + "size":44356, + "sha1":"d2ac290f4112201778eff03ba1c00b7df78cfd2f", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:49:57+00:00", + "size":231008, + "sha1":"e162b0e9a74bc4c8e9bd5db3caffc6adbaf8f842", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:58+00:00", + "size":44356, + "sha1":"fea18b8fa894bed218772c9cac76265c4d3f49da", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:10+00:00", + "size":36728, + "sha1":"fbb0fa0682216fb9f5424cc44453518122ab8fe1", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":19026, + "sha1":"139b2a33e08274503bc6b13672dfb11641be26ad", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":18209666, + "sha1":"1106879361bc03319ff1d02eb4553895c2b5db52", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":616, + "sha1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:18:01+00:00", + "size":478640, + "sha1":"6935ced5a69bdd145fe0eda2d3a3b5240c7fc9a9", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:18:00+00:00", + "size":310474, + "sha1":"10b31f235edeb024757de440d70d338bb2d1e514", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:43:05+00:00", + "size":31421, + "sha1":"e861a89b05916191933ab36e477661271e18a73d", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:43:12+00:00", + "size":13243, + "sha1":"d52ff94bb5228cb3ab738fe5ecc08d1f9820772f", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:40:13+00:00", + "size":11461, + "sha1":"f463c9f1259af6af108714b9f0a164ce2d582f46", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:40:17+00:00", + "size":5623, + "sha1":"319600847c1a7afb84dfbc98e1ec408886b13584", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:26+00:00", + "size":2971, + "sha1":"a1af1f1d617d12b972496c74272292a65343183b", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:31+00:00", + "size":1558, + "sha1":"3227746f273ddfd49c384779f7aa46d9874a661a", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:07+00:00", + "size":17890, + "sha1":"7ea8d9a7ad2d06dc2090cb678d1cb3c3ad58d2d7", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:11+00:00", + "size":6444, + "sha1":"ec61a0762aaf58a527951f081559f59f399cefdf", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:54+00:00", + "size":64362, + "sha1":"df82e01fef59cc59fdd6275afdd9876ccae2cc4d", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:58+00:00", + "size":26707, + "sha1":"012cba759afee7a6053c6866d1685bac1adc7de8", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T12:39:00+00:00", + "size":180111, + "sha1":"ef788677b6579137ef279ce667d10ad08419f652", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T12:39:04+00:00", + "size":8527, + "sha1":"08da80595862416d30e30ecfb0c4382b01354c6e", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:58+00:00", + "size":321870, + "sha1":"b3934a8b32d6c299bcbf6c1226555dab378aa5d0", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:16:11+00:00", + "size":8527, + "sha1":"78e46b1f0e96f3350c2508eb83a8a2a67f2e1210", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:10:19+00:00", + "size":313278, + "sha1":"2573b36aeb2112f34b2a77474a1c4ea5d68b980b", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:10:22+00:00", + "size":8452, + "sha1":"0160d8bd9f5ab2779b15443247a5ff46e269d303", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:44+00:00", + "size":83668, + "sha1":"320b057dc16a04439468771704b73c93d71a61c4", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:49+00:00", + "size":5030, + "sha1":"d2bafe8cb15d56b547ae4bbc19ffc15cc5ebfd4b", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:08:13+00:00", + "size":11611, + "sha1":"d2b12ccae8e56d1b056a6058c9c2d2d5aa956705", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:08:19+00:00", + "size":6323, + "sha1":"35cc6c622e4365b7f6aee72da93db009d6f022d2", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:01+00:00", + "size":4159, + "sha1":"f9ddd32dab00d5cba377e3d13ff43223c5ec868f", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:47:59+00:00", + "size":1856, + "sha1":"0404e10de2edf31c332116f179fb2b65e93750a6", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + }, + { + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:25:42+00:00", + "size":298715, + "sha1":"304b32bc34543aed6c86a40a1eeab81b70079324", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true + }, + { + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:25:51+00:00", + "size":140642, + "sha1":"ebf83e009a58f65c16715d21ed9a3581f92cd89b", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts.json b/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts.json new file mode 100644 index 00000000..745afab6 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/expected_artifacts.json @@ -0,0 +1,22643 @@ +[ + { + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:57:35+00:00", + "size":26402, + "sha1":"ed4e1fc30fe5df3e663deead1501ac4fa72c7d58", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"uk.com.robust-it.cloning", + "Bundle-Version":"1.9.5", + "Bundle-Description":"The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects do not have to implement the Cloneable interface. Effectively, this library can clone ANY Java object. It can be used i.e. in cache implementations, if you don't want the cached object to be modified or whenever you want to create a deep copy of an object.", + "Bundle-Name":"cloning", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0" + }, + "classes":[] + }, + { + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:57:37+00:00", + "size":14766, + "sha1":"1d8339275d436e3a19c41e9145acc4860a75fb14", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:29:04+00:00", + "size":128889, + "sha1":"015cf02919fed76b6d44e133d3cd33d8448104d8", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"su.litvak.chromecast.api-v2", + "Bundle-Version":"0.10.1", + "Bundle-Description":"Java implementation of ChromeCast V2 protocol client", + "Bundle-Name":"ChromeCast Java API v2", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt" + }, + "classes":[] + }, + { + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:29:07+00:00", + "size":56160, + "sha1":"a1ca8d589d8e2474ffe091df3533db93f9f9023b", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:42+00:00", + "size":40057, + "sha1":"d08e451a8cb54c6f01051b5c531eddf6f2515387", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:41+00:00", + "size":3888, + "sha1":"692580d3963f34c9b056724f8a967c2a98996891", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:25+00:00", + "size":45287, + "sha1":"4596f3be51938fe0e46a8c1ee35365e873ac9f30", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:24+00:00", + "size":3888, + "sha1":"50395ad6d68ff0b383c710f0a20a3d3f50419190", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:53+00:00", + "size":39470, + "sha1":"ec127d1451280f9c80fb3682a123418b9a637966", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:54+00:00", + "size":5402, + "sha1":"210a54990568740a462384796c87c776c19faac3", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:45+00:00", + "size":56385, + "sha1":"66dd6cc38d12fa27b01536d2aa33c1e5dacf10fa", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:46+00:00", + "size":5402, + "sha1":"2ab00bd801f7f82c599c99b5b424e65612ba8495", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:03+00:00", + "size":26679, + "sha1":"31877779190ab6bf8edfac489739957a97db577b", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:04+00:00", + "size":2341, + "sha1":"3f307f0f1a76140e88efe4e6558f3674b5ae3973", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:25+00:00", + "size":27990, + "sha1":"e16346bd99aa731b2fe50de6a86b46cccc8e2db6", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:26+00:00", + "size":2341, + "sha1":"39d89bf8ef7b5c8a145b49a1e7ae84ffb8eb50a0", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:30+00:00", + "size":70465, + "sha1":"c177235bac41d55c6449b1677ea30414b2becd93", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:28+00:00", + "size":8825, + "sha1":"384520bafa9f5b07ecf095eaa743ad4e0d488545", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:59+00:00", + "size":82817, + "sha1":"f4f85308327a833c1ce5c4c23e37c04d461b54c7", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:50+00:00", + "size":8825, + "sha1":"214a57b83558247b05885d42833e082055d88e6f", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:37+00:00", + "size":21924, + "sha1":"cb3d35fe78c211b7d513ad3d7756c5f8e8cb7795", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:33+00:00", + "size":3373, + "sha1":"33b96779499a790144c69e94e17f45acbbe9d05c", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:20+00:00", + "size":35539, + "sha1":"5f66f89b5a7a57a5cbe7151d429ef32b110e071d", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:09+00:00", + "size":3373, + "sha1":"1d75d62f11c4b23709a8b45bc5946a94d72d2bab", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:57+00:00", + "size":103795, + "sha1":"872762183561e05e688dc5819b32c149458847a4", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:00+00:00", + "size":9867, + "sha1":"ecf05354d5cc02463308296f32d4797351259b63", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:31+00:00", + "size":126866, + "sha1":"fb5a69c23c9a9107c279d1b138ab75c6ebb2a4dc", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:33+00:00", + "size":9867, + "sha1":"938a6ec022c4d7cc0a523174e1c6a8b760ef13ee", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:49+00:00", + "size":18135, + "sha1":"6f8dffd475762a2b93dd310a27fdfaaefa4c7520", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:50+00:00", + "size":3431, + "sha1":"f51ec1abf22f0f7a3f30448f9641260ebb128095", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:37+00:00", + "size":18443, + "sha1":"d05f6810d6290c7be0393616b3523297128f0f19", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:38+00:00", + "size":3431, + "sha1":"6ad85fc6eea52f8a1e82c6cac737af825d1c7508", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:16+00:00", + "size":112994, + "sha1":"93b40f35291ba917fb653d1887b7cdf3e93168a7", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:15+00:00", + "size":14550, + "sha1":"bb2a2f22a62aba6da42e80e8d1e1df37bd9cebca", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:31+00:00", + "size":128041, + "sha1":"1c2f14f715fb7c2aa89f645e63c4c6d6ed3eb0d2", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:30+00:00", + "size":14550, + "sha1":"9dd3f88439219f94363467ef8a773d084afbe69f", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:10+00:00", + "size":18642, + "sha1":"be15daf3261cce15e010a5cbc706bab84025b208", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:13+00:00", + "size":3881, + "sha1":"da1b18ebfb145fbf4ab3393b3e90b381584f455f", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:02+00:00", + "size":25100, + "sha1":"2ad5805fb990a94bda1f18c538058e988d4fd2fc", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:04+00:00", + "size":3881, + "sha1":"248dc272046a2d9a002ebfa2a3c3dd1e9c9cc12a", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:24+00:00", + "size":104163, + "sha1":"80236c93ab0287d33667dbdd50db9d61d90c0322", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:25+00:00", + "size":9439, + "sha1":"d5bbf0620d479a62f06b7243535a268d347c7288", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:43+00:00", + "size":107085, + "sha1":"8384efe58606dd533d32b5a313fc623526f4b050", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:45+00:00", + "size":9439, + "sha1":"3027da7063ff492a47c9ed9a5781a12690740c6a", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:06+00:00", + "size":235126, + "sha1":"7ac0ac440cf223603e33b7705c73694977724817", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:09+00:00", + "size":25717, + "sha1":"9e297d2857da80411c2a71d3f6434b166a99a0b0", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:39+00:00", + "size":276970, + "sha1":"1320eaf6635ec5c7ed2763e926fa07a0b5566804", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:42+00:00", + "size":25717, + "sha1":"e0839afa82cfe289d43f5463cc43255962be7bf9", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:48:21+00:00", + "size":2231830, + "sha1":"4e5805ee9f296f18d4a7cbaaee2091a8eeb69e5b", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:48:27+00:00", + "size":30728, + "sha1":"476945b335cfa0c672992a9eee26c631caf49c6a", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:42:54+00:00", + "size":1966327, + "sha1":"22c4c6e4f444f7da61db8f7f825039e0f73a6cf9", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:43:01+00:00", + "size":1379990, + "sha1":"10cd83d0bfe61a204da486410dbda8bc6740067f", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:46+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:49+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:39+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:42+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:24+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:28+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:31+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:32+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:05+00:00", + "size":37827, + "sha1":"7212a2f595012404511f7bdd588a89858f97c36e", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:08+00:00", + "size":18343, + "sha1":"ea527e744ee235fa2a07f8fb1af970a2e27e87d9", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:15+00:00", + "size":7883, + "sha1":"defb07accd7aa9410a8124fc807b2bc010b40a79", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:20+00:00", + "size":4684, + "sha1":"167feeda2af5ee7fd4048d526b081aa781673edb", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:57+00:00", + "size":9124, + "sha1":"a3bfe5df502af598ef772765bddd7d044d92ee5c", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:00+00:00", + "size":5264, + "sha1":"16cbcaea37f11289d3a94257a529e9a7e0a111f8", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:30+00:00", + "size":10045, + "sha1":"4b9797c7f8638ce8fc1b5e1cb0207f56490caec5", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:32+00:00", + "size":4592, + "sha1":"b78974acf9b26c1bff0ce931d385751a0955b7e4", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:23+00:00", + "size":7484, + "sha1":"308ce202815849b05d162089b8836b521f10fc71", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:25+00:00", + "size":4091, + "sha1":"b04d42609ad28a965d8f566a0a23ba81fbcfaea6", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:15+00:00", + "size":82338, + "sha1":"10f6ef42d83c643dcfd07ebb6ebb17d87a45224c", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:17+00:00", + "size":44424, + "sha1":"0e3b3b25fbcc11ffef71aaaf57a164d39ea97861", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:07+00:00", + "size":36389, + "sha1":"7c305dbc51ac9a16188f0b8ec530f11a5e3b96f7", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:10+00:00", + "size":20645, + "sha1":"030cff8b79b112b7adfced1512d9cdfee9faca97", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:00+00:00", + "size":114250, + "sha1":"83301f2f15b479a7d69588b27b3634de9cc7e6dd", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:02+00:00", + "size":60221, + "sha1":"4d0e1498a8cd7ca095b21b124f47d6972fb64a8b", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:52+00:00", + "size":17078, + "sha1":"62a3f6789bf7fbcf5bc615e686fdabd087eb43f3", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:53+00:00", + "size":10577, + "sha1":"45c3e8ac90817f69a7cb5dc93eb30e824e3bc432", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:44+00:00", + "size":65561, + "sha1":"e12ea5cd01d448021ba298397e038773228fc1f2", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:47+00:00", + "size":37017, + "sha1":"a1e868d5706ddf881760a6bdf11a4246e2986207", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:37+00:00", + "size":22492, + "sha1":"a952687116943b46dbd054ebde81e95404aab621", + "name":"http1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:41+00:00", + "size":10915, + "sha1":"35dffc6f854c29c70837251f0c39ff094a8a74c3", + "name":"http1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:06+00:00", + "size":17236, + "sha1":"33d6b56b43ecede32018fe239f62bb89eb01f63f", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:09+00:00", + "size":10899, + "sha1":"fc43909597eec87d02d49b32a645a52f9e6db035", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:58+00:00", + "size":57989, + "sha1":"bdb4fd9e9f3c1133a0c6e91975ed5d35b028dce4", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:01+00:00", + "size":30513, + "sha1":"55f0b0e77ef733f7b88a694d363c37d43a25fe72", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:48+00:00", + "size":50182, + "sha1":"664114861723e0e9ff74c65ac60353d3c6a46169", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:52+00:00", + "size":30057, + "sha1":"5665817c2fbe54e0be46a7c16c88b55c7ab9f4bf", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:39+00:00", + "size":52684, + "sha1":"82cafbbbb220455ed2754c7ee39d2f30f093b67d", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:41+00:00", + "size":32831, + "sha1":"866e5d34869b45189c2ec593127c5e8a247f4f18", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:32+00:00", + "size":11571, + "sha1":"4086b01040b49f6e9d7acd5c650d77ec7b39d497", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:35+00:00", + "size":7919, + "sha1":"e04c0ea2b882a180a01d4000a9e4db2c732587f4", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:25+00:00", + "size":13897, + "sha1":"56a971d9ebd709b7c8fdbbea62301a50e2b73039", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:29+00:00", + "size":8441, + "sha1":"1a48f4b7c2268a34faca05c756d1cf7b19843717", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:16+00:00", + "size":191986, + "sha1":"d9d6e370aaadedb69b7532203c5ae8963d214183", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:21+00:00", + "size":105422, + "sha1":"7e595506c015cd2f7f324b6eca531aae85bab6f1", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:29+00:00", + "size":45670, + "sha1":"3d39d23b2f8e8967cc48af382ee027f9ff4f17b1", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:32+00:00", + "size":22429, + "sha1":"61cb7baddf71a27488bb57b2d16b3eac706f6632", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:21+00:00", + "size":361, + "sha1":"0b8cac5e42d358f8052888adf5e3c8d1d8d790e9", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:23+00:00", + "size":361, + "sha1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:30+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:35+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:49+00:00", + "size":10853, + "sha1":"4efd5955453240db8018ddccdf6bc4743d32b628", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:51+00:00", + "size":6374, + "sha1":"b6b33d66b6e68f2975b70fc370bb00b262fe28ca", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:42+00:00", + "size":5575, + "sha1":"87fa6bf1cdc23cc4322937203efbfb5466e03cfa", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:45+00:00", + "size":3989, + "sha1":"7da486aca8455f0bc0bd872b33705c8123111ce0", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:08+00:00", + "size":14591, + "sha1":"7dd5a6d2cbdaaa754384677f85b12d83ff018037", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:10+00:00", + "size":6068, + "sha1":"3ba9698bf406038872359fdb2a84bbea72acd86c", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:56+00:00", + "size":54648, + "sha1":"acc4f58c575e255c4544a2a5e2c275589c8b622f", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:59+00:00", + "size":25749, + "sha1":"568ea56496d57db24b053954150d5faf82fc0fa0", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:48+00:00", + "size":10848, + "sha1":"bf424872df3f09d498a61e0782a8f348e3307671", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:50+00:00", + "size":7314, + "sha1":"d50517a11c934d5a3306bb048003dfe367555daa", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:40+00:00", + "size":14341, + "sha1":"28813b0131366be24796f79b72dbc6eb7ac5f0b1", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:43+00:00", + "size":8972, + "sha1":"d84c4c07889c2161e0887fb8e1694ae4a6bd802d", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:33+00:00", + "size":11318, + "sha1":"d9d49b29902b6245b02cebc107f6ef2d9da1c9ab", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:34+00:00", + "size":5194, + "sha1":"3d7208c4eeabb4bafb0533a272f0918ec47b404b", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:24+00:00", + "size":4270, + "sha1":"61f3e155e138475e25766871102781ca2794d6e0", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:27+00:00", + "size":2744, + "sha1":"568dc20f4c62f3de6af168911f19b62654f0dedb", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:15+00:00", + "size":21400, + "sha1":"9768cb3758212f7acfa3dd04d95900ffd2d7e545", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:18+00:00", + "size":14292, + "sha1":"88ecae2fd21c434be55497107fc91f86706664db", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:07+00:00", + "size":116879, + "sha1":"82748abd173cb13b2f3a3464fe4fa4ca7d42f385", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:11+00:00", + "size":69670, + "sha1":"e6a2ca933752332891b6f6a044d6251c3d3a853b", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:00+00:00", + "size":13087, + "sha1":"fc0470af4a1ffe8924af8d0ed725d4015dbdc6dc", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:02+00:00", + "size":8951, + "sha1":"bc354a3cb46bbae92a3a75e191d1203b2fdcdfed", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:23+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:28+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:48+00:00", + "size":6996, + "sha1":"90e4dad9f9df849a44c2e53571da9b8873c6bd08", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:50+00:00", + "size":6271, + "sha1":"5de9e7e24cab00e744099787ee224d5303f90adf", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:40+00:00", + "size":101725, + "sha1":"0a479539970ece32636a6262f5030ef111fa03ee", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:42+00:00", + "size":52771, + "sha1":"e7ad84bfad4136161af245c65054f8f1362cae6e", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:49:29+00:00", + "size":189216, + "sha1":"1b25f4c6adfe1d2d3bea9a483c67fcc100030a47", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:49:30+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:51:52+00:00", + "size":4329686, + "sha1":"74704cf2089ad239d8571505dae1aa156d5c7fde", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:51:53+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":6195, + "sha1":"3b75592cba0e809388bcb3c7c7bd23718a1be2ae", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:07:22+00:00", + "size":8772, + "sha1":"5a5d599e7b047478fbc86f57861875f9e786c214", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:26+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":31041, + "sha1":"005d438b982a3b515741322aadb83d217861d2cc", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":10535, + "sha1":"5e131b5fecc133171a862349e935561bf684d777", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":206262, + "sha1":"52092d98ef99ed32028f3aa5b8e5988bbf856e28", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":136426, + "sha1":"f4e51d30d5a9c803fed183230ccce77b58a01cc8", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":231752, + "sha1":"63efec9923beb99517a585c9b581f2071b1a4309", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:38:58+00:00", + "size":78932, + "sha1":"5eec2669896e2c6723638319c8901d0074482adf", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:38:57+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":106704, + "sha1":"e47f0aba0d98e5265813c98b3c935ddeabcdc24f", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:41:31+00:00", + "size":2135239, + "sha1":"00dc1a7c9f6deb2be25c745962164764ae53c99c", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:41:32+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T05:02:35+00:00", + "size":80567, + "sha1":"33fa9ca83747b80fdf0f59db9ace5f58cc05391c", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T05:02:36+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":126029, + "sha1":"56915ea67ec810dba0b90fa674f7ea3715c64246", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":333555, + "sha1":"78decf84e8b47054ee91fa64111338970c62f7f9", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":162386, + "sha1":"0150841deb5d4bdab5b2bc037e517d604d494086", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":494235, + "sha1":"1e1a5d20dbd2b1b454c25ccd8a6abaa73596caa4", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":14930, + "sha1":"fc0e7cb40dbe37590a170fc027c33dd0a6a9cc01", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":189856, + "sha1":"f1256442c75e64565ccdf69e5bf7ea13d0d0e3ee", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":176836, + "sha1":"df97170363666f4d2280a7a175d961b90157c91e", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":60224, + "sha1":"91f2483d8fc617a1c9edbb39e44b70f45556544a", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":373467, + "sha1":"8d1f1658a7a0b806839dcd98cc896641be660b3c", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":213937, + "sha1":"a455b48ecfa77d2a3b3b04a28f5f09a9a38458f7", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":348660, + "sha1":"4298b500f87d0024873900825ecfd9af6be67905", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":1112124, + "sha1":"23a646487addc0f3aaa963c4a4a33ae85696b6f1", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":104872, + "sha1":"e4372886dbb35e1f3194979d9bc3fb75b9d0463e", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":1828312, + "sha1":"6a17503da7d6e3ef91e044dac2b7ff1a54588ade", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":318114, + "sha1":"58d89c2812580ec7d089b2a4fa5298a0dd3ee0ab", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":508560, + "sha1":"df071fa8c26cef423ac6a9cae666b49a1c88d197", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:44:48+00:00", + "size":65121, + "sha1":"bf291b5122b74afd02155ea41456ae1b0595c46d", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:44:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:30+00:00", + "size":104696, + "sha1":"141f29a88cbef62c589f5d7eea9430a0aa6f0e92", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:27+00:00", + "size":125795, + "sha1":"9e474f8f1c8f2b3174b02e9bdd9d368e6e0d82e9", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:05+00:00", + "size":128436, + "sha1":"7e1469bd45cc919d03c6f14a61c24708271f5a8e", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:54+00:00", + "size":125795, + "sha1":"9eac4f5ffb3a58fececdd02bc4bc7e25ba9a42a7", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:26+00:00", + "size":60153, + "sha1":"3df1d2e5d7a0b19280c7364e9dbe55256a907cbb", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:25+00:00", + "size":6730, + "sha1":"56efe4e6bfeb17e31bdaf50d0d9f523951fd4273", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:34+00:00", + "size":105576, + "sha1":"f60f5cdd8071d45f6610b20050223685ffb40d7b", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:33+00:00", + "size":6730, + "sha1":"ea81c5ecbc66b6ddc966bdc8f6440d8b62b3cac1", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:32+00:00", + "size":488079, + "sha1":"ae8778ab7e7c8760e635248b76b74c0dff9ebbe4", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:31+00:00", + "size":20342, + "sha1":"3069011122f5a86a8ec3bd55c89fbb821aed40c3", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:42+00:00", + "size":610329, + "sha1":"99464ef3df393ce218b10360c6cb1b09d301f3aa", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:37+00:00", + "size":20342, + "sha1":"95ed499cf53332cefab40a0fc56581d8a54c327c", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T02:42:15+00:00", + "size":326356, + "sha1":"fdbf5a0dbe4e65eec2a870d077864836d1f13df6", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T02:42:17+00:00", + "size":242102, + "sha1":"736b6a283c201e130b01c4453de0133ae2a3efdc", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:39+00:00", + "size":21626, + "sha1":"557782ebe8fc9a580b08bac9ef77d5e8c64d7177", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:36+00:00", + "size":19036, + "sha1":"46c1523e3a9702761a6323676e72693bc75b4c71", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:18+00:00", + "size":21180, + "sha1":"23120f881916d33ae046fd1a584966aec91e475e", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:16+00:00", + "size":19655, + "sha1":"d539d5fda574c040f15d194bd82ea7922cbaec1c", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:30+00:00", + "size":10640, + "sha1":"925266c7922a06888b1344bba6283c452aaac9bb", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:38+00:00", + "size":10857, + "sha1":"4c6f98d5cae895276da5073a6524bc7c2ff4dcde", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:20+00:00", + "size":7647, + "sha1":"477d714c863ac7629f10816a2d40ec57abdf7578", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:21+00:00", + "size":8687, + "sha1":"a15ed9c67a00362936e9fad33e6f6ed3d2cae541", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":32327, + "sha1":"229d4d9e7d5ed96f0e787a7ed49529fa8db4dc7d", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":4770, + "sha1":"9eb248edc6977d398c06bab9b831e9901c5f2f93", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:35+00:00", + "size":43100, + "sha1":"059afa5c68e0ef979033df98ec91107b1454c4c1", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:34+00:00", + "size":4770, + "sha1":"7da055f885b0a5ebe9b604b0df2461b67925c44c", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":8712, + "sha1":"18b14e931134e0ddf785ddcc279d84a461e4c7d2", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:40+00:00", + "size":799, + "sha1":"3e7674389f685c30a7a4d9833ba077ab6c61fa1a", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":8495, + "sha1":"2604a24ab822110d0025f5cc4ed752011d0a6ae8", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":799, + "sha1":"a1c414f85c583608583beb843dafdcbdf080a7a7", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:16+00:00", + "size":8124, + "sha1":"ade86c9bd61ffd41aeed5e78aa7b32037a61b310", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":799, + "sha1":"88d57dcb1b4dbd06ff897577bb8dcf0fb287767d", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":65772, + "sha1":"ad2f590dc1382c99d809a4b98bc9c32689055fa4", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":8976, + "sha1":"164c599039abb9180b22a863e32d084248485e16", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:11+00:00", + "size":141373, + "sha1":"ebe8e9cb531fe117afe6a93f198dca30827d594b", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:12+00:00", + "size":8976, + "sha1":"7a91583b6db13543494efe1260df006149e56968", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:39+00:00", + "size":14385, + "sha1":"e20a71b440c3dfeb656be8ddc1d0709cad3476c2", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:38+00:00", + "size":2939, + "sha1":"25d37292455e95c8885a23a62e3c0d8b63906255", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":30696, + "sha1":"a9aafd5ecac05683a9945b1da8b6a0159b429f49", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":2939, + "sha1":"46fb4cc10287c199c5dd962af3a4bf792a3913fa", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":49623, + "sha1":"f334aea787214558a15a58e2d2250856a19218c8", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:51+00:00", + "size":5320, + "sha1":"be3b5ea23dbdb3e90cbac9ae584a2a03508d095d", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":68235, + "sha1":"b649d74c6184c3706351a34867c163ea542a3d9b", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:33+00:00", + "size":5320, + "sha1":"de74a6b013f58bc4f714c8fd951ad8ba1f86c48f", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":227544, + "sha1":"ca71893c6b9308c606ea5b028c1895411ffab8bb", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:48+00:00", + "size":25196, + "sha1":"e1bd336714d85739b44c48612bb7c7ed8f4693bd", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:30+00:00", + "size":266622, + "sha1":"1690a0a6e9ccca4acc485f48a0a4e365f9e8bfe4", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:29+00:00", + "size":25196, + "sha1":"1cd9bd09f5bc9dbecb65947bcc049051a7e0f309", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:18+00:00", + "size":261963, + "sha1":"1ea16fe244dfcf0c06e07166234a1183f1011001", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:17+00:00", + "size":25196, + "sha1":"749cf5d9bc6fd03a2c660fc7d4c9a93ab9f76d34", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":5280, + "sha1":"934cf307fde68441222115da5afedc993b2afceb", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":2944, + "sha1":"d19833670326945369b833349134871cd61cef6d", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:43+00:00", + "size":12453, + "sha1":"1bf831a6ae45de7856a25521a4561a82fc94d150", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":2387, + "sha1":"a8d403ac2a80fc98ff8f2b563831a87d63115a19", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:28+00:00", + "size":13343, + "sha1":"3b92c4421dd7858915cacb7b5b01dcfa05bbe250", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:26+00:00", + "size":2387, + "sha1":"080a5e194ff6a17f4b3af65d94a97540eb3294ab", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":256315, + "sha1":"e6d176ae6b8ca90c2fc9e3420552d0c1419d778b", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":27554, + "sha1":"9018372a6622be92621b5cc47a53d3f11a5cf2ff", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":406072, + "sha1":"e61dff7f8eefcdefd3c53e61af672d791e9ed62c", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:31+00:00", + "size":27554, + "sha1":"e2252a534b12a02f5b882c1e011a446046f316be", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:54+00:00", + "size":336211, + "sha1":"7b37933db563310a7f1019639c5cb32ab7229c74", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":28280, + "sha1":"6941942ab4462f4518bdad36d72ec4f1c2e8d6ee", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":454304, + "sha1":"68bff39198e053db1ea0d040ef89a2f451308627", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":28280, + "sha1":"809f96abba52b67aebfd02068d64722868aa8f21", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":449387, + "sha1":"1f7a3792759cf94a30ffe54d3d3b945b8ed6cf8c", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":28280, + "sha1":"bf59d15f1955b018dbcd3fc50f40cce08d2aea63", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":207172, + "sha1":"6ab749cae6bd9d814c5a8d5e185657b0e6aafabc", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":8567, + "sha1":"7aff4ad5634eff6066fced5b840a6a7e8e1c6aab", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:10+00:00", + "size":208431, + "sha1":"26b1c180ea8fcf9197a096708f46c7ac7ed89357", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:13+00:00", + "size":8567, + "sha1":"2641f3693fe788ad0ab16d84bf64a43ff80a9440", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:45+00:00", + "size":77166, + "sha1":"374fe0c6c3871afdaab07fca204aa58cd5b64944", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:46+00:00", + "size":13696, + "sha1":"693542bddc15e9fc061d80427bab8073db152d49", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":88765, + "sha1":"6c47f8d341596aef388321489c05fb6826de36f5", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:14+00:00", + "size":13696, + "sha1":"1820cc267dfe2adbf3691643d72313b53fb268cb", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:19+00:00", + "size":1203208, + "sha1":"242a43f9770069de3ad467a5d17a43a132b1f5a8", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":209251, + "sha1":"d272d973972911435ed73ce245eefac4b77c1caa", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":1805859, + "sha1":"232dacfba271a872d18493f047ea7546dd4d4dd7", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:13+00:00", + "size":209251, + "sha1":"ac0f46616dd2766cccf11593e494a1054c7b44c3", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":120091, + "sha1":"0c20de2eddaa17256239012bfdd5a38cbfdd2c6d", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":6897, + "sha1":"bedf80d72822022a20f8395c433a176a7814fa9b", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:44+00:00", + "size":119731, + "sha1":"f9fbdae28d8cfcffa02483c956027c3b4a068182", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:45+00:00", + "size":6897, + "sha1":"00fc4beb821e1d1228b4c63222a82d0598bd540a", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:44+00:00", + "size":117966, + "sha1":"691041e81ec1206af9426df670bdc8253015a0b0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:49+00:00", + "size":6897, + "sha1":"89146848fc9ad433d6418df880ba64437c776498", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:56:45+00:00", + "size":62658, + "sha1":"58ec8b0c927a3e0b5bbb38d8bee4c0a30fb6ff48", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:56:46+00:00", + "size":6109, + "sha1":"dc6f16508a2222f09438b6d4c47cc00db3da6c4c", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:52:10+00:00", + "size":62638, + "sha1":"18d7ce01c236ea084bdb1e170b727f5ab554d69f", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:52:12+00:00", + "size":6109, + "sha1":"f4b4a84b8f7f357d6d0192d642bb013e1ff7b6c1", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:54:28+00:00", + "size":60883, + "sha1":"fa6688c6ebcc07aa09d26fc328e66553eef9a8d0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:54:32+00:00", + "size":6109, + "sha1":"2ff8e8adfd85235d9bb911ac3b98af108e1c5216", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:41:08+00:00", + "size":158840, + "sha1":"06c1f92fa6cacfe50c0e9973ffe956da25aed089", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:41:10+00:00", + "size":35184, + "sha1":"061240194d73a352a49c0cac1fec2e0ec72cd885", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:55+00:00", + "size":158840, + "sha1":"0383e87287979591689f0803d40e062e34350810", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:57+00:00", + "size":35184, + "sha1":"7eaf8694295f4c9e9b6d0d9f872c154915ed1c89", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:32+00:00", + "size":155918, + "sha1":"a924c7b0eb6a0ec1d667de3316d1acec25ad9c13", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:34+00:00", + "size":35184, + "sha1":"f2ac22b9045082adee8a6a357d8ae805a2815106", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:43+00:00", + "size":155901, + "sha1":"ee04cbd7a11f4fcd3f3937c963bd499e7d0138e9", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:44+00:00", + "size":35184, + "sha1":"80ccea87d3235404a8f615b724c79540ecbedfee", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:52+00:00", + "size":158991, + "sha1":"b260e5f316698ea9bc8ba851088a0a136fe97393", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:54+00:00", + "size":35184, + "sha1":"ad15b75b40eb7868baced39fcf5fc270f70cdcd5", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:39+00:00", + "size":158991, + "sha1":"a61d50fa23ce0c99c6b6c4b9940ed576dc26c756", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:40+00:00", + "size":35184, + "sha1":"a2f22047739ca655d4a3a3074e8b3af359ac623a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:15+00:00", + "size":156026, + "sha1":"6bf0c490df5fb4993c1016c5ae1e89cf3ae9a1f2", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:17+00:00", + "size":35184, + "sha1":"eeb49cd960c007d1f741e2a4a4de569f5e2a2e2a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:25+00:00", + "size":155975, + "sha1":"fb7fa16e78986de15b0246af23b952292eda25b4", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:27+00:00", + "size":35184, + "sha1":"2b040c4c698cb702afe5e213508d71491a76d4aa", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":30039, + "sha1":"66428aef0fbf4d12f5034a5aed1cabeffb83d98d", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":8574, + "sha1":"378f7530aee4eb94987aa8eab8128ad0d8819896", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:01+00:00", + "size":30039, + "sha1":"4efb3890ebb6c90fb9ab6c2459b63fc21ca36507", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:02+00:00", + "size":8574, + "sha1":"98e345eee6471d4bb62337f63c1a187df332e159", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":28643, + "sha1":"7174a20172d5cb1392904aa0b7e3536ec98a6fba", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":8574, + "sha1":"b30a9f3b8f8f808a80bdde5ee1791c43c53bceb8", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":28606, + "sha1":"f76ade7a1b5a651331a73f69849e23660dd4383f", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":8574, + "sha1":"a4fdd4aa1d8d7d44ca65c453c178b620083f8c48", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:04+00:00", + "size":30178, + "sha1":"b45a5ea1aaf81e3aa31aa1808388dc2f4cd0f37a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:05+00:00", + "size":8574, + "sha1":"71077646045586357df01e798ac8abf8823afcb0", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":30178, + "sha1":"f73fdf9648e9f851a01c7c72dd200f707f20c331", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":8574, + "sha1":"b7320587fb90013a7795beef74cb6d30e5340b7a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:37+00:00", + "size":28787, + "sha1":"004b322964680e27cd296d81806ec645e29abbd9", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:38+00:00", + "size":8574, + "sha1":"186e2ba7f8130d12e446d1bc31c8fd023b6c5114", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":28766, + "sha1":"88416033e9f111f3348d672a0d1cb5c694dd4719", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":8574, + "sha1":"d24d9dbcbef99d9172e833f59e902bba2ba602cb", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:43:25+00:00", + "size":158057, + "sha1":"87bde3fc4c682cd811cd74a30c2bfb1242b47114", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:43:27+00:00", + "size":76250, + "sha1":"13eb4325f0f8f3f9f2a1b1cfcdb555a9d9482033", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:37+00:00", + "size":345746, + "sha1":"a16fd53851ea8be0f10fb234c8989e52fd26487b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:59+00:00", + "size":15075, + "sha1":"03a58ad19ef2023777deddd8bbf087e567a1d986", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:09+00:00", + "size":489643, + "sha1":"088196ef6bfca9ce19ba8f1ea12f25fcd25c740b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:29+00:00", + "size":15075, + "sha1":"229ea95a8e7c2116457fdfbadaafb4ec54db7568", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:04+00:00", + "size":303339, + "sha1":"ecfb825624c896922122a74bf79cbf14b7adfbf5", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:37+00:00", + "size":24250, + "sha1":"75b39e08508689c9f65465c366f86a1fa9925351", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":504969, + "sha1":"0ec876b6f0b5e5f891b8cd25f97c2745a9d73de9", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:54+00:00", + "size":24204, + "sha1":"5d69e1e6b5bb0b3a890aae18accf4772b24195af", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:04+00:00", + "size":33727, + "sha1":"4dfd80701bc77d494e588dfe06284f2bfa5d3652", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:03+00:00", + "size":30351, + "sha1":"d97d01216a0cd9216259f8a06fd57433b7772137", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:26+00:00", + "size":8778, + "sha1":"f5b7d1811b8d9947f4963e96e9c1b02106762f72", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:25+00:00", + "size":8650, + "sha1":"1eaff3869bf2bf930e4eac8ac06a2428cd433825", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":50360, + "sha1":"78209bc4a08b57ce726602cb879904f5890e7558", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":34245, + "sha1":"c2dff4cc614f86da774843e03d1df6a445ccfc2b", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:26+00:00", + "size":557408, + "sha1":"3db691aac7c33cf6680d36d8263017e69ecc8f80", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:22+00:00", + "size":512732, + "sha1":"b06c956af4d7bd04030babdf2e1b5cab8a018e79", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:53+00:00", + "size":26633, + "sha1":"7ee00ef781a60cddcecc3e46d9c81de8df77b2f7", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:50+00:00", + "size":27162, + "sha1":"9e681d3fc9180c40fc2dfc43d580c138f291459a", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:40:51+00:00", + "size":91825, + "sha1":"bfd17957c72e18d221d3e17e4a0b7835447674ea", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:41:01+00:00", + "size":33744, + "sha1":"bac25d40389f333cbb5f6c786fa521e4d1d647fc", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:16+00:00", + "size":69564, + "sha1":"e968b488e8aa5d7f24f476873aad97d054f479b0", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:21+00:00", + "size":46690, + "sha1":"4027c7ff0374b003fbbaeea3c438c0b7330ff975", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:01+00:00", + "size":62583, + "sha1":"005bf1930701ef9a16daaf528e01fd83ebd00b6a", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:04+00:00", + "size":42293, + "sha1":"449e86e56f082d1f595b34d442359f32ca5b9b11", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:29+00:00", + "size":4726, + "sha1":"cda761c0224e6e2f9e80a07d232115b2cf9df48d", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:46+00:00", + "size":5543, + "sha1":"5188ea0db96741fcbb94122cabd63f00bec267cc", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":59652, + "sha1":"515d084cb65cee07ed1fd33877713cff3ac6ef3b", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.tcp", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-tcp" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:57+00:00", + "size":41116, + "sha1":"b61f04a1e4de6fae395658b6827912be9341d705", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:18+00:00", + "size":10586, + "sha1":"c052d47511fcdff1f9fafa9026bf600c75f48690", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.sasl-provided", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-sasl-provided" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:29+00:00", + "size":7544, + "sha1":"ddeba3b91abff513ba57efc4760405ca597d92e5", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:57+00:00", + "size":8648, + "sha1":"3afb4f0cf6c3199cf41fbfbe3f7c6aca9034dd4e", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.sasl-javax", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-sasl-javax" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:06+00:00", + "size":8690, + "sha1":"7eb83a51af49646c8b2b006830140a41047a3500", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:37+00:00", + "size":7912, + "sha1":"a4b72c50e2c78b961971bf354d668479e26eb282", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-minidns", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-resolver-minidns" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:48+00:00", + "size":7149, + "sha1":"ed5b289b00658e958ea465dcf646c312f29f1418", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:19+00:00", + "size":3914, + "sha1":"9f24bf28ebc79c12d62f149a2c9eed846724681a", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-javax", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-resolver-javax" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:31+00:00", + "size":4535, + "sha1":"cb851300d67ad0fe1e455275148df8bfd963e783", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:01+00:00", + "size":3183, + "sha1":"333b514cfc9ed90e7a2c544bad1d4c7337b11fcb", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-dnsjava", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-resolver-dnsjava" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:11+00:00", + "size":4128, + "sha1":"6584dfe86fb3e46e0116e086cb6e547621e87f84", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:06:39+00:00", + "size":16557, + "sha1":"e8d2c9e24b6fd23d162e7e0664284b1c3966ae1e", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.repl", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-repl" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:48+00:00", + "size":8037, + "sha1":"1ac43f472cf2db16f56926e8c4c5254c6b92c990", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:22+00:00", + "size":2836, + "sha1":"2f93a67f9cb8c71d33143608b2efe210bb6ff06b", + "name":"Smack", + "description":"Smack integration tests for OMEMO using libsignal.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:32+00:00", + "size":15418, + "sha1":"9cb8a0bc1bbf7ba47e2dcb3b6a15a955118a522c", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.omemo-signal", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-omemo-signal" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:44+00:00", + "size":11734, + "sha1":"483edede9edcda5466691efa861ba9ba2a97223c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:01+00:00", + "size":99758, + "sha1":"c79e5844707653301c876369f03fff680a84f24d", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.omemo", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-omemo" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:05+00:00", + "size":80462, + "sha1":"ea53c6128d501ec24f6d44c5339194584b50ac4c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:04:33+00:00", + "size":174227, + "sha1":"e975b6053783ec6f06a369010558ce78cb85e633", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.legacy", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-legacy" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:38+00:00", + "size":138389, + "sha1":"02c64befa094c152eaf8fd6c6aea41c583ec815f", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:56+00:00", + "size":255215, + "sha1":"1729bc03478ce6234bb082dfbcb67ef94c8bf873", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.jingle-old", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-jingle-old" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:15+00:00", + "size":178500, + "sha1":"bc7c655aeb1d8e0d485e9353ea7ef82bd7b7382a", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:26+00:00", + "size":21604, + "sha1":"53f3600400697927fc1a1555589333e4e3d21da2", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.java7", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-java7" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:31+00:00", + "size":21533, + "sha1":"7d4d39109e51126b373602cb25a0cd36292d16b4", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:05+00:00", + "size":74963, + "sha1":"75c55e8808e42cb66646de5fcbd606ec037c53b1", + "name":"Smack", + "description":"Smack integration tests.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:54+00:00", + "size":71456, + "sha1":"c6a2d02bcb7fa7ec659a064d7ae0a3a96b531a86", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.im", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-im" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:02:04+00:00", + "size":54173, + "sha1":"f292efdac3aa1a300022ff6c6d8c956b657067da", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:09+00:00", + "size":703800, + "sha1":"cb9bfcfcf7fb8df2667d274c2ed87c3149600067", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.extensions", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-extensions" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:01:45+00:00", + "size":608627, + "sha1":"6f2420b8076be9d712df84fc600795132db734ef", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:34+00:00", + "size":279592, + "sha1":"1c085e68d00e814961675c434740b8c93137b1d8", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.experimental", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-experimental" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:55+00:00", + "size":235884, + "sha1":"9a8e4182878943d4705becbcef31e00818b1872b", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:06+00:00", + "size":7397, + "sha1":"3267d930a5b9c452b3400bafdb274d766e199a4b", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.debug-slf4j", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-debug-slf4j" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:15+00:00", + "size":8494, + "sha1":"0912bc8ea12e4a9b6b8a2f84f9e8435324b54d6f", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:27+00:00", + "size":69419, + "sha1":"bdb3c540e8cd64af2723b0ee9b873f68463d81e5", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.debug", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-debug" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":25386, + "sha1":"b2887ef9d898d8d343a0a766ecab70a7ff6d6eb0", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:47+00:00", + "size":356114, + "sha1":"7ed4430fb1da78a57d11e6e43e3a71d7c86ddb49", + "name":"Smack", + "description":"Smack core components.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.core", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-core" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:13+00:00", + "size":291791, + "sha1":"7d22d2e168859c667bd87c2d73760a689f335cc4", + "name":"Smack", + "description":"Smack core components.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:21+00:00", + "size":2274, + "sha1":"eeb189a95f81905508b9d00b508a5d4fe51b4745", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.compression-jzlib", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-compression-jzlib" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:33+00:00", + "size":3172, + "sha1":"d4c4cffd2694389ba8ebe448e77a1ab5de2a0554", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:01+00:00", + "size":16739, + "sha1":"be39578579e85be976293248f1b1f94b899c58af", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.bosh", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-bosh" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:04+00:00", + "size":7839, + "sha1":"bfc6ab6703871c034b4c76732bfb72eaa79e318d", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:57:05+00:00", + "size":6124, + "sha1":"c79d959758e9eac4b54ef3c27941a693083f5d8d", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.android-extensions", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-android-extensions" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:31+00:00", + "size":5403, + "sha1":"5f79674105972df233c03c3817fb61f7b585a3c5", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:56:31+00:00", + "size":5559, + "sha1":"30097f463b9315dc1c05b313cc775082e5915822", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.igniterealtime.smack.android", + "Bundle-Version":"4.2.1.beta1", + "Bundle-Name":"smack-android" + }, + "classes":[] + }, + { + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:56:36+00:00", + "size":10239, + "sha1":"ef489c02386f2070dc1f5077f80b8f93cc48b573", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:42+00:00", + "size":4976, + "sha1":"f03bc820bfa99089f19afa30b49dbdc55b8e8f51", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:50+00:00", + "size":2190, + "sha1":"e23d6a6d9dfc994786684aeb1ace190fc285430f", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:33+00:00", + "size":5146, + "sha1":"cf58e1ee45ea9b9fc4eda00f54630e43c8460233", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:37+00:00", + "size":2172, + "sha1":"d920f7091fea1d5bf4497c683bbd55dd44f2874f", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:19+00:00", + "size":4268, + "sha1":"5313d374a8733f28ee083ff5db4047c437ba22a7", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:20+00:00", + "size":2071, + "sha1":"8e65bcbd992e4ae1c4b73fb6cc80a0ad7d6897eb", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:37+00:00", + "size":4342, + "sha1":"644f0764a97458b46cf3ab726fa1a2cbc2039ece", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:39+00:00", + "size":2257, + "sha1":"1007ea42630c9c3d28375d99a929a5f728e7737c", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:23+00:00", + "size":2343, + "sha1":"97fb29f946b8c6c67b6061a3ffd935c92248a0c4", + "name":"Cargo Simple WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:19+00:00", + "size":2831, + "sha1":"99e0eba1afbf860f5b7e600bdf3dd43110a8cd37", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:21+00:00", + "size":1454, + "sha1":"8e2fe853ed0cb53ba728166ace4f70b69b94f838", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-har", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:31+00:00", + "size":705, + "sha1":"636682c3acfa687c406b9e556ba9b245b5811a03", + "name":"Cargo Simple HAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-ejb", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:24+00:00", + "size":3937, + "sha1":"218e9e51aa7b975413e43d20e5c09dbf89be7fcd", + "name":"Cargo Simple EJB test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:09:25+00:00", + "size":4257, + "sha1":"57d6675c8ff906733a03066295a449f0d25e3c82", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.codehaus.cargo.simple-bundle", + "Bundle-Version":"1.6.4", + "Bundle-Description":"Test data for the Sample applications", + "Bundle-Name":"Cargo Simple OSGi bundle test data for samples", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"https://github.com/" + }, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:27+00:00", + "size":1995, + "sha1":"6d8761a79194aa66ef27cc715db83ee193f3d39f", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-aop", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:34+00:00", + "size":602, + "sha1":"da92a6c0bb4818f503fa0d4eddd234cac6457419", + "name":"Cargo Simple AOP test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:57+00:00", + "size":5025, + "sha1":"725824e7efab28e1c865421e200b0eb36a3dbb0b", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:59+00:00", + "size":2101, + "sha1":"902fb017d9e69949d427b351490a57ac2f354e1d", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:44+00:00", + "size":5013, + "sha1":"f15e6fff88538345f2fb78d0a006363bdd8c1aea", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:00+00:00", + "size":2111, + "sha1":"8d8713dcf22fb6cdbf43898c921a558e5884b331", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:12+00:00", + "size":4687, + "sha1":"a0fb71545e9ba1fa55aa5008721c9642510b2c86", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:06:25+00:00", + "size":2107, + "sha1":"3de4f3551309b88986239af16735cf721e829456", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"expanded-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:15+00:00", + "size":2203, + "sha1":"92c7a62f10e4ee5c52bc1e6ff069a342153ecb72", + "name":"Cargo Expanded WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"empty-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:13+00:00", + "size":1911, + "sha1":"069efb05cfa986c7bb973ae21381828b80795160", + "name":"Cargo Empty JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:26+00:00", + "size":5309, + "sha1":"37e3e485cdd2d44deaadb7359bcbf27716d77313", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:28+00:00", + "size":2142, + "sha1":"76e41ce16e2d65283e93a9ba74d055e7c2cc2723", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:24+00:00", + "size":2648000, + "sha1":"a34027b4e8088b8fd6d8bd792af68eb022482f47", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:34+00:00", + "size":4368, + "sha1":"8566c57bc12cbd8c0a7f12578a278a5041ef0ef1", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:54+00:00", + "size":4014, + "sha1":"a4f6b00859ec54628109b02a65efecd4932d364c", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:07+00:00", + "size":2020, + "sha1":"f818c1f4358b3745d1940c4c34d969c956baf914", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-websphere-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:13+00:00", + "size":3452, + "sha1":"3d932d4e634efa13af528711d87ef6872a75b24b", + "name":"Cargo Samples - Maven 2 - WebSphere test", + "description":"Sample application that will be used to test the WebSphere container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-weblogic-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:11+00:00", + "size":3178, + "sha1":"5383058f941a84a0b791c14172d937a06445da92", + "name":"Cargo Samples - Maven 2 - WebLogic test", + "description":"Sample application that will be used to test the WebLogic container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-users-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:08+00:00", + "size":2833, + "sha1":"d82d5e3861a14a8635d54d1e76837da7f2912dc4", + "name":"Cargo Samples - Maven 2 - Users test", + "description":"Sample application that will be used to test configuration of users and roles.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:50+00:00", + "size":3812, + "sha1":"f1ef7a69cd3903e7455e12cbc9c27d104e93313f", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:35:52+00:00", + "size":1472, + "sha1":"622a3343e0c8c54b48ef130fc0a5fbe08040d730", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:44+00:00", + "size":3107, + "sha1":"5d4f90594c3baf5f0506ff47af5502987801ffe2", + "name":"Cargo Samples - Maven 2 - Tomcat 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:27+00:00", + "size":3100, + "sha1":"affad1083bcbb5b91cd46affaebb40a5424b2876", + "name":"Cargo Samples - Maven 2 - Tomcat 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:55+00:00", + "size":3071, + "sha1":"4b974046efc889dc4329cb4bd50c856e26e49c7f", + "name":"Cargo Samples - Maven 2 - Tomcat 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-systemProperty-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:11+00:00", + "size":2931, + "sha1":"d5eb53b4a6c7e55679db24a714b324b0747a0d33", + "name":"Cargo Samples - Maven 2 - Tomcat 7 system property test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined system properties", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:39+00:00", + "size":2856, + "sha1":"718e614117efc24db72487bb11f648195610dfe0", + "name":"Cargo Samples - Maven 2 - Tomcat 7 context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:22+00:00", + "size":2788, + "sha1":"3ef353b4cdf9568256edd91656035bd17da52738", + "name":"Cargo Samples - Maven 2 - Tomcat 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:05+00:00", + "size":3940, + "sha1":"c9cb40138eb64d5973d81489d32917d51704f597", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:34:07+00:00", + "size":1468, + "sha1":"f4d53fc40cb96523dd38fce1fc4c1d01a9cc403b", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:45+00:00", + "size":4073, + "sha1":"9f7dce5bcd80004d1d9a1e2e4545f35495d25f7a", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:47+00:00", + "size":1408, + "sha1":"f01f437c6cee0a32aee55bab3d0eee82a302a2c3", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:33:03+00:00", + "size":4980, + "sha1":"f117db69179b64b7a1054ca2444f8cbd72b03e10", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:05+00:00", + "size":2247, + "sha1":"20627f0e1d8bcb8196a8d111cf956f82f532bc05", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-multi-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:24+00:00", + "size":3167, + "sha1":"3d8cfc514768360a3292ad308fecce2d58452e93", + "name":"Cargo Samples - Maven 2 - Multi datasource test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 6.x container and multiple datasources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:26+00:00", + "size":2812, + "sha1":"8bbfe7b7708c1ab0cae9cb0202ef450ccfeefb27", + "name":"Cargo Samples - Maven 2 - Jetty 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:14+00:00", + "size":2782, + "sha1":"a3db0e3a9b1114f7a1edcccdc82465bb9a6986ad", + "name":"Cargo Samples - Maven 2 - Jetty 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-root-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:03+00:00", + "size":2883, + "sha1":"a06578ebf3841ee56ee5d7db2737cfc608a6e16e", + "name":"Cargo Samples - Maven 2 - Jetty 7 root context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Jetty 7.x container and the root context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:38+00:00", + "size":2979, + "sha1":"106285a70a1212ddfef0236da0882527acf9e275", + "name":"Cargo Samples - Maven 2 - Jetty 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:36+00:00", + "size":2783, + "sha1":"2a5832805d0a6ecd7b4885136dc881aaa2c3ea1a", + "name":"Cargo Samples - Maven 2 - Jetty 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty5x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:23+00:00", + "size":2783, + "sha1":"29fadd536226d768913ef747a0d8ac6bfe8d609b", + "name":"Cargo Samples - Maven 2 - Jetty 5.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 5.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty4x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:11+00:00", + "size":2785, + "sha1":"23471fedfea3843118c73e7852d2783e3de57fa2", + "name":"Cargo Samples - Maven 2 - Jetty 4.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 4.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-inPlaceDevelopment-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:59+00:00", + "size":3329, + "sha1":"ba1809dfbb7fb2af5bfbdcf795c127c1d50fbe79", + "name":"Cargo Samples - Maven 2 - In-place Development test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's in-place development capabilities. Note that this sample currently works only for Jetty and Tomcat as it requires that container implementations support deploying an expanded WAR from a directory without copying it to the container deploy directory.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-implementationClasses-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:35+00:00", + "size":2982, + "sha1":"2d0fb78d0225629b5abb8a9d90fc051ff70e156d", + "name":"Cargo Samples - Maven 2 - Implementation classes' personalisation test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with personalized implementation classes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:30:33+00:00", + "size":2846, + "sha1":"49611773b8b55c63d8b9d04e860f7e1f6470e7fb", + "name":"Cargo Samples - Maven 2 - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-autoDeployable-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:12+00:00", + "size":2819, + "sha1":"aa54ddee48a3c9023710b9874b997a9b7f62c87e", + "name":"Cargo Samples - Maven 2 - AutoDeployable test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's AutoDeployable capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-artifactInstaller-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:29:48+00:00", + "size":2470, + "sha1":"0d5d469cc0eb132e1886000a7b73f405145b2bc1", + "name":"Cargo Samples - Maven 2 - Artifact installer test", + "description":"Sample application that tests the artifact installer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:43+00:00", + "size":33283, + "sha1":"d8ad4bba55b18afaa3bb55f279b68d128a47bb52", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:45+00:00", + "size":36278, + "sha1":"9e83c823403bf13c30e271b4a53f4a3ef8b18dde", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-remote-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:04+00:00", + "size":2780, + "sha1":"2d679aacd03ac4d47dc257b54931aada2e873de7", + "name":"Cargo Samples - ANT - Remote container test", + "description":"Sample application that exercises the Cargo ANT tasks with a remote container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:45+00:00", + "size":2579, + "sha1":"1fe0525f5544657f122d4ae56405317f0fb2a31f", + "name":"Cargo Samples - ANT - Datasource test", + "description":"Sample application that exercises the Cargo ANT tasks with a container and a datasource", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-daemon-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:26+00:00", + "size":3194, + "sha1":"7c5f02c5e7c1887599bf94da19a295fdbebc1168", + "name":"Cargo Samples - ANT - Daemon test", + "description":"Sample application that exercises the Cargo ANT tasks with the daemon", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:22+00:00", + "size":2586, + "sha1":"5dca351cf72e38fe41c1523f27eb9cd63b555f40", + "name":"Cargo Samples - ANT - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:59+00:00", + "size":122096, + "sha1":"14113bc8324dbb23df427969e7773ca6aba32645", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:23:02+00:00", + "size":94094, + "sha1":"125eec3ccc054a6018c5f5b466771ce7dbb53b67", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:48+00:00", + "size":11102, + "sha1":"6bbbc3cf5682b91d218d1d71915d22751b5f4ea8", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:49+00:00", + "size":6157, + "sha1":"e959d7d07c5365fbf1bb7c36f008d72806b24bc5", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:42+00:00", + "size":9737, + "sha1":"9fa685336fd5cd9259516b6359d8d321ff04feca", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:44+00:00", + "size":5225, + "sha1":"1d623bb7d50cd4af3750db85b7804dd5ae385c64", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:52+00:00", + "size":133300, + "sha1":"31827bdd7a6fb77559803fcabc6169b8fcf5fc45", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:53+00:00", + "size":15598, + "sha1":"5b9158389912322a8a3a775030bce17548defeac", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:22:45+00:00", + "size":8436519, + "sha1":"a6a2a0a183cea6089759bd213fc550fdfadc6c4d", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:47+00:00", + "size":29920, + "sha1":"5f7e929637476cbf9c70204e864a13f15c478ffa", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:07+00:00", + "size":2773, + "sha1":"c8d28ab4cf80f53938b320e1a59ce9ff5c7e8fa0", + "name":"Cargo Daemon Integration Tests - Deployable on Tomcat", + "description":"Cargo Daemon Client - Deployable on Tomcat", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:36+00:00", + "size":2704, + "sha1":"abe8346bc8fe4a23f481f2acf6d276b270723d01", + "name":"Cargo Daemon Integration Tests - Deployable on Jetty", + "description":"Cargo Daemon Client - Deployable on Jetty", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:01+00:00", + "size":2068, + "sha1":"501c43bfb97a7173416613be53a93258eca464a4", + "name":"Cargo Daemon Integration Tests - Java client", + "description":"Cargo Daemon Client - Java client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-browser", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:24+00:00", + "size":2095, + "sha1":"691b00a3e5b338a7d5f899a053dd381c9aef2bc0", + "name":"Cargo Daemon Integration Tests - Browser", + "description":"Cargo Daemon Client - Browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:01+00:00", + "size":19619, + "sha1":"42dad631c61aecbd76b2d61434b0aef8593a0f9a", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:03+00:00", + "size":16573, + "sha1":"525eaf186b8ab338fdef38f78cb0f80936d47713", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:39+00:00", + "size":2840628, + "sha1":"a06625db0728b3f62894a90136647caef37e0be0", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:41+00:00", + "size":1875, + "sha1":"8211a0dd66e1ba93d7736a1d83a6caad639c0e63", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:54+00:00", + "size":6652, + "sha1":"98c1de3b102147ffa6ae9d68401e67d8a28d404b", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:56+00:00", + "size":6146, + "sha1":"b5d218e3548bec0c62b3e3984f2d0fac69e89c92", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:11+00:00", + "size":7642, + "sha1":"6ecc273d5503bc1dd9f65f7e4dcb1a8de9f5101e", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:13+00:00", + "size":2861, + "sha1":"c6b0774fecef1d41bd6f8fa8b8248dad22c4b419", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:05+00:00", + "size":6362, + "sha1":"da1bdc0fdb8dae6e33674762b181a8482908d4df", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:07+00:00", + "size":3156, + "sha1":"c4bfa0c3029b6e50ebc432c296feda1afc120d4e", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:00+00:00", + "size":6355, + "sha1":"371051e26e93aa8c7b588ee7e12dcef20665b488", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:02+00:00", + "size":3167, + "sha1":"8592feaae9fd479831b98dc7abfdeb6221f21b28", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:32+00:00", + "size":167715, + "sha1":"fa61f3b1537f8714c5bd430b81c8b7c5c3441c38", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:34+00:00", + "size":90525, + "sha1":"bffc6a728e3e3d1bed6f379e9ab200cd368eba07", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:23+00:00", + "size":183853, + "sha1":"7ec2fbec5602023d9ca74571397dc8d417e0dbfa", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:25+00:00", + "size":179608, + "sha1":"7639bcdd9eca05bfecf1ce6774db90b20c599222", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:14+00:00", + "size":142008, + "sha1":"dfc49e716d967202c7f76f0edbe19691a072f358", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:16+00:00", + "size":145777, + "sha1":"919784f4a28b9eaaf4c3084ca16b235e1b17e4c2", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:00+00:00", + "size":99640, + "sha1":"505b3c3ac2b78aa3b6011e5f0a38226c86e15b9a", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:02+00:00", + "size":19582, + "sha1":"3b918128b28562ad0242ef2953caa3b5161b7a06", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:53+00:00", + "size":150155, + "sha1":"966b13ca12cb6bf6d1ce788c71480caf15e30804", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:56+00:00", + "size":140922, + "sha1":"5af9134e87afc2bb9d99e60a5b63a4669dc6f826", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:38+00:00", + "size":38856, + "sha1":"cf59444d3c26635c9403e5efb9c2724adc27fea0", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:40+00:00", + "size":35147, + "sha1":"d51c16814d1d69eb6179a194b2cf92136963357e", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:28+00:00", + "size":31146, + "sha1":"e34cc5a3c83bb9fa764bc77bdd10e81a795ece1e", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:30+00:00", + "size":27963, + "sha1":"6559a78d70ac78f747a0b60ed28a07a67f372498", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:20+00:00", + "size":21031, + "sha1":"2c2bd418fbce822c6023737cf7edfd7d6dff4749", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:22+00:00", + "size":17049, + "sha1":"17eb5c0be6880360aa1b2f8edaab43b3ec764833", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:14+00:00", + "size":31709, + "sha1":"6d29e45c94a535b9adcfa247bcc8179dbe51a333", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:16+00:00", + "size":28743, + "sha1":"42cafde700bbc0d59048cd4f3ddbeb95e040da88", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:07+00:00", + "size":62775, + "sha1":"84ef7296fa120fb1a353b54bdfc2d44b6172144a", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:09+00:00", + "size":57065, + "sha1":"d35ffa074868809a0ca70f1e08ab3400ca6b30d3", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:57+00:00", + "size":20133, + "sha1":"180df9a99693382ac8cd06b85cf80c5c3d887f3c", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:59+00:00", + "size":17626, + "sha1":"5d7c6897af123c82b7d7764c08711e20f4b9c866", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:51+00:00", + "size":1116481, + "sha1":"df625fc892caf4c0d0993c9131a01219b3f14a34", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:53+00:00", + "size":112776, + "sha1":"1be2286480bce7d5dc39809dff45b7c884ca11ce", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:41+00:00", + "size":167723, + "sha1":"bc5406f67f0e22e3f4c2d827d97b6d9206f20a4b", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:43+00:00", + "size":137901, + "sha1":"d3e4f02615d38d29cd436dce3c1453e8dcab4e99", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:29+00:00", + "size":49031, + "sha1":"fcf38290ed5b9193fc19eba6f965671fd6842f05", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:31+00:00", + "size":46891, + "sha1":"fd04b9c4f97f695e51eadfe88a0885e4ef227ad7", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:20+00:00", + "size":53520, + "sha1":"e898c3c7587b942d8dd675b8734e762a30d44793", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:22+00:00", + "size":45639, + "sha1":"834b52f3afdda44c9e72338c69791c14beb075a1", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:04+00:00", + "size":39873, + "sha1":"cfd827c8b7f19750acb7270c3081d8040b734ae7", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:06+00:00", + "size":36348, + "sha1":"d9a64d2540fb5224f94d7792c2f87d0800142d24", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:22+00:00", + "size":314695, + "sha1":"1dd8d46adc3a68a8580eeb71f985498670dd41b6", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:24+00:00", + "size":318979, + "sha1":"a3da22529c3016d4dc5e05c4224c91934fd6e14b", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:46+00:00", + "size":38042, + "sha1":"4a8dba8d4b37cd79480c434850365f2fc3d49674", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:48+00:00", + "size":32719, + "sha1":"51046c9559319256e87ddbc5cceafc1f2b9bfe8c", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:37+00:00", + "size":157513, + "sha1":"2662013e1e1e3d25c5e491e190dd51d373ef24cf", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:40+00:00", + "size":173794, + "sha1":"1f238461684b938efc68c562c1bfc6fcf16b7b32", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:09+00:00", + "size":6281, + "sha1":"e9536ad4afe4bdfb694e276454afcd241535f9b5", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:10+00:00", + "size":4656, + "sha1":"e1168b547a5c3dbc2bf60353585c33391eb539a7", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-with-datasource", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:07+00:00", + "size":7161, + "sha1":"72f0f845947f9a009de89d19edc5540d47cedfb9", + "name":"Cargo Maven Archetype Webapp with DataSource", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-single-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:09+00:00", + "size":5694, + "sha1":"f7c583cf4a4f89dab50252447c2282251bd3997e", + "name":"Cargo Maven Archetype Single Webapp Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-functional-tests-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:41+00:00", + "size":8402, + "sha1":"accd3ab036b0458eaa4224fbc94a0afe700f0284", + "name":"Cargo Maven Archetype Webapp Functional Tests Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-remote-deployment", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:35+00:00", + "size":5340, + "sha1":"579c84f5552f5053e6c63fbe40ba302541c65e41", + "name":"Cargo Maven Archetype demonstrating Remote Deployment", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-multiple-containers", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:27:36+00:00", + "size":5648, + "sha1":"fcfe6275a125466afc0b18e8e4c97e6b8cb343d1", + "name":"Cargo Maven Archetype Starting and Stopping Mulitple Containers", + "description":"Sample Maven archetype showing how to start / stop multiple containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-daemon", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:54+00:00", + "size":5017, + "sha1":"e246f549dbc6ceedb87507291daf0b970fae9450", + "name":"Cargo Maven Archetype demonstrating the Cargo Daemon", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:11+00:00", + "size":26267, + "sha1":"f947dfc72607f3d56bb035fa64d2ba6fe3108e88", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:13+00:00", + "size":21050, + "sha1":"63f20758b0aafb411151bde3ad9250fbdd4c7a50", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:00+00:00", + "size":4766, + "sha1":"95638bad750e7fb3e39b74d4b1bd602c344bc56f", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:08+00:00", + "size":2067, + "sha1":"bf152142f630de9bf47db617add423538f099787", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:35+00:00", + "size":374422, + "sha1":"1a990804787f3e9f5ed4808a286f30b51b18dba9", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:34+00:00", + "size":88323, + "sha1":"aca748ff3cb0920fb645cb4fd5293cf7e008ea30", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:58+00:00", + "size":374443, + "sha1":"5d05610ab60757b2ea190fbf572547c4ec7fc5a8", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":88323, + "sha1":"3a3a52e38e72171aceb118e03a6dd1fb65405157", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:33+00:00", + "size":649998, + "sha1":"742d914f2c32b68b93dd7ad064006ccd83b34b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:32+00:00", + "size":88323, + "sha1":"f04a7b17ff47c4b95342a156cab37cab80d62b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":650018, + "sha1":"5d04bd494fbad16b301a8a6d647be51ceffafd37", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:54+00:00", + "size":88323, + "sha1":"43c815622432c13cef31e5f9a0251a1b8bcad33d", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:31+00:00", + "size":643342, + "sha1":"b59e02c752c629cee677be2fe270db97e605612c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:29+00:00", + "size":88323, + "sha1":"9de0ff627753926feee49a179aae517c954b29de", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:53+00:00", + "size":643320, + "sha1":"495df25d654e481beb9ef2fb134eafe57998d091", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:51+00:00", + "size":88323, + "sha1":"3a02b980e28345004973878a46cd1d927ffdd60c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:39+00:00", + "size":123140, + "sha1":"b351c5becb877f760afc87156bf1f7508e7c1804", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:38+00:00", + "size":21407, + "sha1":"5e89c6aaf88c273ddfe75869df02d3479639b272", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":231808, + "sha1":"c6747b47b17192a532281bb11ea16dc507a9de53", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":21407, + "sha1":"69cc47bac44b7874406d1837da04190dcd41019b", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:35+00:00", + "size":229363, + "sha1":"cfdc25bcabbbd24e1e001c50583282419124f3d8", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:34+00:00", + "size":21407, + "sha1":"859353f87e39b0742f9d44f482ed046aaa1a3db3", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:34:49+00:00", + "size":104206, + "sha1":"c0ceb9dae9b84a47d8ad2809db9e62a1fd5d3b0d", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:34:50+00:00", + "size":32978, + "sha1":"28caa56aacb24572cd95f186ecd3770318b8d0a2", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:32+00:00", + "size":4095916, + "sha1":"b7c6c52850a5e4eeb0c41daaab6445598214902b", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:23+00:00", + "size":770368, + "sha1":"c10df2443f247ad5708e264616e376e95a8dc581", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:43+00:00", + "size":6409742, + "sha1":"8b9b6cd21fcb7a795fd7218e05348cf857b601cf", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:31+00:00", + "size":770330, + "sha1":"812ec1960090c8736b0858548bc32cf005b01ae0", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:27+00:00", + "size":1003316, + "sha1":"5f8946c085454dbb5dbd55e5a53a6c335fc83aa2", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:28+00:00", + "size":136518, + "sha1":"059e5fef6172df74934e85406be632cf1a07d343", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":1533879, + "sha1":"1cf8eea4614ad339e3e768938d59e517a62751a9", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":136518, + "sha1":"df85009c2927ff2db0856496e2719562c064b4bc", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:12+00:00", + "size":135595, + "sha1":"216c830faecb693c790045f8795d187d97b9161d", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:13+00:00", + "size":19056, + "sha1":"b7fc18461daf7ad6699f63953e4119872e31befe", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:35+00:00", + "size":242098, + "sha1":"c8d8d31d8475f8f2229ea86b8109641e957f7359", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:36+00:00", + "size":19056, + "sha1":"76ec54a37c6179a10c8e3a3a931bd3ed189153b4", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":136158, + "sha1":"7fbbbeb0e4f9767f7636a6fbd9ffe7becdadfbc4", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:59+00:00", + "size":11490, + "sha1":"4759d857c28f0d3c637247dda7abee7a098c66ab", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:19+00:00", + "size":141789, + "sha1":"c2df12ff06c1be6596385a8dd8269db0fc66136a", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:18+00:00", + "size":11491, + "sha1":"e63ab9acd14324765b766fc97af7acb6350ed9de", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:11+00:00", + "size":366737, + "sha1":"eeb913862e0f901ba2f4a0f0330821ff7922121e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:12+00:00", + "size":42887, + "sha1":"6b7b68c40c1acce4922558a590f799770efc6a1e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:28+00:00", + "size":530641, + "sha1":"9b71ca0442a5719a7d1196cb8d0b660f195858e4", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:29+00:00", + "size":42887, + "sha1":"e97e7112605f32cfb3b700daba803ff1fd9e5aae", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:48+00:00", + "size":118413, + "sha1":"c3717179aab8bae7862eb55e09742ee3f0cd15b5", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":15329, + "sha1":"5c8d4f156fc08c72615f2cf47e900f46dd84a546", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:08+00:00", + "size":263133, + "sha1":"26c0aea3a86d2c2962aa1112f29af7dd0c8a5687", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:06+00:00", + "size":15329, + "sha1":"3a2038b6111ca8fead18e44b87bc017e4112c871", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:08+00:00", + "size":118372, + "sha1":"c140b5b55bd2ab0564e1def22e2e44651784cbb8", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:07+00:00", + "size":17804, + "sha1":"cbbb3add8c592f00b430ce48a9fa2f81d268cd2d", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":155967, + "sha1":"2432656c5a8dfff83ef3d7b0bfa40bd395e6df75", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":17804, + "sha1":"0a91bb806104cd5196b66e36b639a8df3a338463", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:06+00:00", + "size":212078, + "sha1":"46978faba03b9acddbcc217a13a8d1e61b32544c", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":32623, + "sha1":"5e3cdc0ca8c8f971017b99db94d84dac916a250b", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:24+00:00", + "size":358067, + "sha1":"9f443827783084a5bb2513f37dfa200ceb33ffe7", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:20+00:00", + "size":32623, + "sha1":"bd7cf834da157805e7cad0d920e25ed186f9dcc6", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:45+00:00", + "size":212735, + "sha1":"66c43da0646258b19a3eaaeae8e646542633bb39", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:46+00:00", + "size":27880, + "sha1":"c88ed40622b991e5e427b71ac7d7d9668eaf0363", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":467487, + "sha1":"87d5c31c6e9a8b709d67eb1754d1e9993b1a314e", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":27881, + "sha1":"4fa456ffefe67c55aa302d56fff2d9cb3461846d", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:16+00:00", + "size":890682, + "sha1":"bf349176a47a5fc625c9dae2975fcb3b42201adc", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:13+00:00", + "size":103645, + "sha1":"2e6c0670dc20668983b836d6b9e5ced70bbe2196", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:21:04+00:00", + "size":1501544, + "sha1":"f1102f77af793fd39e100ff58d7b66e7ed9d8a91", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:54+00:00", + "size":103645, + "sha1":"d6be7e4ecc13dc649f05c3cc9462101bb5007714", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":369329, + "sha1":"cc7c8b07ce47f825a32b9cc8b1b621d98b177b9c", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:37+00:00", + "size":40738, + "sha1":"042a2b07cd80af63ae5fd1281c6028b05e454307", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:59+00:00", + "size":544699, + "sha1":"815e258cfc911380df6c1af8fe1239935fc06cae", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:50+00:00", + "size":40738, + "sha1":"4b08c3f5755046d67274fbdc8c2a5eadf3036b77", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":87692, + "sha1":"6f4527ad94f34c9b02a875c6eed495f54bd82356", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":5537, + "sha1":"77303e82197a89d20bd05617f6bf77ad6b8615c8", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:16+00:00", + "size":109050, + "sha1":"6b53a68e151a808120333ae25e1015d67ba847a0", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:15+00:00", + "size":5538, + "sha1":"d87524d2e47cb0f5058c4ae325b98563c4fa0215", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:58+00:00", + "size":88090, + "sha1":"5a09911da63262748bb193bfb9a722b011ab5cf8", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:57+00:00", + "size":4882, + "sha1":"bdfa2da248ae3f66979c7970a53b6c0ddee0f42c", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:14+00:00", + "size":88357, + "sha1":"de02459cd1e519ad4c016cdfb3bab646b0282e08", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:13+00:00", + "size":4882, + "sha1":"3f74250fffc651cd8d72c3e253306ee9435e7295", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:42+00:00", + "size":149517, + "sha1":"bdb921e2f8eea358144e706dca2be42aa10d8abc", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":20170, + "sha1":"a93320ade505b4b36bde1cf434588becb57155de", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:03+00:00", + "size":322929, + "sha1":"e6ec1e95aabad445c90d85ba0240eefb9bfddf3f", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:05+00:00", + "size":20169, + "sha1":"7f86c3925b44473bd5dc4b66e3e59a076f143506", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:50+00:00", + "size":191911, + "sha1":"3cc0c4fb74dcad2784a624f63847d331d6060aa5", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:54+00:00", + "size":36399, + "sha1":"5a46a36cacd96cbc87ed5f488c2056b1a57aaccb", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:05+00:00", + "size":246588, + "sha1":"2bd44c585d682664649823e06316dbda2a74295e", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:08+00:00", + "size":36400, + "sha1":"43b293427736c87f70a9e0a62f168bc7a74ea887", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:35+00:00", + "size":77026, + "sha1":"7f33ab403fc3c488ccb81d2158787466e0e86807", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:34+00:00", + "size":11654, + "sha1":"88e123eba5b0397d145dd226f497208329389662", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:43+00:00", + "size":133033, + "sha1":"f8952a0b30af94d6bf5eec8e022574987e225b4e", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:36+00:00", + "size":11655, + "sha1":"3cd071fb50b832f7064d04b6876f12da50d82009", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:57:21+00:00", + "size":41351, + "sha1":"8ab307d42b33defbb1639e3c188b13d748581e5a", + "name":"validated-config", + "description":"validated-config", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:57:22+00:00", + "size":4547, + "sha1":"8d7ac2aac6d1b6651c92e2f2396ba1c125dd19e3", + "name":"validated-config", + "description":"validated-config", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:01:12+00:00", + "size":7736, + "sha1":"fc3cb01dcbe60ff37fdac87e962e6b794e841290", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:01:26+00:00", + "size":7254, + "sha1":"46afb630bd636cc6eb2566cc3ebbb298a2593ec8", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:57:58+00:00", + "size":1283457, + "sha1":"65e4d9a31c4b1d5b3a55401be70a8eb41f05a879", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:58:25+00:00", + "size":1052150, + "sha1":"99a6c46bb62dc51b323f5bae2039e69e0510e331", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-collector-server", + "version":"1.68.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T15:00:51+00:00", + "size":10176776, + "sha1":"2e670f652b44425b5b85281d9b14663e14ac7664", + "name":"JavaMelody - Collector server", + "description":"Optional centralized collector server for Java Melody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-thunk", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:36+00:00", + "size":1108, + "sha1":"764b511c1d9dbb5c46ca9e2cfbc32f29de270829", + "name":"redux-thunk", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx2", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:28+00:00", + "size":3447, + "sha1":"e045358beb5d1b91e34904d4ae7962919f726185", + "name":"redux-rx2", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:22+00:00", + "size":2479, + "sha1":"ae9a1bfe2900901092614b7405847c37a8b8c56b", + "name":"redux-rx", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-replay", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:15+00:00", + "size":1295, + "sha1":"66560aad0d6a96adbda27bedfd4bd3bf2eb6d396", + "name":"redux-replay", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-core", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:13+00:00", + "size":6588, + "sha1":"955948173220f011b95aec13b26585dd9b0fd106", + "name":"redux-core", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:09+00:00", + "size":5879, + "sha1":"b2fa12ed115aa9ebac59d5ff4eeab71864c87f7d", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:10+00:00", + "size":3250, + "sha1":"3ea015eb6462ba1a1ef9ff4702474959b3a5f581", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":5220, + "sha1":"1bdc42e1bf582f4b73d06a0844165ae9bafe2224", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":2544, + "sha1":"5ba60ca98f8659f4e738aef7546b085326cc36ac", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:24:10+00:00", + "size":39598, + "sha1":"d23beac1111080fc04c10b8eb5c84fdaa3053f97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:24:09+00:00", + "size":2848, + "sha1":"0854c3b12851a19b92a34da86590940ac028fd97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"mplc", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:13:22+00:00", + "size":87528, + "sha1":"744b0e5a758fdbe8621fdf53460401270f09a147", + "name":"TABB :: MPLC", + "description":"TABB :: MPLC", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":52438, + "sha1":"40c2711c115b7326412f397ca9b840fd834f27c0", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":33658, + "sha1":"3935e228f247cdc1d74809283e0836154a7f43d6", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":64856, + "sha1":"ba1b98a3f9587a095e81dadb14befa423be9be7b", + "name":"future-java", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:25+00:00", + "size":24359, + "sha1":"96bf76446e0fdd5feb49299d856555bdb4b9f9a6", + "name":"future-java", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":537377, + "sha1":"4f8a93afcab79ca1f08299b62bcd51777b9e6b22", + "name":"future-benchmark", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":5365, + "sha1":"034e02762dac0939fa204ba9b15c496b9e7718de", + "name":"future-benchmark", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:17:59+00:00", + "size":21818, + "sha1":"b10512d23601eaeeff318b2c98005c300e277c17", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:17:57+00:00", + "size":7521, + "sha1":"eb7ddc73912294d202487324e3e0834bcc5a481b", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:02+00:00", + "size":33931, + "sha1":"e2e6fbc0689fe4ca5a6dc2cb11f52f126742145b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:07+00:00", + "size":20315, + "sha1":"41209e53d9f3acec3e63eb067f09656f4c64bae1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":6371, + "sha1":"3822f29c626f57c225d616cb8f955f1cae18cb5f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:06+00:00", + "size":3156, + "sha1":"385c6d2a4bf024050a975764c7100dc2810b9caf", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:05+00:00", + "size":28274, + "sha1":"43474d9b42b18c36f2b9225493f4ee09ea75c96e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":18370, + "sha1":"f08a06d6cd11b48efec0ddee8275ace66bfa1889", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:36+00:00", + "size":242837, + "sha1":"f907f4c25d98ca13ffb734f41913d4ec2dd55bed", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:37+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:59+00:00", + "size":273943, + "sha1":"c7fb257b6e1ea75f650b645fe813642d0feb5c3a", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:00+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:16+00:00", + "size":137186, + "sha1":"043254098224ecac232438d821453b27e6ca5538", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:17+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:46+00:00", + "size":159837, + "sha1":"00c005c604c335f0ecd5d2795c17b370673b964d", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:47+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:10+00:00", + "size":50310, + "sha1":"ede0867dbaa1d73c64511d20c3f4cca2c1e5a871", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:12+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:29+00:00", + "size":56569, + "sha1":"e177d79f6d12a27d993bbc974590aa543b790367", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:31+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:22+00:00", + "size":28680, + "sha1":"b29fd2ba93b12830e3d70793cf5b76c1131436d1", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:24+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:24+00:00", + "size":36192, + "sha1":"44a5aa889be9ce938719b0826505f222cf85eefd", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:26+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:54+00:00", + "size":72696, + "sha1":"eb2a395f9ff7fc7352923b87115c44a4958dc721", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:51+00:00", + "size":1694, + "sha1":"a92779a9d7924e5bb62e59e9de0d7d072b4b981e", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:41+00:00", + "size":73915, + "sha1":"f5b47173e90c2075f606c3b7ff951ec4bb19ee31", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:38+00:00", + "size":1694, + "sha1":"9cf4eb1cebfdbebe24165d5b28fcb8d62ae42562", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:43+00:00", + "size":38207, + "sha1":"1e43999614468b9c30f481adb3a76a94b0ee0c23", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:40+00:00", + "size":1692, + "sha1":"5fc399f6395dd053b1e2d04a2ed5109028a2e1b9", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:36+00:00", + "size":38165, + "sha1":"349613a11fff49a4f63e1002e1d547cc0c8bbd28", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:33+00:00", + "size":1692, + "sha1":"dfc591256471078fbb8d1d4b239dbc4bed7bd5d0", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:18+00:00", + "size":359962, + "sha1":"5be7bec658bd98bd445359326697df46da472a2c", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:20+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:23+00:00", + "size":384267, + "sha1":"bbc16058e8401bfaeb7b621d0704cc7c7f0c4153", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:26+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:04+00:00", + "size":194499, + "sha1":"4274ecf66ae641a559aded2d5618e3fe4fe010e5", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:07+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:30+00:00", + "size":208893, + "sha1":"3eb0d509562dcfa42dd6327f4e5c2e919ff18329", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:33+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:28+00:00", + "size":23209, + "sha1":"3dfb81b67806e50eedd35bbbc0cb49c6a9bf32b3", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:26+00:00", + "size":1404, + "sha1":"34b71b4d24f0c7764689e94f9485e3cac66b56da", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:19+00:00", + "size":30679, + "sha1":"cf1aaa3d59a36613257bbf93ef69d91f0c95aee0", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:18+00:00", + "size":1404, + "sha1":"198440eda2c8ed48f127ef7f76bfa450a71c669c", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:25+00:00", + "size":119281, + "sha1":"e690526bb1973f079dabaa06ee6fc1271eabe59a", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:23+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:06+00:00", + "size":132742, + "sha1":"f88454581e85b7ed447817febab8124cd9da5c04", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:03+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:48+00:00", + "size":61928, + "sha1":"0babed618b1889e4397acbf6adbc15bc04624bee", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:46+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:16+00:00", + "size":72492, + "sha1":"410dbd67787fc9b70b98a11d284bbad2f6e44eb0", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:14+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:57+00:00", + "size":29445, + "sha1":"09fd9075344815fc42d468e7b7ced2d3d7d5457c", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:58+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:09+00:00", + "size":34115, + "sha1":"dfc9100b029f837d8227ad1cff2a1a027fafc60e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:10+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:08+00:00", + "size":17102, + "sha1":"92c1069544cfea459c632e1fcaed27a6a06e704e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:09+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:50+00:00", + "size":19901, + "sha1":"cae7ddd9a9f35d04643e196eeac61c9b77dfb4f1", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:51+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:30+00:00", + "size":8432, + "sha1":"2783456039a2fc47736335e573ea26108e1d3441", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:31+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:52+00:00", + "size":13046, + "sha1":"90602fc221ac9e842960b06c0e5ad3d60a2fd135", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:53+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:40+00:00", + "size":4947, + "sha1":"bc5d95766456972c0842be89eea7a187262cab23", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:41+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:42+00:00", + "size":8003, + "sha1":"02f4a2d94ec061bad021925b796b024b25bf1396", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:44+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:47+00:00", + "size":4542, + "sha1":"dfa0b55bee93f34798884ff1fba585e2e8fae419", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:49+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:37+00:00", + "size":4467, + "sha1":"df4d8332a6f644252a4d4a29f4dab43af582a63c", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:39+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:35+00:00", + "size":2892, + "sha1":"6a82dab9239a6ed3b8c88c83ef711143800e2338", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:36+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:47+00:00", + "size":2827, + "sha1":"5e8011aae41b5838c0196c22420ae28d1e511889", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:48+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:59+00:00", + "size":2541963, + "sha1":"58568d4024ff1a04eb49d1af299317afb70e92cd", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":250, + "sha1":"6697b7545efe634845f217daa4f423a3c6d56b0e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:26+00:00", + "size":4121739, + "sha1":"21b51abc04e51026679908afef5309fe1d09ae7f", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":250, + "sha1":"7826e25f8097f3aa1b10ca48b15396391dea2702", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:48+00:00", + "size":3779808, + "sha1":"20cd76900635eaeb3baef7d7d246dd97b6f99d01", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:50+00:00", + "size":250, + "sha1":"622dcf73010084128f19f2beba9bbc292cbe098e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:09+00:00", + "size":53920, + "sha1":"2c6d7b4531e6835289952ddbedaff7bbaff85a13", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:06+00:00", + "size":7218, + "sha1":"847d4c63868bc63f351a7224851fcf2834b0a8ca", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:37+00:00", + "size":65878, + "sha1":"9a98d55f3abc0953a43071172fe9dec994f45fb4", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:35+00:00", + "size":7218, + "sha1":"4a4681657d8eace5f8f157cee24f4f3da421d614", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:04+00:00", + "size":65189, + "sha1":"4217cc50b55910915b32796c4934819248703aac", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:55:56+00:00", + "size":7218, + "sha1":"9094eac7a6d263607461c501177a1512d0b363ef", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:46+00:00", + "size":1712949, + "sha1":"489477a72ecc73557d4f03b40f92fd1eb8b2cf61", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:53+00:00", + "size":157726, + "sha1":"d91a2bab0aadc938cf5d82474ece95eb02e6bce6", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:12+00:00", + "size":3027372, + "sha1":"6e53ccb8533d6aa94da56bb0c4ccd02817cd0e5d", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:19+00:00", + "size":157726, + "sha1":"cfc88628adae49b1060afc384b34877c2206d35b", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:12+00:00", + "size":3012131, + "sha1":"9bcda396173b20983884c22d718951aef66d2f36", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:19+00:00", + "size":157726, + "sha1":"4d2d11a77bff38bcbd554a384f9d2b8d481e2faa", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:12+00:00", + "size":2117178, + "sha1":"8f91a3461df01bf192c3f63c9715444ed68b0e36", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:19+00:00", + "size":213195, + "sha1":"4e09d6853e578b5251b0b27dbc67eb034104d666", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:40+00:00", + "size":3775477, + "sha1":"59231e2e098c1e974b32f9eeccd294f97b4f2535", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:45+00:00", + "size":213195, + "sha1":"f82e3192fe72fff366f905e2a42b7dff175ace50", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:01+00:00", + "size":3757713, + "sha1":"cec02dd7258859ad9f573bfdf1fe375ad46efd23", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:06+00:00", + "size":213195, + "sha1":"a250906a0303c36c7851de7536f942c73500d2f4", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:27+00:00", + "size":379125, + "sha1":"62b93fe38b65437c3f9aec9d59847c36df904c2d", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:31+00:00", + "size":29491, + "sha1":"7427a35e75ccc4acc5ea58553d0f3b2f1ba68d21", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:53+00:00", + "size":483973, + "sha1":"7c8d20a6102a82031660a6201674c319180b439c", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:57+00:00", + "size":29491, + "sha1":"6bf6f71c8066b56a45e2814d8c3bae5bfcd2d391", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:14+00:00", + "size":481943, + "sha1":"c5d7663339ddd6d15ea51d4e4eb5f7407b3f9ea0", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:31+00:00", + "size":29491, + "sha1":"c4c5bf0480426fe8d61651f870e7e1ee909fec91", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:36+00:00", + "size":71692, + "sha1":"3793a558598e780232a7fcf052c85befab67d0a2", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:34+00:00", + "size":10700, + "sha1":"8fa3e86b991ed9ace2a01095261f39585075be06", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:02+00:00", + "size":99758, + "sha1":"6b5a6bb893b01b093daaaa0513540b34754b4d39", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:00+00:00", + "size":10700, + "sha1":"6fb332740360fa6178ab43facf0e740fa20b8564", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:23+00:00", + "size":98895, + "sha1":"aef453a60f5f4e5a0d7cc9deb2a44840921a0cff", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:21+00:00", + "size":10700, + "sha1":"d097c2b751e01bc1d997088e77214e6de27cb929", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:08+00:00", + "size":300, + "sha1":"80dc446a34abc6142433120e870eb317e8c85f66", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":243, + "sha1":"6a23a8d74684c4b83f96f7f3175d95d145e0ba79", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:34+00:00", + "size":300, + "sha1":"018499fe3acd0846f27488a3cf5027199f87bd4c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":243, + "sha1":"da22c42861fb4ec49c2cc677dd894a4a11f5d9ae", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:55+00:00", + "size":300, + "sha1":"02e784a8141a71628a9a7692136f56e3124a767c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:51+00:00", + "size":243, + "sha1":"7acd693e69a91d4a8352f9be82c61d13968e8115", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:25+00:00", + "size":148120, + "sha1":"8ecb81b95d5ee47413ff2a610f41676e0a299aaa", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:22+00:00", + "size":6412, + "sha1":"d9deb24dd3b1b95f1c7cb904c31c145fba16c866", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:51+00:00", + "size":181850, + "sha1":"aa237ec4f715d8c03f7513cc44b4599d7381f677", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:49+00:00", + "size":6412, + "sha1":"d05fb9d7ec63423dbf37fb302fbd6ecdcdb3f823", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:41+00:00", + "size":176486, + "sha1":"60d0fb433f962ab08ae84fac897e65fb4b3e9a84", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:39+00:00", + "size":6412, + "sha1":"27f91d2bef2dab080704db7e3739927e7f0c859a", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:51:56+00:00", + "size":951074, + "sha1":"0feb610600ffea4384d4a656b3f7c1b7a93000ce", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:51:57+00:00", + "size":269535, + "sha1":"96993a71e8f95ee4888f24d71d88c33dc92c1267", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:50:42+00:00", + "size":1613049, + "sha1":"48c82ca8f362ae8c8c7507eeac967a6d737f0b35", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:50:53+00:00", + "size":269535, + "sha1":"02ab9d81d2ee87ec54e846ccb8c7fd6e7564a9de", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":7558, + "sha1":"d5707e807f09cf4c12a31382e6d5bdc45fa7095f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":1993, + "sha1":"e49b0ac86ec75671876cbd6aefd947bc1149681f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:28:59+00:00", + "size":50831771, + "sha1":"aebcba1c2103acb23baf5bb6049c029fabeb1389", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:07+00:00", + "size":14113, + "sha1":"5641aafc9b5e5da713227a0dfda8bdfc55b526fb", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:27:53+00:00", + "size":3247, + "sha1":"69b374a8278b0ef6cb87d45822b096120916162e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:09+00:00", + "size":3576, + "sha1":"cd89bd42f00581a65ca96ccda98916db9c10c5ca", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:28:00+00:00", + "size":15856, + "sha1":"f6c6ae48190c6e44b34c2250f0f5195a5a46b481", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:04+00:00", + "size":22621, + "sha1":"57e7f828881904e52b08437f9cbf7d191ba07cf3", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:39:14+00:00", + "size":53545137, + "sha1":"5b31ef1422b39b28468378eaf45b991ba2ba84da", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:19+00:00", + "size":1380053, + "sha1":"ea709c50832877e8b12178a21d29fcef056e2970", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:31+00:00", + "size":4370, + "sha1":"3b537a196a2f1d3d4d48d51b18c735cc4c100610", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:04+00:00", + "size":4277, + "sha1":"66b297d2da72813b58609517331ab9e496fb7cd5", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":22602, + "sha1":"e7383c1510f3c41a09f917880871e1251f53b4b3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:32+00:00", + "size":30637, + "sha1":"af7c508d709b70edadf978ea5a9cebb20b4451e9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:08+00:00", + "size":1421680, + "sha1":"f73dde94287df25f8261029d6abcbf87b7069ad3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:02+00:00", + "size":1422559, + "sha1":"1385c0791ca108035df1213284f9fa59ce28fe62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:33+00:00", + "size":21275, + "sha1":"b4e7c2212651b8cf2a7c75ec02993948fa25f6dd", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:29+00:00", + "size":25319, + "sha1":"0e8ac2cd41040f57c56e4716c1dab4a35a7ada07", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:11+00:00", + "size":51736, + "sha1":"e8698f4aa7a3e6f2ec837d62986bd9125360018c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:09+00:00", + "size":47225, + "sha1":"772006fe18cb8f073a34b287e9d1f93f99f380ac", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:28+00:00", + "size":50743, + "sha1":"bd97402494a00291bcd4f11aa18863147ecae28c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":48581, + "sha1":"7d29207dc35dda90730b5582d988dc7cc94bdd05", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:10+00:00", + "size":47078, + "sha1":"1c9e5f0ef290ede2cd950f5d347fc28777edc34a", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:02+00:00", + "size":48015, + "sha1":"2ad78b943c4a002f142aa8840a0fb400b952c9b9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:14+00:00", + "size":17196, + "sha1":"8d6bac9dc20cb5cfbff9dd529e7327f73fd0b7ff", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:08+00:00", + "size":20921, + "sha1":"bfb7380b1f9f76c98448b12b19f7257c6c4b01e7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:03+00:00", + "size":36237, + "sha1":"671a8b7959fe5da49c3a1a723f728a53b397443d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:04+00:00", + "size":35232, + "sha1":"84d9a5ca878b941a386d9cde15407b1ab8b59903", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:15+00:00", + "size":24039, + "sha1":"0c41db9bf0ece6d7ac46cc6de47cd7b30a56267e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:12+00:00", + "size":27856, + "sha1":"ce35fa79bd7b9c092d53e9f3568eab5c34b974b2", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:20+00:00", + "size":9457, + "sha1":"ddf847f74738c88515592147769cd0a3eb55f651", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":7908, + "sha1":"25cebd3c9bec23b20f2c5477cf3b0997a27e5fcc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:03+00:00", + "size":10341, + "sha1":"eb1b25bbeea8f43a8c10d02108b21a6192c731e2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":10547, + "sha1":"09dffef8467b17f5298cf291a9786acb2b07d117", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:31:21+00:00", + "size":42834946, + "sha1":"64712c35917e84d5e89230e02121e80a9b6981f6", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:42+00:00", + "size":192703, + "sha1":"208b2408da37629d602dc3c047b70ad772203a94", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:32+00:00", + "size":3215, + "sha1":"c5589b99dafcfbea875e03f88869ffb887903902", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":3705, + "sha1":"843fa7d2555d1de93872a7416498c2bbd9e6e08d", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:30+00:00", + "size":8203, + "sha1":"fffbb11611bf1c06ddda89235c2ae5f9028a4ef3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:54+00:00", + "size":8905, + "sha1":"f14eb06e8bc75b1cbcdb29fe59ec931994a5b0ea", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:25+00:00", + "size":201826, + "sha1":"e8792695ad2538a177e6ceba7adf163e379d84ce", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:50+00:00", + "size":202757, + "sha1":"a6d4ebd3c2466b5d9298808e748a64dbfab93a63", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:43+00:00", + "size":5740, + "sha1":"0b5f564f28989d9239e470fa8b5b0d3773ec14d8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:49+00:00", + "size":6686, + "sha1":"4a1648ec94c9948537ef29cbb7b051299b380754", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:52+00:00", + "size":9680, + "sha1":"eca43be10e27abbb270bb997cf53cbfc329a8929", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:51+00:00", + "size":8140, + "sha1":"8d40b2c42c99792d92c83c3e505a44f1458fc450", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":12098, + "sha1":"535eb60dc7df6e888416fe10223e451d916f421e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:45+00:00", + "size":12909, + "sha1":"2de3bb93f283bf73df1d863d026ea109917b1b33", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:58:51+00:00", + "size":42059244, + "sha1":"bfe0e3ec2a83460cf353248afc00b9fe1827a92e", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:55+00:00", + "size":16166, + "sha1":"bfc09d8d03e2120fd4bd19c2d282771c2753ba33", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:02+00:00", + "size":3259, + "sha1":"5ff6cbfcc2b0d81d9e67f3af0c2196d5f508e75f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:44+00:00", + "size":3786, + "sha1":"24aa031ada8cfcf17fa24125738537ab24274de7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":5020, + "sha1":"5a84eb31c35710f3503516fcea4b3a2eacd65f66", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:04+00:00", + "size":5669, + "sha1":"6f72dfa7993e990da5e4a91a45f707b96e0027e0", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:00+00:00", + "size":47591, + "sha1":"3f965cf68ba5c4addddc49f64219fd6c5ac3bedf", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:57+00:00", + "size":48596, + "sha1":"8ebe996206fa4977291ac2b7c676083116725082", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:08+00:00", + "size":26131, + "sha1":"96c7fade6a0aef5cc08c9c2b71ba3f66b5cf018d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:05+00:00", + "size":24620, + "sha1":"f111ee185037456d373ff5987308a8166de7b0f1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:54+00:00", + "size":28964, + "sha1":"01e05aeaa4e64674f4072293e613d1bb68428724", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":24753, + "sha1":"eff9576524c2e9d6ab3f1be6d20028fa18fae256", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":28383, + "sha1":"7d7ce8861441afdb861a3e0331efee3f21e32a7b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":34786, + "sha1":"045c1dfa673a9666b29c3e97a91c7793dad34f88", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:08+00:00", + "size":14180, + "sha1":"bc5584a8251e7ca760d4382cd6dfecdf30189ac4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":12405, + "sha1":"945f4974d6d4a9b3bc9e774f0898d0162707ef78", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:02+00:00", + "size":4404, + "sha1":"62b198d4ae9b2ce53d3f224643226ab3e738db7e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":4257, + "sha1":"ce6acfd2547ac6e70b42b5d62a8153abd5257fe9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":7552, + "sha1":"4e8e954f917286b219d2ab5bfe70da75eca59f15", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:01+00:00", + "size":5899, + "sha1":"d31ea5666965e1553ad39c73bf7e3e8d8d1dc014", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:15+00:00", + "size":36865, + "sha1":"5881f8fdab27496c937f5f1fe4d48ac2c1bfa059", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":36437, + "sha1":"4e4be804436fb52d2aab9534ee70f91c5b33fd62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:10+00:00", + "size":8340, + "sha1":"236f33f4a275d733385bd01acd3eef06c1e209d2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:23+00:00", + "size":8621, + "sha1":"94d5b0852a90927dcaf88e7ccc5ed6d5787ea611", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:49:41+00:00", + "size":47183472, + "sha1":"9c4fa741527bd97f46bf809edd688f03078e01c8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:40+00:00", + "size":2746478, + "sha1":"5391cb173c6a4727cdf761d8c9e10fe13f1718cc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:25+00:00", + "size":3248, + "sha1":"e2a52504a40bfb4123fb2c725b210f89a1524523", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:08+00:00", + "size":3684, + "sha1":"3ffa66da8e880ebf41d48e19fa2970abd38ce955", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:34+00:00", + "size":14157, + "sha1":"186700ebe761f16a4b090a62edc856bae08a665b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:00+00:00", + "size":16222, + "sha1":"cd134296c2559193556b37b98a834ebb96cec831", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:07+00:00", + "size":2858244, + "sha1":"722aed6300e75613375e4e26aa29cc3a41d82341", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:49:47+00:00", + "size":2859154, + "sha1":"297be0b55daab34912fcd5b84b039d04e4cdc62e", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:01+00:00", + "size":372089, + "sha1":"abb54d1954d2f545b71652e9f557c02d419205e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:42+00:00", + "size":375358, + "sha1":"a0f3bb83e79b46da50ac25ecb3dee89c22f12759", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:29+00:00", + "size":34743, + "sha1":"c6a579e4c4cd415de4f3c5671856dcc0995fb83c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:30+00:00", + "size":28377, + "sha1":"2715309fb5f3921c0354446540c2b34393990d30", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:35+00:00", + "size":46925, + "sha1":"79424b57d1e7f5a239cc070ace119d83f5f5e649", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:02+00:00", + "size":37098, + "sha1":"a6377c75fd5d44dbad43e0f736fdbe048f90e294", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:39:31+00:00", + "size":2234323, + "sha1":"12a18ca9c7a45c937c1b8d74f7486e8efde3a710", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:39:51+00:00", + "size":20264, + "sha1":"01872003ae17a543a44fae4982ab0af8d1d6e189", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:37:44+00:00", + "size":3010384, + "sha1":"538ca8598d9e818afca011226c89be80ef1f82e0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:03+00:00", + "size":20003, + "sha1":"b222ff796e010f0fa2801804d4cc66b5872ebf5a", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:38+00:00", + "size":1906344, + "sha1":"afe5bcbff5b2a5fd789a50a30e069464793ea3b8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:44+00:00", + "size":16701, + "sha1":"826a3da4947eec1d6305464bc0564f711fdd697b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:42+00:00", + "size":4961132, + "sha1":"f30fcb1be4210cd5eb9e25a5c7b01d40c385025d", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:51+00:00", + "size":19917, + "sha1":"e8b8aa2d8dab43da2084c02ea679caf83c47dfde", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:19+00:00", + "size":4961730, + "sha1":"c4d710cc00d69ed6fe87092df277fcbdab7ba134", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:23+00:00", + "size":19937, + "sha1":"24259cb69a11d621a2240079175bf87150071ed8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:51+00:00", + "size":3308434, + "sha1":"13ff88806146d5b6afc1deafd8f05ec45a3e85d0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:26:15+00:00", + "size":20011, + "sha1":"1a3adc7a0b19c01f40988ff613e2e0f6f9d8a9a8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:23+00:00", + "size":74348, + "sha1":"46d1ef2e5f3a09b852560b8845ef2f30e47a8b2b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:25:30+00:00", + "size":29227, + "sha1":"52a6d8f21e60b8e1eefa99ce726159c1f28d6df9", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:48:34+00:00", + "size":56329, + "sha1":"4b91c9ceb4ead9258ab3916ccfd516e1f2e3d204", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:48:41+00:00", + "size":20334, + "sha1":"4bec2ab1443afc239d4c3a853bc3cfc987e67942", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:57:28+00:00", + "size":56514, + "sha1":"a97e9ee632a1f25fc6ea9b044be14bd766d1c84e", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:57:29+00:00", + "size":11834, + "sha1":"c9d45644a76d79c40aac0cc3d8a10284e1f19c5b", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:29+00:00", + "size":6064, + "sha1":"564734c77ec889bb42a9ab5c6a703a8236adfe09", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:31+00:00", + "size":6010, + "sha1":"e3d33f5b0b40ec3a113213763b304199591a4335", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:16+00:00", + "size":102002, + "sha1":"0638539fe9dea85881b98ebd71aa9709ab7295b8", + "name":"Pushy", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:18+00:00", + "size":88362, + "sha1":"94498e475f442ab1fd054818a6cd1fbc8339a677", + "name":"Pushy", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:27+00:00", + "size":26081, + "sha1":"e49013e192379968fe07f14d945c3842e0ae6b4e", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:43+00:00", + "size":3808, + "sha1":"43ebd93251857d20a81b05d3d43333fa824593d5", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:28+00:00", + "size":59559, + "sha1":"ccf97b601be7c7a0ea6fe39f375bf34890a8868d", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.thejholmes.russound.api", + "Bundle-Version":"1.2.0", + "Bundle-Name":"api" + }, + "classes":[] + }, + { + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:47+00:00", + "size":10321, + "sha1":"8030cdf46d3e99f9408229cafd92c64ca4998352", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:38+00:00", + "size":677475, + "sha1":"d173d3b3e1375e3ff7a639248187b42482401265", + "name":"docker-client", + "description":"A docker client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:00+00:00", + "size":380304, + "sha1":"0eaf853246fac2538ffa3e059b9e3ebef3be8e2c", + "name":"docker-client", + "description":"A docker client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:49:28+00:00", + "size":44473, + "sha1":"26111ebe89bf0e71068e3ade534015de90035907", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:49:41+00:00", + "size":9423, + "sha1":"3c1e7d805e2a64194e5f3ec3ef8b6929e0610238", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:25:00+00:00", + "size":43937, + "sha1":"4cbdd29f40cee0fc156f1b74f3b204a3ea599679", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:25:17+00:00", + "size":9025, + "sha1":"534787127d6a90d0852c1f171f97be6ab993ce59", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:42:39+00:00", + "size":520418, + "sha1":"8689d1e66a4800f5945c4d4874996d22f4fe9a25", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:42:49+00:00", + "size":598288, + "sha1":"e334bc0026db1f4a7c45e5b361fbe03230280c85", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":47144, + "sha1":"c6302e04ba5eca4aac68d43213d0d01012170483", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:20+00:00", + "size":2677, + "sha1":"a20bbb64ebadd74efe032e99513405dbd5b2fe5f", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:21+00:00", + "size":61678, + "sha1":"9d1070129be73cdbde893e4b92268dedd33da330", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":2677, + "sha1":"79e8555e472d3c1e56138fb7f2021cd15fd3a9fb", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:57+00:00", + "size":5121, + "sha1":"72968435a6eb2280e86a2c0c0f0e5b77485bfd56", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"13bb85616cdc0b8fa0bc62e39a093804ac796936", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":5494, + "sha1":"e46e2eb21bc47a85edb9ae309c2837d4310f4ec4", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"4bb834d495501f89c3cd870cb4d6f055ec729afb", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:36:06+00:00", + "size":439051, + "sha1":"63241080552f41d9c1bc2c3e3e7e58f91aa91be4", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:36:14+00:00", + "size":235653, + "sha1":"07f327cba772f6857384b507a34cbbf7f89918c3", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:57+00:00", + "size":900455, + "sha1":"551f04394c8819f07ce7fe4fecbd5d580e0c99da", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:25+00:00", + "size":164524, + "sha1":"aedc463329c93634c769295a65b562d9bf48b5a2", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:47+00:00", + "size":1208914, + "sha1":"557332267baead582d9f3b7e3c01b3a1373896d7", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:19+00:00", + "size":164524, + "sha1":"71c980d583100f712defc62d50c972ccd4b1bd6d", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:15+00:00", + "size":51461, + "sha1":"04494b708650ca89058927ac0bf475fbc1196431", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:17+00:00", + "size":4450, + "sha1":"1e3494bd0ebaf96b952df54f49a16c900ed8c890", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:52+00:00", + "size":52856, + "sha1":"9e82349f10425a7b32b7f9b67e408d0f808e89f9", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:54+00:00", + "size":4450, + "sha1":"48805f9b33bfbeeef2be44028125021ebfe6d388", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:21+00:00", + "size":16231, + "sha1":"afe13c85c5a45abcc7a9a8332d7e3438076c5dc0", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:19+00:00", + "size":8930, + "sha1":"0062678e5d026f12a8d875d1f5769f1147b422cf", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:06+00:00", + "size":23539, + "sha1":"9a7e8911542afaca420ded579396e4d499387572", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:04+00:00", + "size":8930, + "sha1":"99f9c9c1e5dd9637f4368d4ddc633c28518a641e", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:45:56+00:00", + "size":25398, + "sha1":"a9d742a167aa93ccaf035dac253686ad2ac47c78", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:45:55+00:00", + "size":4125, + "sha1":"085e71d23dd0e241abca14f28e70a11b61c03ad2", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":8612, + "sha1":"999e43d1072cab7c4e30a2310d32adb8a6a83e43", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":4337, + "sha1":"da9fcdfc4c836d7aa0a52a8da80dd8151260ff72", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:09+00:00", + "size":8436, + "sha1":"0aa25da4394873262db2fb452c75296fccdb18ca", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:12+00:00", + "size":4337, + "sha1":"d57dc7dea6c6d0c9132ac2ff8a83cc82a8da0442", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:13+00:00", + "size":19185, + "sha1":"34ee106e4c20dafc91e8547997e9a082410ad3d4", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:12+00:00", + "size":4634, + "sha1":"555cfacb2f74005ac1fce70b4bbe1ace9fb3eb5d", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":23562, + "sha1":"36b1f63a6cc7c78c14729203386a061875a39349", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":4634, + "sha1":"751a3a9bdb76bd4b523d48ba3c1ee022f4a8015e", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":36894, + "sha1":"4df4fc2eae1827871c55703bc04c7dc26bf6033c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":4745, + "sha1":"2765e09e117c7278c0e5560e24ea31e491d7856d", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":49500, + "sha1":"a951f81b543ade07d9cdc65cb327f430c313d07c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":4745, + "sha1":"05d1976f405d9e0b5626a34663edc0c872c62a54", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:18+00:00", + "size":19978, + "sha1":"2ef26083588d69a9284dd71a460a7b5462d69fd9", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:16+00:00", + "size":5327, + "sha1":"57e7b6e7d469989cf87cb22a72cb9b281230c504", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:47+00:00", + "size":30583, + "sha1":"9120a87905cbfd224b26a92478a4a9709d8871fc", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:45+00:00", + "size":5327, + "sha1":"da1b849b61c9deb1b28a9f9bc65d2786c267d344", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:17:15+00:00", + "size":196431, + "sha1":"f4d8856e98bc05fcc93e75a1dc0fb59b73ee7f8c", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:17:24+00:00", + "size":219637, + "sha1":"a21b421682d3062c80dfaeb5ca2081b933b8f2ba", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:54:50+00:00", + "size":33683, + "sha1":"c32338bcf123194142578818aaccab9688272766", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:54:56+00:00", + "size":19444, + "sha1":"675df81c0f14ccb5dc4fb82df9ab52d514e793eb", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:32:38+00:00", + "size":67119, + "sha1":"2a6908e6b182deec99ff76d0eacc6a806db546c3", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:32:43+00:00", + "size":84942, + "sha1":"1c999a27d3ef2a49b61f6727dd5e5c5ac45b8931", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":37648, + "sha1":"177cbe74b3501ae78e305d12bb91e875d0c87d51", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":19005, + "sha1":"75955e9cc2f07d381e9b1a03cb17abc17a5c59d1", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":9896, + "sha1":"8f5009531cd52108560aaf56131164cb87745c2f", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":4729, + "sha1":"45fea2fc8daa58aeb7749fd16047a11eeaa430ec", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:47+00:00", + "size":41395, + "sha1":"efd2fe86c52099dcd158a7a6531012928179796c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:24+00:00", + "size":26794, + "sha1":"18e8e553b7257a65784ca7510e721c5e8f10112c", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:21+00:00", + "size":10719, + "sha1":"043e55bffc5d1fbf657a58465aa5abdef49e15e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":8729, + "sha1":"9b12839cac0eb8e5f38e45704160390f62280196", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:12+00:00", + "size":102033, + "sha1":"76442295bd911c77acd42487d73a3ab1f20e3428", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:45+00:00", + "size":59836, + "sha1":"2564460f46cad8abea2101ee7f2e4c9a50ecfa5f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-integrationtest", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:10+00:00", + "size":5194, + "sha1":"430daf26d709d8664b59c7fe08340c506c6af627", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":12851, + "sha1":"ca8f214718a22c77eca5dfcfcc937f937676b740", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:09+00:00", + "size":12478, + "sha1":"e2942078a273287381acc1275866a7a68b655f83", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:01+00:00", + "size":515486, + "sha1":"e17e03c7cfd010e7cee43c68ec6639ddd5006d88", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:17+00:00", + "size":359827, + "sha1":"ed6efb8ab79f5bdbcfee2a69e9799116c98b3546", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.logitags", + "artifact_id":"cibet", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:54+00:00", + "size":459389, + "sha1":"eb05a5671e40571e8389d68688e6aec7b34aad1e", + "name":"Better control with cibet", + "description":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:24+00:00", + "size":9763, + "sha1":"dceb77315269adbbf1231f039c4db0b6a9fd40b8", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:26+00:00", + "size":3240, + "sha1":"e597cccd73a65c9d8711d329391036754b2e1ac5", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:39+00:00", + "size":18482, + "sha1":"e3cb786de2759b00956e170e3f8c5e46cb92be95", + "name":"Sample Templates", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:40+00:00", + "size":4052, + "sha1":"e9cef2fe17f79d051fc1b46787a5649c88f5ea09", + "name":"Sample Templates", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:44+00:00", + "size":2344, + "sha1":"8a86873a1ffcde1bb21ea86b9d777a4ce6a6d3d0", + "name":"Sample Runtime", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:45+00:00", + "size":783, + "sha1":"0339eb68b809460304ebcdf7ac11eb0ae6644c97", + "name":"Sample Runtime", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:56:22+00:00", + "size":3265, + "sha1":"0aa2f3750e9c61a554a06b818b841d77130423a0", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:56:34+00:00", + "size":1502, + "sha1":"68977afff8cfce2ee4d7e1c51d2c31e73b4f956e", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:12+00:00", + "size":7568, + "sha1":"42f0c738e1954699e26511fcd471849427612221", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:32+00:00", + "size":2318, + "sha1":"6ebd35a8bad75d099097ce8a4b5a5f8fcd4d9da6", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:32:19+00:00", + "size":57255, + "sha1":"dfc181597410df308f5a0f58d01ce87beabfef66", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:32:20+00:00", + "size":27455, + "sha1":"a9b43ee36a71764fa13792dddc25e0e4d410f4c5", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":55362, + "sha1":"f8ca48120de19f4a637bfe5c750df512951e1a12", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":9356, + "sha1":"dc2941c7e2894af0939012eab278f5a58532eab6", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:32:36+00:00", + "size":354880, + "sha1":"a64cd3ce4250487c2ede6bf5c1e6c0f31cfb642b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:32:28+00:00", + "size":246398, + "sha1":"ef28e4ff6fbed90c9afeafda14b2d16bf044dc80", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:48:19+00:00", + "size":149545, + "sha1":"2cc001a6b7588daf5b4d5d12c3fd949b1cb9e6e1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:48:41+00:00", + "size":141664, + "sha1":"45329ae4aed0298fcfddcc02396afd687d6798b1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-war", + "version":"2.13.9", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T23:44:25+00:00", + "size":51278489, + "sha1":"769bc441e42089a9d052a7be1bb1a0954ca176ce", + "name":"Gerrit Code Review - WAR", + "description":"Gerrit WAR", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-js-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:58+00:00", + "size":15524, + "sha1":"0b87cb6c36b848071fffe43902117cc59b77c53a", + "name":"Gerrit Code Review - Web UI JavaScript Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI JavaScript Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:46:08+00:00", + "size":7051241, + "sha1":"e63e18db9fcc72b262bd71bcafb948b8c3858714", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"slf4j.api", + "Bundle-Version":"1.7.7", + "Bundle-Description":"The slf4j API", + "Bundle-Name":"slf4j-api", + "Bundle-License":"Apache 2.0", + "Bundle-DocURL":"http://www.joda.org/joda-time/" + }, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:55+00:00", + "size":141110, + "sha1":"05822cac9819697ffd8d83bcdac49ca06b41ef7c", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwt-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:57:09+00:00", + "size":23019, + "sha1":"e8ac5315956ba633b82c90e835ded1e497d15373", + "name":"Gerrit Code Review - Web UI GWT Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI GWT Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:46+00:00", + "size":19516, + "sha1":"6e3da5aaea8442161f92c94097780761eaac2299", + "name":"Gerrit Code Review - Plugin Archetype", + "description":"Maven Archetype for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:53+00:00", + "size":32872670, + "sha1":"a9b00025900f68c1f86036ea07591a2876b10c37", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.apache.velocity", + "Bundle-Version":"1.7", + "Bundle-Description":"Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.", + "Bundle-Name":"Apache Velocity", + "Bundle-License":"http://www.opensource.org/licenses/bsd-license.php", + "Bundle-DocURL":"http://tukaani.org/xz/java.html" + }, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:44+00:00", + "size":2419934, + "sha1":"6f07372e482e6b1e99bd5bc57ee1ba6b534d8439", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:34+00:00", + "size":3592866, + "sha1":"166819680c2dc501fa7f8bd13b4d6846297777de", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.google.inject", + "Bundle-Version":"4.1.0", + "Bundle-Description":"Guice is a lightweight dependency injection framework for Java 6 and above", + "Bundle-Name":"guice", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"https://github.com/google/guice" + }, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:31+00:00", + "size":215508, + "sha1":"8018e0def6a84fd1ec51533c2a3250479afc3e53", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:20+00:00", + "size":14229198, + "sha1":"53a6e2baca19303bbf3967b861cf9814323c31f6", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"org.powermock.powermock-reflect", + "Bundle-Version":"1.6.4", + "Bundle-Description":"Various utilities for accessing internals of a class.", + "Bundle-Name":"powermock-reflect", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"http://logging.apache.org/log4j/1.2" + }, + "classes":[] + }, + { + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:19+00:00", + "size":47482, + "sha1":"f75ba862b02156a0ca24e9220a712dbf3dcc582e", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:45:28+00:00", + "size":50059, + "sha1":"741d19644f5b5ce125f4a8dec3c1aee4be426e5a", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:45:33+00:00", + "size":20757, + "sha1":"57ac9eff03b2eb9aa52f581aeb22e734923e375b", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:49:52+00:00", + "size":42125, + "sha1":"cc737471028fff9c866fba75cef52db6d07e473f", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:49:30+00:00", + "size":4153, + "sha1":"c481ae945627bafa519b1a703974e4e18148e0b4", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:27:49+00:00", + "size":42169, + "sha1":"afa08cd5648ff86b13b70c23bba532204dd07183", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:27:42+00:00", + "size":4153, + "sha1":"7fad43ad2dbcea936842f73b950c9eca4844aca8", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:54+00:00", + "size":4565, + "sha1":"e8404c4da7a998baee790e618cf8956496726c22", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:57+00:00", + "size":1372, + "sha1":"88d38bde4fcec255c22cf67740265fc8759d3190", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:10+00:00", + "size":5185, + "sha1":"7d738f29d68e3975af6a86ff46c123d40d3f0971", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:36+00:00", + "size":1372, + "sha1":"648dd53dc7894555db3b1ff2b21abdba09494365", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:30:46+00:00", + "size":52579, + "sha1":"6dff070f50f2f8a3e7ecc1e644ac7c02f1b03a2e", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:30:43+00:00", + "size":5782, + "sha1":"268d64e25439460ed90ceafdc85ff1c1bbc76a4c", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:31:02+00:00", + "size":54893, + "sha1":"89b25b2dfab6bd3faf8ee1ce5c78f7bc5a709bfa", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:31:00+00:00", + "size":5782, + "sha1":"b7dd00dcfceceed7dfd5b5043fb8f67fd2b55a73", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:56+00:00", + "size":55353, + "sha1":"8d545e08beb91470e3bda795cbe80699feaa2faf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:57+00:00", + "size":11984, + "sha1":"3cb663582e21232daea2c7e619d90ba45c66debd", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:13+00:00", + "size":113913, + "sha1":"ecb77013ade117f16d5800d4d6d2f732af8821cf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:14+00:00", + "size":11984, + "sha1":"f63f0203093c1987859f71c90c22ff39b58b7387", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:30+00:00", + "size":34048, + "sha1":"03a73352c733d8ee56a1c7a62c1e2645d7c30fad", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:48:29+00:00", + "size":6053, + "sha1":"749c93193dac155e6596cf770bccb6d85fd50364", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-sonar-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:53:10+00:00", + "size":12882, + "sha1":"044d3f7a4de24d791877f19881368eb978564bdb", + "name":"SevNTU Checkstyle Sonar Extension Plugin", + "description":"SevNTU Checkstyle extension plugin for Sonar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:38+00:00", + "size":2924, + "sha1":"ae54fb7c650203298e0b806dc97b3cdd6788c05e", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:37+00:00", + "size":764, + "sha1":"222d9c1618f283b51315a393333461a4e88cb39a", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:45+00:00", + "size":193304, + "sha1":"defeab02fc4197910d5a0d6b5b995ec1c5c20841", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:43+00:00", + "size":27396, + "sha1":"bec575c41072d7e2e4a596804544c214a04537bf", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:28+00:00", + "size":169476, + "sha1":"31778216a037513d3e184e4f1ca70a340436d339", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:31+00:00", + "size":179879, + "sha1":"af8b89da3bd59a64d09c3fc6a5817932ac211b71", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:08:53+00:00", + "size":10598, + "sha1":"c66fdd91baa322b8ce1d82457931dd9ca20e01cf", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:08:54+00:00", + "size":5055, + "sha1":"864417782b6e3277788bdb16c359b896085c55ae", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:43:59+00:00", + "size":10602, + "sha1":"e6359ae5d7c5ce26acca1e03fbc99461f4a43bb5", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:44:00+00:00", + "size":5057, + "sha1":"527d367cd36bafb846bbf31c325f35e047f6aeeb", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":10097, + "sha1":"ab85baaae9574464783b1a801626a5850b8cd9cd", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":4983, + "sha1":"baa6909399ea6da13ea44ad10e9471ec5d3d9f4e", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:07:31+00:00", + "size":8377586, + "sha1":"3cc11ab8b3d7cbe3577b640c59152815ee8122d2", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:07:24+00:00", + "size":3366, + "sha1":"e30219a4b559221faa27da388476c05137812e82", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":8377368, + "sha1":"8bdb588fe1bc94a7161283267af0acc405f4b445", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":3367, + "sha1":"f0e9377525b9ad6f44fa7e0d11d3fa15eb04128a", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:42+00:00", + "size":8373153, + "sha1":"5d3156db77dd327a98cb2de88bd431b850365691", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:15:34+00:00", + "size":3366, + "sha1":"4a45d75f5efda8f4977f307b1758bc8fbc910425", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:33:22+00:00", + "size":200944, + "sha1":"1a5e966b031ef4a46f5c9af253d4ad5e7f146dc2", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:33:26+00:00", + "size":143964, + "sha1":"abd2f9076463485bc3134e60c97f158eaa898e19", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":7052, + "sha1":"be0efbe91c363f05d1c0d0b399a4bfce3bb4f658", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":6113, + "sha1":"f4155f2283fd8da59f07b618110a6a141b42074f", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":33405, + "sha1":"9216d400042cf0b39ac6a515b24ef744ed4b140e", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":19747, + "sha1":"78d15c354188247302b056a85ef0f1800ad2911c", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":75836, + "sha1":"22cf1cd02b756610ebc1573cc248c3d3e5bdccb6", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":51693, + "sha1":"7b010f28aeabbe62eb031d7026945a6351bd2e87", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:38+00:00", + "size":21171, + "sha1":"8aa99a7e7b57b3f1642ede69aa39546dd9e3b200", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:36+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:14+00:00", + "size":21885, + "sha1":"71e91e648a4417db4270e0b14826e04a0456e612", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:12+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:01+00:00", + "size":11495, + "sha1":"6fe60fd021bb19a2b1f958dddd20655de2165c99", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:00+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:44+00:00", + "size":12007, + "sha1":"c64a8673a706015e5c232d141ad3434ebb5f8042", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:53:43+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:08+00:00", + "size":49699, + "sha1":"f2995c66cfba1aa059def6ea4259b78196369ad1", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:10+00:00", + "size":3617, + "sha1":"c65e3647fb0c2fbb15921737f7032e273d58802d", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:19+00:00", + "size":67525, + "sha1":"c30e7b4def4e6d33a82e5f8f943e49f80e289bd4", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:21+00:00", + "size":3617, + "sha1":"a147a75317ff1c0a9364807fa1f26d3ceb99ca29", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:43+00:00", + "size":280417, + "sha1":"fbbf863df4aed0a2252ab18448c8ef76ee5ee603", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:50+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:04+00:00", + "size":299174, + "sha1":"f474358aa47e5c17353aadff262e27306e5f8dbd", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:10+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:52+00:00", + "size":147582, + "sha1":"e4967735d2981e4bce8f08e17f3afb9722fdd4f2", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:59+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:52+00:00", + "size":161261, + "sha1":"82fb96733b476031483b725052f8f88e40a13b2c", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:02+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:21+00:00", + "size":137832, + "sha1":"76c0d2be3891d004cc0ca0c642160157f1b92cae", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.2", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:25+00:00", + "size":15408, + "sha1":"79f5ea89217808bf0d425861b4e44a94c930c567", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:05+00:00", + "size":137825, + "sha1":"da391a34c44b2253f079f0c8386a37b9b908ae64", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.1", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:08+00:00", + "size":15410, + "sha1":"061774504514a81614df20c2f17c8eb3a8aa6157", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:28+00:00", + "size":213338, + "sha1":"02cc82b1161199fab701a37af3a3ad14e394360c", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.2", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:32+00:00", + "size":15408, + "sha1":"17b47d8a0f66f8f10b6c14eb7c5d1385d3fd9932", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:54+00:00", + "size":213335, + "sha1":"cf30ff10d4108b642d7cff2dfb44e8fd38241be6", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.1", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":15410, + "sha1":"e60563be89d077defa284e0fe464c7c3a48bcb6d", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:39+00:00", + "size":131280, + "sha1":"cf35abe567acec8680b945e11ab46bd491909888", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.2", + "Bundle-Description":"server", + "Bundle-Name":"server" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:44+00:00", + "size":19325, + "sha1":"fede6b0c5d59d86d4ed0c65d266638f3e95bd212", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:33+00:00", + "size":131285, + "sha1":"2b11b94e9a002b114cea1f4bd249a55097035d46", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.1", + "Bundle-Description":"server", + "Bundle-Name":"server" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:51+00:00", + "size":19325, + "sha1":"eb7f30c356d6510bfe0798d4e66a7fd670c30259", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:50+00:00", + "size":196379, + "sha1":"9325d871c10d24dd4cfa8d92e6edbeeaead0ce9c", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.2", + "Bundle-Description":"server", + "Bundle-Name":"server" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:53+00:00", + "size":19325, + "sha1":"e8b11c14a898c3f628a4b6ac8f591c8b544385bb", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:28+00:00", + "size":196383, + "sha1":"842f67d21c284903faff44797b8f7d65bc650b06", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.1", + "Bundle-Description":"server", + "Bundle-Name":"server" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":19325, + "sha1":"30e003efed74bb6a8ebf65cc087b6bbdf82d300b", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":51410, + "sha1":"a9345e7ec4fa7eadfe03ee2e95659baa88d8b4f3", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.2", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:49+00:00", + "size":8069, + "sha1":"d774255a8358708d9bcf3d704093e5024831691f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:30+00:00", + "size":51410, + "sha1":"ee35cdbe79666699f715c2760699cfb50132d34f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.1", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:18+00:00", + "size":8069, + "sha1":"fd7a6ebae93c8b74c31d2e260cd3da43217284dc", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:47+00:00", + "size":72902, + "sha1":"1342b23502c22936ccbe204d0c2621a2e780648d", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.2", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:44+00:00", + "size":8069, + "sha1":"8373216ea395c27b68d3e7ffa2b3d50d0a979f04", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:24+00:00", + "size":72903, + "sha1":"9edf80b76718966df9b40141ce82416eaa71c7a5", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.1", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:21+00:00", + "size":8069, + "sha1":"2cd737060e0ba9fa0801d901b3f6f5ccbfa602b1", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":443, + "sha1":"2ed5a5892d53d1b0de67297f9dafd3f786b8183d", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.2", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:59+00:00", + "size":1742, + "sha1":"cccdd6d533bfd5a97e62a88e51893c55e6767b4c", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:44:04+00:00", + "size":444, + "sha1":"942b149c751b2cbab9fbc43cd0ba704e9a5f7486", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.1", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:44:28+00:00", + "size":1742, + "sha1":"81543b8f952c5acdf415e6f9151a7c82c8d252c9", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:34+00:00", + "size":444, + "sha1":"26de758f91ee0539569da74cf92e3f668bd5ed15", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.2", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:40+00:00", + "size":1742, + "sha1":"e88e98a9f73c17f0251e486241e45b0a04ef8b60", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:11+00:00", + "size":445, + "sha1":"f42c53b6c08798141300d51baaf066c0424c1537", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.1", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:18+00:00", + "size":1742, + "sha1":"e7c4499577701d6ec915de69d6873c175c0abc73", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:09+00:00", + "size":28968, + "sha1":"4dc61446f324000fc1f80b3cb177b23f0d24dbc6", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.2", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:14+00:00", + "size":7263, + "sha1":"3d8e14032b936109183314c6eee245713040d330", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:54+00:00", + "size":28969, + "sha1":"e42dd1d4557e84e5a1e2a5578c2f0453c6079697", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.1", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:58+00:00", + "size":7263, + "sha1":"3844e4173091473f1bd5900a4e2a88564be7a758", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:17+00:00", + "size":29674, + "sha1":"a258484cf0a71d7e0cf703cab2531f31dbe15138", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.2", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:21+00:00", + "size":7263, + "sha1":"76f22a1020e13cf1014910c0b3e36c1eeb1495cf", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:05+00:00", + "size":29675, + "sha1":"55f14fb6b3b77408a5caa42d657b0ff378eee4f3", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.1", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:08+00:00", + "size":7263, + "sha1":"b70e3e31cfb539675f44f02c62cb7dd7266bb35d", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:03+00:00", + "size":16879, + "sha1":"f44f210ae562c8cf52305355279b2695fbd34a68", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.2", + "Bundle-Description":"async", + "Bundle-Name":"async" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:04+00:00", + "size":1576, + "sha1":"77739e60f995899ff7a06b10f37a85a8c6847b35", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:44+00:00", + "size":16879, + "sha1":"cfadba70f46142e328d769e37efe2b5ce47a6b7c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.1", + "Bundle-Description":"async", + "Bundle-Name":"async" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:46+00:00", + "size":1576, + "sha1":"5355c4c8a106b7dc9a0eb0c19a1e8599b19fba3b", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:02+00:00", + "size":17652, + "sha1":"75c2d00546e48a896daefd295d05533fd92de425", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.2", + "Bundle-Description":"async", + "Bundle-Name":"async" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:03+00:00", + "size":1576, + "sha1":"a114946226e509a40b9a32ccc1cc43e32f9c7e54", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:03+00:00", + "size":17653, + "sha1":"f5ed73bd121926b665a906e0c12c2576006d794c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{ + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.1", + "Bundle-Description":"async", + "Bundle-Name":"async" + }, + "classes":[] + }, + { + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:40:05+00:00", + "size":1576, + "sha1":"4709bce9ce75f8e1049c1c79d2b914fa3d34f776", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T18:00:09+00:00", + "size":182183, + "sha1":"4b8cd4f63b9a7e1f5e33c3dd6da5d568817d5781", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:00:16+00:00", + "size":94001, + "sha1":"2d2be8cb45354329b2d4ffa542cca9fbc5d204e5", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:29:52+00:00", + "size":181642, + "sha1":"295f8754aeb2871644f95218fd12a22b119dbf2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:29:59+00:00", + "size":93745, + "sha1":"cd2c29b4763d1189cd64c840953a327851a44c2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:28+00:00", + "size":162541, + "sha1":"54a4b6ab92c6ded7ac026e8848488c868326cc4a", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:32+00:00", + "size":94220, + "sha1":"cd836239d8006f613f9dd827bedcc8c39be97c42", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:33:27+00:00", + "size":179798, + "sha1":"b1efb7bb2be48a45bbe764f1e1e32e864ff44503", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:33:42+00:00", + "size":94045, + "sha1":"784a06cd225dc017cd470f42e1e41c52cb5f668d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:58+00:00", + "size":261248, + "sha1":"cf8cd658e0e63236d006b6427c0f916c77f1e182", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":339581, + "sha1":"9b21295813bd947a0931a50b27e0ffa0fbc4506d", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:54:24+00:00", + "size":4569, + "sha1":"7eb6a68ee07a8b3f6db326b83e42358df29549bf", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:54:22+00:00", + "size":4561, + "sha1":"6ac059907e786152d83849b19de3042c5182d58b", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:19:49+00:00", + "size":94809, + "sha1":"b459c0398f87625c2474a1004a01ffc22bb75898", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:19:50+00:00", + "size":46155, + "sha1":"dd8531228a3946282c25e460724db310991781b9", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:00:31+00:00", + "size":140519, + "sha1":"e964123e4a8dc9da33f7241b9b14c6500636e5ec", + "name":"zip4j", + "description":"zip4j library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:00:36+00:00", + "size":106470, + "sha1":"65e1d212f7d92f2f8ef5839667d1dd4ac83375ca", + "name":"zip4j", + "description":"zip4j library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:58:16+00:00", + "size":297334, + "sha1":"02e0be3264e8e750cbbffff2a764bb276a019a87", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:58:20+00:00", + "size":211398, + "sha1":"2364391bb37ef433a21e8cd099361eb827626c24", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:22:10+00:00", + "size":254004, + "sha1":"5e82a8ba62deef96ba4a80d8c9c96fd6a312f5ca", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:22:14+00:00", + "size":182973, + "sha1":"28fbbfe0da5f476a0cda39ae8b27f3ac460b26be", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T22:59:44+00:00", + "size":137832, + "sha1":"8a94836272bed887791df2b103748757b9e289a7", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T22:59:47+00:00", + "size":111685, + "sha1":"9a4fed602d63452d2a896cb9233630e0ebad6862", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:05:19+00:00", + "size":246294, + "sha1":"990fbb50014f3306c3f131483476c68c7a8acced", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:23+00:00", + "size":96763, + "sha1":"a803b44168a5428b1298523e1184cb809e6015ae", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:56:51+00:00", + "size":246253, + "sha1":"1c754425fef94da099f458c64357d91c5faa5255", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:01+00:00", + "size":96778, + "sha1":"f906f9ef776f7162bf58929a416cd7f2c8630794", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":169425, + "sha1":"a0bfc86dd6d60714a6f3d45d80ea6f488947b86c", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:51+00:00", + "size":39048, + "sha1":"019707898d84b680acd716dd6e30c74c5d052a2e", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-02T11:48:39+00:00", + "size":4672549, + "sha1":"b8c60d8f7f44360c12adf757c231f49e7e8e9b97", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:50:02+00:00", + "size":126537, + "sha1":"934f90070dc7ab44184870795494697a3ea97af3", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:15:59+00:00", + "size":4672537, + "sha1":"49709f9c575259de6e021ddbdfdb20a5c84a30ff", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:17:38+00:00", + "size":126537, + "sha1":"c6d93a6de0bc0aff6d03be54ee0e83f87bde09c2", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:44:10+00:00", + "size":4674082, + "sha1":"59ae893c3c2403a4d9c81ee0fbdd0510e7476ac7", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:45:45+00:00", + "size":126535, + "sha1":"7893da1a472ae51553c0400490d2c7c96b797bee", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:28:16+00:00", + "size":4647552, + "sha1":"e198347e134f8f80b1e420c0729c9da2f95b60a6", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:29:43+00:00", + "size":126512, + "sha1":"3f822f0ff12628cf7130fc4e8b861cb4c2c8f661", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:00:03+00:00", + "size":4762737, + "sha1":"7d1836107e75316c3b533a636007ca212b3b1802", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:01:31+00:00", + "size":126095, + "sha1":"e2fd602a911f1868179125175311c010dbd7e9ef", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:08:31+00:00", + "size":174913, + "sha1":"239f0e6a8e8353a933d552ce2ef3bf00957bdb34", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:08:28+00:00", + "size":117201, + "sha1":"e03691792ba7b6f8a9c09ec6af2a9d507712220c", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:44:28+00:00", + "size":28951, + "sha1":"0b2f55a8a04eadd5334f2bd35ba3d81787255c46", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:44:46+00:00", + "size":9958, + "sha1":"d2bb1226740e1fc95f7298395477e11b1350be73", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:43:43+00:00", + "size":28952, + "sha1":"28a8c2710ca7628ed9ec8fcc18548156a8bea5ef", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:43:45+00:00", + "size":9958, + "sha1":"324e61ffe0d067bda25b78f8452edc2e8681db71", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:40:46+00:00", + "size":10762, + "sha1":"24f06a0fedfcf6cb476c1f8d47d636ad1931fae4", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:40:52+00:00", + "size":4165, + "sha1":"15282f34bf340ea9dbf9aef2da69782ed840a689", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:49+00:00", + "size":85830, + "sha1":"e8365535ac24f57e414c969c08d1fe1cba33ab4d", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:50+00:00", + "size":56247, + "sha1":"de3054d25e5bfd4612a0ea4596b2ce2dc71bd025", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:37:20+00:00", + "size":8684, + "sha1":"8231b7dbbfd13facf36626cd381a9b1cfd7c7a47", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:37:35+00:00", + "size":4998, + "sha1":"e72686587daec0b8de676f2842eaf0b6520ed6e2", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:30+00:00", + "size":157341, + "sha1":"a5f9d1c9281cb8857ec6d5959911b8a4549180cb", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:31+00:00", + "size":44356, + "sha1":"ab3216113da6d20360d8d70f5b109a565b9a6788", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:13+00:00", + "size":233806, + "sha1":"90cd6023ca2c8b9b43da9c65baf515df1b8c0bb6", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:14+00:00", + "size":44356, + "sha1":"d2ac290f4112201778eff03ba1c00b7df78cfd2f", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:49:57+00:00", + "size":231008, + "sha1":"e162b0e9a74bc4c8e9bd5db3caffc6adbaf8f842", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:58+00:00", + "size":44356, + "sha1":"fea18b8fa894bed218772c9cac76265c4d3f49da", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:10+00:00", + "size":36728, + "sha1":"fbb0fa0682216fb9f5424cc44453518122ab8fe1", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":19026, + "sha1":"139b2a33e08274503bc6b13672dfb11641be26ad", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":18209666, + "sha1":"1106879361bc03319ff1d02eb4553895c2b5db52", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":616, + "sha1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:18:01+00:00", + "size":478640, + "sha1":"6935ced5a69bdd145fe0eda2d3a3b5240c7fc9a9", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:18:00+00:00", + "size":310474, + "sha1":"10b31f235edeb024757de440d70d338bb2d1e514", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:43:05+00:00", + "size":31421, + "sha1":"e861a89b05916191933ab36e477661271e18a73d", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:43:12+00:00", + "size":13243, + "sha1":"d52ff94bb5228cb3ab738fe5ecc08d1f9820772f", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:40:13+00:00", + "size":11461, + "sha1":"f463c9f1259af6af108714b9f0a164ce2d582f46", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:40:17+00:00", + "size":5623, + "sha1":"319600847c1a7afb84dfbc98e1ec408886b13584", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:26+00:00", + "size":2971, + "sha1":"a1af1f1d617d12b972496c74272292a65343183b", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:31+00:00", + "size":1558, + "sha1":"3227746f273ddfd49c384779f7aa46d9874a661a", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:07+00:00", + "size":17890, + "sha1":"7ea8d9a7ad2d06dc2090cb678d1cb3c3ad58d2d7", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:11+00:00", + "size":6444, + "sha1":"ec61a0762aaf58a527951f081559f59f399cefdf", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:54+00:00", + "size":64362, + "sha1":"df82e01fef59cc59fdd6275afdd9876ccae2cc4d", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:58+00:00", + "size":26707, + "sha1":"012cba759afee7a6053c6866d1685bac1adc7de8", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T12:39:00+00:00", + "size":180111, + "sha1":"ef788677b6579137ef279ce667d10ad08419f652", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T12:39:04+00:00", + "size":8527, + "sha1":"08da80595862416d30e30ecfb0c4382b01354c6e", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:58+00:00", + "size":321870, + "sha1":"b3934a8b32d6c299bcbf6c1226555dab378aa5d0", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:16:11+00:00", + "size":8527, + "sha1":"78e46b1f0e96f3350c2508eb83a8a2a67f2e1210", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:10:19+00:00", + "size":313278, + "sha1":"2573b36aeb2112f34b2a77474a1c4ea5d68b980b", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:10:22+00:00", + "size":8452, + "sha1":"0160d8bd9f5ab2779b15443247a5ff46e269d303", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:44+00:00", + "size":83668, + "sha1":"320b057dc16a04439468771704b73c93d71a61c4", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:49+00:00", + "size":5030, + "sha1":"d2bafe8cb15d56b547ae4bbc19ffc15cc5ebfd4b", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:08:13+00:00", + "size":11611, + "sha1":"d2b12ccae8e56d1b056a6058c9c2d2d5aa956705", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:08:19+00:00", + "size":6323, + "sha1":"35cc6c622e4365b7f6aee72da93db009d6f022d2", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:01+00:00", + "size":4159, + "sha1":"f9ddd32dab00d5cba377e3d13ff43223c5ec868f", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:47:59+00:00", + "size":1856, + "sha1":"0404e10de2edf31c332116f179fb2b65e93750a6", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:25:42+00:00", + "size":298715, + "sha1":"304b32bc34543aed6c86a40a1eeab81b70079324", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + }, + { + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:25:51+00:00", + "size":140642, + "sha1":"ebf83e009a58f65c16715d21ed9a3581f92cd89b", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "sha256":null, + "osgi":{}, + "classes":[] + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/expected_entries.json b/minecode_pipelines/tests/data/maven/index/increment/expected_entries.json new file mode 100644 index 00000000..9399ee76 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/expected_entries.json @@ -0,0 +1,15019 @@ +[ + { + "u":"uk.com.robust-it|cloning|1.9.5|NA", + "m":"1499002272153", + "i":"bundle|1498982255000|26402|1|1|1|jar", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"ed4e1fc30fe5df3e663deead1501ac4fa72c7d58", + "Bundle-SymbolicName":"uk.com.robust-it.cloning", + "Bundle-Version":"1.9.5", + "Export-Package":"com.rits.cloning;version=\"1.9.5\",com.rits.perspectives;version=\"1.9.5\";uses:=\"com.rits.cloning\"", + "Bundle-Description":"The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects do not have to implement the Cloneable interface. Effectively, this library can clone ANY Java object. It can be used i.e. in cache implementations, if you don't want the cached object to be modified or whenever you want to create a deep copy of an object.", + "Bundle-Name":"cloning", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0", + "Import-Package":"org.objenesis;version=\"[2.5,3)\"" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|sources|jar", + "m":"1499002272198", + "i":"jar|1498982257000|14766|2|2|1|jar", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"1d8339275d436e3a19c41e9145acc4860a75fb14" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|project|zip", + "m":"1499002272225", + "i":"zip|1498982262000|53818|2|2|1|zip", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"ee6a8e6fef0bb94aa6ef33b54d3153fa197f3c17" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|project|tar.gz", + "m":"1499002272240", + "i":"tar.gz|1498982261000|31300|2|2|1|tar.gz", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"78d6b1c58e84b28ff1669dfccf935b479b6a708c" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|project|tar.bz2", + "m":"1499002272253", + "i":"tar.bz2|1498982261000|27093|2|2|1|tar.bz2", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"0ed98226c9f25be9406d81b06dc99e67ed351177" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|javadoc|jar", + "m":"1499002272267", + "i":"jar|1498982258000|120898|2|2|1|jar", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"a6fb4940a699c13420e50fb2c87591e8f271dcd4" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|dist|zip", + "m":"1499002272294", + "i":"zip|1498982260000|785244|2|2|1|zip", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"de4c8ceb1918b9f6afa53dd60713fb242b48fa55" + }, + { + "u":"uk.com.robust-it|cloning|1.9.5|dist|tar.gz", + "m":"1499002272308", + "i":"tar.gz|1498982259000|684767|2|2|1|tar.gz", + "n":"cloning", + "d":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "1":"bde07d607a95b9e00ff102bda33d533abc1238d3" + }, + { + "u":"su.litvak.chromecast|api-v2|0.10.1|NA", + "m":"1499002418511", + "i":"jar|1498984144000|128889|1|1|1|jar", + "n":"ChromeCast Java API v2", + "d":"Java implementation of ChromeCast V2 protocol client", + "1":"015cf02919fed76b6d44e133d3cd33d8448104d8", + "Bundle-SymbolicName":"su.litvak.chromecast.api-v2", + "Bundle-Version":"0.10.1", + "Export-Package":"su.litvak.chromecast.api.v2;uses:=\"com.google.protobuf,org.codehaus.jackson.annotate,org.codehaus.jackson.map.annotate\";version=\"0.10.1\"", + "Bundle-Description":"Java implementation of ChromeCast V2 protocol client", + "Bundle-Name":"ChromeCast Java API v2", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Import-Package":"com.google.protobuf;version=\"[2.5,3)\",javax.jmdns;version=\"[3.4,4)\",javax.net.ssl,org.codehaus.jackson;version=\"[1.9,2)\",org.codehaus.jackson.annotate;version=\"[1.9,2)\",org.codehaus.jackson.map;version=\"[1.9,2)\",org.codehaus.jackson.map.annotate;version=\"[1.9,2)\",org.slf4j;version=\"[1.8,2)\"" + }, + { + "u":"su.litvak.chromecast|api-v2|0.10.1|sources|jar", + "m":"1499002418545", + "i":"jar|1498984147000|56160|2|2|1|jar", + "n":"ChromeCast Java API v2", + "d":"Java implementation of ChromeCast V2 protocol client", + "1":"a1ca8d589d8e2474ffe091df3533db93f9f9023b" + }, + { + "u":"su.litvak.chromecast|api-v2|0.10.1|javadoc|jar", + "m":"1499002418573", + "i":"jar|1498984148000|165765|2|2|1|jar", + "n":"ChromeCast Java API v2", + "d":"Java implementation of ChromeCast V2 protocol client", + "1":"2b963f026adc007a55d4e573753ab795dd2fb348" + }, + { + "u":"pl.newicom.dddd|view-update_2.12|1.6.1|NA", + "m":"1499002808896", + "i":"jar|1498993062000|40057|1|1|1|jar", + "n":"view-update", + "d":"view-update", + "1":"d08e451a8cb54c6f01051b5c531eddf6f2515387" + }, + { + "u":"pl.newicom.dddd|view-update_2.12|1.6.1|sources|jar", + "m":"1499002808922", + "i":"jar|1498993061000|3888|2|2|1|jar", + "n":"view-update", + "d":"view-update", + "1":"692580d3963f34c9b056724f8a967c2a98996891" + }, + { + "u":"pl.newicom.dddd|view-update_2.12|1.6.1|javadoc|jar", + "m":"1499002808942", + "i":"jar|1498993064000|709039|2|2|1|jar", + "n":"view-update", + "d":"view-update", + "1":"253b1283fad38771043b2078ae3aea0f08e64b98" + }, + { + "u":"pl.newicom.dddd|view-update_2.11|1.6.1|NA", + "m":"1499002809049", + "i":"jar|1498993105000|45287|1|1|1|jar", + "n":"view-update", + "d":"view-update", + "1":"4596f3be51938fe0e46a8c1ee35365e873ac9f30" + }, + { + "u":"pl.newicom.dddd|view-update_2.11|1.6.1|sources|jar", + "m":"1499002809079", + "i":"jar|1498993104000|3888|2|2|1|jar", + "n":"view-update", + "d":"view-update", + "1":"50395ad6d68ff0b383c710f0a20a3d3f50419190" + }, + { + "u":"pl.newicom.dddd|view-update_2.11|1.6.1|javadoc|jar", + "m":"1499002809098", + "i":"jar|1498993107000|413095|2|2|1|jar", + "n":"view-update", + "d":"view-update", + "1":"045ebaa0e138b50274bf1df8354242f337f41ac1" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.12|1.6.1|NA", + "m":"1499002809472", + "i":"jar|1498993073000|39470|1|1|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"ec127d1451280f9c80fb3682a123418b9a637966" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.12|1.6.1|sources|jar", + "m":"1499002809497", + "i":"jar|1498993074000|5402|2|2|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"210a54990568740a462384796c87c776c19faac3" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.12|1.6.1|javadoc|jar", + "m":"1499002809522", + "i":"jar|1498993071000|701583|2|2|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"8acd48e12587813a33b22a419593ffa92d69c054" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.11|1.6.1|NA", + "m":"1499002809832", + "i":"jar|1498993185000|56385|1|1|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"66dd6cc38d12fa27b01536d2aa33c1e5dacf10fa" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.11|1.6.1|sources|jar", + "m":"1499002809860", + "i":"jar|1498993186000|5402|2|2|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"2ab00bd801f7f82c599c99b5b424e65612ba8495" + }, + { + "u":"pl.newicom.dddd|view-update-sql_2.11|1.6.1|javadoc|jar", + "m":"1499002809882", + "i":"jar|1498993183000|406841|2|2|1|jar", + "n":"view-update-sql", + "d":"view-update-sql", + "1":"6cccd291f71809d0af333e3104fca2923fb8bb36" + }, + { + "u":"pl.newicom.dddd|http-support_2.12|1.6.1|NA", + "m":"1499002810257", + "i":"jar|1498993023000|26679|1|1|1|jar", + "n":"http-support", + "d":"http-support", + "1":"31877779190ab6bf8edfac489739957a97db577b" + }, + { + "u":"pl.newicom.dddd|http-support_2.12|1.6.1|sources|jar", + "m":"1499002810284", + "i":"jar|1498993024000|2341|2|2|1|jar", + "n":"http-support", + "d":"http-support", + "1":"3f307f0f1a76140e88efe4e6558f3674b5ae3973" + }, + { + "u":"pl.newicom.dddd|http-support_2.12|1.6.1|javadoc|jar", + "m":"1499002810303", + "i":"jar|1498993027000|684522|2|2|1|jar", + "n":"http-support", + "d":"http-support", + "1":"e191b3de77c44586f18dd0170161e2a5b987bba3" + }, + { + "u":"pl.newicom.dddd|http-support_2.11|1.6.1|NA", + "m":"1499002810415", + "i":"jar|1498993165000|27990|1|1|1|jar", + "n":"http-support", + "d":"http-support", + "1":"e16346bd99aa731b2fe50de6a86b46cccc8e2db6" + }, + { + "u":"pl.newicom.dddd|http-support_2.11|1.6.1|sources|jar", + "m":"1499002810448", + "i":"jar|1498993166000|2341|2|2|1|jar", + "n":"http-support", + "d":"http-support", + "1":"39d89bf8ef7b5c8a145b49a1e7ae84ffb8eb50a0" + }, + { + "u":"pl.newicom.dddd|http-support_2.11|1.6.1|javadoc|jar", + "m":"1499002810469", + "i":"jar|1498993168000|391011|2|2|1|jar", + "n":"http-support", + "d":"http-support", + "1":"bf17a757ab205d519e358b7199d76f9ed0ff283d" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.12|1.6.1|NA", + "m":"1499002810944", + "i":"jar|1498993050000|70465|1|1|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"c177235bac41d55c6449b1677ea30414b2becd93" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.12|1.6.1|sources|jar", + "m":"1499002810972", + "i":"jar|1498993048000|8825|2|2|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"384520bafa9f5b07ecf095eaa743ad4e0d488545" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.12|1.6.1|javadoc|jar", + "m":"1499002810994", + "i":"jar|1498993047000|717369|2|2|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"13c16aaa47f2182642d2345df503131d4be47dea" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.11|1.6.1|NA", + "m":"1499002811104", + "i":"jar|1498993139000|82817|1|1|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"f4f85308327a833c1ce5c4c23e37c04d461b54c7" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.11|1.6.1|sources|jar", + "m":"1499002811133", + "i":"jar|1498993130000|8825|2|2|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"214a57b83558247b05885d42833e082055d88e6f" + }, + { + "u":"pl.newicom.dddd|eventstore-akka-persistence_2.11|1.6.1|javadoc|jar", + "m":"1499002811157", + "i":"jar|1498993128000|419773|2|2|1|jar", + "n":"eventstore-akka-persistence", + "d":"eventstore-akka-persistence", + "1":"b8cf8c5e99e5186efd43d69b546a85cd526d8432" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|NA", + "m":"1499002811588", + "i":"jar|1498993057000|21924|1|1|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"cb3d35fe78c211b7d513ad3d7756c5f8e8cb7795" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|tests|jar", + "m":"1499002811615", + "i":"jar|1498993057000|318|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"1fc47db02cd8cd5f1326452bce25651df215ac3e" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|tests-sources|jar", + "m":"1499002811633", + "i":"jar|1498993053000|259|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"bb1939c56dea3910470f4bcee0abc976d51b8b5d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|tests-javadoc|jar", + "m":"1499002811653", + "i":"jar|1498993052000|189|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"6ca4441053020024160d144734c33c3cb591fa1d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|sources|jar", + "m":"1499002811672", + "i":"jar|1498993053000|3373|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"33b96779499a790144c69e94e17f45acbbe9d05c" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.12|1.6.1|javadoc|jar", + "m":"1499002811691", + "i":"jar|1498993055000|694251|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"bf08f8fee8fdaecf71e977450c4a4c90f976b815" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|NA", + "m":"1499002811809", + "i":"jar|1498993160000|35539|1|1|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"5f66f89b5a7a57a5cbe7151d429ef32b110e071d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|tests|jar", + "m":"1499002811836", + "i":"jar|1498993161000|318|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"35016a0ec3ae1c6cd4b4300814baf9f7570dc671" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|tests-sources|jar", + "m":"1499002811854", + "i":"jar|1498993153000|259|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"c165f3e78af9f20e0a52aebae2dc8ff5de20467c" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|tests-javadoc|jar", + "m":"1499002811873", + "i":"jar|1498993145000|189|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"23844d4401b02c9eaeae6792a5d8aed24c610358" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|sources|jar", + "m":"1499002811892", + "i":"jar|1498993149000|3373|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"1d75d62f11c4b23709a8b45bc5946a94d72d2bab" + }, + { + "u":"pl.newicom.dddd|akka-ddd-write-front_2.11|1.6.1|javadoc|jar", + "m":"1499002811911", + "i":"jar|1498993158000|398758|2|2|1|jar", + "n":"akka-ddd-write-front", + "d":"akka-ddd-write-front", + "1":"b9b67b1f0f41a5e3a0463f882a3d71915f3186e8" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.12|1.6.1|NA", + "m":"1499002812334", + "i":"jar|1498993077000|103795|1|1|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"872762183561e05e688dc5819b32c149458847a4" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.12|1.6.1|sources|jar", + "m":"1499002812362", + "i":"jar|1498993080000|9867|2|2|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"ecf05354d5cc02463308296f32d4797351259b63" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.12|1.6.1|javadoc|jar", + "m":"1499002812384", + "i":"jar|1498993080000|823838|2|2|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"947a8dc24a9e258dcf9f9c0f36cc4c57cf93e05e" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.11|1.6.1|NA", + "m":"1499002812492", + "i":"jar|1498993171000|126866|1|1|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"fb5a69c23c9a9107c279d1b138ab75c6ebb2a4dc" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.11|1.6.1|sources|jar", + "m":"1499002812520", + "i":"jar|1498993173000|9867|2|2|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"938a6ec022c4d7cc0a523174e1c6a8b760ef13ee" + }, + { + "u":"pl.newicom.dddd|akka-ddd-test_2.11|1.6.1|javadoc|jar", + "m":"1499002812545", + "i":"jar|1498993173000|498867|2|2|1|jar", + "n":"akka-ddd-test", + "d":"akka-ddd-test", + "1":"855cd275da97855f55a1926cc92cd6c9ef86772d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.12|1.6.1|NA", + "m":"1499002812948", + "i":"jar|1498993069000|18135|1|1|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"6f8dffd475762a2b93dd310a27fdfaaefa4c7520" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.12|1.6.1|sources|jar", + "m":"1499002812976", + "i":"jar|1498993070000|3431|2|2|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"f51ec1abf22f0f7a3f30448f9641260ebb128095" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.12|1.6.1|javadoc|jar", + "m":"1499002812995", + "i":"jar|1498993068000|667250|2|2|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"521e071ace65c4c5681afb5fd082496ed7457636" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.11|1.6.1|NA", + "m":"1499002813102", + "i":"jar|1498993117000|18443|1|1|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"d05f6810d6290c7be0393616b3523297128f0f19" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.11|1.6.1|sources|jar", + "m":"1499002813133", + "i":"jar|1498993118000|3431|2|2|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"6ad85fc6eea52f8a1e82c6cac737af825d1c7508" + }, + { + "u":"pl.newicom.dddd|akka-ddd-scheduling_2.11|1.6.1|javadoc|jar", + "m":"1499002813151", + "i":"jar|1498993115000|377884|2|2|1|jar", + "n":"akka-ddd-scheduling", + "d":"akka-ddd-scheduling", + "1":"c06ccd1d830ff7eb82099db477407e25c07b59e9" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.12|1.6.1|NA", + "m":"1499002813526", + "i":"jar|1498993036000|112994|1|1|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"93b40f35291ba917fb653d1887b7cdf3e93168a7" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.12|1.6.1|sources|jar", + "m":"1499002813568", + "i":"jar|1498993035000|14550|2|2|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"bb2a2f22a62aba6da42e80e8d1e1df37bd9cebca" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.12|1.6.1|javadoc|jar", + "m":"1499002813592", + "i":"jar|1498993039000|859960|2|2|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"a5733adf02be8670452721dc14d2273585153b5f" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.11|1.6.1|NA", + "m":"1499002813667", + "i":"jar|1498993111000|128041|1|1|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"1c2f14f715fb7c2aa89f645e63c4c6d6ed3eb0d2" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.11|1.6.1|sources|jar", + "m":"1499002813695", + "i":"jar|1498993110000|14550|2|2|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"9dd3f88439219f94363467ef8a773d084afbe69f" + }, + { + "u":"pl.newicom.dddd|akka-ddd-protocol_2.11|1.6.1|javadoc|jar", + "m":"1499002813718", + "i":"jar|1498993113000|534759|2|2|1|jar", + "n":"akka-ddd-protocol", + "d":"akka-ddd-protocol", + "1":"45d846053e2cc2878cc0e47e012f4eb5f114daab" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.12|1.6.1|NA", + "m":"1499002813798", + "i":"jar|1498993030000|18642|1|1|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"be15daf3261cce15e010a5cbc706bab84025b208" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.12|1.6.1|sources|jar", + "m":"1499002813824", + "i":"jar|1498993033000|3881|2|2|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"da1b18ebfb145fbf4ab3393b3e90b381584f455f" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.12|1.6.1|javadoc|jar", + "m":"1499002813842", + "i":"jar|1498993032000|661979|2|2|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"0f58a0876c6b3e4e16b289639504b4ccec779eff" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.11|1.6.1|NA", + "m":"1499002813948", + "i":"jar|1498993142000|25100|1|1|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"2ad5805fb990a94bda1f18c538058e988d4fd2fc" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.11|1.6.1|sources|jar", + "m":"1499002813974", + "i":"jar|1498993144000|3881|2|2|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"248dc272046a2d9a002ebfa2a3c3dd1e9c9cc12a" + }, + { + "u":"pl.newicom.dddd|akka-ddd-monitoring_2.11|1.6.1|javadoc|jar", + "m":"1499002813992", + "i":"jar|1498993143000|374719|2|2|1|jar", + "n":"akka-ddd-monitoring", + "d":"akka-ddd-monitoring", + "1":"b8aba7710efb2e9bf55fd899c284e271a6c0ccda" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.12|1.6.1|NA", + "m":"1499002814244", + "i":"jar|1498993044000|104163|1|1|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"80236c93ab0287d33667dbdd50db9d61d90c0322" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.12|1.6.1|sources|jar", + "m":"1499002814272", + "i":"jar|1498993045000|9439|2|2|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"d5bbf0620d479a62f06b7243535a268d347c7288" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.12|1.6.1|javadoc|jar", + "m":"1499002814294", + "i":"jar|1498993042000|804507|2|2|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"b66beebe573f1a23a1b677fef799bbf94f6ac332" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.11|1.6.1|NA", + "m":"1499002814405", + "i":"jar|1498993123000|107085|1|1|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"8384efe58606dd533d32b5a313fc623526f4b050" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.11|1.6.1|sources|jar", + "m":"1499002814435", + "i":"jar|1498993125000|9439|2|2|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"3027da7063ff492a47c9ed9a5781a12690740c6a" + }, + { + "u":"pl.newicom.dddd|akka-ddd-messaging_2.11|1.6.1|javadoc|jar", + "m":"1499002814459", + "i":"jar|1498993121000|488863|2|2|1|jar", + "n":"akka-ddd-messaging", + "d":"akka-ddd-messaging", + "1":"e1d93b6686e46ba55170f9fab1458068f6a4b99d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|NA", + "m":"1499002814838", + "i":"jar|1498993086000|235126|1|1|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"7ac0ac440cf223603e33b7705c73694977724817" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|tests|jar", + "m":"1499002814868", + "i":"jar|1498993085000|314|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"22e84c56ad5e872279791113b19feb16f23dc4a9" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|tests-sources|jar", + "m":"1499002814885", + "i":"jar|1498993086000|252|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"6838de84e5aa6c5c1aa290da42b7abdc1688606d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|tests-javadoc|jar", + "m":"1499002814904", + "i":"jar|1498993087000|189|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"6ca4441053020024160d144734c33c3cb591fa1d" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|sources|jar", + "m":"1499002814923", + "i":"jar|1498993089000|25717|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"9e297d2857da80411c2a71d3f6434b166a99a0b0" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.12|1.6.1|javadoc|jar", + "m":"1499002814948", + "i":"jar|1498993085000|1040420|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"ed0b58bcb888b59931ae28bf7e0ff5913ee282e8" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|NA", + "m":"1499002815072", + "i":"jar|1498993179000|276970|1|1|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"1320eaf6635ec5c7ed2763e926fa07a0b5566804" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|tests|jar", + "m":"1499002815103", + "i":"jar|1498993177000|314|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"68c2f4af35356ca2dbcdb39ffc421009b6495baf" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|tests-sources|jar", + "m":"1499002815121", + "i":"jar|1498993178000|252|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"92ed887437c9c5345670dc47a46a4cad23c49351" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|tests-javadoc|jar", + "m":"1499002815139", + "i":"jar|1498993180000|189|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"fbdcbfc21c5eea2a37ddc64d69b8a924b8782204" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|sources|jar", + "m":"1499002815157", + "i":"jar|1498993182000|25717|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"e0839afa82cfe289d43f5463cc43255962be7bf9" + }, + { + "u":"pl.newicom.dddd|akka-ddd-core_2.11|1.6.1|javadoc|jar", + "m":"1499002815181", + "i":"jar|1498993177000|671954|2|2|1|jar", + "n":"akka-ddd-core", + "d":"akka-ddd-core", + "1":"f86d358171690cf2619d5bb729e4ac2b3cd3a9de" + }, + { + "u":"org.wildfly.security|wildfly-elytron-tool|1.0.0.CR2|NA", + "m":"1499003852637", + "i":"jar|1498988901000|2231830|1|0|0|jar", + "n":"WildFly Elytron Tool", + "d":"Set of tools for WildFly Elytron", + "1":"4e5805ee9f296f18d4a7cbaaee2091a8eeb69e5b" + }, + { + "u":"org.wildfly.security|wildfly-elytron-tool|1.0.0.CR2|sources|jar", + "m":"1499003852705", + "i":"jar|1498988907000|30728|2|2|0|jar", + "n":"WildFly Elytron Tool", + "d":"Set of tools for WildFly Elytron", + "1":"476945b335cfa0c672992a9eee26c631caf49c6a" + }, + { + "u":"org.wildfly.security|wildfly-elytron|1.1.0.CR2|NA", + "m":"1499003852940", + "i":"jar|1498988574000|1966327|1|0|0|jar", + "n":"WildFly Elytron", + "d":"WildFly Security SPIs", + "1":"22c4c6e4f444f7da61db8f7f825039e0f73a6cf9" + }, + { + "u":"org.wildfly.security|wildfly-elytron|1.1.0.CR2|sources|jar", + "m":"1499003853000", + "i":"jar|1498988581000|1379990|2|2|0|jar", + "n":"WildFly Elytron", + "d":"WildFly Security SPIs", + "1":"10cd83d0bfe61a204da486410dbda8bc6740067f" + }, + { + "u":"org.webpieces|webserver-plugins|1.9.83|NA", + "m":"1499004438691", + "i":"jar|1498965406000|359|1|1|1|jar", + "n":"webserver-plugins", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd" + }, + { + "u":"org.webpieces|webserver-plugins|1.9.83|sources|jar", + "m":"1499004438718", + "i":"jar|1498965409000|359|2|2|1|jar", + "n":"webserver-plugins", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd" + }, + { + "u":"org.webpieces|webserver-plugins|1.9.83|javadoc|jar", + "m":"1499004438752", + "i":"jar|1498965411000|359|2|2|1|jar", + "n":"webserver-plugins", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd" + }, + { + "u":"org.webpieces|webserver|1.9.83|NA", + "m":"1499004439644", + "i":"jar|1498965399000|350|1|1|1|jar", + "n":"webserver", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678" + }, + { + "u":"org.webpieces|webserver|1.9.83|sources|jar", + "m":"1499004439669", + "i":"jar|1498965402000|350|2|2|1|jar", + "n":"webserver", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678" + }, + { + "u":"org.webpieces|webserver|1.9.83|javadoc|jar", + "m":"1499004439692", + "i":"jar|1498965403000|350|2|2|1|jar", + "n":"webserver", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678" + }, + { + "u":"org.webpieces|webpiecesServerBuilder|1.9.83|NA", + "m":"1499004440870", + "i":"jar|1498965684000|361|1|1|1|jar", + "n":"webpiecesServerBuilder", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4" + }, + { + "u":"org.webpieces|webpiecesServerBuilder|1.9.83|sources|jar", + "m":"1499004440897", + "i":"jar|1498965688000|361|2|2|1|jar", + "n":"webpiecesServerBuilder", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4" + }, + { + "u":"org.webpieces|webpiecesServerBuilder|1.9.83|javadoc|jar", + "m":"1499004440918", + "i":"jar|1498965688000|361|2|2|1|jar", + "n":"webpiecesServerBuilder", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4" + }, + { + "u":"org.webpieces|templateProject|1.9.83|NA", + "m":"1499004442216", + "i":"jar|1498965691000|355|1|1|1|jar", + "n":"templateProject", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c" + }, + { + "u":"org.webpieces|templateProject|1.9.83|sources|jar", + "m":"1499004442242", + "i":"jar|1498965692000|355|2|2|1|jar", + "n":"templateProject", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c" + }, + { + "u":"org.webpieces|templateProject|1.9.83|javadoc|jar", + "m":"1499004442263", + "i":"jar|1498965695000|355|2|2|1|jar", + "n":"templateProject", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c" + }, + { + "u":"org.webpieces|runtimecompile|1.9.83|NA", + "m":"1499004443592", + "i":"jar|1498965485000|37827|1|1|1|jar", + "n":"runtimecompile", + "d":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "1":"7212a2f595012404511f7bdd588a89858f97c36e" + }, + { + "u":"org.webpieces|runtimecompile|1.9.83|sources|jar", + "m":"1499004443628", + "i":"jar|1498965488000|18343|2|2|1|jar", + "n":"runtimecompile", + "d":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "1":"ea527e744ee235fa2a07f8fb1af970a2e27e87d9" + }, + { + "u":"org.webpieces|runtimecompile|1.9.83|javadoc|jar", + "m":"1499004443654", + "i":"jar|1498965489000|356|2|2|1|jar", + "n":"runtimecompile", + "d":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "1":"e6e29c5e1a4e4c1fafc8d2ad18b61310cb7f3466" + }, + { + "u":"org.webpieces|projectcreator|1.9.83|NA", + "m":"1499004444964", + "i":"jar|1498965675000|7883|1|1|1|jar", + "n":"projectcreator", + "d":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "1":"defb07accd7aa9410a8124fc807b2bc010b40a79" + }, + { + "u":"org.webpieces|projectcreator|1.9.83|sources|jar", + "m":"1499004444994", + "i":"jar|1498965680000|4684|2|2|1|jar", + "n":"projectcreator", + "d":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "1":"167feeda2af5ee7fd4048d526b081aa781673edb" + }, + { + "u":"org.webpieces|projectcreator|1.9.83|javadoc|jar", + "m":"1499004445021", + "i":"jar|1498965681000|356|2|2|1|jar", + "n":"projectcreator", + "d":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "1":"daf8877aa5d799a02d7f4a85f32ffba2e6ffbff7" + }, + { + "u":"org.webpieces|json-jackson-plugin|1.9.83|NA", + "m":"1499004446936", + "i":"jar|1498965597000|9124|1|1|1|jar", + "n":"json-jackson-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"a3bfe5df502af598ef772765bddd7d044d92ee5c" + }, + { + "u":"org.webpieces|json-jackson-plugin|1.9.83|sources|jar", + "m":"1499004446966", + "i":"jar|1498965600000|5264|2|2|1|jar", + "n":"json-jackson-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"16cbcaea37f11289d3a94257a529e9a7e0a111f8" + }, + { + "u":"org.webpieces|json-jackson-plugin|1.9.83|javadoc|jar", + "m":"1499004446992", + "i":"jar|1498965598000|357|2|2|1|jar", + "n":"json-jackson-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"b18f5f1223d83676a97a95c4d9962ccf0917ae83" + }, + { + "u":"org.webpieces|http2to1_1-client|1.9.83|NA", + "m":"1499004447395", + "i":"jar|1498965570000|10045|1|1|1|jar", + "n":"http2to1_1-client", + "d":"An http client", + "1":"4b9797c7f8638ce8fc1b5e1cb0207f56490caec5" + }, + { + "u":"org.webpieces|http2to1_1-client|1.9.83|sources|jar", + "m":"1499004447427", + "i":"jar|1498965572000|4592|2|2|1|jar", + "n":"http2to1_1-client", + "d":"An http client", + "1":"b78974acf9b26c1bff0ce931d385751a0955b7e4" + }, + { + "u":"org.webpieces|http2to1_1-client|1.9.83|javadoc|jar", + "m":"1499004447453", + "i":"jar|1498965575000|357|2|2|1|jar", + "n":"http2to1_1-client", + "d":"An http client", + "1":"3c700dba934813461e66d69ac14f48957ef88ed9" + }, + { + "u":"org.webpieces|http2-translations|1.9.83|NA", + "m":"1499004447699", + "i":"jar|1498965563000|7484|1|1|1|jar", + "n":"http2-translations", + "d":"Translations from http1_1 to http2 and back", + "1":"308ce202815849b05d162089b8836b521f10fc71" + }, + { + "u":"org.webpieces|http2-translations|1.9.83|sources|jar", + "m":"1499004447730", + "i":"jar|1498965565000|4091|2|2|1|jar", + "n":"http2-translations", + "d":"Translations from http1_1 to http2 and back", + "1":"b04d42609ad28a965d8f566a0a23ba81fbcfaea6" + }, + { + "u":"org.webpieces|http2-translations|1.9.83|javadoc|jar", + "m":"1499004447752", + "i":"jar|1498965566000|356|2|2|1|jar", + "n":"http2-translations", + "d":"Translations from http1_1 to http2 and back", + "1":"61e0645f55308ea030b161f64f8f2543268d531f" + }, + { + "u":"org.webpieces|http2-parser|1.9.83|NA", + "m":"1499004447992", + "i":"jar|1498965555000|82338|1|1|1|jar", + "n":"http2-parser", + "d":"A re-usable asynchronous http2 parser", + "1":"10f6ef42d83c643dcfd07ebb6ebb17d87a45224c" + }, + { + "u":"org.webpieces|http2-parser|1.9.83|sources|jar", + "m":"1499004448025", + "i":"jar|1498965557000|44424|2|2|1|jar", + "n":"http2-parser", + "d":"A re-usable asynchronous http2 parser", + "1":"0e3b3b25fbcc11ffef71aaaf57a164d39ea97861" + }, + { + "u":"org.webpieces|http2-parser|1.9.83|javadoc|jar", + "m":"1499004448052", + "i":"jar|1498965556000|354|2|2|1|jar", + "n":"http2-parser", + "d":"A re-usable asynchronous http2 parser", + "1":"acfd61c4c469efb5e345cb38312f4158aae2da75" + }, + { + "u":"org.webpieces|http2-hpack|1.9.83|NA", + "m":"1499004448941", + "i":"jar|1498965547000|36389|1|1|1|jar", + "n":"http2-hpack", + "d":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "1":"7c305dbc51ac9a16188f0b8ec530f11a5e3b96f7" + }, + { + "u":"org.webpieces|http2-hpack|1.9.83|sources|jar", + "m":"1499004448974", + "i":"jar|1498965550000|20645|2|2|1|jar", + "n":"http2-hpack", + "d":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "1":"030cff8b79b112b7adfced1512d9cdfee9faca97" + }, + { + "u":"org.webpieces|http2-hpack|1.9.83|javadoc|jar", + "m":"1499004449002", + "i":"jar|1498965549000|352|2|2|1|jar", + "n":"http2-hpack", + "d":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "1":"c86f961e1afa47f23c1c2198ea08bff78e8de8e1" + }, + { + "u":"org.webpieces|http2-engine|1.9.83|NA", + "m":"1499004449774", + "i":"jar|1498965540000|114250|1|1|1|jar", + "n":"http2-engine", + "d":"A re-usable asynchronous http2 parser", + "1":"83301f2f15b479a7d69588b27b3634de9cc7e6dd" + }, + { + "u":"org.webpieces|http2-engine|1.9.83|sources|jar", + "m":"1499004449807", + "i":"jar|1498965542000|60221|2|2|1|jar", + "n":"http2-engine", + "d":"A re-usable asynchronous http2 parser", + "1":"4d0e1498a8cd7ca095b21b124f47d6972fb64a8b" + }, + { + "u":"org.webpieces|http2-engine|1.9.83|javadoc|jar", + "m":"1499004449840", + "i":"jar|1498965541000|354|2|2|1|jar", + "n":"http2-engine", + "d":"A re-usable asynchronous http2 parser", + "1":"65ef57f231b37ef809eecd04d26acd84c1cf95fd" + }, + { + "u":"org.webpieces|http2-client|1.9.83|NA", + "m":"1499004450591", + "i":"jar|1498965532000|17078|1|1|1|jar", + "n":"http2-client", + "d":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "1":"62a3f6789bf7fbcf5bc615e686fdabd087eb43f3" + }, + { + "u":"org.webpieces|http2-client|1.9.83|sources|jar", + "m":"1499004450621", + "i":"jar|1498965533000|10577|2|2|1|jar", + "n":"http2-client", + "d":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "1":"45c3e8ac90817f69a7cb5dc93eb30e824e3bc432" + }, + { + "u":"org.webpieces|http2-client|1.9.83|javadoc|jar", + "m":"1499004450646", + "i":"jar|1498965536000|352|2|2|1|jar", + "n":"http2-client", + "d":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "1":"af92010b100c5b0f3155bfe33ca2f3687711f180" + }, + { + "u":"org.webpieces|http1_1-parser|1.9.83|NA", + "m":"1499004451397", + "i":"jar|1498965524000|65561|1|1|1|jar", + "n":"http1_1-parser", + "d":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "1":"e12ea5cd01d448021ba298397e038773228fc1f2" + }, + { + "u":"org.webpieces|http1_1-parser|1.9.83|sources|jar", + "m":"1499004451430", + "i":"jar|1498965527000|37017|2|2|1|jar", + "n":"http1_1-parser", + "d":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "1":"a1e868d5706ddf881760a6bdf11a4246e2986207" + }, + { + "u":"org.webpieces|http1_1-parser|1.9.83|javadoc|jar", + "m":"1499004451457", + "i":"jar|1498965526000|356|2|2|1|jar", + "n":"http1_1-parser", + "d":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "1":"12d563322d3dd8540b895d46721c1297f5d787ed" + }, + { + "u":"org.webpieces|http1_1-client|1.9.83|NA", + "m":"1499004452395", + "i":"jar|1498965517000|22492|1|1|1|jar", + "n":"http1_1-client", + "d":"An http client", + "1":"a952687116943b46dbd054ebde81e95404aab621" + }, + { + "u":"org.webpieces|http1_1-client|1.9.83|sources|jar", + "m":"1499004452425", + "i":"jar|1498965521000|10915|2|2|1|jar", + "n":"http1_1-client", + "d":"An http client", + "1":"35dffc6f854c29c70837251f0c39ff094a8a74c3" + }, + { + "u":"org.webpieces|http1_1-client|1.9.83|javadoc|jar", + "m":"1499004452451", + "i":"jar|1498965519000|354|2|2|1|jar", + "n":"http1_1-client", + "d":"An http client", + "1":"f69fd46ab797a98e8ba8128ee196a36703858e52" + }, + { + "u":"org.webpieces|http-webserver-test|1.9.83|NA", + "m":"1499004453202", + "i":"jar|1498965666000|17236|1|1|1|jar", + "n":"http-webserver-test", + "d":"The full webpieces server AS A library", + "1":"33d6b56b43ecede32018fe239f62bb89eb01f63f" + }, + { + "u":"org.webpieces|http-webserver-test|1.9.83|sources|jar", + "m":"1499004453243", + "i":"jar|1498965669000|10899|2|2|1|jar", + "n":"http-webserver-test", + "d":"The full webpieces server AS A library", + "1":"fc43909597eec87d02d49b32a645a52f9e6db035" + }, + { + "u":"org.webpieces|http-webserver-test|1.9.83|javadoc|jar", + "m":"1499004453270", + "i":"jar|1498965668000|359|2|2|1|jar", + "n":"http-webserver-test", + "d":"The full webpieces server AS A library", + "1":"e39848db765accc1a5d9200128581c88dccdc751" + }, + { + "u":"org.webpieces|http-webserver|1.9.83|NA", + "m":"1499004454581", + "i":"jar|1498965658000|57989|1|1|1|jar", + "n":"http-webserver", + "d":"The full webpieces server AS A library", + "1":"bdb4fd9e9f3c1133a0c6e91975ed5d35b028dce4" + }, + { + "u":"org.webpieces|http-webserver|1.9.83|sources|jar", + "m":"1499004454611", + "i":"jar|1498965661000|30513|2|2|1|jar", + "n":"http-webserver", + "d":"The full webpieces server AS A library", + "1":"55f0b0e77ef733f7b88a694d363c37d43a25fe72" + }, + { + "u":"org.webpieces|http-webserver|1.9.83|javadoc|jar", + "m":"1499004454639", + "i":"jar|1498965662000|356|2|2|1|jar", + "n":"http-webserver", + "d":"The full webpieces server AS A library", + "1":"b17b0af0be9d3050d83c6aa6ab165d6d51f71446" + }, + { + "u":"org.webpieces|http-templating-dev|1.9.83|NA", + "m":"1499004455946", + "i":"jar|1498965648000|50182|1|1|1|jar", + "n":"http-templating-dev", + "d":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "1":"664114861723e0e9ff74c65ac60353d3c6a46169" + }, + { + "u":"org.webpieces|http-templating-dev|1.9.83|sources|jar", + "m":"1499004455978", + "i":"jar|1498965652000|30057|2|2|1|jar", + "n":"http-templating-dev", + "d":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "1":"5665817c2fbe54e0be46a7c16c88b55c7ab9f4bf" + }, + { + "u":"org.webpieces|http-templating-dev|1.9.83|javadoc|jar", + "m":"1499004456004", + "i":"jar|1498965649000|358|2|2|1|jar", + "n":"http-templating-dev", + "d":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "1":"f1aa94e752ba7df0f8b10b8c3e76fe7ccf37c3bc" + }, + { + "u":"org.webpieces|http-templating|1.9.83|NA", + "m":"1499004457421", + "i":"jar|1498965639000|52684|1|1|1|jar", + "n":"http-templating", + "d":"Templating library using groovy as the scripting language", + "1":"82cafbbbb220455ed2754c7ee39d2f30f093b67d" + }, + { + "u":"org.webpieces|http-templating|1.9.83|sources|jar", + "m":"1499004457455", + "i":"jar|1498965641000|32831|2|2|1|jar", + "n":"http-templating", + "d":"Templating library using groovy as the scripting language", + "1":"866e5d34869b45189c2ec593127c5e8a247f4f18" + }, + { + "u":"org.webpieces|http-templating|1.9.83|javadoc|jar", + "m":"1499004457482", + "i":"jar|1498965643000|354|2|2|1|jar", + "n":"http-templating", + "d":"Templating library using groovy as the scripting language", + "1":"2ab515cc7430eb94d35759cdb86b114d96131057" + }, + { + "u":"org.webpieces|http-shared|1.9.83|NA", + "m":"1499004458777", + "i":"jar|1498965632000|11571|1|1|1|jar", + "n":"http-shared", + "d":"Shared contexts between the router and templating system", + "1":"4086b01040b49f6e9d7acd5c650d77ec7b39d497" + }, + { + "u":"org.webpieces|http-shared|1.9.83|sources|jar", + "m":"1499004458810", + "i":"jar|1498965635000|7919|2|2|1|jar", + "n":"http-shared", + "d":"Shared contexts between the router and templating system", + "1":"e04c0ea2b882a180a01d4000a9e4db2c732587f4" + }, + { + "u":"org.webpieces|http-shared|1.9.83|javadoc|jar", + "m":"1499004458837", + "i":"jar|1498965634000|352|2|2|1|jar", + "n":"http-shared", + "d":"Shared contexts between the router and templating system", + "1":"e216479c24eab71654a35f6b2ca33c98e1364dc4" + }, + { + "u":"org.webpieces|http-router-dev|1.9.83|NA", + "m":"1499004459920", + "i":"jar|1498965625000|13897|1|1|1|jar", + "n":"http-router-dev", + "d":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "1":"56a971d9ebd709b7c8fdbbea62301a50e2b73039" + }, + { + "u":"org.webpieces|http-router-dev|1.9.83|sources|jar", + "m":"1499004459950", + "i":"jar|1498965629000|8441|2|2|1|jar", + "n":"http-router-dev", + "d":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "1":"1a48f4b7c2268a34faca05c756d1cf7b19843717" + }, + { + "u":"org.webpieces|http-router-dev|1.9.83|javadoc|jar", + "m":"1499004459977", + "i":"jar|1498965628000|357|2|2|1|jar", + "n":"http-router-dev", + "d":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "1":"6cb3eb76adea4064b16233eef38e84fa997b30e1" + }, + { + "u":"org.webpieces|http-router|1.9.83|NA", + "m":"1499004461298", + "i":"jar|1498965616000|191986|1|1|1|jar", + "n":"http-router", + "d":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "1":"d9d6e370aaadedb69b7532203c5ae8963d214183" + }, + { + "u":"org.webpieces|http-router|1.9.83|sources|jar", + "m":"1499004461336", + "i":"jar|1498965621000|105422|2|2|1|jar", + "n":"http-router", + "d":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "1":"7e595506c015cd2f7f324b6eca531aae85bab6f1" + }, + { + "u":"org.webpieces|http-router|1.9.83|javadoc|jar", + "m":"1499004461365", + "i":"jar|1498965617000|352|2|2|1|jar", + "n":"http-router", + "d":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "1":"40f8c841c0400160a5ccbe570dc411d9be5f9345" + }, + { + "u":"org.webpieces|http-frontend2|1.9.83|NA", + "m":"1499004463502", + "i":"jar|1498965509000|45670|1|1|1|jar", + "n":"http-frontend2", + "d":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "1":"3d39d23b2f8e8967cc48af382ee027f9ff4f17b1" + }, + { + "u":"org.webpieces|http-frontend2|1.9.83|sources|jar", + "m":"1499004463532", + "i":"jar|1498965512000|22429|2|2|1|jar", + "n":"http-frontend2", + "d":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "1":"61cb7baddf71a27488bb57b2d16b3eac706f6632" + }, + { + "u":"org.webpieces|http-frontend2|1.9.83|javadoc|jar", + "m":"1499004463558", + "i":"jar|1498965511000|355|2|2|1|jar", + "n":"http-frontend2", + "d":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "1":"0cbfaefd7950b034a3ef4b3e5cdeb38b29341c88" + }, + { + "u":"org.webpieces|http-backpressure-tests|1.9.83|NA", + "m":"1499004466675", + "i":"jar|1498965501000|361|1|1|1|jar", + "n":"http-backpressure-tests", + "d":"An http client", + "1":"0b8cac5e42d358f8052888adf5e3c8d1d8d790e9" + }, + { + "u":"org.webpieces|http-backpressure-tests|1.9.83|sources|jar", + "m":"1499004466702", + "i":"jar|1498965503000|361|2|2|1|jar", + "n":"http-backpressure-tests", + "d":"An http client", + "1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8" + }, + { + "u":"org.webpieces|http-backpressure-tests|1.9.83|javadoc|jar", + "m":"1499004466725", + "i":"jar|1498965506000|361|2|2|1|jar", + "n":"http-backpressure-tests", + "d":"An http client", + "1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8" + }, + { + "u":"org.webpieces|http|1.9.83|NA", + "m":"1499004466970", + "i":"jar|1498965390000|345|1|1|1|jar", + "n":"http", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b" + }, + { + "u":"org.webpieces|http|1.9.83|sources|jar", + "m":"1499004466999", + "i":"jar|1498965395000|345|2|2|1|jar", + "n":"http", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b" + }, + { + "u":"org.webpieces|http|1.9.83|javadoc|jar", + "m":"1499004467023", + "i":"jar|1498965393000|345|2|2|1|jar", + "n":"http", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b" + }, + { + "u":"org.webpieces|hibernate-plugin|1.9.83|NA", + "m":"1499004468409", + "i":"jar|1498965589000|10853|1|1|1|jar", + "n":"hibernate-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"4efd5955453240db8018ddccdf6bc4743d32b628" + }, + { + "u":"org.webpieces|hibernate-plugin|1.9.83|sources|jar", + "m":"1499004468438", + "i":"jar|1498965591000|6374|2|2|1|jar", + "n":"hibernate-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"b6b33d66b6e68f2975b70fc370bb00b262fe28ca" + }, + { + "u":"org.webpieces|hibernate-plugin|1.9.83|javadoc|jar", + "m":"1499004468464", + "i":"jar|1498965591000|357|2|2|1|jar", + "n":"hibernate-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"f6e9616d44dc730737b03cc1f9925d1a11fc5afd" + }, + { + "u":"org.webpieces|h2db-plugin|1.9.83|NA", + "m":"1499004469379", + "i":"jar|1498965582000|5575|1|1|1|jar", + "n":"h2db-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"87fa6bf1cdc23cc4322937203efbfb5466e03cfa" + }, + { + "u":"org.webpieces|h2db-plugin|1.9.83|sources|jar", + "m":"1499004469409", + "i":"jar|1498965585000|3989|2|2|1|jar", + "n":"h2db-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"7da486aca8455f0bc0bd872b33705c8123111ce0" + }, + { + "u":"org.webpieces|h2db-plugin|1.9.83|javadoc|jar", + "m":"1499004469430", + "i":"jar|1498965584000|352|2|2|1|jar", + "n":"h2db-plugin", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"ebca0459238d6bd5d4ad84dd6811b93519b485a6" + }, + { + "u":"org.webpieces|gradle-plugin-htmlcompiler|1.9.83|NA", + "m":"1499004470322", + "i":"jar|1498965608000|14591|1|1|1|jar", + "n":"gradle-plugin-htmlcompiler", + "d":"Gradle plugin to compile html files to java Class files for production use", + "1":"7dd5a6d2cbdaaa754384677f85b12d83ff018037" + }, + { + "u":"org.webpieces|gradle-plugin-htmlcompiler|1.9.83|sources|jar", + "m":"1499004470352", + "i":"jar|1498965610000|6068|2|2|1|jar", + "n":"gradle-plugin-htmlcompiler", + "d":"Gradle plugin to compile html files to java Class files for production use", + "1":"3ba9698bf406038872359fdb2a84bbea72acd86c" + }, + { + "u":"org.webpieces|gradle-plugin-htmlcompiler|1.9.83|javadoc|jar", + "m":"1499004470377", + "i":"jar|1498965612000|363|2|2|1|jar", + "n":"gradle-plugin-htmlcompiler", + "d":"Gradle plugin to compile html files to java Class files for production use", + "1":"43ba82ee5e6f4635c846d569b852369067dcc29e" + }, + { + "u":"org.webpieces|core-util|1.9.83|NA", + "m":"1499004473058", + "i":"jar|1498965476000|54648|1|1|1|jar", + "n":"core-util", + "d":"A simple utilitiy library with special executor but rather small amount of code in here", + "1":"acc4f58c575e255c4544a2a5e2c275589c8b622f" + }, + { + "u":"org.webpieces|core-util|1.9.83|sources|jar", + "m":"1499004473091", + "i":"jar|1498965479000|25749|2|2|1|jar", + "n":"core-util", + "d":"A simple utilitiy library with special executor but rather small amount of code in here", + "1":"568ea56496d57db24b053954150d5faf82fc0fa0" + }, + { + "u":"org.webpieces|core-util|1.9.83|javadoc|jar", + "m":"1499004473117", + "i":"jar|1498965478000|350|2|2|1|jar", + "n":"core-util", + "d":"A simple utilitiy library with special executor but rather small amount of code in here", + "1":"7a12af227404501195b5776ebaf7bc2e630ca6e3" + }, + { + "u":"org.webpieces|core-statemachine|1.9.83|NA", + "m":"1499004474432", + "i":"jar|1498965468000|10848|1|1|1|jar", + "n":"core-statemachine", + "d":"an api to run DDL commands from java", + "1":"bf424872df3f09d498a61e0782a8f348e3307671" + }, + { + "u":"org.webpieces|core-statemachine|1.9.83|sources|jar", + "m":"1499004474461", + "i":"jar|1498965470000|7314|2|2|1|jar", + "n":"core-statemachine", + "d":"an api to run DDL commands from java", + "1":"d50517a11c934d5a3306bb048003dfe367555daa" + }, + { + "u":"org.webpieces|core-statemachine|1.9.83|javadoc|jar", + "m":"1499004474485", + "i":"jar|1498965471000|357|2|2|1|jar", + "n":"core-statemachine", + "d":"an api to run DDL commands from java", + "1":"1d574a63a8d812d69d6976985e1a7b1bc47b7705" + }, + { + "u":"org.webpieces|core-ssl|1.9.83|NA", + "m":"1499004475236", + "i":"jar|1498965460000|14341|1|1|1|jar", + "n":"core-ssl", + "d":"a wrapper around SSLEngine in java to make it easier to use", + "1":"28813b0131366be24796f79b72dbc6eb7ac5f0b1" + }, + { + "u":"org.webpieces|core-ssl|1.9.83|sources|jar", + "m":"1499004475266", + "i":"jar|1498965463000|8972|2|2|1|jar", + "n":"core-ssl", + "d":"a wrapper around SSLEngine in java to make it easier to use", + "1":"d84c4c07889c2161e0887fb8e1694ae4a6bd802d" + }, + { + "u":"org.webpieces|core-ssl|1.9.83|javadoc|jar", + "m":"1499004475290", + "i":"jar|1498965461000|349|2|2|1|jar", + "n":"core-ssl", + "d":"a wrapper around SSLEngine in java to make it easier to use", + "1":"36d4b4a393fba01f118f844b45b1b95bbcd15272" + }, + { + "u":"org.webpieces|core-mock|1.9.83|NA", + "m":"1499004476616", + "i":"jar|1498965453000|11318|1|1|1|jar", + "n":"core-mock", + "d":"a simple mock superclass that mock objects can use to have less code", + "1":"d9d49b29902b6245b02cebc107f6ef2d9da1c9ab" + }, + { + "u":"org.webpieces|core-mock|1.9.83|sources|jar", + "m":"1499004476648", + "i":"jar|1498965454000|5194|2|2|1|jar", + "n":"core-mock", + "d":"a simple mock superclass that mock objects can use to have less code", + "1":"3d7208c4eeabb4bafb0533a272f0918ec47b404b" + }, + { + "u":"org.webpieces|core-mock|1.9.83|javadoc|jar", + "m":"1499004476681", + "i":"jar|1498965457000|350|2|2|1|jar", + "n":"core-mock", + "d":"a simple mock superclass that mock objects can use to have less code", + "1":"3c5460b0ee51acf93cc21f47391507373f6fcba9" + }, + { + "u":"org.webpieces|core-ddl|1.9.83|NA", + "m":"1499004477998", + "i":"jar|1498965444000|4270|1|1|1|jar", + "n":"core-ddl", + "d":"an api to run DDL commands from java", + "1":"61f3e155e138475e25766871102781ca2794d6e0" + }, + { + "u":"org.webpieces|core-ddl|1.9.83|sources|jar", + "m":"1499004478028", + "i":"jar|1498965447000|2744|2|2|1|jar", + "n":"core-ddl", + "d":"an api to run DDL commands from java", + "1":"568dc20f4c62f3de6af168911f19b62654f0dedb" + }, + { + "u":"org.webpieces|core-ddl|1.9.83|javadoc|jar", + "m":"1499004478052", + "i":"jar|1498965446000|349|2|2|1|jar", + "n":"core-ddl", + "d":"an api to run DDL commands from java", + "1":"b2cce52306fe0a03e75dc343b00a850b378e6228" + }, + { + "u":"org.webpieces|core-datawrapper|1.9.83|NA", + "m":"1499004478853", + "i":"jar|1498965435000|21400|1|1|1|jar", + "n":"core-datawrapper", + "d":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "1":"9768cb3758212f7acfa3dd04d95900ffd2d7e545" + }, + { + "u":"org.webpieces|core-datawrapper|1.9.83|sources|jar", + "m":"1499004478888", + "i":"jar|1498965438000|14292|2|2|1|jar", + "n":"core-datawrapper", + "d":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "1":"88ecae2fd21c434be55497107fc91f86706664db" + }, + { + "u":"org.webpieces|core-datawrapper|1.9.83|javadoc|jar", + "m":"1499004478913", + "i":"jar|1498965437000|357|2|2|1|jar", + "n":"core-datawrapper", + "d":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "1":"30bc58bfa6770ac0e2c9de8ca558e10ab712b2d9" + }, + { + "u":"org.webpieces|core-channelmanager2|1.9.83|NA", + "m":"1499004480180", + "i":"jar|1498965427000|116879|1|1|1|jar", + "n":"core-channelmanager2", + "d":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "1":"82748abd173cb13b2f3a3464fe4fa4ca7d42f385" + }, + { + "u":"org.webpieces|core-channelmanager2|1.9.83|sources|jar", + "m":"1499004480213", + "i":"jar|1498965431000|69670|2|2|1|jar", + "n":"core-channelmanager2", + "d":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "1":"e6a2ca933752332891b6f6a044d6251c3d3a853b" + }, + { + "u":"org.webpieces|core-channelmanager2|1.9.83|javadoc|jar", + "m":"1499004480241", + "i":"jar|1498965431000|359|2|2|1|jar", + "n":"core-channelmanager2", + "d":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "1":"3c0dbe80611e327a1ea9dd1dcd9e544704a33649" + }, + { + "u":"org.webpieces|core-asyncserver|1.9.83|NA", + "m":"1499004481547", + "i":"jar|1498965420000|13087|1|1|1|jar", + "n":"core-asyncserver", + "d":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "1":"fc0470af4a1ffe8924af8d0ed725d4015dbdc6dc" + }, + { + "u":"org.webpieces|core-asyncserver|1.9.83|sources|jar", + "m":"1499004481583", + "i":"jar|1498965422000|8951|2|2|1|jar", + "n":"core-asyncserver", + "d":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "1":"bc354a3cb46bbae92a3a75e191d1203b2fdcdfed" + }, + { + "u":"org.webpieces|core-asyncserver|1.9.83|javadoc|jar", + "m":"1499004481613", + "i":"jar|1498965422000|357|2|2|1|jar", + "n":"core-asyncserver", + "d":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "1":"292da37d168678778bc94dcdac475a6893ccf4f7" + }, + { + "u":"org.webpieces|core|1.9.83|NA", + "m":"1499004482934", + "i":"jar|1498965383000|345|1|1|1|jar", + "n":"core", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d" + }, + { + "u":"org.webpieces|core|1.9.83|sources|jar", + "m":"1499004482963", + "i":"jar|1498965388000|345|2|2|1|jar", + "n":"core", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d" + }, + { + "u":"org.webpieces|core|1.9.83|javadoc|jar", + "m":"1499004482985", + "i":"jar|1498965385000|345|2|2|1|jar", + "n":"core", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME-dev|1.9.83|NA", + "m":"1499004484291", + "i":"jar|1498965708000|6996|1|1|1|jar", + "n":"WEBPIECESxAPPNAME-dev", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"90e4dad9f9df849a44c2e53571da9b8873c6bd08" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME-dev|1.9.83|sources|jar", + "m":"1499004484321", + "i":"jar|1498965710000|6271|2|2|1|jar", + "n":"WEBPIECESxAPPNAME-dev", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"5de9e7e24cab00e744099787ee224d5303f90adf" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME-dev|1.9.83|javadoc|jar", + "m":"1499004484349", + "i":"jar|1498965713000|363|2|2|1|jar", + "n":"WEBPIECESxAPPNAME-dev", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"a3606452556cc8072ad1154577f0f8c7ae75469a" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME|1.9.83|NA", + "m":"1499004485346", + "i":"jar|1498965700000|101725|1|1|1|jar", + "n":"WEBPIECESxAPPNAME", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"0a479539970ece32636a6262f5030ef111fa03ee" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME|1.9.83|sources|jar", + "m":"1499004485386", + "i":"jar|1498965702000|52771|2|2|1|jar", + "n":"WEBPIECESxAPPNAME", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"e7ad84bfad4136161af245c65054f8f1362cae6e" + }, + { + "u":"org.webpieces|WEBPIECESxAPPNAME|1.9.83|javadoc|jar", + "m":"1499004485420", + "i":"jar|1498965705000|359|2|2|1|jar", + "n":"WEBPIECESxAPPNAME", + "d":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "1":"f6d717bf5c49284686f4eb1568dfe53eda5841ac" + }, + { + "u":"org.webjars.npm|zone.js|0.8.12|NA", + "m":"1499004517761", + "i":"jar|1498970969000|189216|1|1|1|jar", + "n":"zone.js", + "d":"WebJar for zone.js", + "1":"1b25f4c6adfe1d2d3bea9a483c67fcc100030a47" + }, + { + "u":"org.webjars.npm|zone.js|0.8.12|sources|jar", + "m":"1499004517796", + "i":"jar|1498970970000|22|2|2|1|jar", + "n":"zone.js", + "d":"WebJar for zone.js", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|zone.js|0.8.12|javadoc|jar", + "m":"1499004517819", + "i":"jar|1498970970000|22|2|2|1|jar", + "n":"zone.js", + "d":"WebJar for zone.js", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|typescript|2.4.1|NA", + "m":"1499004536690", + "i":"jar|1498971112000|4329686|1|1|1|jar", + "n":"typescript", + "d":"WebJar for typescript", + "1":"74704cf2089ad239d8571505dae1aa156d5c7fde" + }, + { + "u":"org.webjars.npm|typescript|2.4.1|sources|jar", + "m":"1499004536726", + "i":"jar|1498971113000|22|2|2|1|jar", + "n":"typescript", + "d":"WebJar for typescript", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|typescript|2.4.1|javadoc|jar", + "m":"1499004536778", + "i":"jar|1498971113000|22|2|2|1|jar", + "n":"typescript", + "d":"WebJar for typescript", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react-redux|4.4.45|NA", + "m":"1499004538704", + "i":"jar|1498993347000|6195|1|1|1|jar", + "n":"@types/react-redux", + "d":"WebJar for @types/react-redux", + "1":"3b75592cba0e809388bcb3c7c7bd23718a1be2ae" + }, + { + "u":"org.webjars.npm|types__react-redux|4.4.45|sources|jar", + "m":"1499004538726", + "i":"jar|1498993347000|22|2|2|1|jar", + "n":"@types/react-redux", + "d":"WebJar for @types/react-redux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react-redux|4.4.45|javadoc|jar", + "m":"1499004538748", + "i":"jar|1498993347000|22|2|2|1|jar", + "n":"@types/react-redux", + "d":"WebJar for @types/react-redux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react-dom|15.5.1|NA", + "m":"1499004539209", + "i":"jar|1498993642000|8772|1|1|1|jar", + "n":"@types/react-dom", + "d":"WebJar for @types/react-dom", + "1":"5a5d599e7b047478fbc86f57861875f9e786c214" + }, + { + "u":"org.webjars.npm|types__react-dom|15.5.1|sources|jar", + "m":"1499004539235", + "i":"jar|1498993646000|22|2|2|1|jar", + "n":"@types/react-dom", + "d":"WebJar for @types/react-dom", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react-dom|15.5.1|javadoc|jar", + "m":"1499004539265", + "i":"jar|1498993646000|22|2|2|1|jar", + "n":"@types/react-dom", + "d":"WebJar for @types/react-dom", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react|15.0.34|NA", + "m":"1499004539906", + "i":"jar|1498993122000|31041|1|1|1|jar", + "n":"@types/react", + "d":"WebJar for @types/react", + "1":"005d438b982a3b515741322aadb83d217861d2cc" + }, + { + "u":"org.webjars.npm|types__react|15.0.34|sources|jar", + "m":"1499004539928", + "i":"jar|1498993122000|22|2|2|1|jar", + "n":"@types/react", + "d":"WebJar for @types/react", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__react|15.0.34|javadoc|jar", + "m":"1499004539945", + "i":"jar|1498993122000|22|2|2|1|jar", + "n":"@types/react", + "d":"WebJar for @types/react", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__jasmine|2.5.53|NA", + "m":"1499004540973", + "i":"jar|1498971575000|10535|1|1|1|jar", + "n":"@types/jasmine", + "d":"WebJar for @types/jasmine", + "1":"5e131b5fecc133171a862349e935561bf684d777" + }, + { + "u":"org.webjars.npm|types__jasmine|2.5.53|sources|jar", + "m":"1499004541000", + "i":"jar|1498971575000|22|2|2|1|jar", + "n":"@types/jasmine", + "d":"WebJar for @types/jasmine", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|types__jasmine|2.5.53|javadoc|jar", + "m":"1499004541022", + "i":"jar|1498971575000|22|2|2|1|jar", + "n":"@types/jasmine", + "d":"WebJar for @types/jasmine", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|tslint-microsoft-contrib|5.0.1|NA", + "m":"1499004543882", + "i":"jar|1498971333000|206262|1|1|1|jar", + "n":"tslint-microsoft-contrib", + "d":"WebJar for tslint-microsoft-contrib", + "1":"52092d98ef99ed32028f3aa5b8e5988bbf856e28" + }, + { + "u":"org.webjars.npm|tslint-microsoft-contrib|5.0.1|sources|jar", + "m":"1499004543917", + "i":"jar|1498971333000|22|2|2|1|jar", + "n":"tslint-microsoft-contrib", + "d":"WebJar for tslint-microsoft-contrib", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|tslint-microsoft-contrib|5.0.1|javadoc|jar", + "m":"1499004543940", + "i":"jar|1498971334000|22|2|2|1|jar", + "n":"tslint-microsoft-contrib", + "d":"WebJar for tslint-microsoft-contrib", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|tslint-eslint-rules|4.1.1|NA", + "m":"1499004544089", + "i":"jar|1498971238000|136426|1|1|1|jar", + "n":"tslint-eslint-rules", + "d":"WebJar for tslint-eslint-rules", + "1":"f4e51d30d5a9c803fed183230ccce77b58a01cc8" + }, + { + "u":"org.webjars.npm|tslint-eslint-rules|4.1.1|sources|jar", + "m":"1499004544124", + "i":"jar|1498971238000|22|2|2|1|jar", + "n":"tslint-eslint-rules", + "d":"WebJar for tslint-eslint-rules", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|tslint-eslint-rules|4.1.1|javadoc|jar", + "m":"1499004544153", + "i":"jar|1498971239000|22|2|2|1|jar", + "n":"tslint-eslint-rules", + "d":"WebJar for tslint-eslint-rules", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|systemjs|0.20.14|NA", + "m":"1499004551899", + "i":"jar|1498970711000|231752|1|1|1|jar", + "n":"systemjs", + "d":"WebJar for systemjs", + "1":"63efec9923beb99517a585c9b581f2071b1a4309" + }, + { + "u":"org.webjars.npm|systemjs|0.20.14|sources|jar", + "m":"1499004551929", + "i":"jar|1498970711000|22|2|2|1|jar", + "n":"systemjs", + "d":"WebJar for systemjs", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|systemjs|0.20.14|javadoc|jar", + "m":"1499004551953", + "i":"jar|1498970711000|22|2|2|1|jar", + "n":"systemjs", + "d":"WebJar for systemjs", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reflux|6.4.1|NA", + "m":"1499004574243", + "i":"jar|1498948738000|78932|1|1|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"5eec2669896e2c6723638319c8901d0074482adf" + }, + { + "u":"org.webjars.npm|reflux|6.4.1|sources|jar", + "m":"1499004574275", + "i":"jar|1498948737000|22|2|2|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reflux|6.4.1|javadoc|jar", + "m":"1499004574299", + "i":"jar|1498948738000|22|2|2|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reflect-metadata|0.1.10|NA", + "m":"1499004574501", + "i":"jar|1498970841000|106704|1|1|1|jar", + "n":"reflect-metadata", + "d":"WebJar for reflect-metadata", + "1":"e47f0aba0d98e5265813c98b3c935ddeabcdc24f" + }, + { + "u":"org.webjars.npm|reflect-metadata|0.1.10|sources|jar", + "m":"1499004574532", + "i":"jar|1498970841000|22|2|2|1|jar", + "n":"reflect-metadata", + "d":"WebJar for reflect-metadata", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reflect-metadata|0.1.10|javadoc|jar", + "m":"1499004574556", + "i":"jar|1498970841000|22|2|2|1|jar", + "n":"reflect-metadata", + "d":"WebJar for reflect-metadata", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reactivex__rxjs|5.4.1|NA", + "m":"1499004577977", + "i":"jar|1498977691000|2135239|1|1|1|jar", + "n":"@reactivex/rxjs", + "d":"WebJar for @reactivex/rxjs", + "1":"00dc1a7c9f6deb2be25c745962164764ae53c99c" + }, + { + "u":"org.webjars.npm|reactivex__rxjs|5.4.1|sources|jar", + "m":"1499004578059", + "i":"jar|1498977692000|22|2|2|1|jar", + "n":"@reactivex/rxjs", + "d":"WebJar for @reactivex/rxjs", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|reactivex__rxjs|5.4.1|javadoc|jar", + "m":"1499004578082", + "i":"jar|1498977692000|22|2|2|1|jar", + "n":"@reactivex/rxjs", + "d":"WebJar for @reactivex/rxjs", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|jasmine-core|2.6.4|NA", + "m":"1499004674081", + "i":"jar|1498971755000|80567|1|1|1|jar", + "n":"jasmine-core", + "d":"WebJar for jasmine-core", + "1":"33fa9ca83747b80fdf0f59db9ace5f58cc05391c" + }, + { + "u":"org.webjars.npm|jasmine-core|2.6.4|sources|jar", + "m":"1499004674110", + "i":"jar|1498971756000|22|2|2|1|jar", + "n":"jasmine-core", + "d":"WebJar for jasmine-core", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|jasmine-core|2.6.4|javadoc|jar", + "m":"1499004674133", + "i":"jar|1498971756000|22|2|2|1|jar", + "n":"jasmine-core", + "d":"WebJar for jasmine-core", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|codelyzer|3.1.1|NA", + "m":"1499004749140", + "i":"jar|1498971443000|126029|1|1|1|jar", + "n":"codelyzer", + "d":"WebJar for codelyzer", + "1":"56915ea67ec810dba0b90fa674f7ea3715c64246" + }, + { + "u":"org.webjars.npm|codelyzer|3.1.1|sources|jar", + "m":"1499004749171", + "i":"jar|1498971443000|22|2|2|1|jar", + "n":"codelyzer", + "d":"WebJar for codelyzer", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|codelyzer|3.1.1|javadoc|jar", + "m":"1499004749193", + "i":"jar|1498971443000|22|2|2|1|jar", + "n":"codelyzer", + "d":"WebJar for codelyzer", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__upgrade|4.2.5|NA", + "m":"1499004788735", + "i":"jar|1498968394000|333555|1|1|1|jar", + "n":"@angular/upgrade", + "d":"WebJar for @angular/upgrade", + "1":"78decf84e8b47054ee91fa64111338970c62f7f9" + }, + { + "u":"org.webjars.npm|angular__upgrade|4.2.5|sources|jar", + "m":"1499004788774", + "i":"jar|1498968394000|22|2|2|1|jar", + "n":"@angular/upgrade", + "d":"WebJar for @angular/upgrade", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__upgrade|4.2.5|javadoc|jar", + "m":"1499004788795", + "i":"jar|1498968394000|22|2|2|1|jar", + "n":"@angular/upgrade", + "d":"WebJar for @angular/upgrade", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__tsc-wrapped|4.2.5|NA", + "m":"1499004789583", + "i":"jar|1498970308000|162386|1|1|1|jar", + "n":"@angular/tsc-wrapped", + "d":"WebJar for @angular/tsc-wrapped", + "1":"0150841deb5d4bdab5b2bc037e517d604d494086" + }, + { + "u":"org.webjars.npm|angular__tsc-wrapped|4.2.5|sources|jar", + "m":"1499004789616", + "i":"jar|1498970308000|22|2|2|1|jar", + "n":"@angular/tsc-wrapped", + "d":"WebJar for @angular/tsc-wrapped", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__tsc-wrapped|4.2.5|javadoc|jar", + "m":"1499004789639", + "i":"jar|1498970308000|22|2|2|1|jar", + "n":"@angular/tsc-wrapped", + "d":"WebJar for @angular/tsc-wrapped", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__router|4.2.5|NA", + "m":"1499004789783", + "i":"jar|1498968259000|494235|1|1|1|jar", + "n":"@angular/router", + "d":"WebJar for @angular/router", + "1":"1e1a5d20dbd2b1b454c25ccd8a6abaa73596caa4" + }, + { + "u":"org.webjars.npm|angular__router|4.2.5|sources|jar", + "m":"1499004789826", + "i":"jar|1498968259000|22|2|2|1|jar", + "n":"@angular/router", + "d":"WebJar for @angular/router", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__router|4.2.5|javadoc|jar", + "m":"1499004789852", + "i":"jar|1498968260000|22|2|2|1|jar", + "n":"@angular/router", + "d":"WebJar for @angular/router", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-webworker-dynamic|4.2.5|NA", + "m":"1499004790868", + "i":"jar|1498970024000|14930|1|1|1|jar", + "n":"@angular/platform-webworker-dynamic", + "d":"WebJar for @angular/platform-webworker-dynamic", + "1":"fc0e7cb40dbe37590a170fc027c33dd0a6a9cc01" + }, + { + "u":"org.webjars.npm|angular__platform-webworker-dynamic|4.2.5|sources|jar", + "m":"1499004790903", + "i":"jar|1498970024000|22|2|2|1|jar", + "n":"@angular/platform-webworker-dynamic", + "d":"WebJar for @angular/platform-webworker-dynamic", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-webworker-dynamic|4.2.5|javadoc|jar", + "m":"1499004790925", + "i":"jar|1498970025000|22|2|2|1|jar", + "n":"@angular/platform-webworker-dynamic", + "d":"WebJar for @angular/platform-webworker-dynamic", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-webworker|4.2.5|NA", + "m":"1499004791477", + "i":"jar|1498970103000|189856|1|1|1|jar", + "n":"@angular/platform-webworker", + "d":"WebJar for @angular/platform-webworker", + "1":"f1256442c75e64565ccdf69e5bf7ea13d0d0e3ee" + }, + { + "u":"org.webjars.npm|angular__platform-webworker|4.2.5|sources|jar", + "m":"1499004791509", + "i":"jar|1498970103000|22|2|2|1|jar", + "n":"@angular/platform-webworker", + "d":"WebJar for @angular/platform-webworker", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-webworker|4.2.5|javadoc|jar", + "m":"1499004791533", + "i":"jar|1498970103000|22|2|2|1|jar", + "n":"@angular/platform-webworker", + "d":"WebJar for @angular/platform-webworker", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-server|4.2.5|NA", + "m":"1499004792048", + "i":"jar|1498969942000|176836|1|1|1|jar", + "n":"@angular/platform-server", + "d":"WebJar for @angular/platform-server", + "1":"df97170363666f4d2280a7a175d961b90157c91e" + }, + { + "u":"org.webjars.npm|angular__platform-server|4.2.5|sources|jar", + "m":"1499004792080", + "i":"jar|1498969942000|22|2|2|1|jar", + "n":"@angular/platform-server", + "d":"WebJar for @angular/platform-server", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-server|4.2.5|javadoc|jar", + "m":"1499004792103", + "i":"jar|1498969942000|22|2|2|1|jar", + "n":"@angular/platform-server", + "d":"WebJar for @angular/platform-server", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-browser-dynamic|4.2.5|NA", + "m":"1499004792763", + "i":"jar|1498967473000|60224|1|1|1|jar", + "n":"@angular/platform-browser-dynamic", + "d":"WebJar for @angular/platform-browser-dynamic", + "1":"91f2483d8fc617a1c9edbb39e44b70f45556544a" + }, + { + "u":"org.webjars.npm|angular__platform-browser-dynamic|4.2.5|sources|jar", + "m":"1499004792795", + "i":"jar|1498967473000|22|2|2|1|jar", + "n":"@angular/platform-browser-dynamic", + "d":"WebJar for @angular/platform-browser-dynamic", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-browser-dynamic|4.2.5|javadoc|jar", + "m":"1499004792818", + "i":"jar|1498967473000|22|2|2|1|jar", + "n":"@angular/platform-browser-dynamic", + "d":"WebJar for @angular/platform-browser-dynamic", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-browser|4.2.5|NA", + "m":"1499004793768", + "i":"jar|1498967309000|373467|1|1|1|jar", + "n":"@angular/platform-browser", + "d":"WebJar for @angular/platform-browser", + "1":"8d1f1658a7a0b806839dcd98cc896641be660b3c" + }, + { + "u":"org.webjars.npm|angular__platform-browser|4.2.5|sources|jar", + "m":"1499004793808", + "i":"jar|1498967309000|22|2|2|1|jar", + "n":"@angular/platform-browser", + "d":"WebJar for @angular/platform-browser", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__platform-browser|4.2.5|javadoc|jar", + "m":"1499004793830", + "i":"jar|1498967310000|22|2|2|1|jar", + "n":"@angular/platform-browser", + "d":"WebJar for @angular/platform-browser", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__http|4.2.5|NA", + "m":"1499004795101", + "i":"jar|1498967839000|213937|1|1|1|jar", + "n":"@angular/http", + "d":"WebJar for @angular/http", + "1":"a455b48ecfa77d2a3b3b04a28f5f09a9a38458f7" + }, + { + "u":"org.webjars.npm|angular__http|4.2.5|sources|jar", + "m":"1499004795137", + "i":"jar|1498967839000|22|2|2|1|jar", + "n":"@angular/http", + "d":"WebJar for @angular/http", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__http|4.2.5|javadoc|jar", + "m":"1499004795159", + "i":"jar|1498967839000|22|2|2|1|jar", + "n":"@angular/http", + "d":"WebJar for @angular/http", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__forms|4.2.5|NA", + "m":"1499004796183", + "i":"jar|1498967759000|348660|1|1|1|jar", + "n":"@angular/forms", + "d":"WebJar for @angular/forms", + "1":"4298b500f87d0024873900825ecfd9af6be67905" + }, + { + "u":"org.webjars.npm|angular__forms|4.2.5|sources|jar", + "m":"1499004796221", + "i":"jar|1498967759000|22|2|2|1|jar", + "n":"@angular/forms", + "d":"WebJar for @angular/forms", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__forms|4.2.5|javadoc|jar", + "m":"1499004796243", + "i":"jar|1498967759000|22|2|2|1|jar", + "n":"@angular/forms", + "d":"WebJar for @angular/forms", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__core|4.2.5|NA", + "m":"1499004797230", + "i":"jar|1498966721000|1112124|1|1|1|jar", + "n":"@angular/core", + "d":"WebJar for @angular/core", + "1":"23a646487addc0f3aaa963c4a4a33ae85696b6f1" + }, + { + "u":"org.webjars.npm|angular__core|4.2.5|sources|jar", + "m":"1499004797260", + "i":"jar|1498966721000|22|2|2|1|jar", + "n":"@angular/core", + "d":"WebJar for @angular/core", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__core|4.2.5|javadoc|jar", + "m":"1499004797293", + "i":"jar|1498966721000|22|2|2|1|jar", + "n":"@angular/core", + "d":"WebJar for @angular/core", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__compiler-cli|4.2.5|NA", + "m":"1499004798328", + "i":"jar|1498969789000|104872|1|1|1|jar", + "n":"@angular/compiler-cli", + "d":"WebJar for @angular/compiler-cli", + "1":"e4372886dbb35e1f3194979d9bc3fb75b9d0463e" + }, + { + "u":"org.webjars.npm|angular__compiler-cli|4.2.5|sources|jar", + "m":"1499004798360", + "i":"jar|1498969789000|22|2|2|1|jar", + "n":"@angular/compiler-cli", + "d":"WebJar for @angular/compiler-cli", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__compiler-cli|4.2.5|javadoc|jar", + "m":"1499004798381", + "i":"jar|1498969789000|22|2|2|1|jar", + "n":"@angular/compiler-cli", + "d":"WebJar for @angular/compiler-cli", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__compiler|4.2.5|NA", + "m":"1499004799085", + "i":"jar|1498967058000|1828312|1|1|1|jar", + "n":"@angular/compiler", + "d":"WebJar for @angular/compiler", + "1":"6a17503da7d6e3ef91e044dac2b7ff1a54588ade" + }, + { + "u":"org.webjars.npm|angular__compiler|4.2.5|sources|jar", + "m":"1499004799142", + "i":"jar|1498967058000|22|2|2|1|jar", + "n":"@angular/compiler", + "d":"WebJar for @angular/compiler", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__compiler|4.2.5|javadoc|jar", + "m":"1499004799168", + "i":"jar|1498967058000|22|2|2|1|jar", + "n":"@angular/compiler", + "d":"WebJar for @angular/compiler", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__common|4.2.5|NA", + "m":"1499004800190", + "i":"jar|1498966928000|318114|1|1|1|jar", + "n":"@angular/common", + "d":"WebJar for @angular/common", + "1":"58d89c2812580ec7d089b2a4fa5298a0dd3ee0ab" + }, + { + "u":"org.webjars.npm|angular__common|4.2.5|sources|jar", + "m":"1499004800228", + "i":"jar|1498966928000|22|2|2|1|jar", + "n":"@angular/common", + "d":"WebJar for @angular/common", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__common|4.2.5|javadoc|jar", + "m":"1499004800250", + "i":"jar|1498966928000|22|2|2|1|jar", + "n":"@angular/common", + "d":"WebJar for @angular/common", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__animations|4.2.5|NA", + "m":"1499004801260", + "i":"jar|1498970191000|508560|1|1|1|jar", + "n":"@angular/animations", + "d":"WebJar for @angular/animations", + "1":"df071fa8c26cef423ac6a9cae666b49a1c88d197" + }, + { + "u":"org.webjars.npm|angular__animations|4.2.5|sources|jar", + "m":"1499004801302", + "i":"jar|1498970191000|22|2|2|1|jar", + "n":"@angular/animations", + "d":"WebJar for @angular/animations", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.npm|angular__animations|4.2.5|javadoc|jar", + "m":"1499004801326", + "i":"jar|1498970192000|22|2|2|1|jar", + "n":"@angular/animations", + "d":"WebJar for @angular/animations", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.bower|reflux|6.4.1|NA", + "m":"1499004900571", + "i":"jar|1498949088000|65121|1|1|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"bf291b5122b74afd02155ea41456ae1b0595c46d" + }, + { + "u":"org.webjars.bower|reflux|6.4.1|sources|jar", + "m":"1499004900595", + "i":"jar|1498949089000|22|2|2|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.webjars.bower|reflux|6.4.1|javadoc|jar", + "m":"1499004900617", + "i":"jar|1498949088000|22|2|2|1|jar", + "n":"reflux", + "d":"WebJar for reflux", + "1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.12|0.2.0|NA", + "m":"1499005478766", + "i":"jar|1498979070000|104696|1|1|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"141f29a88cbef62c589f5d7eea9430a0aa6f0e92" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.12|0.2.0|sources|jar", + "m":"1499005478799", + "i":"jar|1498979067000|125795|2|2|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"9e474f8f1c8f2b3174b02e9bdd9d368e6e0d82e9" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.12|0.2.0|javadoc|jar", + "m":"1499005478828", + "i":"jar|1498979068000|882970|2|2|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"0254e8453c5b2be0afe52153d37d2e956e97f6b7" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.11|0.2.0|NA", + "m":"1499005478921", + "i":"jar|1498979045000|128436|1|1|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"7e1469bd45cc919d03c6f14a61c24708271f5a8e" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.11|0.2.0|sources|jar", + "m":"1499005478956", + "i":"jar|1498979034000|125795|2|2|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"9eac4f5ffb3a58fececdd02bc4bc7e25ba9a42a7" + }, + { + "u":"org.tpolecat|tuco-wimpi_2.11|0.2.0|javadoc|jar", + "m":"1499005478983", + "i":"jar|1498979041000|553444|2|2|1|jar", + "n":"tuco-wimpi", + "d":"tuco-wimpi", + "1":"d3131b742fd44881436e90deff402ca898de58ba" + }, + { + "u":"org.tpolecat|tuco-shell_2.12|0.2.0|NA", + "m":"1499005479207", + "i":"jar|1498979066000|60153|1|1|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"3df1d2e5d7a0b19280c7364e9dbe55256a907cbb" + }, + { + "u":"org.tpolecat|tuco-shell_2.12|0.2.0|sources|jar", + "m":"1499005479236", + "i":"jar|1498979065000|6730|2|2|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"56efe4e6bfeb17e31bdaf50d0d9f523951fd4273" + }, + { + "u":"org.tpolecat|tuco-shell_2.12|0.2.0|javadoc|jar", + "m":"1499005479264", + "i":"jar|1498979063000|699860|2|2|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"5acb5004c38e85e6550b2cc5e0308a37f6275c75" + }, + { + "u":"org.tpolecat|tuco-shell_2.11|0.2.0|NA", + "m":"1499005479328", + "i":"jar|1498979014000|105576|1|1|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"f60f5cdd8071d45f6610b20050223685ffb40d7b" + }, + { + "u":"org.tpolecat|tuco-shell_2.11|0.2.0|sources|jar", + "m":"1499005479359", + "i":"jar|1498979013000|6730|2|2|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"ea81c5ecbc66b6ddc966bdc8f6440d8b62b3cac1" + }, + { + "u":"org.tpolecat|tuco-shell_2.11|0.2.0|javadoc|jar", + "m":"1499005479386", + "i":"jar|1498979007000|407704|2|2|1|jar", + "n":"tuco-shell", + "d":"tuco-shell", + "1":"a3c3a1174a5fa02c96cee54794a7d2679212cada" + }, + { + "u":"org.tpolecat|tuco-core_2.12|0.2.0|NA", + "m":"1499005479452", + "i":"jar|1498979072000|488079|1|1|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"ae8778ab7e7c8760e635248b76b74c0dff9ebbe4" + }, + { + "u":"org.tpolecat|tuco-core_2.12|0.2.0|sources|jar", + "m":"1499005479492", + "i":"jar|1498979071000|20342|2|2|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"3069011122f5a86a8ec3bd55c89fbb821aed40c3" + }, + { + "u":"org.tpolecat|tuco-core_2.12|0.2.0|javadoc|jar", + "m":"1499005479521", + "i":"jar|1498979074000|1375584|2|2|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"52e3bdc65b6c9ad7b9139a937e64d571afd0e85e" + }, + { + "u":"org.tpolecat|tuco-core_2.11|0.2.0|NA", + "m":"1499005479646", + "i":"jar|1498979022000|610329|1|1|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"99464ef3df393ce218b10360c6cb1b09d301f3aa" + }, + { + "u":"org.tpolecat|tuco-core_2.11|0.2.0|sources|jar", + "m":"1499005479692", + "i":"jar|1498979017000|20342|2|2|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"95ed499cf53332cefab40a0fc56581d8a54c327c" + }, + { + "u":"org.tpolecat|tuco-core_2.11|0.2.0|javadoc|jar", + "m":"1499005479721", + "i":"jar|1498979029000|918965|2|2|1|jar", + "n":"tuco-core", + "d":"tuco-core", + "1":"cd001739e0b59f17dd6f286376b9fd3efe886326" + }, + { + "u":"org.threadly|threadly|5.1|NA", + "m":"1499005869219", + "i":"jar|1498963335000|326356|1|1|1|jar", + "n":"Threadly", + "d":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "1":"fdbf5a0dbe4e65eec2a870d077864836d1f13df6" + }, + { + "u":"org.threadly|threadly|5.1|sources|jar", + "m":"1499005869257", + "i":"jar|1498963337000|242102|2|2|1|jar", + "n":"Threadly", + "d":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "1":"736b6a283c201e130b01c4453de0133ae2a3efdc" + }, + { + "u":"org.threadly|threadly|5.1|javadoc|jar", + "m":"1499005869288", + "i":"jar|1498963339000|624211|2|2|1|jar", + "n":"Threadly", + "d":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "1":"131f3401490d571ca379e15d9c4a3878d806ac99" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.8|NA", + "m":"1499007680045", + "i":"jar|1498997979000|21626|1|1|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"557782ebe8fc9a580b08bac9ef77d5e8c64d7177" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.8|sources|jar", + "m":"1499007680071", + "i":"jar|1498997976000|19036|2|2|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"46c1523e3a9702761a6323676e72693bc75b4c71" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.8|javadoc|jar", + "m":"1499007680093", + "i":"jar|1498997975000|105365|2|2|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"d13e0bb13cf664795e83c1e02eac3faf065db749" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.7|NA", + "m":"1499007680131", + "i":"jar|1498949958000|21180|1|1|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"23120f881916d33ae046fd1a584966aec91e475e" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.7|sources|jar", + "m":"1499007680156", + "i":"jar|1498949956000|19655|2|2|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"d539d5fda574c040f15d194bd82ea7922cbaec1c" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-module|0.9.7|javadoc|jar", + "m":"1499007680180", + "i":"jar|1498949954000|104268|2|2|1|jar", + "n":"Magnolia Thymeleaf Renderer", + "1":"b260e2f5e1d7b074c40bfb50b03481b4eb2f7419" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.8|NA", + "m":"1499007680235", + "i":"jar|1498997970000|10640|1|1|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"925266c7922a06888b1344bba6283c452aaac9bb" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.8|sources|jar", + "m":"1499007680260", + "i":"jar|1498997978000|10857|2|2|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"4c6f98d5cae895276da5073a6524bc7c2ff4dcde" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.8|javadoc|jar", + "m":"1499007680281", + "i":"jar|1498997972000|63151|2|2|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"c9f36845b52554f7eaa0aba2ce06951b62fd7d91" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.7|NA", + "m":"1499007680318", + "i":"jar|1498949960000|7647|1|1|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"477d714c863ac7629f10816a2d40ec57abdf7578" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.7|sources|jar", + "m":"1499007680343", + "i":"jar|1498949961000|8687|2|2|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"a15ed9c67a00362936e9fad33e6f6ed3d2cae541" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer-blossom-module|0.9.7|javadoc|jar", + "m":"1499007680366", + "i":"jar|1498949962000|50460|2|2|1|jar", + "n":"Magnolia Thymeleaf Blossom Renderer", + "1":"4e0dd2869e1ef74bcbf1992133eb4434726b83bd" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer|0.9.8|NA", + "m":"1499007680428", + "i":"pom|1498997977000|6201|0|0|1|pom", + "n":"Magnolia Thymeleaf Renderer", + "d":"Thymeleaf rendering integration for Magnolia CMS", + "1":"11bb99266629b22c3a64663fb1e851f280f37dba" + }, + { + "u":"org.sevensource.magnolia|magnolia-thymeleaf-renderer|0.9.7|NA", + "m":"1499007680464", + "i":"pom|1498949955000|5862|0|0|1|pom", + "n":"Magnolia Thymeleaf Renderer", + "d":"Thymeleaf rendering integration for Magnolia CMS", + "1":"0224be22f44b75f506aef9578f55d2b342c17975" + }, + { + "u":"org.scala-sbt|util-tracking_2.12|1.0.0-M25|NA", + "m":"1499008117388", + "i":"jar|1498950344000|32327|1|1|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"229d4d9e7d5ed96f0e787a7ed49529fa8db4dc7d" + }, + { + "u":"org.scala-sbt|util-tracking_2.12|1.0.0-M25|sources|jar", + "m":"1499008117418", + "i":"jar|1498950344000|4770|2|2|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"9eb248edc6977d398c06bab9b831e9901c5f2f93" + }, + { + "u":"org.scala-sbt|util-tracking_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008117445", + "i":"jar|1498950345000|674943|2|2|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"36935af9541dbccc59994e59d4222dd4ca8b9617" + }, + { + "u":"org.scala-sbt|util-tracking_2.11|1.0.0-M25|NA", + "m":"1499008117744", + "i":"jar|1498950335000|43100|1|1|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"059afa5c68e0ef979033df98ec91107b1454c4c1" + }, + { + "u":"org.scala-sbt|util-tracking_2.11|1.0.0-M25|sources|jar", + "m":"1499008117775", + "i":"jar|1498950334000|4770|2|2|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"7da055f885b0a5ebe9b604b0df2461b67925c44c" + }, + { + "u":"org.scala-sbt|util-tracking_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008117801", + "i":"jar|1498950335000|385571|2|2|1|jar", + "n":"Util Tracking", + "d":"Util module for sbt", + "1":"1b859d931a640cc6ba9690159d137375cf80b273" + }, + { + "u":"org.scala-sbt|util-testing_2.12|1.0.0-M25|NA", + "m":"1499008118893", + "i":"jar|1498950341000|8712|1|1|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"18b14e931134e0ddf785ddcc279d84a461e4c7d2" + }, + { + "u":"org.scala-sbt|util-testing_2.12|1.0.0-M25|sources|jar", + "m":"1499008118928", + "i":"jar|1498950340000|799|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"3e7674389f685c30a7a4d9833ba077ab6c61fa1a" + }, + { + "u":"org.scala-sbt|util-testing_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008118949", + "i":"jar|1498950340000|657882|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"56facd6720373043c66b31e62a64cb06438c8833" + }, + { + "u":"org.scala-sbt|util-testing_2.11|1.0.0-M25|NA", + "m":"1499008119251", + "i":"jar|1498950325000|8495|1|1|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"2604a24ab822110d0025f5cc4ed752011d0a6ae8" + }, + { + "u":"org.scala-sbt|util-testing_2.11|1.0.0-M25|sources|jar", + "m":"1499008119281", + "i":"jar|1498950325000|799|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"a1c414f85c583608583beb843dafdcbdf080a7a7" + }, + { + "u":"org.scala-sbt|util-testing_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008119302", + "i":"jar|1498950325000|366268|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"75cce9927d12ced059c04efe3752e4b36c4c0ed7" + }, + { + "u":"org.scala-sbt|util-testing_2.10|1.0.0-M25|NA", + "m":"1499008119963", + "i":"jar|1498950316000|8124|1|1|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"ade86c9bd61ffd41aeed5e78aa7b32037a61b310" + }, + { + "u":"org.scala-sbt|util-testing_2.10|1.0.0-M25|sources|jar", + "m":"1499008119994", + "i":"jar|1498950315000|799|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"88d57dcb1b4dbd06ff897577bb8dcf0fb287767d" + }, + { + "u":"org.scala-sbt|util-testing_2.10|1.0.0-M25|javadoc|jar", + "m":"1499008120018", + "i":"jar|1498950315000|362875|2|2|1|jar", + "n":"Util Testing", + "d":"Util module for sbt", + "1":"2eefcbc07bdbe04b9ab2f7b5e4f57f22ba2e27f0" + }, + { + "u":"org.scala-sbt|util-scripted_2.12|1.0.0-M25|NA", + "m":"1499008120795", + "i":"jar|1498950358000|65772|1|1|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"ad2f590dc1382c99d809a4b98bc9c32689055fa4" + }, + { + "u":"org.scala-sbt|util-scripted_2.12|1.0.0-M25|sources|jar", + "m":"1499008120826", + "i":"jar|1498950358000|8976|2|2|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"164c599039abb9180b22a863e32d084248485e16" + }, + { + "u":"org.scala-sbt|util-scripted_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008120851", + "i":"jar|1498950359000|725404|2|2|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"09b9290c0e237d608e3e59ea0b679745892c9857" + }, + { + "u":"org.scala-sbt|util-scripted_2.11|1.0.0-M25|NA", + "m":"1499008121140", + "i":"jar|1498950311000|141373|1|1|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"ebe8e9cb531fe117afe6a93f198dca30827d594b" + }, + { + "u":"org.scala-sbt|util-scripted_2.11|1.0.0-M25|sources|jar", + "m":"1499008121175", + "i":"jar|1498950312000|8976|2|2|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"7a91583b6db13543494efe1260df006149e56968" + }, + { + "u":"org.scala-sbt|util-scripted_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008121199", + "i":"jar|1498950312000|423753|2|2|1|jar", + "n":"Util Scripted", + "d":"Util module for sbt", + "1":"cf73f79f86ea375b696c2c2680356835b1d23e5d" + }, + { + "u":"org.scala-sbt|util-relation_2.12|1.0.0-M25|NA", + "m":"1499008122035", + "i":"jar|1498950339000|14385|1|1|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"e20a71b440c3dfeb656be8ddc1d0709cad3476c2" + }, + { + "u":"org.scala-sbt|util-relation_2.12|1.0.0-M25|sources|jar", + "m":"1499008122067", + "i":"jar|1498950338000|2939|2|2|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"25d37292455e95c8885a23a62e3c0d8b63906255" + }, + { + "u":"org.scala-sbt|util-relation_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008122091", + "i":"jar|1498950338000|643303|2|2|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"80634361287ce5af8a562b074b5e0146502cb619" + }, + { + "u":"org.scala-sbt|util-relation_2.11|1.0.0-M25|NA", + "m":"1499008122428", + "i":"jar|1498950323000|30696|1|1|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"a9aafd5ecac05683a9945b1da8b6a0159b429f49" + }, + { + "u":"org.scala-sbt|util-relation_2.11|1.0.0-M25|sources|jar", + "m":"1499008122461", + "i":"jar|1498950323000|2939|2|2|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"46fb4cc10287c199c5dd962af3a4bf792a3913fa" + }, + { + "u":"org.scala-sbt|util-relation_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008122484", + "i":"jar|1498950323000|359632|2|2|1|jar", + "n":"Util Relation", + "d":"Util module for sbt", + "1":"8348e2a1ee412a0ae01ab337ed616ebd37042cb7" + }, + { + "u":"org.scala-sbt|util-logic_2.12|1.0.0-M25|NA", + "m":"1499008123516", + "i":"jar|1498950349000|49623|1|1|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"f334aea787214558a15a58e2d2250856a19218c8" + }, + { + "u":"org.scala-sbt|util-logic_2.12|1.0.0-M25|sources|jar", + "m":"1499008123551", + "i":"jar|1498950351000|5320|2|2|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"be3b5ea23dbdb3e90cbac9ae584a2a03508d095d" + }, + { + "u":"org.scala-sbt|util-logic_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008123576", + "i":"jar|1498950350000|707026|2|2|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"59a0ffd82f1adafaad8092c9d73a5715beee82d6" + }, + { + "u":"org.scala-sbt|util-logic_2.11|1.0.0-M25|NA", + "m":"1499008123868", + "i":"jar|1498950332000|68235|1|1|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"b649d74c6184c3706351a34867c163ea542a3d9b" + }, + { + "u":"org.scala-sbt|util-logic_2.11|1.0.0-M25|sources|jar", + "m":"1499008123898", + "i":"jar|1498950333000|5320|2|2|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"de74a6b013f58bc4f714c8fd951ad8ba1f86c48f" + }, + { + "u":"org.scala-sbt|util-logic_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008123922", + "i":"jar|1498950333000|411606|2|2|1|jar", + "n":"Util Logic", + "d":"Util module for sbt", + "1":"3c921fa52b35645a42bb63242eed840f13ae9194" + }, + { + "u":"org.scala-sbt|util-logging_2.12|1.0.0-M25|NA", + "m":"1499008125013", + "i":"jar|1498950349000|227544|1|1|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"ca71893c6b9308c606ea5b028c1895411ffab8bb" + }, + { + "u":"org.scala-sbt|util-logging_2.12|1.0.0-M25|sources|jar", + "m":"1499008125046", + "i":"jar|1498950348000|25196|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"e1bd336714d85739b44c48612bb7c7ed8f4693bd" + }, + { + "u":"org.scala-sbt|util-logging_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008125074", + "i":"jar|1498950349000|1104945|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"7a6a47a98946c13fb2def6e06110caa57695a048" + }, + { + "u":"org.scala-sbt|util-logging_2.11|1.0.0-M25|NA", + "m":"1499008125374", + "i":"jar|1498950330000|266622|1|1|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"1690a0a6e9ccca4acc485f48a0a4e365f9e8bfe4" + }, + { + "u":"org.scala-sbt|util-logging_2.11|1.0.0-M25|sources|jar", + "m":"1499008125412", + "i":"jar|1498950329000|25196|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"1cd9bd09f5bc9dbecb65947bcc049051a7e0f309" + }, + { + "u":"org.scala-sbt|util-logging_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008125439", + "i":"jar|1498950329000|708415|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"30bdb831c21b3abb922c582db341cfa5c37ecb7d" + }, + { + "u":"org.scala-sbt|util-logging_2.10|1.0.0-M25|NA", + "m":"1499008126155", + "i":"jar|1498950318000|261963|1|1|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"1ea16fe244dfcf0c06e07166234a1183f1011001" + }, + { + "u":"org.scala-sbt|util-logging_2.10|1.0.0-M25|sources|jar", + "m":"1499008126191", + "i":"jar|1498950317000|25196|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"749cf5d9bc6fd03a2c660fc7d4c9a93ab9f76d34" + }, + { + "u":"org.scala-sbt|util-logging_2.10|1.0.0-M25|javadoc|jar", + "m":"1499008126217", + "i":"jar|1498950318000|683684|2|2|1|jar", + "n":"Util Logging", + "d":"Util module for sbt", + "1":"5da530c8504a309b2a297ae84820f6b118d98257" + }, + { + "u":"org.scala-sbt|util-interface|1.0.0-M25|NA", + "m":"1499008127018", + "i":"jar|1498950321000|5280|1|1|1|jar", + "n":"Util Interface", + "d":"Util module for sbt", + "1":"934cf307fde68441222115da5afedc993b2afceb" + }, + { + "u":"org.scala-sbt|util-interface|1.0.0-M25|sources|jar", + "m":"1499008127046", + "i":"jar|1498950321000|2944|2|2|1|jar", + "n":"Util Interface", + "d":"Util module for sbt", + "1":"d19833670326945369b833349134871cd61cef6d" + }, + { + "u":"org.scala-sbt|util-interface|1.0.0-M25|javadoc|jar", + "m":"1499008127068", + "i":"jar|1498950322000|40892|2|2|1|jar", + "n":"Util Interface", + "d":"Util module for sbt", + "1":"40fca21af6e8dee749153153e693f7b7d252fa80" + }, + { + "u":"org.scala-sbt|util-control_2.12|1.0.0-M25|NA", + "m":"1499008127782", + "i":"jar|1498950343000|12453|1|1|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"1bf831a6ae45de7856a25521a4561a82fc94d150" + }, + { + "u":"org.scala-sbt|util-control_2.12|1.0.0-M25|sources|jar", + "m":"1499008127813", + "i":"jar|1498950341000|2387|2|2|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"a8d403ac2a80fc98ff8f2b563831a87d63115a19" + }, + { + "u":"org.scala-sbt|util-control_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008127836", + "i":"jar|1498950342000|678409|2|2|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"6d18d6831d8b9710670a53650deef54b15454b5b" + }, + { + "u":"org.scala-sbt|util-control_2.11|1.0.0-M25|NA", + "m":"1499008128120", + "i":"jar|1498950328000|13343|1|1|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"3b92c4421dd7858915cacb7b5b01dcfa05bbe250" + }, + { + "u":"org.scala-sbt|util-control_2.11|1.0.0-M25|sources|jar", + "m":"1499008128152", + "i":"jar|1498950326000|2387|2|2|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"080a5e194ff6a17f4b3af65d94a97540eb3294ab" + }, + { + "u":"org.scala-sbt|util-control_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008128175", + "i":"jar|1498950327000|384773|2|2|1|jar", + "n":"Util Control", + "d":"Util module for sbt", + "1":"abfcf390dca2efb0e6cf2d89e68e42c2ce730b96" + }, + { + "u":"org.scala-sbt|util-completion_2.12|1.0.0-M25|NA", + "m":"1499008129213", + "i":"jar|1498950353000|256315|1|1|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"e6d176ae6b8ca90c2fc9e3420552d0c1419d778b" + }, + { + "u":"org.scala-sbt|util-completion_2.12|1.0.0-M25|sources|jar", + "m":"1499008129249", + "i":"jar|1498950353000|27554|2|2|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"9018372a6622be92621b5cc47a53d3f11a5cf2ff" + }, + { + "u":"org.scala-sbt|util-completion_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008129276", + "i":"jar|1498950352000|861658|2|2|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"ecd83286ba3ed26b4209fec83ef1b5bcfab37576" + }, + { + "u":"org.scala-sbt|util-completion_2.11|1.0.0-M25|NA", + "m":"1499008129574", + "i":"jar|1498950332000|406072|1|1|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"e61dff7f8eefcdefd3c53e61af672d791e9ed62c" + }, + { + "u":"org.scala-sbt|util-completion_2.11|1.0.0-M25|sources|jar", + "m":"1499008129614", + "i":"jar|1498950331000|27554|2|2|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"e2252a534b12a02f5b882c1e011a446046f316be" + }, + { + "u":"org.scala-sbt|util-completion_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008129639", + "i":"jar|1498950331000|527555|2|2|1|jar", + "n":"Util Completion", + "d":"Util module for sbt", + "1":"f8aded954765435c6523c843870b6d5889a4b14f" + }, + { + "u":"org.scala-sbt|util-collection_2.12|1.0.0-M25|NA", + "m":"1499008130931", + "i":"jar|1498950354000|336211|1|1|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"7b37933db563310a7f1019639c5cb32ab7229c74" + }, + { + "u":"org.scala-sbt|util-collection_2.12|1.0.0-M25|sources|jar", + "m":"1499008130973", + "i":"jar|1498950353000|28280|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"6941942ab4462f4518bdad36d72ec4f1c2e8d6ee" + }, + { + "u":"org.scala-sbt|util-collection_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008131000", + "i":"jar|1498950355000|1109165|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"07dabbdce1771a67513feb27b908074f820e6298" + }, + { + "u":"org.scala-sbt|util-collection_2.11|1.0.0-M25|NA", + "m":"1499008131296", + "i":"jar|1498950336000|454304|1|1|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"68bff39198e053db1ea0d040ef89a2f451308627" + }, + { + "u":"org.scala-sbt|util-collection_2.11|1.0.0-M25|sources|jar", + "m":"1499008131541", + "i":"jar|1498950336000|28280|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"809f96abba52b67aebfd02068d64722868aa8f21" + }, + { + "u":"org.scala-sbt|util-collection_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008131567", + "i":"jar|1498950337000|698941|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"55c54130294805afab5637909b05105ff4f9971d" + }, + { + "u":"org.scala-sbt|util-collection_2.10|1.0.0-M25|NA", + "m":"1499008132474", + "i":"jar|1498950319000|449387|1|1|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"1f7a3792759cf94a30ffe54d3d3b945b8ed6cf8c" + }, + { + "u":"org.scala-sbt|util-collection_2.10|1.0.0-M25|sources|jar", + "m":"1499008132634", + "i":"jar|1498950319000|28280|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"bf59d15f1955b018dbcd3fc50f40cce08d2aea63" + }, + { + "u":"org.scala-sbt|util-collection_2.10|1.0.0-M25|javadoc|jar", + "m":"1499008132661", + "i":"jar|1498950320000|694110|2|2|1|jar", + "n":"Util Collection", + "d":"Util module for sbt", + "1":"974e9aff48eb04e8767942d01442c5eeaf9b85c0" + }, + { + "u":"org.scala-sbt|util-cache_2.12|1.0.0-M25|NA", + "m":"1499008133250", + "i":"jar|1498950356000|207172|1|1|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"6ab749cae6bd9d814c5a8d5e185657b0e6aafabc" + }, + { + "u":"org.scala-sbt|util-cache_2.12|1.0.0-M25|sources|jar", + "m":"1499008133287", + "i":"jar|1498950356000|8567|2|2|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"7aff4ad5634eff6066fced5b840a6a7e8e1c6aab" + }, + { + "u":"org.scala-sbt|util-cache_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008133313", + "i":"jar|1498950357000|1055277|2|2|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"d125df2cd1e6d3214e4ee422d5fa910f1f9c9946" + }, + { + "u":"org.scala-sbt|util-cache_2.11|1.0.0-M25|NA", + "m":"1499008133825", + "i":"jar|1498950310000|208431|1|1|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"26b1c180ea8fcf9197a096708f46c7ac7ed89357" + }, + { + "u":"org.scala-sbt|util-cache_2.11|1.0.0-M25|sources|jar", + "m":"1499008133861", + "i":"jar|1498950313000|8567|2|2|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"2641f3693fe788ad0ab16d84bf64a43ff80a9440" + }, + { + "u":"org.scala-sbt|util-cache_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008133886", + "i":"jar|1498950309000|668259|2|2|1|jar", + "n":"Util Cache", + "d":"Util module for sbt", + "1":"335233d70ef394d8bbe61ebe553b2284dfc81d11" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.12|1.0.0-M25|NA", + "m":"1499008135031", + "i":"jar|1498950345000|77166|1|1|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"374fe0c6c3871afdaab07fca204aa58cd5b64944" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.12|1.0.0-M25|sources|jar", + "m":"1499008135064", + "i":"jar|1498950346000|13696|2|2|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"693542bddc15e9fc061d80427bab8073db152d49" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.12|1.0.0-M25|javadoc|jar", + "m":"1499008135093", + "i":"jar|1498950346000|733313|2|2|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"23e579e1ff31c82fc0ada12f87ef091a2dc34f52" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.11|1.0.0-M25|NA", + "m":"1499008135391", + "i":"jar|1498950315000|88765|1|1|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"6c47f8d341596aef388321489c05fb6826de36f5" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.11|1.0.0-M25|sources|jar", + "m":"1499008135433", + "i":"jar|1498950314000|13696|2|2|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"1820cc267dfe2adbf3691643d72313b53fb268cb" + }, + { + "u":"org.scala-sbt|util-apply-macro_2.11|1.0.0-M25|javadoc|jar", + "m":"1499008135459", + "i":"jar|1498950313000|432093|2|2|1|jar", + "n":"Util Apply Macro", + "d":"Util module for sbt", + "1":"daa612c882875daae5dc62906ac6de2e3412e276" + }, + { + "u":"org.scala-sbt|librarymanagement_2.12|1.0.0-X16|NA", + "m":"1499008141245", + "i":"jar|1498955899000|1203208|1|1|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"242a43f9770069de3ad467a5d17a43a132b1f5a8" + }, + { + "u":"org.scala-sbt|librarymanagement_2.12|1.0.0-X16|sources|jar", + "m":"1499008141301", + "i":"jar|1498955896000|209251|2|2|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"d272d973972911435ed73ce245eefac4b77c1caa" + }, + { + "u":"org.scala-sbt|librarymanagement_2.12|1.0.0-X16|javadoc|jar", + "m":"1499008141340", + "i":"jar|1498955898000|2866631|2|2|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"b17c8502a61c9bf1d6086eabbdd57a7290595198" + }, + { + "u":"org.scala-sbt|librarymanagement_2.11|1.0.0-X16|NA", + "m":"1499008141720", + "i":"jar|1498955896000|1805859|1|1|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"232dacfba271a872d18493f047ea7546dd4d4dd7" + }, + { + "u":"org.scala-sbt|librarymanagement_2.11|1.0.0-X16|sources|jar", + "m":"1499008141784", + "i":"jar|1498955893000|209251|2|2|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"ac0f46616dd2766cccf11593e494a1054c7b44c3" + }, + { + "u":"org.scala-sbt|librarymanagement_2.11|1.0.0-X16|javadoc|jar", + "m":"1499008141815", + "i":"jar|1498955895000|1517728|2|2|1|jar", + "n":"librarymanagement", + "d":"Library management module for sbt", + "1":"277676c3ed891de167a832616151b1b6dfa76922" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.12|1.0.0-M3|NA", + "m":"1499008190749", + "i":"jar|1498971427000|120091|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"0c20de2eddaa17256239012bfdd5a38cbfdd2c6d" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.12|1.0.0-M3|sources|jar", + "m":"1499008190785", + "i":"jar|1498971427000|6897|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"bedf80d72822022a20f8395c433a176a7814fa9b" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.12|1.0.0-M3|javadoc|jar", + "m":"1499008190811", + "i":"jar|1498971446000|753017|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"3bcfabede61ed5467db04496d738e485c29a9f69" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.11|1.0.0-M3|NA", + "m":"1499008190938", + "i":"jar|1498971224000|119731|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"f9fbdae28d8cfcffa02483c956027c3b4a068182" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.11|1.0.0-M3|sources|jar", + "m":"1499008190974", + "i":"jar|1498971225000|6897|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"00fc4beb821e1d1228b4c63222a82d0598bd540a" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.11|1.0.0-M3|javadoc|jar", + "m":"1499008191000", + "i":"jar|1498971250000|444613|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"94bbfe71f6bd07e549c73fb8a9e952d36711f781" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.10|1.0.0-M3|NA", + "m":"1499008191114", + "i":"jar|1498971344000|117966|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"691041e81ec1206af9426df670bdc8253015a0b0" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.10|1.0.0-M3|sources|jar", + "m":"1499008191145", + "i":"jar|1498971349000|6897|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"89146848fc9ad433d6418df880ba64437c776498" + }, + { + "u":"org.scala-lang.platform|scalajson_sjs0.6_2.10|1.0.0-M3|javadoc|jar", + "m":"1499008191218", + "i":"jar|1498971395000|443133|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"ce680a23888068941c0a528b97bcac3c33ef9234" + }, + { + "u":"org.scala-lang.platform|scalajson_2.12|1.0.0-M3|NA", + "m":"1499008191333", + "i":"jar|1498971405000|62658|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"58ec8b0c927a3e0b5bbb38d8bee4c0a30fb6ff48" + }, + { + "u":"org.scala-lang.platform|scalajson_2.12|1.0.0-M3|sources|jar", + "m":"1499008191363", + "i":"jar|1498971406000|6109|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"dc6f16508a2222f09438b6d4c47cc00db3da6c4c" + }, + { + "u":"org.scala-lang.platform|scalajson_2.12|1.0.0-M3|javadoc|jar", + "m":"1499008191388", + "i":"jar|1498971422000|749849|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"80044d24722546beda9b0c89812061c22d37fcc1" + }, + { + "u":"org.scala-lang.platform|scalajson_2.11|1.0.0-M3|NA", + "m":"1499008191501", + "i":"jar|1498971130000|62638|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"18d7ce01c236ea084bdb1e170b727f5ab554d69f" + }, + { + "u":"org.scala-lang.platform|scalajson_2.11|1.0.0-M3|sources|jar", + "m":"1499008191532", + "i":"jar|1498971132000|6109|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"f4b4a84b8f7f357d6d0192d642bb013e1ff7b6c1" + }, + { + "u":"org.scala-lang.platform|scalajson_2.11|1.0.0-M3|javadoc|jar", + "m":"1499008191556", + "i":"jar|1498971209000|440965|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"01e8bb61b704368374e0ac38924115b3175d436a" + }, + { + "u":"org.scala-lang.platform|scalajson_2.10|1.0.0-M3|NA", + "m":"1499008191666", + "i":"jar|1498971268000|60883|1|1|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"fa6688c6ebcc07aa09d26fc328e66553eef9a8d0" + }, + { + "u":"org.scala-lang.platform|scalajson_2.10|1.0.0-M3|sources|jar", + "m":"1499008191697", + "i":"jar|1498971272000|6109|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"2ff8e8adfd85235d9bb911ac3b98af108e1c5216" + }, + { + "u":"org.scala-lang.platform|scalajson_2.10|1.0.0-M3|javadoc|jar", + "m":"1499008191726", + "i":"jar|1498971317000|439719|2|2|1|jar", + "n":"scalajson", + "d":"scalajson", + "1":"3cca047459b8089a4660aa1083255f66ef64c046" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.13.0-M1|0.2.2|NA", + "m":"1499008226367", + "i":"jar|1498995668000|158840|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"06c1f92fa6cacfe50c0e9973ffe956da25aed089" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.13.0-M1|0.2.2|sources|jar", + "m":"1499008226397", + "i":"jar|1498995670000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"061240194d73a352a49c0cac1fec2e0ec72cd885" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.13.0-M1|0.2.2|javadoc|jar", + "m":"1499008226422", + "i":"jar|1498995671000|853315|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"8fb87f8d336124067deffef79cb73a1bddab127a" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.12|0.2.2|NA", + "m":"1499008226488", + "i":"jar|1498995655000|158840|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"0383e87287979591689f0803d40e062e34350810" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.12|0.2.2|sources|jar", + "m":"1499008226518", + "i":"jar|1498995657000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"7eaf8694295f4c9e9b6d0d9f872c154915ed1c89" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.12|0.2.2|javadoc|jar", + "m":"1499008226543", + "i":"jar|1498995658000|853315|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"3a64b18b80089a1b4a86423c568336352add5a49" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.11|0.2.2|NA", + "m":"1499008226610", + "i":"jar|1498995632000|155918|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"a924c7b0eb6a0ec1d667de3316d1acec25ad9c13" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.11|0.2.2|sources|jar", + "m":"1499008226641", + "i":"jar|1498995634000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"f2ac22b9045082adee8a6a357d8ae805a2815106" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.11|0.2.2|javadoc|jar", + "m":"1499008226665", + "i":"jar|1498995635000|528920|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"4258d2ec836086236be233369d390c055466ac85" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.10|0.2.2|NA", + "m":"1499008226723", + "i":"jar|1498995643000|155901|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"ee04cbd7a11f4fcd3f3937c963bd499e7d0138e9" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.10|0.2.2|sources|jar", + "m":"1499008226763", + "i":"jar|1498995644000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"80ccea87d3235404a8f615b724c79540ecbedfee" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs1.0.0-M1_2.10|0.2.2|javadoc|jar", + "m":"1499008226787", + "i":"jar|1498995645000|524480|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"899143c4096242275f61d2c0e05702a87b14922d" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.13.0-M1|0.2.2|NA", + "m":"1499008226844", + "i":"jar|1498995592000|158991|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"b260e5f316698ea9bc8ba851088a0a136fe97393" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.13.0-M1|0.2.2|sources|jar", + "m":"1499008226875", + "i":"jar|1498995594000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"ad15b75b40eb7868baced39fcf5fc270f70cdcd5" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.13.0-M1|0.2.2|javadoc|jar", + "m":"1499008226899", + "i":"jar|1498995594000|853315|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"dab1de45dd4c74d71570701a132fcfe0f96ec8d6" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.12|0.2.2|NA", + "m":"1499008227193", + "i":"jar|1498995579000|158991|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"a61d50fa23ce0c99c6b6c4b9940ed576dc26c756" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.12|0.2.2|sources|jar", + "m":"1499008227223", + "i":"jar|1498995580000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"a2f22047739ca655d4a3a3074e8b3af359ac623a" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.12|0.2.2|javadoc|jar", + "m":"1499008227246", + "i":"jar|1498995581000|853315|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"7ff6d1462a763ebbfe96a9ca5c947e775cf3ba87" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.11|0.2.2|NA", + "m":"1499008227347", + "i":"jar|1498995555000|156026|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"6bf0c490df5fb4993c1016c5ae1e89cf3ae9a1f2" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.11|0.2.2|sources|jar", + "m":"1499008227378", + "i":"jar|1498995557000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"eeb49cd960c007d1f741e2a4a4de569f5e2a2e2a" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.11|0.2.2|javadoc|jar", + "m":"1499008227406", + "i":"jar|1498995558000|528920|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"fbb233f746652d5b0c5de35a354410c5a28a6faf" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.10|0.2.2|NA", + "m":"1499008227511", + "i":"jar|1498995565000|155975|1|1|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"fb7fa16e78986de15b0246af23b952292eda25b4" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.10|0.2.2|sources|jar", + "m":"1499008227540", + "i":"jar|1498995567000|35184|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"2b040c4c698cb702afe5e213508d71491a76d4aa" + }, + { + "u":"org.scala-js|scalajs-java-time_sjs0.6_2.10|0.2.2|javadoc|jar", + "m":"1499008227564", + "i":"jar|1498995568000|524480|2|2|1|jar", + "n":"scalajs-java-time", + "d":"scalajs-java-time", + "1":"e19a969255ecfd01e64a80d62ce94bc876248e57" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1|0.1.2|NA", + "m":"1499008227660", + "i":"jar|1498995490000|30039|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"66428aef0fbf4d12f5034a5aed1cabeffb83d98d" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1|0.1.2|sources|jar", + "m":"1499008227686", + "i":"jar|1498995490000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"378f7530aee4eb94987aa8eab8128ad0d8819896" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1|0.1.2|javadoc|jar", + "m":"1499008227710", + "i":"jar|1498995488000|694222|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"9c61b209a1fe2107cb85611efbb9423e998be171" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.12|0.1.2|NA", + "m":"1499008227768", + "i":"jar|1498995481000|30039|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"4efb3890ebb6c90fb9ab6c2459b63fc21ca36507" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.12|0.1.2|sources|jar", + "m":"1499008227795", + "i":"jar|1498995482000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"98e345eee6471d4bb62337f63c1a187df332e159" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.12|0.1.2|javadoc|jar", + "m":"1499008227817", + "i":"jar|1498995479000|694222|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"7df68f054148c35b06fe9db3104e9f4579cb2908" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.11|0.1.2|NA", + "m":"1499008227876", + "i":"jar|1498995464000|28643|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"7174a20172d5cb1392904aa0b7e3536ec98a6fba" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.11|0.1.2|sources|jar", + "m":"1499008227953", + "i":"jar|1498995464000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"b30a9f3b8f8f808a80bdde5ee1791c43c53bceb8" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.11|0.1.2|javadoc|jar", + "m":"1499008227976", + "i":"jar|1498995462000|401163|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"9fb1880dd43abf901fadf62037351cc908a216f3" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.10|0.1.2|NA", + "m":"1499008228031", + "i":"jar|1498995472000|28606|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"f76ade7a1b5a651331a73f69849e23660dd4383f" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.10|0.1.2|sources|jar", + "m":"1499008228057", + "i":"jar|1498995472000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"a4fdd4aa1d8d7d44ca65c453c178b620083f8c48" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs1.0.0-M1_2.10|0.1.2|javadoc|jar", + "m":"1499008228080", + "i":"jar|1498995470000|399730|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"d74fa139532c64a2489fe53fb0984526f598ec08" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.13.0-M1|0.1.2|NA", + "m":"1499008228131", + "i":"jar|1498995424000|30178|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"b45a5ea1aaf81e3aa31aa1808388dc2f4cd0f37a" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.13.0-M1|0.1.2|sources|jar", + "m":"1499008228156", + "i":"jar|1498995425000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"71077646045586357df01e798ac8abf8823afcb0" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.13.0-M1|0.1.2|javadoc|jar", + "m":"1499008228186", + "i":"jar|1498995422000|694222|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"dd08115621db22310c73a4b69bb06fdd1f12bd37" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.12|0.1.2|NA", + "m":"1499008228285", + "i":"jar|1498995415000|30178|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"f73fdf9648e9f851a01c7c72dd200f707f20c331" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.12|0.1.2|sources|jar", + "m":"1499008228312", + "i":"jar|1498995415000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"b7320587fb90013a7795beef74cb6d30e5340b7a" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.12|0.1.2|javadoc|jar", + "m":"1499008228334", + "i":"jar|1498995413000|694222|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"1d85daaa91b4af6d45323b1c56eee057ee1ca743" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.11|0.1.2|NA", + "m":"1499008228425", + "i":"jar|1498995397000|28787|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"004b322964680e27cd296d81806ec645e29abbd9" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.11|0.1.2|sources|jar", + "m":"1499008228452", + "i":"jar|1498995398000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"186e2ba7f8130d12e446d1bc31c8fd023b6c5114" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.11|0.1.2|javadoc|jar", + "m":"1499008228475", + "i":"jar|1498995392000|401163|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"33889b0b0ca47f17fdfc626339027cfa06e3d5fa" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.10|0.1.2|NA", + "m":"1499008228560", + "i":"jar|1498995405000|28766|1|1|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"88416033e9f111f3348d672a0d1cb5c694dd4719" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.10|0.1.2|sources|jar", + "m":"1499008228585", + "i":"jar|1498995405000|8574|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"d24d9dbcbef99d9172e833f59e902bba2ba602cb" + }, + { + "u":"org.scala-js|scalajs-java-logging_sjs0.6_2.10|0.1.2|javadoc|jar", + "m":"1499008228607", + "i":"jar|1498995403000|399730|2|2|1|jar", + "n":"scalajs-java-logging", + "d":"scalajs-java-logging", + "1":"9aad5ed47b29008623b29cab5eb60fb92e0c955e" + }, + { + "u":"org.reaktivity|nukleus-ws|0.17|NA", + "m":"1499009088317", + "i":"jar|1498977805000|158057|1|1|1|jar", + "n":"WebSocket Nukleus Implementation", + "d":"WebSocket Nukleus Implementation", + "1":"87bde3fc4c682cd811cd74a30c2bfb1242b47114" + }, + { + "u":"org.reaktivity|nukleus-ws|0.17|tests|jar", + "m":"1499009088357", + "i":"jar|1498977806000|44997|2|2|1|jar", + "n":"WebSocket Nukleus Implementation", + "d":"WebSocket Nukleus Implementation", + "1":"ddac5640826d49ff71fc4db72e4c36e52b68402f" + }, + { + "u":"org.reaktivity|nukleus-ws|0.17|sources|jar", + "m":"1499009088384", + "i":"jar|1498977807000|76250|2|2|1|jar", + "n":"WebSocket Nukleus Implementation", + "d":"WebSocket Nukleus Implementation", + "1":"13eb4325f0f8f3f9f2a1b1cfcdb555a9d9482033" + }, + { + "u":"org.reaktivity|nukleus-ws|0.17|javadoc|jar", + "m":"1499009088412", + "i":"jar|1498977805000|571201|2|2|1|jar", + "n":"WebSocket Nukleus Implementation", + "d":"WebSocket Nukleus Implementation", + "1":"a8bb45f671f92ab3f960f3fd5efd048c5944fbc4" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.12|0.12.4-play26|NA", + "m":"1499009096077", + "i":"jar|1499001577000|345746|1|1|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"a16fd53851ea8be0f10fb234c8989e52fd26487b" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.12|0.12.4-play26|sources|jar", + "m":"1499009096111", + "i":"jar|1499001599000|15075|2|2|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"03a58ad19ef2023777deddd8bbf087e567a1d986" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.12|0.12.4-play26|javadoc|jar", + "m":"1499009096134", + "i":"jar|1499001593000|1145249|2|2|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"d77a2e11af88aca2b7223840a92d20a25d6157fa" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.11|0.12.4-play26|NA", + "m":"1499009096258", + "i":"jar|1499001549000|489643|1|1|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"088196ef6bfca9ce19ba8f1ea12f25fcd25c740b" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.11|0.12.4-play26|sources|jar", + "m":"1499009096310", + "i":"jar|1499001569000|15075|2|2|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"229ea95a8e7c2116457fdfbadaafb4ec54db7568" + }, + { + "u":"org.reactivemongo|reactivemongo-play-json_2.11|0.12.4-play26|javadoc|jar", + "m":"1499009096332", + "i":"jar|1499001562000|757745|2|2|1|jar", + "n":"reactivemongo-play-json", + "d":"reactivemongo-play-json", + "1":"f16c72aa2be6f93f1f61d2a97a2e40b6aa448c7d" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.12|0.12.4-play26|NA", + "m":"1499009104018", + "i":"jar|1498999324000|303339|1|1|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"ecfb825624c896922122a74bf79cbf14b7adfbf5" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.12|0.12.4-play26|sources|jar", + "m":"1499009104051", + "i":"jar|1498999357000|24250|2|2|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"75b39e08508689c9f65465c366f86a1fa9925351" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.12|0.12.4-play26|javadoc|jar", + "m":"1499009104073", + "i":"jar|1498999340000|189|2|2|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"a070d6512f6ad590fa932169e7f3eb90a0901fee" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.11|0.12.4-play26|NA", + "m":"1499009104132", + "i":"jar|1498999292000|504969|1|1|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"0ec876b6f0b5e5f891b8cd25f97c2745a9d73de9" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.11|0.12.4-play26|sources|jar", + "m":"1499009104172", + "i":"jar|1498999314000|24204|2|2|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"5d69e1e6b5bb0b3a890aae18accf4772b24195af" + }, + { + "u":"org.reactivemongo|play2-reactivemongo_2.11|0.12.4-play26|javadoc|jar", + "m":"1499009104194", + "i":"jar|1498999306000|790015|2|2|1|jar", + "n":"Play2-ReactiveMongo", + "d":"Play2-ReactiveMongo", + "1":"e7435ddac27d038a77c9411ec1ef0affc13b434f" + }, + { + "u":"org.owasp|dependency-check-utils|2.0.0|NA", + "m":"1499009856649", + "i":"jar|1498993324000|33727|1|1|1|jar", + "n":"Dependency-Check Utils", + "d":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "1":"4dfd80701bc77d494e588dfe06284f2bfa5d3652" + }, + { + "u":"org.owasp|dependency-check-utils|2.0.0|sources|jar", + "m":"1499009856682", + "i":"jar|1498993323000|30351|2|2|1|jar", + "n":"Dependency-Check Utils", + "d":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "1":"d97d01216a0cd9216259f8a06fd57433b7772137" + }, + { + "u":"org.owasp|dependency-check-utils|2.0.0|javadoc|jar", + "m":"1499009856706", + "i":"jar|1498993319000|108556|2|2|1|jar", + "n":"Dependency-Check Utils", + "d":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "1":"d67de84a85d3447eacaa1a3fe8a96afd2a2c44fd" + }, + { + "u":"org.owasp|dependency-check-plugin|2.0.0|NA", + "m":"1499009857197", + "i":"jar|1498993346000|8778|1|0|1|jar", + "n":"Dependency-Check Plugin Archetype", + "1":"f5b7d1811b8d9947f4963e96e9c1b02106762f72" + }, + { + "u":"org.owasp|dependency-check-plugin|2.0.0|sources|jar", + "m":"1499009857224", + "i":"jar|1498993345000|8650|2|2|1|jar", + "n":"Dependency-Check Plugin Archetype", + "1":"1eaff3869bf2bf930e4eac8ac06a2428cd433825" + }, + { + "u":"org.owasp|dependency-check-parent|2.0.0|NA", + "m":"1499009857301", + "i":"pom|1498993301000|34531|0|0|1|pom", + "n":"Dependency-Check", + "d":"dependency-check is a utility that identifies project dependencies and checks if there are any known, publicly disclosed vulnerabilities. This tool can be part of the solution to the OWASP Top 10 2013: A9 - Using Components with Known Vulnerabilities.", + "1":"6183dc803360e2dc808ee9eed8fcc5e490351452" + }, + { + "u":"org.owasp|dependency-check-maven|2.0.0|NA", + "m":"1499009858039", + "i":"maven-plugin|1498993372000|50360|1|1|1|jar", + "n":"Dependency-Check Maven Plugin", + "d":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"78209bc4a08b57ce726602cb879904f5890e7558" + }, + { + "u":"org.owasp|dependency-check-maven|2.0.0|sources|jar", + "m":"1499009858069", + "i":"jar|1498993372000|34245|2|2|1|jar", + "n":"Dependency-Check Maven Plugin", + "d":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"c2dff4cc614f86da774843e03d1df6a445ccfc2b" + }, + { + "u":"org.owasp|dependency-check-maven|2.0.0|javadoc|jar", + "m":"1499009858094", + "i":"jar|1498993369000|69182|2|2|1|jar", + "n":"Dependency-Check Maven Plugin", + "d":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"095d772075641d0abcf458e8c3daa133add197f6" + }, + { + "u":"org.owasp|dependency-check-core|2.0.0|NA", + "m":"1499009859291", + "i":"jar|1498993406000|557408|1|1|1|jar", + "n":"Dependency-Check Core", + "d":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "1":"3db691aac7c33cf6680d36d8263017e69ecc8f80" + }, + { + "u":"org.owasp|dependency-check-core|2.0.0|tests|jar", + "m":"1499009859333", + "i":"jar|1498993406000|159373|2|2|1|jar", + "n":"Dependency-Check Core", + "d":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "1":"6a64ae087687c18ed34dc20aaf9d685bf490760b" + }, + { + "u":"org.owasp|dependency-check-core|2.0.0|sources|jar", + "m":"1499009859361", + "i":"jar|1498993402000|512732|2|2|1|jar", + "n":"Dependency-Check Core", + "d":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "1":"b06c956af4d7bd04030babdf2e1b5cab8a018e79" + }, + { + "u":"org.owasp|dependency-check-core|2.0.0|javadoc|jar", + "m":"1499009859397", + "i":"jar|1498993399000|1075415|2|2|1|jar", + "n":"Dependency-Check Core", + "d":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "1":"a8b21465cd0cd714262df91313ad54c5fe4ec1a0" + }, + { + "u":"org.owasp|dependency-check-ant|2.0.0|NA", + "m":"1499009860337", + "i":"jar|1498993433000|26633|1|1|1|jar", + "n":"Dependency-Check Ant Task", + "d":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"7ee00ef781a60cddcecc3e46d9c81de8df77b2f7" + }, + { + "u":"org.owasp|dependency-check-ant|2.0.0|sources|jar", + "m":"1499009860364", + "i":"jar|1498993430000|27162|2|2|1|jar", + "n":"Dependency-Check Ant Task", + "d":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"9e681d3fc9180c40fc2dfc43d580c138f291459a" + }, + { + "u":"org.owasp|dependency-check-ant|2.0.0|javadoc|jar", + "m":"1499009860386", + "i":"jar|1498993427000|93670|2|2|1|jar", + "n":"Dependency-Check Ant Task", + "d":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "1":"3ba1519120bb8f9f523c15343acfef7dc095305a" + }, + { + "u":"org.komamitsu|fluency|1.4.0|NA", + "m":"1499015058474", + "i":"jar|1499006451000|91825|1|1|1|jar", + "n":"fluency", + "d":"Yet another fluent logger", + "1":"bfd17957c72e18d221d3e17e4a0b7835447674ea" + }, + { + "u":"org.komamitsu|fluency|1.4.0|sources|jar", + "m":"1499015058503", + "i":"jar|1499006461000|33744|2|2|1|jar", + "n":"fluency", + "d":"Yet another fluent logger", + "1":"bac25d40389f333cbb5f6c786fa521e4d1d647fc" + }, + { + "u":"org.komamitsu|fluency|1.4.0|shadow|jar", + "m":"1499015058528", + "i":"jar|1499006473000|1811713|2|2|1|jar", + "n":"fluency", + "d":"Yet another fluent logger", + "1":"da8bb71b4b7a5035a43ee4cfb8b6500ac3203f99" + }, + { + "u":"org.komamitsu|fluency|1.4.0|javadoc|jar", + "m":"1499015058580", + "i":"jar|1499006470000|225101|2|2|1|jar", + "n":"fluency", + "d":"Yet another fluent logger", + "1":"fb80796cb2de080a7896c179c50f395610f981b6" + }, + { + "u":"org.immutables.vavr|vavr-examples|0.4.0|NA", + "m":"1499019372610", + "i":"jar|1499000356000|69564|1|1|1|jar", + "n":"vavr-examples", + "d":"Immutables.org examples for Vavr (Examples)", + "1":"e968b488e8aa5d7f24f476873aad97d054f479b0" + }, + { + "u":"org.immutables.vavr|vavr-examples|0.4.0|tests|jar", + "m":"1499019372644", + "i":"jar|1499000366000|23747|2|2|1|jar", + "n":"vavr-examples", + "d":"Immutables.org examples for Vavr (Examples)", + "1":"ae4487d139aa80d2dc5b1c17a1817a2392a1519e" + }, + { + "u":"org.immutables.vavr|vavr-examples|0.4.0|test-sources|jar", + "m":"1499019372669", + "i":"jar|1499000362000|18654|2|2|1|jar", + "n":"vavr-examples", + "d":"Immutables.org examples for Vavr (Examples)", + "1":"519531df59a97dc7bb4090aed86cd3aa5869b17f" + }, + { + "u":"org.immutables.vavr|vavr-examples|0.4.0|sources|jar", + "m":"1499019372695", + "i":"jar|1499000361000|46690|2|2|1|jar", + "n":"vavr-examples", + "d":"Immutables.org examples for Vavr (Examples)", + "1":"4027c7ff0374b003fbbaeea3c438c0b7330ff975" + }, + { + "u":"org.immutables.vavr|vavr-examples|0.4.0|javadoc|jar", + "m":"1499019372721", + "i":"jar|1499000363000|306613|2|2|1|jar", + "n":"vavr-examples", + "d":"Immutables.org examples for Vavr (Examples)", + "1":"0a79b46b06a44e64705276d84c0615e10fbd0f47" + }, + { + "u":"org.immutables.vavr|vavr-encodings|0.4.0|NA", + "m":"1499019372778", + "i":"jar|1499000341000|62583|1|1|1|jar", + "n":"vavr-encodings", + "d":"Immutables.org encodings for Vavr (Encodings)", + "1":"005bf1930701ef9a16daaf528e01fd83ebd00b6a" + }, + { + "u":"org.immutables.vavr|vavr-encodings|0.4.0|tests|jar", + "m":"1499019372809", + "i":"jar|1499000345000|1956|2|2|1|jar", + "n":"vavr-encodings", + "d":"Immutables.org encodings for Vavr (Encodings)", + "1":"f0dbb3cd4fe2b62ffc50ba8c35ee8957cb4cf6ec" + }, + { + "u":"org.immutables.vavr|vavr-encodings|0.4.0|sources|jar", + "m":"1499019372829", + "i":"jar|1499000344000|42293|2|2|1|jar", + "n":"vavr-encodings", + "d":"Immutables.org encodings for Vavr (Encodings)", + "1":"449e86e56f082d1f595b34d442359f32ca5b9b11" + }, + { + "u":"org.immutables.vavr|vavr-encodings|0.4.0|javadoc|jar", + "m":"1499019372858", + "i":"jar|1499000345000|91697|2|2|1|jar", + "n":"vavr-encodings", + "d":"Immutables.org encodings for Vavr (Encodings)", + "1":"f7563cf59d706951c2d4854761cd1ab50d66122c" + }, + { + "u":"org.immutables.vavr|vavr-checkstyle|0.4.0|NA", + "m":"1499019372913", + "i":"jar|1499000309000|4726|1|1|1|jar", + "n":"vavr-checkstyle", + "d":"Immutables.org encodings for Vavr (Checkstyle policy)", + "1":"cda761c0224e6e2f9e80a07d232115b2cf9df48d" + }, + { + "u":"org.immutables.vavr|vavr-checkstyle|0.4.0|tests|jar", + "m":"1499019372942", + "i":"jar|1499000332000|1827|2|2|1|jar", + "n":"vavr-checkstyle", + "d":"Immutables.org encodings for Vavr (Checkstyle policy)", + "1":"7b1f6ec5223c12ec4b820e4b93d25447e7add7b8" + }, + { + "u":"org.immutables.vavr|vavr-checkstyle|0.4.0|sources|jar", + "m":"1499019372963", + "i":"jar|1499000326000|5543|2|2|1|jar", + "n":"vavr-checkstyle", + "d":"Immutables.org encodings for Vavr (Checkstyle policy)", + "1":"5188ea0db96741fcbb94122cabd63f00bec267cc" + }, + { + "u":"org.immutables.vavr|vavr-checkstyle|0.4.0|javadoc|jar", + "m":"1499019372988", + "i":"jar|1499000328000|23457|2|2|1|jar", + "n":"vavr-checkstyle", + "d":"Immutables.org encodings for Vavr (Checkstyle policy)", + "1":"ee9ba43bc1373bde0155e598a276993d56e402a4" + }, + { + "u":"org.immutables.vavr|vavr|0.4.0|NA", + "m":"1499019373045", + "i":"pom|1499000285000|12844|0|0|1|pom", + "n":"vavr", + "d":"Immutables.org encodings for Vavr", + "1":"ec9cb3f577aacec316f205c35de8248b91ef6b8f" + }, + { + "u":"org.igniterealtime.smack|smack-tcp|4.2.1-beta1|NA", + "m":"1499019541334", + "i":"jar|1499015322000|59652|1|1|1|jar", + "n":"Smack", + "d":"Smack for standard XMPP connections over TCP.", + "1":"515d084cb65cee07ed1fd33877713cff3ac6ef3b", + "Bundle-SymbolicName":"org.igniterealtime.smack.tcp", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.sm;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet\",org.jivesoftware.smack.sm.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smack.sm.predicates;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smack.tcp\",org.jivesoftware.smack.sm.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.sm.packet,org.xmlpull.v1\",org.jivesoftware.smack.tcp;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.packet,org.jivesoftware.smack.sm,org.jxmpp.jid.parts,org.jxmpp.stringprep\"", + "Bundle-Name":"smack-tcp", + "Import-Package":"javax.net,javax.net.ssl,javax.security.auth.callback,org.jivesoftware.smack,org.jivesoftware.smack.compress.packet,org.jivesoftware.smack.compression,org.jivesoftware.smack.debugger,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.proxy,org.jivesoftware.smack.sasl.packet,org.jivesoftware.smack.util,org.jivesoftware.smack.util.dns,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.stringprep,org.jxmpp.util,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-tcp|4.2.1-beta1|tests|jar", + "m":"1499019541361", + "i":"jar|1499015335000|8319|2|2|1|jar", + "n":"Smack", + "d":"Smack for standard XMPP connections over TCP.", + "1":"b69eacbf86e231509e2efade1fd15c2839c13c5b" + }, + { + "u":"org.igniterealtime.smack|smack-tcp|4.2.1-beta1|sources|jar", + "m":"1499019541382", + "i":"jar|1499015337000|41116|2|2|1|jar", + "n":"Smack", + "d":"Smack for standard XMPP connections over TCP.", + "1":"b61f04a1e4de6fae395658b6827912be9341d705" + }, + { + "u":"org.igniterealtime.smack|smack-tcp|4.2.1-beta1|javadoc|jar", + "m":"1499019541405", + "i":"jar|1499015331000|135886|2|2|1|jar", + "n":"Smack", + "d":"Smack for standard XMPP connections over TCP.", + "1":"b9b364862fbcb3a5f1fb2d842e2a6f8f770621ce" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-provided|4.2.1-beta1|NA", + "m":"1499019542137", + "i":"jar|1499015298000|10586|1|1|1|jar", + "n":"Smack", + "d":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "1":"c052d47511fcdff1f9fafa9026bf600c75f48690", + "Bundle-SymbolicName":"org.igniterealtime.smack.sasl-provided", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.sasl.provided;version=\"4.2.1.beta1\";uses:=\"javax.security.auth.callback,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.sasl\"", + "Bundle-Name":"smack-sasl-provided", + "Import-Package":"javax.security.auth.callback,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.sasl,org.jivesoftware.smack.util,org.jxmpp.jid,org.jxmpp.util" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-provided|4.2.1-beta1|tests|jar", + "m":"1499019542161", + "i":"jar|1499015307000|1600|2|2|1|jar", + "n":"Smack", + "d":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "1":"4708d6c995247c16c4424be443e498e13329b039" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-provided|4.2.1-beta1|sources|jar", + "m":"1499019542179", + "i":"jar|1499015309000|7544|2|2|1|jar", + "n":"Smack", + "d":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "1":"ddeba3b91abff513ba57efc4760405ca597d92e5" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-provided|4.2.1-beta1|javadoc|jar", + "m":"1499019542200", + "i":"jar|1499015312000|32390|2|2|1|jar", + "n":"Smack", + "d":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "1":"ad8894957651582fb4ad476b77319535ac912c48" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-javax|4.2.1-beta1|NA", + "m":"1499019542769", + "i":"jar|1499015277000|8648|1|1|1|jar", + "n":"Smack", + "d":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "1":"3afb4f0cf6c3199cf41fbfbe3f7c6aca9034dd4e", + "Bundle-SymbolicName":"org.igniterealtime.smack.sasl-javax", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.sasl.javax;version=\"4.2.1.beta1\";uses:=\"javax.security.auth.callback,javax.security.sasl,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.sasl\"", + "Bundle-Name":"smack-sasl-javax", + "Import-Package":"javax.security.auth.callback,javax.security.sasl,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.sasl,org.jxmpp.jid" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-javax|4.2.1-beta1|tests|jar", + "m":"1499019542794", + "i":"jar|1499015282000|1586|2|2|1|jar", + "n":"Smack", + "d":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "1":"e4ef225c9dbb67d3e2036803c09d67fe1e19c4b4" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-javax|4.2.1-beta1|sources|jar", + "m":"1499019542812", + "i":"jar|1499015286000|8690|2|2|1|jar", + "n":"Smack", + "d":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "1":"7eb83a51af49646c8b2b006830140a41047a3500" + }, + { + "u":"org.igniterealtime.smack|smack-sasl-javax|4.2.1-beta1|javadoc|jar", + "m":"1499019542835", + "i":"jar|1499015284000|42546|2|2|1|jar", + "n":"Smack", + "d":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "1":"b2e7404eb112cc3947910106143d10c7423d87d0" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-minidns|4.2.1-beta1|NA", + "m":"1499019543415", + "i":"jar|1499015257000|7912|1|1|1|jar", + "n":"Smack", + "d":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"a4b72c50e2c78b961971bf354d668479e26eb282", + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-minidns", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.util.dns.minidns;version=\"4.2.1.beta1\";uses:=\"javax.net.ssl,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util.dns\"", + "Bundle-Name":"smack-resolver-minidns", + "Import-Package":"de.measite.minidns,de.measite.minidns.dane,de.measite.minidns.dnssec,de.measite.minidns.hla,de.measite.minidns.record,javax.net.ssl,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util,org.jivesoftware.smack.util.dns" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-minidns|4.2.1-beta1|tests|jar", + "m":"1499019543439", + "i":"jar|1499015262000|261|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"87b7589053c1890cd2ef31cd5a4c37f7fc6ebe15" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-minidns|4.2.1-beta1|sources|jar", + "m":"1499019543457", + "i":"jar|1499015268000|7149|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"ed5b289b00658e958ea465dcf646c312f29f1418" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-minidns|4.2.1-beta1|javadoc|jar", + "m":"1499019543478", + "i":"jar|1499015265000|27240|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"ed08c217bf604881fb7a88bc04974f75ce1e95ec" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-javax|4.2.1-beta1|NA", + "m":"1499019544165", + "i":"jar|1499015239000|3914|1|1|1|jar", + "n":"Smack", + "d":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "1":"9f24bf28ebc79c12d62f149a2c9eed846724681a", + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-javax", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.util.dns.javax;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util.dns\"", + "Bundle-Name":"smack-resolver-javax", + "Import-Package":"javax.naming,javax.naming.directory,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util,org.jivesoftware.smack.util.dns" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-javax|4.2.1-beta1|tests|jar", + "m":"1499019544185", + "i":"jar|1499015245000|261|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "1":"d507d0526f4444acfe9acc5e6ec29a9b4a993b84" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-javax|4.2.1-beta1|sources|jar", + "m":"1499019544203", + "i":"jar|1499015251000|4535|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "1":"cb851300d67ad0fe1e455275148df8bfd963e783" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-javax|4.2.1-beta1|javadoc|jar", + "m":"1499019544225", + "i":"jar|1499015244000|21512|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "1":"18d4dccc66d0a5f9bd16472cf911a013fd08b5bf" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-dnsjava|4.2.1-beta1|NA", + "m":"1499019544947", + "i":"jar|1499015221000|3183|1|1|1|jar", + "n":"Smack", + "d":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"333b514cfc9ed90e7a2c544bad1d4c7337b11fcb", + "Bundle-SymbolicName":"org.igniterealtime.smack.resolver-dnsjava", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.util.dns.dnsjava;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util.dns\"", + "Bundle-Name":"smack-resolver-dnsjava", + "Import-Package":"org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util,org.jivesoftware.smack.util.dns,org.xbill.DNS" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-dnsjava|4.2.1-beta1|tests|jar", + "m":"1499019544967", + "i":"jar|1499015224000|261|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"a233be423f24767b893bf53f9480d13eb8ad1942" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-dnsjava|4.2.1-beta1|sources|jar", + "m":"1499019544985", + "i":"jar|1499015231000|4128|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"6584dfe86fb3e46e0116e086cb6e547621e87f84" + }, + { + "u":"org.igniterealtime.smack|smack-resolver-dnsjava|4.2.1-beta1|javadoc|jar", + "m":"1499019545005", + "i":"jar|1499015230000|21449|2|2|1|jar", + "n":"Smack", + "d":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "1":"fa9a8b7ca73fab5a1bb7ef0f642cdcfeb6d5242b" + }, + { + "u":"org.igniterealtime.smack|smack-repl|4.2.1-beta1|NA", + "m":"1499019545740", + "i":"jar|1499015199000|16557|1|1|1|jar", + "n":"Smack", + "d":"null", + "1":"e8d2c9e24b6fd23d162e7e0664284b1c3966ae1e", + "Bundle-SymbolicName":"org.igniterealtime.smack.repl", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.igniterealtime.smack.smackrepl;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid,org.jxmpp.jid.parts,org.jxmpp.stringprep\"", + "Bundle-Name":"smack-repl", + "Import-Package":"eu.geekplace.javapinning.java7,javax.net.ssl,org.igniterealtime.smack.inttest.util,org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.roster,org.jivesoftware.smack.tcp,org.jivesoftware.smack.util,org.jivesoftware.smack.util.dns.javax,org.jivesoftware.smackx.iot,org.jivesoftware.smackx.iot.data,org.jivesoftware.smackx.iot.data.element,org.jivesoftware.smackx.iot.discovery,org.jivesoftware.smackx.iot.provisioning,org.jivesoftware.smackx.iqregister,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.stringprep" + }, + { + "u":"org.igniterealtime.smack|smack-repl|4.2.1-beta1|tests|jar", + "m":"1499019545770", + "i":"jar|1499015211000|1204|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"295bc53d7395cf6b2aecadd160561cfc65aeaac0" + }, + { + "u":"org.igniterealtime.smack|smack-repl|4.2.1-beta1|sources|jar", + "m":"1499019545789", + "i":"jar|1499015208000|8037|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"1ac43f472cf2db16f56926e8c4c5254c6b92c990" + }, + { + "u":"org.igniterealtime.smack|smack-repl|4.2.1-beta1|javadoc|jar", + "m":"1499019545812", + "i":"jar|1499015210000|29515|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"7786abdd0d00c3a2698c76ef9070b02f5134c256" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal-integration-test|4.2.1-beta1|NA", + "m":"1499019545985", + "i":"zip|1499015180000|5906|1|1|1|zip", + "n":"Smack", + "d":"Smack integration tests for OMEMO using libsignal.", + "1":"3cdb8a76dd8ac88981635750dad7d3f37fef6eee" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal-integration-test|4.2.1-beta1|tests|jar", + "m":"1499019545999", + "i":"jar|1499015183000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests for OMEMO using libsignal.", + "1":"cd9f2b960ec74966f415f797e1fbc7beea9c45fa" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal-integration-test|4.2.1-beta1|sources|jar", + "m":"1499019546017", + "i":"jar|1499015182000|2836|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests for OMEMO using libsignal.", + "1":"2f93a67f9cb8c71d33143608b2efe210bb6ff06b" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal-integration-test|4.2.1-beta1|javadoc|jar", + "m":"1499019546034", + "i":"jar|1499015179000|21150|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests for OMEMO using libsignal.", + "1":"8009486014b7c0d894643cc5f2ff998b549c258b" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal|4.2.1-beta1|NA", + "m":"1499019546134", + "i":"jar|1499015132000|15418|1|1|1|jar", + "n":"Smack", + "d":"null", + "1":"9cb8a0bc1bbf7ba47e2dcb3b6a15a955118a522c", + "Bundle-SymbolicName":"org.igniterealtime.smack.omemo-signal", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.omemo.signal;version=\"4.2.1.beta1\";uses:=\"javax.crypto,org.jivesoftware.smack,org.jivesoftware.smackx.omemo,org.jivesoftware.smackx.omemo.element,org.jivesoftware.smackx.omemo.exceptions,org.jivesoftware.smackx.omemo.internal,org.jivesoftware.smackx.omemo.util,org.jxmpp.stringprep,org.whispersystems.libsignal,org.whispersystems.libsignal.ecc,org.whispersystems.libsignal.state\"", + "Bundle-Name":"smack-omemo-signal", + "Import-Package":"javax.crypto,org.jivesoftware.smack,org.jivesoftware.smackx.omemo,org.jivesoftware.smackx.omemo.element,org.jivesoftware.smackx.omemo.exceptions,org.jivesoftware.smackx.omemo.internal,org.jivesoftware.smackx.omemo.util,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.stringprep,org.whispersystems.libsignal,org.whispersystems.libsignal.ecc,org.whispersystems.libsignal.protocol,org.whispersystems.libsignal.state,org.whispersystems.libsignal.util,org.whispersystems.libsignal.util.guava" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal|4.2.1-beta1|tests|jar", + "m":"1499019546160", + "i":"jar|1499015136000|17517|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"173ffb2d20a71e1f174e64867437149aa427cb69" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal|4.2.1-beta1|sources|jar", + "m":"1499019546183", + "i":"jar|1499015144000|11734|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"483edede9edcda5466691efa861ba9ba2a97223c" + }, + { + "u":"org.igniterealtime.smack|smack-omemo-signal|4.2.1-beta1|javadoc|jar", + "m":"1499019546205", + "i":"jar|1499015141000|45050|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"d80982bfdb8e4bbb04fad6548516575b26424cb2" + }, + { + "u":"org.igniterealtime.smack|smack-omemo|4.2.1-beta1|NA", + "m":"1499019546249", + "i":"jar|1499015101000|99758|1|1|1|jar", + "n":"Smack", + "d":"null", + "1":"c79e5844707653301c876369f03fff680a84f24d", + "Bundle-SymbolicName":"org.igniterealtime.smack.omemo", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.omemo;version=\"4.2.1.beta1\";uses:=\"javax.crypto,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.packet,org.jivesoftware.smackx.mam,org.jivesoftware.smackx.muc,org.jivesoftware.smackx.omemo.element,org.jivesoftware.smackx.omemo.exceptions,org.jivesoftware.smackx.omemo.internal,org.jivesoftware.smackx.omemo.listener,org.jivesoftware.smackx.omemo.util,org.jivesoftware.smackx.pubsub,org.jxmpp.jid\",org.jivesoftware.smackx.omemo.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.omemo.exceptions;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.omemo.internal,org.jxmpp.jid\",org.jivesoftware.smackx.omemo.internal;version=\"4.2.1.beta1\";uses:=\"javax.crypto,org.jivesoftware.smack.packet,org.jivesoftware.smackx.omemo,org.jivesoftware.smackx.omemo.element,org.jivesoftware.smackx.omemo.exceptions,org.jxmpp.jid\",org.jivesoftware.smackx.omemo.listener;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.muc,org.jivesoftware.smackx.omemo.internal,org.jxmpp.jid\",org.jivesoftware.smackx.omemo.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.omemo.element,org.xmlpull.v1\",org.jivesoftware.smackx.omemo.util;version=\"4.2.1.beta1\";uses:=\"javax.crypto,org.jivesoftware.smackx.omemo,org.jivesoftware.smackx.omemo.element,org.jivesoftware.smackx.omemo.exceptions,org.jivesoftware.smackx.omemo.internal,org.jxmpp.stringprep\"", + "Bundle-Name":"smack-omemo", + "Import-Package":"javax.crypto,javax.crypto.spec,org.bouncycastle.jce.provider,org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster,org.jivesoftware.smack.util,org.jivesoftware.smack.util.stringencoder,org.jivesoftware.smackx.carbons,org.jivesoftware.smackx.carbons.packet,org.jivesoftware.smackx.disco,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.eme.element,org.jivesoftware.smackx.forward.packet,org.jivesoftware.smackx.hints.element,org.jivesoftware.smackx.mam,org.jivesoftware.smackx.muc,org.jivesoftware.smackx.pep,org.jivesoftware.smackx.pubsub,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.stringprep,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-omemo|4.2.1-beta1|tests|jar", + "m":"1499019546275", + "i":"jar|1499015115000|15489|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"b9f504e1c2ce378801315ae90f46142b4d7db22e" + }, + { + "u":"org.igniterealtime.smack|smack-omemo|4.2.1-beta1|sources|jar", + "m":"1499019546299", + "i":"jar|1499015105000|80462|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"ea53c6128d501ec24f6d44c5339194584b50ac4c" + }, + { + "u":"org.igniterealtime.smack|smack-omemo|4.2.1-beta1|javadoc|jar", + "m":"1499019546322", + "i":"jar|1499015110000|256372|2|2|1|jar", + "n":"Smack", + "d":"null", + "1":"ed7ad11f2d5ca2eefa99c149940f98eff6af3584" + }, + { + "u":"org.igniterealtime.smack|smack-legacy|4.2.1-beta1|NA", + "m":"1499019546374", + "i":"jar|1499015073000|174227|1|1|1|jar", + "n":"Smack", + "d":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "1":"e975b6053783ec6f06a369010558ce78cb85e633", + "Bundle-SymbolicName":"org.igniterealtime.smack.legacy", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.legacy;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.initializer\",org.jivesoftware.smackx.workgroup;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.workgroup.agent;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.search,org.jivesoftware.smackx.workgroup,org.jivesoftware.smackx.workgroup.ext.history,org.jivesoftware.smackx.workgroup.ext.macros,org.jivesoftware.smackx.workgroup.ext.notes,org.jivesoftware.smackx.workgroup.packet,org.jivesoftware.smackx.workgroup.settings,org.jivesoftware.smackx.xdata,org.jxmpp.jid,org.jxmpp.jid.parts,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.ext.forms;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.ext.history;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.ext.macros;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.ext.notes;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.jivesoftware.smackx.workgroup,org.jivesoftware.smackx.workgroup.agent,org.jxmpp.jid,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.settings;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.workgroup.user;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.workgroup,org.jivesoftware.smackx.workgroup.settings,org.jivesoftware.smackx.xdata,org.jxmpp.jid\",org.jivesoftware.smackx.workgroup.util;version=\"4.2.1.beta1\";uses:=\"org.xmlpull.v1\",org.jivesoftware.smackx.xevent;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.xevent.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.xevent.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.xevent.packet,org.xmlpull.v1\",org.jivesoftware.smackx.xroster;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.roster,org.jxmpp.jid\",org.jivesoftware.smackx.xroster.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.roster,org.jivesoftware.smackx.xroster\",org.jivesoftware.smackx.xroster.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.xroster.packet,org.xmlpull.v1\"", + "Bundle-Name":"smack-legacy", + "Import-Package":"org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster,org.jivesoftware.smack.util,org.jivesoftware.smack.util.stringencoder,org.jivesoftware.smackx.disco,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.muc,org.jivesoftware.smackx.muc.packet,org.jivesoftware.smackx.search,org.jivesoftware.smackx.xdata,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.stringprep,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-legacy|4.2.1-beta1|tests|jar", + "m":"1499019546402", + "i":"jar|1499015089000|1297|2|2|1|jar", + "n":"Smack", + "d":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "1":"abafdf668834f50898aa7c3c225197987e7c2b22" + }, + { + "u":"org.igniterealtime.smack|smack-legacy|4.2.1-beta1|sources|jar", + "m":"1499019546421", + "i":"jar|1499015078000|138389|2|2|1|jar", + "n":"Smack", + "d":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "1":"02c64befa094c152eaf8fd6c6aea41c583ec815f" + }, + { + "u":"org.igniterealtime.smack|smack-legacy|4.2.1-beta1|javadoc|jar", + "m":"1499019546444", + "i":"jar|1499015085000|472377|2|2|1|jar", + "n":"Smack", + "d":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "1":"d23c8abd5bd8d650e31423ca90553753f96671cb" + }, + { + "u":"org.igniterealtime.smack|smack-jingle-old|4.2.1-beta1|NA", + "m":"1499019547188", + "i":"jar|1499015036000|255215|1|1|1|jar", + "n":"Smack", + "d":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "1":"1729bc03478ce6234bb082dfbcb67ef94c8bf873", + "Bundle-SymbolicName":"org.igniterealtime.smack.jingle-old", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.jingleold;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.jingleold.listeners,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat,org.jivesoftware.smackx.jingleold.packet,org.jxmpp.jid\",org.jivesoftware.smackx.jingleold.listeners;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.media;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.nat,org.jivesoftware.smackx.jingleold.packet\",org.jivesoftware.smackx.jingleold.mediaimpl;version=\"4.2.1.beta1\",org.jivesoftware.smackx.jingleold.mediaimpl.jmf;version=\"4.2.1.beta1\";uses:=\"javax.media,javax.media.format,javax.media.rtp,javax.media.rtp.event,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.mediaimpl.jspeex;version=\"4.2.1.beta1\";uses:=\"javax.media,javax.media.format,javax.media.rtp.rtcp,mil.jfcom.cie.media.session,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.mediaimpl.multi;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.mediaimpl.sshare;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.mediaimpl.sshare.api,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.mediaimpl.sshare.api;version=\"4.2.1.beta1\",org.jivesoftware.smackx.jingleold.mediaimpl.test;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat\",org.jivesoftware.smackx.jingleold.nat;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.listeners,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.packet,org.xmlpull.v1\",org.jivesoftware.smackx.jingleold.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.jingleold,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.nat,org.jxmpp.jid,org.xmlpull.v1\",org.jivesoftware.smackx.jingleold.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.jingleold.media,org.jivesoftware.smackx.jingleold.packet,org.xmlpull.v1\"", + "Bundle-Name":"smack-jingle-old", + "Import-Package":"com.ibm.media.codec.audio.rc,com.ibm.media.codec.audio.ulaw,com.sun.media,com.sun.media.codec.audio.ulaw,com.sun.media.util,de.javawi.jstun.test,de.javawi.jstun.test.demo.ice,de.javawi.jstun.util,javax.imageio,javax.media,javax.media.control,javax.media.format,javax.media.protocol,javax.media.rtp,javax.media.rtp.event,javax.media.rtp.rtcp,javax.swing,mil.jfcom.cie.media.session,mil.jfcom.cie.media.srtp.packetizer,org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster,org.jivesoftware.smack.util,org.jivesoftware.smackx.disco,org.jivesoftware.smackx.disco.packet,org.jxmpp.jid,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-jingle-old|4.2.1-beta1|tests|jar", + "m":"1499019547219", + "i":"jar|1499015050000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "1":"8325dabd5ab6a3a53a4ae5338fafbe353d049046" + }, + { + "u":"org.igniterealtime.smack|smack-jingle-old|4.2.1-beta1|sources|jar", + "m":"1499019547237", + "i":"jar|1499015055000|178500|2|2|1|jar", + "n":"Smack", + "d":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "1":"bc7c655aeb1d8e0d485e9353ea7ef82bd7b7382a" + }, + { + "u":"org.igniterealtime.smack|smack-jingle-old|4.2.1-beta1|javadoc|jar", + "m":"1499019547261", + "i":"jar|1499015047000|538826|2|2|1|jar", + "n":"Smack", + "d":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "1":"e951f1459e561b403e5041e534d335ef36282c65" + }, + { + "u":"org.igniterealtime.smack|smack-java7|4.2.1-beta1|NA", + "m":"1499019548092", + "i":"jar|1499015006000|21604|1|1|1|jar", + "n":"Smack", + "d":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "1":"53f3600400697927fc1a1555589333e4e3d21da2", + "Bundle-SymbolicName":"org.igniterealtime.smack.java7", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.java7;version=\"4.2.1.beta1\";uses:=\"javax.net.ssl,org.jivesoftware.smack.initializer\",org.jivesoftware.smack.util.stringencoder.java7;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.util.stringencoder\"", + "Bundle-Name":"smack-java7", + "Import-Package":"javax.naming,javax.naming.ldap,javax.net.ssl,javax.security.auth.kerberos,javax.security.auth.x500,org.jivesoftware.smack,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util,org.jivesoftware.smack.util.stringencoder" + }, + { + "u":"org.igniterealtime.smack|smack-java7|4.2.1-beta1|tests|jar", + "m":"1499019548118", + "i":"jar|1499015018000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "1":"6d47466cd91239c8b48e433f4bfeedbabac94250" + }, + { + "u":"org.igniterealtime.smack|smack-java7|4.2.1-beta1|sources|jar", + "m":"1499019548136", + "i":"jar|1499015011000|21533|2|2|1|jar", + "n":"Smack", + "d":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "1":"7d4d39109e51126b373602cb25a0cd36292d16b4" + }, + { + "u":"org.igniterealtime.smack|smack-java7|4.2.1-beta1|javadoc|jar", + "m":"1499019548159", + "i":"jar|1499015017000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "1":"6d47466cd91239c8b48e433f4bfeedbabac94250" + }, + { + "u":"org.igniterealtime.smack|smack-integration-test|4.2.1-beta1|NA", + "m":"1499019548777", + "i":"zip|1499015001000|117492|1|1|1|zip", + "n":"Smack", + "d":"Smack integration tests.", + "1":"5d75a24b0b78a8d28d4539ff9c3baddc17cb1a31" + }, + { + "u":"org.igniterealtime.smack|smack-integration-test|4.2.1-beta1|tests|jar", + "m":"1499019548791", + "i":"jar|1499014979000|11178|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests.", + "1":"942e27a3a9e32a2be819a105d6783777bb1e18ad" + }, + { + "u":"org.igniterealtime.smack|smack-integration-test|4.2.1-beta1|sources|jar", + "m":"1499019548815", + "i":"jar|1499014985000|74963|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests.", + "1":"75c55e8808e42cb66646de5fcbd606ec037c53b1" + }, + { + "u":"org.igniterealtime.smack|smack-integration-test|4.2.1-beta1|javadoc|jar", + "m":"1499019548838", + "i":"jar|1499014975000|226649|2|2|1|jar", + "n":"Smack", + "d":"Smack integration tests.", + "1":"78390257f371efd8432f4f58da99d0a64d7982a9" + }, + { + "u":"org.igniterealtime.smack|smack-im|4.2.1-beta1|NA", + "m":"1499019549047", + "i":"jar|1499014914000|71456|1|1|1|jar", + "n":"Smack", + "d":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "1":"c6a2d02bcb7fa7ec659a064d7ae0a3a96b531a86", + "Bundle-SymbolicName":"org.igniterealtime.smack.im", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.chat;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smack.im;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.initializer\",org.jivesoftware.smack.roster;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.roster.packet,org.jivesoftware.smack.roster.rosterstore,org.jxmpp.jid\",org.jivesoftware.smack.roster.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smack.roster.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster.packet,org.xmlpull.v1\",org.jivesoftware.smack.roster.rosterstore;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.roster.packet,org.jxmpp.jid\"", + "Bundle-Name":"smack-im", + "Import-Package":"org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.jivesoftware.smack.util.stringencoder,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.util.cache,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-im|4.2.1-beta1|tests|jar", + "m":"1499019549077", + "i":"jar|1499014919000|37808|2|2|1|jar", + "n":"Smack", + "d":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "1":"ee315d5b3824d77365af0eef8b822c4be5625b5e" + }, + { + "u":"org.igniterealtime.smack|smack-im|4.2.1-beta1|sources|jar", + "m":"1499019549105", + "i":"jar|1499014924000|54173|2|2|1|jar", + "n":"Smack", + "d":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "1":"f292efdac3aa1a300022ff6c6d8c956b657067da" + }, + { + "u":"org.igniterealtime.smack|smack-im|4.2.1-beta1|javadoc|jar", + "m":"1499019549128", + "i":"jar|1499014922000|148533|2|2|1|jar", + "n":"Smack", + "d":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "1":"8f44bfa8838efd1e6d7fc2b79608f1c547a1983d" + }, + { + "u":"org.igniterealtime.smack|smack-extensions|4.2.1-beta1|NA", + "m":"1499019549588", + "i":"jar|1499014869000|703800|1|1|1|jar", + "n":"Smack", + "d":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "1":"cb9bfcfcf7fb8df2667d274c2ed87c3149600067", + "Bundle-SymbolicName":"org.igniterealtime.smack.extensions", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.chat2;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smack.extensions;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.initializer\",org.jivesoftware.smackx.address;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.address.packet,org.jxmpp.jid\",org.jivesoftware.smackx.address.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.address.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.address.packet,org.xmlpull.v1\",org.jivesoftware.smackx.admin;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.commands,org.jxmpp.jid\",org.jivesoftware.smackx.amp;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.amp.packet\",org.jivesoftware.smackx.amp.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.amp.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.amp.packet,org.xmlpull.v1\",org.jivesoftware.smackx.attention.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.blocking;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.blocking.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.blocking.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.blocking.element,org.xmlpull.v1\",org.jivesoftware.smackx.bob;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.bob.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.bob,org.jivesoftware.smackx.xhtmlim.packet\",org.jivesoftware.smackx.bob.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.bob.element,org.xmlpull.v1\",org.jivesoftware.smackx.bookmarks;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.util,org.jivesoftware.smackx.iqprivate.packet,org.jivesoftware.smackx.iqprivate.provider,org.jxmpp.jid,org.jxmpp.jid.parts,org.xmlpull.v1\",org.jivesoftware.smackx.bytestreams;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.bytestreams.ibb;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.bytestreams,org.jivesoftware.smackx.bytestreams.ibb.packet,org.jxmpp.jid\",org.jivesoftware.smackx.bytestreams.ibb.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.bytestreams.ibb\",org.jivesoftware.smackx.bytestreams.ibb.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.bytestreams.ibb.packet,org.xmlpull.v1\",org.jivesoftware.smackx.bytestreams.socks5;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.bytestreams,org.jivesoftware.smackx.bytestreams.socks5.packet,org.jxmpp.jid\",org.jivesoftware.smackx.bytestreams.socks5.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.bytestreams.socks5.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.bytestreams.socks5.packet,org.xmlpull.v1\",org.jivesoftware.smackx.caps;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.caps.cache,org.jivesoftware.smackx.disco.packet,org.jxmpp.jid\",org.jivesoftware.smackx.caps.cache;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.util.stringencoder,org.jivesoftware.smackx.disco.packet\",org.jivesoftware.smackx.caps.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.caps.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.caps.packet,org.xmlpull.v1\",org.jivesoftware.smackx.chatstates;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.chat,org.jivesoftware.smack.packet\",org.jivesoftware.smackx.chatstates.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.chatstates\",org.jivesoftware.smackx.chatstates.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.chatstates.packet,org.xmlpull.v1\",org.jivesoftware.smackx.commands;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.xdata,org.jxmpp.jid\",org.jivesoftware.smackx.commands.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.commands,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid\",org.jivesoftware.smackx.commands.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.commands.packet,org.xmlpull.v1\",org.jivesoftware.smackx.delay;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.delay.packet\",org.jivesoftware.smackx.delay.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet\",org.jivesoftware.smackx.delay.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.delay.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.delay.packet,org.xmlpull.v1\",org.jivesoftware.smackx.disco;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.caps,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid\",org.jivesoftware.smackx.disco.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.disco.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.disco.packet,org.xmlpull.v1\",org.jivesoftware.smackx.filetransfer;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.si.packet,org.jxmpp.jid\",org.jivesoftware.smackx.forward.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.delay.packet\",org.jivesoftware.smackx.forward.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.forward.packet,org.xmlpull.v1\",org.jivesoftware.smackx.geoloc;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.geoloc.packet,org.jxmpp.jid\",org.jivesoftware.smackx.geoloc.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.geoloc.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.geoloc.packet,org.xmlpull.v1\",org.jivesoftware.smackx.iqlast;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iqlast.packet,org.jxmpp.jid\",org.jivesoftware.smackx.iqlast.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jxmpp.jid,org.xmlpull.v1\",org.jivesoftware.smackx.iqprivate;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iqprivate.packet,org.jivesoftware.smackx.iqprivate.provider,org.xmlpull.v1\",org.jivesoftware.smackx.iqprivate.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.iqprivate.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iqprivate.packet,org.xmlpull.v1\",org.jivesoftware.smackx.iqregister;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid.parts\",org.jivesoftware.smackx.iqregister.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.iqregister.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iqregister.packet,org.xmlpull.v1\",org.jivesoftware.smackx.iqversion;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iqversion.packet,org.jxmpp.jid\",org.jivesoftware.smackx.iqversion.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.iqversion.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iqversion.packet,org.xmlpull.v1\",org.jivesoftware.smackx.jiveproperties;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.jiveproperties.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.jiveproperties.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.jiveproperties.packet,org.xmlpull.v1\",org.jivesoftware.smackx.message_correct.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.message_correct.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.message_correct.element,org.xmlpull.v1\",org.jivesoftware.smackx.muc;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.chat,org.jivesoftware.smack.packet,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.muc.packet,org.jivesoftware.smackx.xdata,org.jxmpp.jid,org.jxmpp.jid.parts\",org.jivesoftware.smackx.muc.bookmarkautojoin;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack\",org.jivesoftware.smackx.muc.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smackx.muc.packet\",org.jivesoftware.smackx.muc.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.jivesoftware.smackx.muc,org.jxmpp.jid,org.jxmpp.jid.parts,org.xmlpull.v1\",org.jivesoftware.smackx.muc.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.muc.packet,org.xmlpull.v1\",org.jivesoftware.smackx.nick.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.offline;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.disco.packet,org.jxmpp.jid\",org.jivesoftware.smackx.offline.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.pep;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.pubsub,org.jxmpp.jid\",org.jivesoftware.smackx.ping;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.ping.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.ping.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.ping.packet,org.xmlpull.v1\",org.jivesoftware.smackx.privacy;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.filter,org.jivesoftware.smackx.privacy.packet\",org.jivesoftware.smackx.privacy.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smackx.privacy.packet\",org.jivesoftware.smackx.privacy.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.privacy.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.privacy.packet,org.xmlpull.v1\",org.jivesoftware.smackx.pubsub;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.disco,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.pubsub.listener,org.jivesoftware.smackx.pubsub.packet,org.jivesoftware.smackx.xdata,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid\",org.jivesoftware.smackx.pubsub.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter\",org.jivesoftware.smackx.pubsub.listener;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.pubsub\",org.jivesoftware.smackx.pubsub.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.pubsub,org.jxmpp.jid\",org.jivesoftware.smackx.pubsub.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.pubsub,org.jivesoftware.smackx.pubsub.packet,org.xmlpull.v1\",org.jivesoftware.smackx.pubsub.util;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.pubsub\",org.jivesoftware.smackx.receipts;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.jxmpp.jid,org.xmlpull.v1\",org.jivesoftware.smackx.rsm;version=\"4.2.1.beta1\",org.jivesoftware.smackx.rsm.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.rsm.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.rsm.packet,org.xmlpull.v1\",org.jivesoftware.smackx.search;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.xdata,org.jxmpp.jid,org.xmlpull.v1\",org.jivesoftware.smackx.sharedgroups;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack\",org.jivesoftware.smackx.sharedgroups.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smackx.shim.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.shim.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.shim.packet,org.xmlpull.v1\",org.jivesoftware.smackx.si.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.xdata.packet\",org.jivesoftware.smackx.si.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.si.packet,org.xmlpull.v1\",org.jivesoftware.smackx.time;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.time.packet,org.jxmpp.jid\",org.jivesoftware.smackx.time.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.time.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.provider,org.jivesoftware.smackx.time.packet\",org.jivesoftware.smackx.vcardtemp;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.vcardtemp.packet,org.jxmpp.jid\",org.jivesoftware.smackx.vcardtemp.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.vcardtemp.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.vcardtemp.packet,org.xmlpull.v1\",org.jivesoftware.smackx.xdata;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.xdata.packet,org.jivesoftware.smackx.xdatavalidation.packet,org.jxmpp.jid\",org.jivesoftware.smackx.xdata.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.xdata\",org.jivesoftware.smackx.xdata.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.xdata.packet,org.xmlpull.v1\",org.jivesoftware.smackx.xdatalayout;version=\"4.2.1.beta1\",org.jivesoftware.smackx.xdatalayout.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.xdatalayout.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.xdatalayout.packet,org.xmlpull.v1\",org.jivesoftware.smackx.xdatavalidation;version=\"4.2.1.beta1\",org.jivesoftware.smackx.xdatavalidation.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.xdata\",org.jivesoftware.smackx.xdatavalidation.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.xdatavalidation.packet,org.xmlpull.v1\",org.jivesoftware.smackx.xhtmlim;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.xhtmlim.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.xhtmlim.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.xhtmlim.packet,org.xmlpull.v1\"", + "Bundle-Name":"smack-extensions", + "Import-Package":"org.jivesoftware.smack,org.jivesoftware.smack.chat,org.jivesoftware.smack.filter,org.jivesoftware.smack.filter.jidtype,org.jivesoftware.smack.initializer,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smack.packet.id,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster,org.jivesoftware.smack.roster.provider,org.jivesoftware.smack.util,org.jivesoftware.smack.util.stringencoder,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.jid.util,org.jxmpp.stringprep,org.jxmpp.util,org.jxmpp.util.cache,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-extensions|4.2.1-beta1|tests|jar", + "m":"1499019549633", + "i":"jar|1499014892000|175447|2|2|1|jar", + "n":"Smack", + "d":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "1":"c91b3e87d0b91dbf3103c9aacdf4a7f39553b291" + }, + { + "u":"org.igniterealtime.smack|smack-extensions|4.2.1-beta1|sources|jar", + "m":"1499019549658", + "i":"jar|1499014905000|608627|2|2|1|jar", + "n":"Smack", + "d":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "1":"6f2420b8076be9d712df84fc600795132db734ef" + }, + { + "u":"org.igniterealtime.smack|smack-extensions|4.2.1-beta1|javadoc|jar", + "m":"1499019549697", + "i":"jar|1499014889000|1872357|2|2|1|jar", + "n":"Smack", + "d":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "1":"9ab1ace649312bdf80b46b0a10cf308256345569" + }, + { + "u":"org.igniterealtime.smack|smack-experimental|4.2.1-beta1|NA", + "m":"1499019550457", + "i":"jar|1499014834000|279592|1|1|1|jar", + "n":"Smack", + "d":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "1":"1c085e68d00e814961675c434740b8c93137b1d8", + "Bundle-SymbolicName":"org.igniterealtime.smack.experimental", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.experimental;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.initializer\",org.jivesoftware.smackx.carbons;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smackx.carbons.packet\",org.jivesoftware.smackx.carbons.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.forward.packet\",org.jivesoftware.smackx.carbons.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.carbons.packet,org.xmlpull.v1\",org.jivesoftware.smackx.chat_markers;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack\",org.jivesoftware.smackx.chat_markers.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.chat_markers.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.chat_markers.element,org.xmlpull.v1\",org.jivesoftware.smackx.csi;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack\",org.jivesoftware.smackx.csi.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.csi.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.csi.packet,org.xmlpull.v1\",org.jivesoftware.smackx.eme;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack\",org.jivesoftware.smackx.eme.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.eme.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.eme.element,org.xmlpull.v1\",org.jivesoftware.smackx.gcm.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.json.packet\",org.jivesoftware.smackx.gcm.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.json.packet,org.jivesoftware.smackx.json.provider\",org.jivesoftware.smackx.hints;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.hints.element\",org.jivesoftware.smackx.hints.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smackx.hints.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.hints.element,org.xmlpull.v1\",org.jivesoftware.smackx.hoxt;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.hoxt.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.shim.packet\",org.jivesoftware.smackx.hoxt.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.hoxt.packet,org.jivesoftware.smackx.shim.packet,org.xmlpull.v1\",org.jivesoftware.smackx.httpfileupload;version=\"4.2.1.beta1\";uses:=\"javax.net.ssl,org.jivesoftware.smack,org.jivesoftware.smackx.httpfileupload.element,org.jxmpp.jid\",org.jivesoftware.smackx.httpfileupload.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.httpfileupload.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.httpfileupload.element,org.xmlpull.v1\",org.jivesoftware.smackx.iot;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smackx.iot.control,org.jivesoftware.smackx.iot.data,org.jivesoftware.smackx.iot.discovery.element,org.jivesoftware.smackx.iot.element,org.jxmpp.jid\",org.jivesoftware.smackx.iot.control;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iot,org.jivesoftware.smackx.iot.control.element,org.jivesoftware.smackx.iot.element,org.jxmpp.jid\",org.jivesoftware.smackx.iot.control.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.iot.control.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iot.control.element,org.xmlpull.v1\",org.jivesoftware.smackx.iot.data;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iot,org.jivesoftware.smackx.iot.data.element,org.jivesoftware.smackx.iot.element,org.jxmpp.jid\",org.jivesoftware.smackx.iot.data.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.iot.element\",org.jivesoftware.smackx.iot.data.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet\",org.jivesoftware.smackx.iot.data.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iot.data.element,org.xmlpull.v1\",org.jivesoftware.smackx.iot.discovery;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.iot,org.jivesoftware.smackx.iot.discovery.element,org.jivesoftware.smackx.iot.element,org.jxmpp.jid\",org.jivesoftware.smackx.iot.discovery.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jivesoftware.smackx.iot.element,org.jxmpp.jid\",org.jivesoftware.smackx.iot.discovery.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iot.discovery.element,org.xmlpull.v1\",org.jivesoftware.smackx.iot.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.util\",org.jivesoftware.smackx.iot.parser;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smackx.iot.element,org.xmlpull.v1\",org.jivesoftware.smackx.iot.provisioning;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.iot.provisioning.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smackx.iot.provisioning.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.iot.provisioning.element,org.jxmpp.stringprep,org.xmlpull.v1\",org.jivesoftware.smackx.json.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smackx.json.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.json.packet,org.xmlpull.v1\",org.jivesoftware.smackx.mam;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smackx.forward.packet,org.jivesoftware.smackx.mam.element,org.jivesoftware.smackx.rsm.packet,org.jivesoftware.smackx.xdata,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid\",org.jivesoftware.smackx.mam.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.forward.packet,org.jivesoftware.smackx.rsm.packet,org.jivesoftware.smackx.xdata.packet,org.jxmpp.jid\",org.jivesoftware.smackx.mam.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smackx.mam.element\",org.jivesoftware.smackx.mam.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.mam.element,org.xmlpull.v1\",org.jivesoftware.smackx.muclight;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.chat,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.muclight.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smackx.muclight,org.jxmpp.jid\",org.jivesoftware.smackx.muclight.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.muclight.element,org.xmlpull.v1\",org.jivesoftware.smackx.push_notifications;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smackx.push_notifications.element;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smackx.push_notifications.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smackx.push_notifications.element,org.xmlpull.v1\"", + "Bundle-Name":"smack-experimental", + "Import-Package":"javax.net.ssl,org.jivesoftware.smack,org.jivesoftware.smack.chat,org.jivesoftware.smack.filter,org.jivesoftware.smack.initializer,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.roster,org.jivesoftware.smack.util,org.jivesoftware.smackx.disco,org.jivesoftware.smackx.disco.packet,org.jivesoftware.smackx.forward.packet,org.jivesoftware.smackx.forward.provider,org.jivesoftware.smackx.rsm.packet,org.jivesoftware.smackx.rsm.provider,org.jivesoftware.smackx.shim.packet,org.jivesoftware.smackx.shim.provider,org.jivesoftware.smackx.xdata,org.jivesoftware.smackx.xdata.packet,org.jivesoftware.smackx.xdata.provider,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.stringprep,org.jxmpp.util,org.jxmpp.util.cache,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-experimental|4.2.1-beta1|tests|jar", + "m":"1499019550501", + "i":"jar|1499014857000|62234|2|2|1|jar", + "n":"Smack", + "d":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "1":"19f76e4d9aff7c6cc54f4848e57fccf849819fee" + }, + { + "u":"org.igniterealtime.smack|smack-experimental|4.2.1-beta1|sources|jar", + "m":"1499019550527", + "i":"jar|1499014855000|235884|2|2|1|jar", + "n":"Smack", + "d":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "1":"9a8e4182878943d4705becbcef31e00818b1872b" + }, + { + "u":"org.igniterealtime.smack|smack-experimental|4.2.1-beta1|javadoc|jar", + "m":"1499019550555", + "i":"jar|1499014850000|875426|2|2|1|jar", + "n":"Smack", + "d":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "1":"cd33db8f35211c9aaaccf845b24ef0abe8103f37" + }, + { + "u":"org.igniterealtime.smack|smack-debug-slf4j|4.2.1-beta1|NA", + "m":"1499019551298", + "i":"jar|1499014806000|7397|1|1|1|jar", + "n":"Smack", + "d":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "1":"3267d930a5b9c452b3400bafdb274d766e199a4b", + "Bundle-SymbolicName":"org.igniterealtime.smack.debug-slf4j", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.debugger.slf4j;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jxmpp.jid\"", + "Bundle-Name":"smack-debug-slf4j", + "Import-Package":"org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jivesoftware.smack.packet,org.jivesoftware.smack.util,org.jxmpp.jid,org.slf4j" + }, + { + "u":"org.igniterealtime.smack|smack-debug-slf4j|4.2.1-beta1|tests|jar", + "m":"1499019551323", + "i":"jar|1499014818000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "1":"5edbe3784e722d21269b2f6e9876aed258c57ca2" + }, + { + "u":"org.igniterealtime.smack|smack-debug-slf4j|4.2.1-beta1|sources|jar", + "m":"1499019551341", + "i":"jar|1499014815000|8494|2|2|1|jar", + "n":"Smack", + "d":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "1":"0912bc8ea12e4a9b6b8a2f84f9e8435324b54d6f" + }, + { + "u":"org.igniterealtime.smack|smack-debug-slf4j|4.2.1-beta1|javadoc|jar", + "m":"1499019551362", + "i":"jar|1499014817000|25260|2|2|1|jar", + "n":"Smack", + "d":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "1":"aef3b653c589f9f2b7937dea07d1d44f3e38595a" + }, + { + "u":"org.igniterealtime.smack|smack-debug|4.2.1-beta1|NA", + "m":"1499019551934", + "i":"jar|1499014767000|69419|1|1|1|jar", + "n":"Smack", + "d":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "1":"bdb3c540e8cd64af2723b0ee9b873f68463d81e5", + "Bundle-SymbolicName":"org.igniterealtime.smack.debug", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.debugger;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jxmpp.jid\"", + "Bundle-Name":"smack-debug", + "Import-Package":"javax.swing,javax.swing.border,javax.swing.event,javax.swing.table,javax.swing.text,javax.xml.transform,javax.xml.transform.stream,org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.jivesoftware.smack.util,org.jxmpp.jid" + }, + { + "u":"org.igniterealtime.smack|smack-debug|4.2.1-beta1|tests|jar", + "m":"1499019551962", + "i":"jar|1499014782000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "1":"aee9f6c027d3e547b84e6a8e2d37fb4f6a0ee22e" + }, + { + "u":"org.igniterealtime.smack|smack-debug|4.2.1-beta1|sources|jar", + "m":"1499019551980", + "i":"jar|1499014780000|25386|2|2|1|jar", + "n":"Smack", + "d":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "1":"b2887ef9d898d8d343a0a766ecab70a7ff6d6eb0" + }, + { + "u":"org.igniterealtime.smack|smack-debug|4.2.1-beta1|javadoc|jar", + "m":"1499019552002", + "i":"jar|1499014776000|27996|2|2|1|jar", + "n":"Smack", + "d":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "1":"eb7ca347a97d6d881317c63487ea9e24b4d860b8" + }, + { + "u":"org.igniterealtime.smack|smack-core|4.2.1-beta1|NA", + "m":"1499019552941", + "i":"jar|1499014727000|356114|1|1|1|jar", + "n":"Smack", + "d":"Smack core components.", + "1":"7ed4430fb1da78a57d11e6e43e3a71d7c86ddb49", + "Bundle-SymbolicName":"org.igniterealtime.smack.core", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack;version=\"4.2.1.beta1\";uses:=\"javax.net,javax.net.ssl,javax.security.auth.callback,org.jivesoftware.smack.compression,org.jivesoftware.smack.debugger,org.jivesoftware.smack.filter,org.jivesoftware.smack.iqrequest,org.jivesoftware.smack.packet,org.jivesoftware.smack.parsing,org.jivesoftware.smack.proxy,org.jivesoftware.smack.sasl,org.jivesoftware.smack.sasl.packet,org.jivesoftware.smack.util.dns,org.jxmpp.jid,org.jxmpp.jid.parts,org.jxmpp.stringprep,org.xmlpull.v1\",org.jivesoftware.smack.compress.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.util\",org.jivesoftware.smack.compression;version=\"4.2.1.beta1\",org.jivesoftware.smack.debugger;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jxmpp.jid\",org.jivesoftware.smack.filter;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smack.filter.jidtype;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jxmpp.jid\",org.jivesoftware.smack.initializer;version=\"4.2.1.beta1\",org.jivesoftware.smack.iqrequest;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet\",org.jivesoftware.smack.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.util,org.jxmpp.jid,org.jxmpp.jid.parts,org.jxmpp.stringprep\",org.jivesoftware.smack.packet.id;version=\"4.2.1.beta1\",org.jivesoftware.smack.parsing;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.provider,org.xmlpull.v1\",org.jivesoftware.smack.provider;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.packet,org.xmlpull.v1\",org.jivesoftware.smack.proxy;version=\"4.2.1.beta1\",org.jivesoftware.smack.sasl;version=\"4.2.1.beta1\";uses:=\"javax.net.ssl,javax.security.auth.callback,org.jivesoftware.smack,org.jivesoftware.smack.sasl.packet,org.jivesoftware.smack.util,org.jxmpp.jid\",org.jivesoftware.smack.sasl.core;version=\"4.2.1.beta1\";uses:=\"javax.security.auth.callback,org.jivesoftware.smack,org.jivesoftware.smack.sasl\",org.jivesoftware.smack.sasl.packet;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.packet,org.jivesoftware.smack.sasl,org.jivesoftware.smack.util\",org.jivesoftware.smack.util;version=\"4.2.1.beta1\";uses:=\"javax.crypto.spec,javax.net.ssl,org.jivesoftware.smack,org.jivesoftware.smack.compress.packet,org.jivesoftware.smack.packet,org.jivesoftware.smack.sasl.packet,org.jivesoftware.smack.util.dns,org.jxmpp.jid,org.jxmpp.jid.parts,org.jxmpp.stringprep,org.xmlpull.v1\",org.jivesoftware.smack.util.dns;version=\"4.2.1.beta1\";uses:=\"javax.net.ssl,org.jivesoftware.smack\",org.jivesoftware.smack.util.stringencoder;version=\"4.2.1.beta1\"", + "Bundle-Name":"smack-core", + "Import-Package":"javax.crypto,javax.crypto.spec,javax.net,javax.net.ssl,javax.security.auth.callback,org.jxmpp.jid,org.jxmpp.jid.impl,org.jxmpp.jid.parts,org.jxmpp.stringprep,org.jxmpp.util,org.jxmpp.util.cache,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-core|4.2.1-beta1|tests|jar", + "m":"1499019552973", + "i":"jar|1499014731000|64363|2|2|1|jar", + "n":"Smack", + "d":"Smack core components.", + "1":"59820fc2ca9871e44cc3b58ab456a4162e02390b" + }, + { + "u":"org.igniterealtime.smack|smack-core|4.2.1-beta1|sources|jar", + "m":"1499019552998", + "i":"jar|1499014753000|291791|2|2|1|jar", + "n":"Smack", + "d":"Smack core components.", + "1":"7d22d2e168859c667bd87c2d73760a689f335cc4" + }, + { + "u":"org.igniterealtime.smack|smack-core|4.2.1-beta1|javadoc|jar", + "m":"1499019553026", + "i":"jar|1499014743000|931500|2|2|1|jar", + "n":"Smack", + "d":"Smack core components.", + "1":"795d818ec3aa7536362ff12718ad59cb3fe05db5" + }, + { + "u":"org.igniterealtime.smack|smack-compression-jzlib|4.2.1-beta1|NA", + "m":"1499019553832", + "i":"jar|1499014701000|2274|1|1|1|jar", + "n":"Smack", + "d":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "1":"eeb189a95f81905508b9d00b508a5d4fe51b4745", + "Bundle-SymbolicName":"org.igniterealtime.smack.compression-jzlib", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.compression.jzlib;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.compression\"", + "Bundle-Name":"smack-compression-jzlib", + "Import-Package":"com.jcraft.jzlib,org.jivesoftware.smack,org.jivesoftware.smack.compression" + }, + { + "u":"org.igniterealtime.smack|smack-compression-jzlib|4.2.1-beta1|tests|jar", + "m":"1499019553858", + "i":"jar|1499014711000|261|2|2|1|jar", + "n":"Smack", + "d":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "1":"88279c53d54c03aeb446dd35c6f75eea9343e348" + }, + { + "u":"org.igniterealtime.smack|smack-compression-jzlib|4.2.1-beta1|sources|jar", + "m":"1499019553877", + "i":"jar|1499014713000|3172|2|2|1|jar", + "n":"Smack", + "d":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "1":"d4c4cffd2694389ba8ebe448e77a1ab5de2a0554" + }, + { + "u":"org.igniterealtime.smack|smack-compression-jzlib|4.2.1-beta1|javadoc|jar", + "m":"1499019553898", + "i":"jar|1499014708000|21129|2|2|1|jar", + "n":"Smack", + "d":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "1":"c1ba697bf801858fcedc2367a991e477d235f8a1" + }, + { + "u":"org.igniterealtime.smack|smack-bosh|4.2.1-beta1|NA", + "m":"1499019554631", + "i":"jar|1499014681000|16739|1|1|1|jar", + "n":"Smack", + "d":"Smack BOSH API.\nThis API is considered beta quality.", + "1":"be39578579e85be976293248f1b1f94b899c58af", + "Bundle-SymbolicName":"org.igniterealtime.smack.bosh", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.bosh;version=\"4.2.1.beta1\";uses:=\"org.igniterealtime.jbosh,org.jivesoftware.smack,org.jivesoftware.smack.packet,org.jivesoftware.smack.proxy,org.jxmpp.jid,org.jxmpp.jid.parts\"", + "Bundle-Name":"smack-bosh", + "Import-Package":"javax.net.ssl,org.igniterealtime.jbosh,org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jivesoftware.smack.filter,org.jivesoftware.smack.packet,org.jivesoftware.smack.proxy,org.jivesoftware.smack.sasl.packet,org.jivesoftware.smack.util,org.jxmpp.jid,org.jxmpp.jid.parts,org.xmlpull.v1" + }, + { + "u":"org.igniterealtime.smack|smack-bosh|4.2.1-beta1|tests|jar", + "m":"1499019554657", + "i":"jar|1499014690000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack BOSH API.\nThis API is considered beta quality.", + "1":"dbafa7fb5195e77d644fe5ece1305419494921f3" + }, + { + "u":"org.igniterealtime.smack|smack-bosh|4.2.1-beta1|sources|jar", + "m":"1499019554675", + "i":"jar|1499014684000|7839|2|2|1|jar", + "n":"Smack", + "d":"Smack BOSH API.\nThis API is considered beta quality.", + "1":"bfc6ab6703871c034b4c76732bfb72eaa79e318d" + }, + { + "u":"org.igniterealtime.smack|smack-bosh|4.2.1-beta1|javadoc|jar", + "m":"1499019554696", + "i":"jar|1499014692000|30535|2|2|1|jar", + "n":"Smack", + "d":"Smack BOSH API.\nThis API is considered beta quality.", + "1":"794ac1397cf5260fc4ca82c2cc71947e26079dc9" + }, + { + "u":"org.igniterealtime.smack|smack-android-extensions|4.2.1-beta1|NA", + "m":"1499019555412", + "i":"jar|1499014625000|6124|1|1|1|jar", + "n":"Smack", + "d":"Extra Smack extensions for Android.", + "1":"c79d959758e9eac4b54ef3c27941a693083f5d8d", + "Bundle-SymbolicName":"org.igniterealtime.smack.android-extensions", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smackx.ping.android;version=\"4.2.1.beta1\";uses:=\"android.content,org.jivesoftware.smack\"", + "Bundle-Name":"smack-android-extensions", + "Import-Package":"android.app,android.content,android.os,org.jivesoftware.smack,org.jivesoftware.smack.util,org.jivesoftware.smackx.ping" + }, + { + "u":"org.igniterealtime.smack|smack-android-extensions|4.2.1-beta1|tests|jar", + "m":"1499019555438", + "i":"jar|1499014658000|261|2|2|1|jar", + "n":"Smack", + "d":"Extra Smack extensions for Android.", + "1":"6bacb2e064a2b8dc96151792c1dc89f3a4c1d43d" + }, + { + "u":"org.igniterealtime.smack|smack-android-extensions|4.2.1-beta1|sources|jar", + "m":"1499019555456", + "i":"jar|1499014651000|5403|2|2|1|jar", + "n":"Smack", + "d":"Extra Smack extensions for Android.", + "1":"5f79674105972df233c03c3817fb61f7b585a3c5" + }, + { + "u":"org.igniterealtime.smack|smack-android-extensions|4.2.1-beta1|javadoc|jar", + "m":"1499019555477", + "i":"jar|1499014657000|21828|2|2|1|jar", + "n":"Smack", + "d":"Extra Smack extensions for Android.", + "1":"0f3add5f041e376fb144adf2ad4e7aa29a1dcabd" + }, + { + "u":"org.igniterealtime.smack|smack-android|4.2.1-beta1|NA", + "m":"1499019556043", + "i":"jar|1499014591000|5559|1|1|1|jar", + "n":"Smack", + "d":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "1":"30097f463b9315dc1c05b313cc775082e5915822", + "Bundle-SymbolicName":"org.igniterealtime.smack.android", + "Bundle-Version":"4.2.1.beta1", + "Export-Package":"org.jivesoftware.smack.android;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.initializer\",org.jivesoftware.smack.util.stringencoder.android;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack.util.stringencoder\",org.jivesoftware.smackx.debugger.android;version=\"4.2.1.beta1\";uses:=\"org.jivesoftware.smack,org.jivesoftware.smack.debugger\"", + "Bundle-Name":"smack-android", + "Import-Package":"android.util,javax.net.ssl,org.apache.http.conn.ssl,org.jivesoftware.smack,org.jivesoftware.smack.debugger,org.jivesoftware.smack.initializer,org.jivesoftware.smack.util.stringencoder" + }, + { + "u":"org.igniterealtime.smack|smack-android|4.2.1-beta1|tests|jar", + "m":"1499019556066", + "i":"jar|1499014613000|261|2|2|1|jar", + "n":"Smack", + "d":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "1":"684e7c56e9a20db55ea7e98ae6e04ad9a94bef18" + }, + { + "u":"org.igniterealtime.smack|smack-android|4.2.1-beta1|sources|jar", + "m":"1499019556084", + "i":"jar|1499014596000|10239|2|2|1|jar", + "n":"Smack", + "d":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "1":"ef489c02386f2070dc1f5077f80b8f93cc48b573" + }, + { + "u":"org.igniterealtime.smack|smack-android|4.2.1-beta1|javadoc|jar", + "m":"1499019556106", + "i":"jar|1499014603000|40123|2|2|1|jar", + "n":"Smack", + "d":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "1":"89887c20bb193721286435af43842ebd06afdfb4" + }, + { + "u":"org.codehaus.cargo|xadatasource-war|1.6.4|NA", + "m":"1499025485014", + "i":"war|1498993542000|4976|1|1|1|war", + "n":"Cargo XADataSource WAR test data for samples", + "1":"f03bc820bfa99089f19afa30b49dbdc55b8e8f51" + }, + { + "u":"org.codehaus.cargo|xadatasource-war|1.6.4|sources|jar", + "m":"1499025485028", + "i":"jar|1498993550000|2190|2|2|1|jar", + "n":"Cargo XADataSource WAR test data for samples", + "1":"e23d6a6d9dfc994786684aeb1ace190fc285430f" + }, + { + "u":"org.codehaus.cargo|xadatasource-war|1.6.4|javadoc|jar", + "m":"1499025485046", + "i":"jar|1498993554000|27205|2|2|1|jar", + "n":"Cargo XADataSource WAR test data for samples", + "1":"c45b1b1249310d8af6391e2440b594c9d46eeb65" + }, + { + "u":"org.codehaus.cargo|two-datasources-war|1.6.4|NA", + "m":"1499025485972", + "i":"war|1498993533000|5146|1|1|1|war", + "n":"Cargo Multiple DataSource WAR test data for samples", + "1":"cf58e1ee45ea9b9fc4eda00f54630e43c8460233" + }, + { + "u":"org.codehaus.cargo|two-datasources-war|1.6.4|sources|jar", + "m":"1499025485986", + "i":"jar|1498993537000|2172|2|2|1|jar", + "n":"Cargo Multiple DataSource WAR test data for samples", + "1":"d920f7091fea1d5bf4497c683bbd55dd44f2874f" + }, + { + "u":"org.codehaus.cargo|two-datasources-war|1.6.4|javadoc|jar", + "m":"1499025486003", + "i":"jar|1498993537000|27272|2|2|1|jar", + "n":"Cargo Multiple DataSource WAR test data for samples", + "1":"af4ecdcf583c7aa595e28b4bc6208b499d17eb44" + }, + { + "u":"org.codehaus.cargo|tomcatcontext-war|1.6.4|NA", + "m":"1499025486930", + "i":"war|1498993759000|4268|1|1|1|war", + "n":"Cargo Tomcat context WAR test data for samples", + "1":"5313d374a8733f28ee083ff5db4047c437ba22a7" + }, + { + "u":"org.codehaus.cargo|tomcatcontext-war|1.6.4|sources|jar", + "m":"1499025486947", + "i":"jar|1498993760000|2071|2|2|1|jar", + "n":"Cargo Tomcat context WAR test data for samples", + "1":"8e65bcbd992e4ae1c4b73fb6cc80a0ad7d6897eb" + }, + { + "u":"org.codehaus.cargo|tomcatcontext-war|1.6.4|javadoc|jar", + "m":"1499025486965", + "i":"jar|1498993761000|27537|2|2|1|jar", + "n":"Cargo Tomcat context WAR test data for samples", + "1":"9f2cfcdfa7099ff8aaca00fa03d6d9ea58775299" + }, + { + "u":"org.codehaus.cargo|systemproperty-war|1.6.4|NA", + "m":"1499025488265", + "i":"war|1498993777000|4342|1|1|1|war", + "n":"Cargo System Property test WAR data for samples", + "1":"644f0764a97458b46cf3ab726fa1a2cbc2039ece" + }, + { + "u":"org.codehaus.cargo|systemproperty-war|1.6.4|sources|jar", + "m":"1499025488279", + "i":"jar|1498993779000|2257|2|2|1|jar", + "n":"Cargo System Property test WAR data for samples", + "1":"1007ea42630c9c3d28375d99a929a5f728e7737c" + }, + { + "u":"org.codehaus.cargo|systemproperty-war|1.6.4|javadoc|jar", + "m":"1499025488297", + "i":"jar|1498993779000|27493|2|2|1|jar", + "n":"Cargo System Property test WAR data for samples", + "1":"e3e725e73c77ab65fc70d8793ceb794ee063f56c" + }, + { + "u":"org.codehaus.cargo|simple-war|1.6.4|NA", + "m":"1499025488918", + "i":"war|1498993523000|2343|0|0|1|war", + "n":"Cargo Simple WAR test data for samples", + "1":"97fb29f946b8c6c67b6061a3ffd935c92248a0c4" + }, + { + "u":"org.codehaus.cargo|simple-jar|1.6.4|NA", + "m":"1499025489941", + "i":"jar|1498993519000|2831|1|1|1|jar", + "n":"Cargo Simple JAR test data for samples", + "1":"99e0eba1afbf860f5b7e600bdf3dd43110a8cd37" + }, + { + "u":"org.codehaus.cargo|simple-jar|1.6.4|sources|jar", + "m":"1499025489967", + "i":"jar|1498993521000|1454|2|2|1|jar", + "n":"Cargo Simple JAR test data for samples", + "1":"8e2fe853ed0cb53ba728166ace4f70b69b94f838" + }, + { + "u":"org.codehaus.cargo|simple-jar|1.6.4|javadoc|jar", + "m":"1499025489985", + "i":"jar|1498993521000|24517|2|2|1|jar", + "n":"Cargo Simple JAR test data for samples", + "1":"2cd87aab1afb23497dd70e2915329d7408a916e7" + }, + { + "u":"org.codehaus.cargo|simple-har|1.6.4|NA", + "m":"1499025490902", + "i":"jboss-har|1498993770000|2325|1|0|1|har", + "n":"Cargo Simple HAR test data for samples", + "1":"a4b630682f73ed0d79160cb1acd907fc9da530e6" + }, + { + "u":"org.codehaus.cargo|simple-har|1.6.4|sources|jar", + "m":"1499025490917", + "i":"jar|1498993771000|705|2|2|1|jar", + "n":"Cargo Simple HAR test data for samples", + "1":"636682c3acfa687c406b9e556ba9b245b5811a03" + }, + { + "u":"org.codehaus.cargo|simple-ejb|1.6.4|NA", + "m":"1499025491706", + "i":"ejb|1498993695000|4591|1|1|1|jar", + "n":"Cargo Simple EJB test data for samples", + "1":"dd33afdbfc41640b93aef4aea6f50b48ac8d8028" + }, + { + "u":"org.codehaus.cargo|simple-ejb|1.6.4|sources|jar", + "m":"1499025491729", + "i":"jar|1498993704000|3937|2|2|1|jar", + "n":"Cargo Simple EJB test data for samples", + "1":"218e9e51aa7b975413e43d20e5c09dbf89be7fcd" + }, + { + "u":"org.codehaus.cargo|simple-ejb|1.6.4|javadoc|jar", + "m":"1499025491749", + "i":"jar|1498993705000|36136|2|2|1|jar", + "n":"Cargo Simple EJB test data for samples", + "1":"ddb534cc1940dd1348ba002451d6ba6a94bd2e44" + }, + { + "u":"org.codehaus.cargo|simple-ear|1.6.4|NA", + "m":"1499025492883", + "i":"ear|1498993724000|4331|0|0|1|ear", + "n":"Cargo Simple EAR test data for samples", + "1":"34b0ad678babc2d016e69f505a01ccc5b4251528" + }, + { + "u":"org.codehaus.cargo|simple-bundle|1.6.4|NA", + "m":"1499025494131", + "i":"bundle|1498993765000|4257|1|1|1|jar", + "n":"Cargo Simple OSGi bundle test data for samples", + "1":"57d6675c8ff906733a03066295a449f0d25e3c82", + "Bundle-SymbolicName":"org.codehaus.cargo.simple-bundle", + "Bundle-Version":"1.6.4", + "Export-Package":"org.codehaus.cargo.sample.testdata.bundle;uses:=\"org.osgi.framework\";version=\"1.6.4\"", + "Bundle-Description":"Test data for the Sample applications", + "Bundle-Name":"Cargo Simple OSGi bundle test data for samples", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"https://github.com/", + "Import-Package":"org.osgi.framework;version=\"[1.3,2)\"" + }, + { + "u":"org.codehaus.cargo|simple-bundle|1.6.4|sources|jar", + "m":"1499025494157", + "i":"jar|1498993767000|1995|2|2|1|jar", + "n":"Cargo Simple OSGi bundle test data for samples", + "1":"6d8761a79194aa66ef27cc715db83ee193f3d39f" + }, + { + "u":"org.codehaus.cargo|simple-bundle|1.6.4|javadoc|jar", + "m":"1499025494178", + "i":"jar|1498993767000|25502|2|2|1|jar", + "n":"Cargo Simple OSGi bundle test data for samples", + "1":"72f3b5f38c3a69d3c05030c01cde074524f9a6d9" + }, + { + "u":"org.codehaus.cargo|simple-aop|1.6.4|NA", + "m":"1499025495037", + "i":"jboss-aop|1498993772000|2222|1|0|1|aop", + "n":"Cargo Simple AOP test data for samples", + "1":"8b3cd3d981aaa8a0b895a03db9ef935994dac931" + }, + { + "u":"org.codehaus.cargo|simple-aop|1.6.4|sources|jar", + "m":"1499025495054", + "i":"jar|1498993774000|602|2|2|1|jar", + "n":"Cargo Simple AOP test data for samples", + "1":"da92a6c0bb4818f503fa0d4eddd234cac6457419" + }, + { + "u":"org.codehaus.cargo|mailsession-war|1.6.4|NA", + "m":"1499025497161", + "i":"war|1498993557000|5025|1|1|1|war", + "n":"Cargo Mail Session WAR test data for samples", + "1":"725824e7efab28e1c865421e200b0eb36a3dbb0b" + }, + { + "u":"org.codehaus.cargo|mailsession-war|1.6.4|sources|jar", + "m":"1499025497177", + "i":"jar|1498993559000|2101|2|2|1|jar", + "n":"Cargo Mail Session WAR test data for samples", + "1":"902fb017d9e69949d427b351490a57ac2f354e1d" + }, + { + "u":"org.codehaus.cargo|mailsession-war|1.6.4|javadoc|jar", + "m":"1499025497195", + "i":"jar|1498993559000|27186|2|2|1|jar", + "n":"Cargo Mail Session WAR test data for samples", + "1":"82b7a4a5dd56dfe68e72961406edace4ae58ea6f" + }, + { + "u":"org.codehaus.cargo|jms-war|1.6.4|NA", + "m":"1499025498126", + "i":"war|1498993604000|5013|1|1|1|war", + "n":"Cargo JMS Queue WAR test data for samples", + "1":"f15e6fff88538345f2fb78d0a006363bdd8c1aea" + }, + { + "u":"org.codehaus.cargo|jms-war|1.6.4|sources|jar", + "m":"1499025498140", + "i":"jar|1498993620000|2111|2|2|1|jar", + "n":"Cargo JMS Queue WAR test data for samples", + "1":"8d8713dcf22fb6cdbf43898c921a558e5884b331" + }, + { + "u":"org.codehaus.cargo|jms-war|1.6.4|javadoc|jar", + "m":"1499025498158", + "i":"jar|1498993624000|27161|2|2|1|jar", + "n":"Cargo JMS Queue WAR test data for samples", + "1":"75112b69db628b878eea90a9cb39cd23a8166b34" + }, + { + "u":"org.codehaus.cargo|jms-topic-war|1.6.4|NA", + "m":"1499025498537", + "i":"war|1498993572000|4687|1|1|1|war", + "n":"Cargo JMS Topic WAR test data for samples", + "1":"a0fb71545e9ba1fa55aa5008721c9642510b2c86" + }, + { + "u":"org.codehaus.cargo|jms-topic-war|1.6.4|sources|jar", + "m":"1499025498555", + "i":"jar|1498993585000|2107|2|2|1|jar", + "n":"Cargo JMS Topic WAR test data for samples", + "1":"3de4f3551309b88986239af16735cf721e829456" + }, + { + "u":"org.codehaus.cargo|jms-topic-war|1.6.4|javadoc|jar", + "m":"1499025498572", + "i":"jar|1498993590000|27139|2|2|1|jar", + "n":"Cargo JMS Topic WAR test data for samples", + "1":"5e98c4439e3204ef8e692c11acaa795505e93030" + }, + { + "u":"org.codehaus.cargo|expanded-war|1.6.4|NA", + "m":"1499025498717", + "i":"war|1498993755000|2203|0|0|1|war", + "n":"Cargo Expanded WAR test data for samples", + "1":"92c7a62f10e4ee5c52bc1e6ff069a342153ecb72" + }, + { + "u":"org.codehaus.cargo|empty-jar|1.6.4|NA", + "m":"1499025499765", + "i":"jar|1498993513000|1911|0|0|1|jar", + "n":"Cargo Empty JAR test data for samples", + "1":"069efb05cfa986c7bb973ae21381828b80795160" + }, + { + "u":"org.codehaus.cargo|empty-ear|1.6.4|NA", + "m":"1499025500826", + "i":"ear|1498993515000|3773|0|0|1|ear", + "n":"Cargo Empty EAR test data for samples", + "1":"6cd9569a6ae1b68abaa2763e4b8ca77bdce264b8" + }, + { + "u":"org.codehaus.cargo|datasource-war|1.6.4|NA", + "m":"1499025501851", + "i":"war|1498993526000|5309|1|1|1|war", + "n":"Cargo DataSource WAR test data for samples", + "1":"37e3e485cdd2d44deaadb7359bcbf27716d77313" + }, + { + "u":"org.codehaus.cargo|datasource-war|1.6.4|sources|jar", + "m":"1499025501868", + "i":"jar|1498993528000|2142|2|2|1|jar", + "n":"Cargo DataSource WAR test data for samples", + "1":"76e41ce16e2d65283e93a9ba74d055e7c2cc2723" + }, + { + "u":"org.codehaus.cargo|datasource-war|1.6.4|javadoc|jar", + "m":"1499025501886", + "i":"jar|1498993529000|27167|2|2|1|jar", + "n":"Cargo DataSource WAR test data for samples", + "1":"2cf59b79ca61f03f386e2f31b611e8b586e06eb9" + }, + { + "u":"org.codehaus.cargo|datasource-cmt-local-war|1.6.4|NA", + "m":"1499025502869", + "i":"war|1498993644000|2648000|1|1|1|war", + "n":"Cargo Local Transaction DataSource WAR test data for samples", + "1":"a34027b4e8088b8fd6d8bd792af68eb022482f47" + }, + { + "u":"org.codehaus.cargo|datasource-cmt-local-war|1.6.4|sources|jar", + "m":"1499025502883", + "i":"jar|1498993654000|4368|2|2|1|jar", + "n":"Cargo Local Transaction DataSource WAR test data for samples", + "1":"8566c57bc12cbd8c0a7f12578a278a5041ef0ef1" + }, + { + "u":"org.codehaus.cargo|datasource-cmt-local-war|1.6.4|javadoc|jar", + "m":"1499025502906", + "i":"jar|1498993655000|36940|2|2|1|jar", + "n":"Cargo Local Transaction DataSource WAR test data for samples", + "1":"71b26cc5e41f7636bed8bfc8c7de136ba93e614c" + }, + { + "u":"org.codehaus.cargo|codehaus-cargo|1.6.4|NA", + "m":"1499025503839", + "i":"pom|1498993505000|40477|0|0|1|pom", + "n":"Codehaus Cargo", + "d":"Cargo is a thin wrapper that allows you to manipulate Java EE containers in a standard way.", + "1":"547ea026e658f8a0f65043edd7abc0fe5d0be065" + }, + { + "u":"org.codehaus.cargo|classpath-war|1.6.4|NA", + "m":"1499025504116", + "i":"war|1498993674000|4014|1|1|1|war", + "n":"Cargo Classpath WAR test data for samples", + "1":"a4f6b00859ec54628109b02a65efecd4932d364c" + }, + { + "u":"org.codehaus.cargo|classpath-war|1.6.4|sources|jar", + "m":"1499025504131", + "i":"jar|1498993687000|2020|2|2|1|jar", + "n":"Cargo Classpath WAR test data for samples", + "1":"f818c1f4358b3745d1940c4c34d969c956baf914" + }, + { + "u":"org.codehaus.cargo|classpath-war|1.6.4|javadoc|jar", + "m":"1499025504148", + "i":"jar|1498993688000|27246|2|2|1|jar", + "n":"Cargo Classpath WAR test data for samples", + "1":"84e1d93d9a689dfe7d18ddeb590385e718fdf6d9" + }, + { + "u":"org.codehaus.cargo|cargo-samples-testdata|1.6.4|NA", + "m":"1499025505182", + "i":"pom|1498993511000|2076|0|0|1|pom", + "n":"Cargo Samples Test Data", + "d":"Test data for the Sample applications", + "1":"e83966bee31509c0d4f141386d7bdd8e132cdc70" + }, + { + "u":"org.codehaus.cargo|cargo-samples-maven2|1.6.4|NA", + "m":"1499025506542", + "i":"pom|1498994976000|3241|0|0|1|pom", + "n":"Cargo Samples - Maven 2", + "d":"Cargo Samples for Maven 2", + "1":"9411bee40e391d0d7dbba1a92d3ff47d02128d62" + }, + { + "u":"org.codehaus.cargo|cargo-samples-ant|1.6.4|NA", + "m":"1499025507233", + "i":"pom|1498994535000|6017|0|0|1|pom", + "n":"Cargo Samples - ANT", + "d":"Cargo Samples for ANT", + "1":"74d190341c77df1323f1e61cc3b70562b44a9c41" + }, + { + "u":"org.codehaus.cargo|cargo-samples|1.6.4|NA", + "m":"1499025507988", + "i":"pom|1498994023000|74921|0|0|1|pom", + "n":"Cargo Samples", + "d":"Samples that exercises the Cargo Java APIs", + "1":"735dbefd6e83982a48e3dd4246251e36c7780170" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-websphere-test-artifact|1.6.4|NA", + "m":"1499025509247", + "i":"jar|1498995373000|3452|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - WebSphere test", + "d":"Sample application that will be used to test the WebSphere container", + "1":"3d932d4e634efa13af528711d87ef6872a75b24b" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-weblogic-test-artifact|1.6.4|NA", + "m":"1499025509794", + "i":"jar|1498995371000|3178|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - WebLogic test", + "d":"Sample application that will be used to test the WebLogic container", + "1":"5383058f941a84a0b791c14172d937a06445da92" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-users-test|1.6.4|NA", + "m":"1499025509990", + "i":"jar|1498995368000|2833|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Users test", + "d":"Sample application that will be used to test configuration of users and roles.", + "1":"d82d5e3861a14a8635d54d1e76837da7f2912dc4" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-uberwar-test|1.6.4|NA", + "m":"1499025510135", + "i":"jar|1498995350000|3812|1|0|1|jar", + "n":"Cargo Samples - Maven 2 - Uberwar test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "1":"f1ef7a69cd3903e7455e12cbc9c27d104e93313f" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-uberwar-test|1.6.4|sources|jar", + "m":"1499025510157", + "i":"jar|1498995352000|1472|2|2|1|jar", + "n":"Cargo Samples - Maven 2 - Uberwar test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "1":"622a3343e0c8c54b48ef130fc0a5fbe08040d730" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat9x-embedded-test|1.6.4|NA", + "m":"1499025510784", + "i":"jar|1498995344000|3107|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 9.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 9.x container", + "1":"5d4f90594c3baf5f0506ff47af5502987801ffe2" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat8x-embedded-test|1.6.4|NA", + "m":"1499025510911", + "i":"jar|1498995327000|3100|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 8.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 8.x container", + "1":"affad1083bcbb5b91cd46affaebb40a5424b2876" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat7x-embedded-test|1.6.4|NA", + "m":"1499025511177", + "i":"jar|1498995295000|3071|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 7.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 7.x container", + "1":"4b974046efc889dc4329cb4bd50c856e26e49c7f" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat7-systemProperty-test|1.6.4|NA", + "m":"1499025511436", + "i":"jar|1498995311000|2931|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 7 system property test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined system properties", + "1":"d5eb53b4a6c7e55679db24a714b324b0747a0d33" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat7-context-test|1.6.4|NA", + "m":"1499025512090", + "i":"jar|1498995279000|2856|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 7 context test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined context", + "1":"718e614117efc24db72487bb11f648195610dfe0" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-tomcat6x-embedded-test|1.6.4|NA", + "m":"1499025512955", + "i":"jar|1498995262000|2788|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Tomcat 6.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 6.x container", + "1":"3ef353b4cdf9568256edd91656035bd17da52738" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-runMojo-test|1.6.4|NA", + "m":"1499025513195", + "i":"jar|1498995245000|3940|1|0|1|jar", + "n":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "d":"Sample application that tries the cargo:run MOJO", + "1":"c9cb40138eb64d5973d81489d32917d51704f597" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-runMojo-test|1.6.4|sources|jar", + "m":"1499025513220", + "i":"jar|1498995247000|1468|2|2|1|jar", + "n":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "d":"Sample application that tries the cargo:run MOJO", + "1":"f4d53fc40cb96523dd38fce1fc4c1d01a9cc403b" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-remoteDeploy-test|1.6.4|NA", + "m":"1499025513960", + "i":"jar|1498995225000|4073|1|0|1|jar", + "n":"Cargo Samples - Maven 2 - Remote deployment test", + "d":"Sample application that tries remote deployment", + "1":"9f7dce5bcd80004d1d9a1e2e4545f35495d25f7a" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-remoteDeploy-test|1.6.4|sources|jar", + "m":"1499025513987", + "i":"jar|1498995227000|1408|2|2|1|jar", + "n":"Cargo Samples - Maven 2 - Remote deployment test", + "d":"Sample application that tries remote deployment", + "1":"f01f437c6cee0a32aee55bab3d0eee82a302a2c3" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-ping-test|1.6.4|NA", + "m":"1499025514619", + "i":"war|1498995183000|4980|1|1|1|war", + "n":"Cargo Samples - Maven 2 - Ping test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "1":"f117db69179b64b7a1054ca2444f8cbd72b03e10" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-ping-test|1.6.4|sources|jar", + "m":"1499025514635", + "i":"jar|1498995185000|2247|2|2|1|jar", + "n":"Cargo Samples - Maven 2 - Ping test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "1":"20627f0e1d8bcb8196a8d111cf956f82f532bc05" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-ping-test|1.6.4|javadoc|jar", + "m":"1499025514655", + "i":"jar|1498995185000|27287|2|2|1|jar", + "n":"Cargo Samples - Maven 2 - Ping test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "1":"c95957744f2490c0c4843fc7dc728424ee3664a2" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-multi-datasource-test|1.6.4|NA", + "m":"1499025515295", + "i":"jar|1498995204000|3167|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Multi datasource test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 6.x container and multiple datasources", + "1":"3d8cfc514768360a3292ad308fecce2d58452e93" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty9x-embedded-test|1.6.4|NA", + "m":"1499025515933", + "i":"jar|1498995146000|2812|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 9.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 9.x container", + "1":"8bbfe7b7708c1ab0cae9cb0202ef450ccfeefb27" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty8x-embedded-test|1.6.4|NA", + "m":"1499025516447", + "i":"jar|1498995134000|2782|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 8.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 8.x container", + "1":"a3db0e3a9b1114f7a1edcccdc82465bb9a6986ad" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty7x-root-context-test|1.6.4|NA", + "m":"1499025517083", + "i":"jar|1498995123000|2883|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 7 root context test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Jetty 7.x container and the root context", + "1":"a06578ebf3841ee56ee5d7db2737cfc608a6e16e" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty7x-embedded-test|1.6.4|NA", + "m":"1499025517232", + "i":"jar|1498995098000|2979|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 7.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 7.x container", + "1":"106285a70a1212ddfef0236da0882527acf9e275" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty6x-embedded-test|1.6.4|NA", + "m":"1499025518609", + "i":"jar|1498995096000|2783|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 6.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 6.x container", + "1":"2a5832805d0a6ecd7b4885136dc881aaa2c3ea1a" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty5x-embedded-test|1.6.4|NA", + "m":"1499025518860", + "i":"jar|1498995083000|2783|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 5.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 5.x container", + "1":"29fadd536226d768913ef747a0d8ac6bfe8d609b" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-jetty4x-embedded-test|1.6.4|NA", + "m":"1499025519110", + "i":"jar|1498995071000|2785|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Jetty 4.x embedded container test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 4.x container", + "1":"23471fedfea3843118c73e7852d2783e3de57fa2" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-inPlaceDevelopment-test|1.6.4|NA", + "m":"1499025519451", + "i":"war|1498995059000|3329|0|0|1|war", + "n":"Cargo Samples - Maven 2 - In-place Development test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's in-place development capabilities. Note that this sample currently works only for Jetty and Tomcat as it requires that container implementations support deploying an expanded WAR from a directory without copying it to the container deploy directory.", + "1":"ba1809dfbb7fb2af5bfbdcf795c127c1d50fbe79" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-implementationClasses-test|1.6.4|NA", + "m":"1499025520148", + "i":"war|1498995035000|2982|0|0|1|war", + "n":"Cargo Samples - Maven 2 - Implementation classes' personalisation test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with personalized implementation classes", + "1":"2d0fb78d0225629b5abb8a9d90fc051ff70e156d" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-configurationFiles-xmlReplacements-test|1.6.4|NA", + "m":"1499025521175", + "i":"jar|1498995033000|2846|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Configuration files and XML replacements test", + "d":"Sample application that tests the configuration files and XML replacement options", + "1":"49611773b8b55c63d8b9d04e860f7e1f6470e7fb" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-autoDeployable-test|1.6.4|NA", + "m":"1499025521932", + "i":"war|1498995012000|2819|0|0|1|war", + "n":"Cargo Samples - Maven 2 - AutoDeployable test", + "d":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's AutoDeployable capabilities", + "1":"aa54ddee48a3c9023710b9874b997a9b7f62c87e" + }, + { + "u":"org.codehaus.cargo|cargo-sample-maven2-artifactInstaller-test|1.6.4|NA", + "m":"1499025522557", + "i":"jar|1498994988000|2470|0|0|1|jar", + "n":"Cargo Samples - Maven 2 - Artifact installer test", + "d":"Sample application that tests the artifact installer", + "1":"0d5d469cc0eb132e1886000a7b73f405145b2bc1" + }, + { + "u":"org.codehaus.cargo|cargo-sample-java|1.6.4|NA", + "m":"1499025523245", + "i":"jar|1498994503000|33283|1|1|1|jar", + "n":"Cargo Samples for Java", + "d":"Sample application that exercises the Cargo Java API", + "1":"d8ad4bba55b18afaa3bb55f279b68d128a47bb52" + }, + { + "u":"org.codehaus.cargo|cargo-sample-java|1.6.4|sources|jar", + "m":"1499025523271", + "i":"jar|1498994505000|36278|2|2|1|jar", + "n":"Cargo Samples for Java", + "d":"Sample application that exercises the Cargo Java API", + "1":"9e83c823403bf13c30e271b4a53f4a3ef8b18dde" + }, + { + "u":"org.codehaus.cargo|cargo-sample-java|1.6.4|javadoc|jar", + "m":"1499025523297", + "i":"jar|1498994506000|186090|2|2|1|jar", + "n":"Cargo Samples for Java", + "d":"Sample application that exercises the Cargo Java API", + "1":"9bab11dba927dbf3d8b917d25345a8855ce0e735" + }, + { + "u":"org.codehaus.cargo|cargo-sample-ant-remote-test|1.6.4|NA", + "m":"1499025524430", + "i":"jar|1498994644000|2780|0|0|1|jar", + "n":"Cargo Samples - ANT - Remote container test", + "d":"Sample application that exercises the Cargo ANT tasks with a remote container", + "1":"2d679aacd03ac4d47dc257b54931aada2e873de7" + }, + { + "u":"org.codehaus.cargo|cargo-sample-ant-datasource-test|1.6.4|NA", + "m":"1499025525159", + "i":"jar|1498994625000|2579|0|0|1|jar", + "n":"Cargo Samples - ANT - Datasource test", + "d":"Sample application that exercises the Cargo ANT tasks with a container and a datasource", + "1":"1fe0525f5544657f122d4ae56405317f0fb2a31f" + }, + { + "u":"org.codehaus.cargo|cargo-sample-ant-daemon-test|1.6.4|NA", + "m":"1499025525955", + "i":"jar|1498994606000|3194|0|0|1|jar", + "n":"Cargo Samples - ANT - Daemon test", + "d":"Sample application that exercises the Cargo ANT tasks with the daemon", + "1":"7c5f02c5e7c1887599bf94da19a295fdbebc1168" + }, + { + "u":"org.codehaus.cargo|cargo-sample-ant-configurationFiles-xmlReplacements-test|1.6.4|NA", + "m":"1499025526302", + "i":"jar|1498994542000|2586|0|0|1|jar", + "n":"Cargo Samples - ANT - Configuration files and XML replacements test", + "d":"Sample application that tests the configuration files and XML replacement options", + "1":"5dca351cf72e38fe41c1523f27eb9cd63b555f40" + }, + { + "u":"org.codehaus.cargo|cargo-resources|1.6.4|NA", + "m":"1499025526911", + "i":"pom|1498993506000|1492|0|0|1|pom", + "n":"Cargo Shared Resources", + "d":"Cargo Shared Resources (License files, Checkstyle configuration files, etc)", + "1":"8804c8a0c23db49556bd1771a748e063de0dd086" + }, + { + "u":"org.codehaus.cargo|cargo-maven2-plugin|1.6.4|NA", + "m":"1499025528316", + "i":"maven-plugin|1498994579000|122096|1|1|1|jar", + "n":"Cargo Maven 2 Plugin", + "d":"Cargo Maven 2 Plugin", + "1":"14113bc8324dbb23df427969e7773ca6aba32645" + }, + { + "u":"org.codehaus.cargo|cargo-maven2-plugin|1.6.4|sources|jar", + "m":"1499025528347", + "i":"jar|1498994582000|94094|2|2|1|jar", + "n":"Cargo Maven 2 Plugin", + "d":"Cargo Maven 2 Plugin", + "1":"125eec3ccc054a6018c5f5b466771ce7dbb53b67" + }, + { + "u":"org.codehaus.cargo|cargo-maven2-plugin|1.6.4|javadoc|jar", + "m":"1499025528371", + "i":"jar|1498994583000|320662|2|2|1|jar", + "n":"Cargo Maven 2 Plugin", + "d":"Cargo Maven 2 Plugin", + "1":"80aaebe24446123e6f715ed272dcbb51b0d23d05" + }, + { + "u":"org.codehaus.cargo|cargo-maven2-archetypes|1.6.4|NA", + "m":"1499025529667", + "i":"pom|1498994771000|4629|0|0|1|pom", + "n":"Cargo Maven Archetypes", + "d":"Sample Maven archetypes for using Cargo", + "1":"005f7c8d79db6f6c0a2aa14dfb8d4a5663af2e36" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-7-and-onwards-deployer|1.6.4|NA", + "m":"1499025531456", + "i":"war|1498993788000|11102|1|1|1|war", + "n":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "1":"6bbbc3cf5682b91d218d1d71915d22751b5f4ea8" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-7-and-onwards-deployer|1.6.4|sources|jar", + "m":"1499025531470", + "i":"jar|1498993789000|6157|2|2|1|jar", + "n":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "1":"e959d7d07c5365fbf1bb7c36f008d72806b24bc5" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-7-and-onwards-deployer|1.6.4|javadoc|jar", + "m":"1499025531491", + "i":"jar|1498993790000|29396|2|2|1|jar", + "n":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "1":"3d89eab371abd13b459bd071ebd39c63f380a817" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-6-and-earlier-deployer|1.6.4|NA", + "m":"1499025532309", + "i":"war|1498993782000|9737|1|1|1|war", + "n":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "1":"9fa685336fd5cd9259516b6359d8d321ff04feca" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-6-and-earlier-deployer|1.6.4|sources|jar", + "m":"1499025532323", + "i":"jar|1498993784000|5225|2|2|1|jar", + "n":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "1":"1d623bb7d50cd4af3750db85b7804dd5ae385c64" + }, + { + "u":"org.codehaus.cargo|cargo-jetty-6-and-earlier-deployer|1.6.4|javadoc|jar", + "m":"1499025532344", + "i":"jar|1498993784000|29103|2|2|1|jar", + "n":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "d":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "1":"667f6c8682cc602ab352a6afc24704f5aa6ce73c" + }, + { + "u":"org.codehaus.cargo|cargo-extensions-maven2|1.6.4|NA", + "m":"1499025533189", + "i":"pom|1498994569000|1385|0|0|1|pom", + "n":"Cargo Extensions - Maven 2", + "d":"Cargo Extensions for Maven 2", + "1":"64c5be4d4330fdbd65dd3c487403e2adfdc180f2" + }, + { + "u":"org.codehaus.cargo|cargo-extensions-daemon|1.6.4|NA", + "m":"1499025534141", + "i":"pom|1498994517000|1378|0|0|1|pom", + "n":"Cargo Extensions - Daemon", + "d":"Cargo Extensions for Daemon", + "1":"17501e2cb97553b5c7c78f9ddb11012f29209591" + }, + { + "u":"org.codehaus.cargo|cargo-extensions-ant|1.6.4|NA", + "m":"1499025534602", + "i":"pom|1498994525000|1341|0|0|1|pom", + "n":"Cargo Extensions - ANT", + "d":"Cargo Extensions for ANT", + "1":"0591013aabb85dc5dc146035151fe4178d093f52" + }, + { + "u":"org.codehaus.cargo|cargo-extensions|1.6.4|NA", + "m":"1499025535319", + "i":"pom|1498994515000|1952|0|0|1|pom", + "n":"Cargo Extensions", + "d":"Cargo Extensions", + "1":"fa424bb0012cb59faceb7a46fdc89f32fc1b190b" + }, + { + "u":"org.codehaus.cargo|cargo-documentation|1.6.4|NA", + "m":"1499025536294", + "i":"jar|1498994512000|133300|1|1|1|jar", + "n":"Cargo Website Resources", + "d":"Cargo Website Resources", + "1":"31827bdd7a6fb77559803fcabc6169b8fcf5fc45" + }, + { + "u":"org.codehaus.cargo|cargo-documentation|1.6.4|sources|jar", + "m":"1499025536328", + "i":"jar|1498994513000|15598|2|2|1|jar", + "n":"Cargo Website Resources", + "d":"Cargo Website Resources", + "1":"5b9158389912322a8a3a775030bce17548defeac" + }, + { + "u":"org.codehaus.cargo|cargo-documentation|1.6.4|javadoc|jar", + "m":"1499025536359", + "i":"jar|1498994514000|36837|2|2|1|jar", + "n":"Cargo Website Resources", + "d":"Cargo Website Resources", + "1":"40479e087992c8f630ee02bebb26b63219394acf" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-webapp|1.6.4|NA", + "m":"1499025537427", + "i":"war|1498994565000|8436519|1|1|1|war", + "n":"Cargo Daemon Web Application", + "d":"Cargo Daemon Web Application", + "1":"a6a2a0a183cea6089759bd213fc550fdfadc6c4d" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-webapp|1.6.4|sources|jar", + "m":"1499025537445", + "i":"jar|1498994567000|29920|2|2|1|jar", + "n":"Cargo Daemon Web Application", + "d":"Cargo Daemon Web Application", + "1":"5f7e929637476cbf9c70204e864a13f15c478ffa" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-webapp|1.6.4|javadoc|jar", + "m":"1499025537468", + "i":"jar|1498994568000|104522|2|2|1|jar", + "n":"Cargo Daemon Web Application", + "d":"Cargo Daemon Web Application", + "1":"9b9d328ed3ecad0276799f0e45368165397d63cc" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-itests-deployable-on-tomcat|1.6.4|NA", + "m":"1499025538115", + "i":"jar|1498994767000|2773|0|0|1|jar", + "n":"Cargo Daemon Integration Tests - Deployable on Tomcat", + "d":"Cargo Daemon Client - Deployable on Tomcat", + "1":"c8d28ab4cf80f53938b320e1a59ce9ff5c7e8fa0" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-itests-deployable-on-jetty|1.6.4|NA", + "m":"1499025538631", + "i":"jar|1498994736000|2704|0|0|1|jar", + "n":"Cargo Daemon Integration Tests - Deployable on Jetty", + "d":"Cargo Daemon Client - Deployable on Jetty", + "1":"abe8346bc8fe4a23f481f2acf6d276b270723d01" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-itests-client|1.6.4|NA", + "m":"1499025539127", + "i":"jar|1498994701000|2068|0|0|1|jar", + "n":"Cargo Daemon Integration Tests - Java client", + "d":"Cargo Daemon Client - Java client", + "1":"501c43bfb97a7173416613be53a93258eca464a4" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-itests-browser|1.6.4|NA", + "m":"1499025539644", + "i":"jar|1498994664000|2095|0|0|1|jar", + "n":"Cargo Daemon Integration Tests - Browser", + "d":"Cargo Daemon Client - Browser", + "1":"691b00a3e5b338a7d5f899a053dd381c9aef2bc0" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-itests|1.6.4|NA", + "m":"1499025540161", + "i":"pom|1498994647000|7848|0|0|1|pom", + "n":"Cargo Daemon Integration Tests", + "d":"Cargo Daemon Integration Tests", + "1":"e31197317c871e4e523509fc9799c71df2f16997" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-client|1.6.4|NA", + "m":"1499025540856", + "i":"jar|1498994521000|19619|1|1|1|jar", + "n":"Cargo Daemon Client", + "d":"Cargo Daemon Client", + "1":"42dad631c61aecbd76b2d61434b0aef8593a0f9a" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-client|1.6.4|sources|jar", + "m":"1499025540884", + "i":"jar|1498994523000|16573|2|2|1|jar", + "n":"Cargo Daemon Client", + "d":"Cargo Daemon Client", + "1":"525eaf186b8ab338fdef38f78cb0f80936d47713" + }, + { + "u":"org.codehaus.cargo|cargo-daemon-client|1.6.4|javadoc|jar", + "m":"1499025540910", + "i":"jar|1498994524000|73490|2|2|1|jar", + "n":"Cargo Daemon Client", + "d":"Cargo Daemon Client", + "1":"07fdfc26c1167dea35a1060ae4408fd33e445bcb" + }, + { + "u":"org.codehaus.cargo|cargo-core-uberjar|1.6.4|NA", + "m":"1499025541519", + "i":"jar|1498994019000|2840628|1|1|1|jar", + "n":"Cargo Core Uberjar", + "d":"The Cargo Core Uberjar", + "1":"a06625db0728b3f62894a90136647caef37e0be0" + }, + { + "u":"org.codehaus.cargo|cargo-core-uberjar|1.6.4|sources|jar", + "m":"1499025541576", + "i":"jar|1498994021000|1875|2|2|1|jar", + "n":"Cargo Core Uberjar", + "d":"The Cargo Core Uberjar", + "1":"8211a0dd66e1ba93d7736a1d83a6caad639c0e63" + }, + { + "u":"org.codehaus.cargo|cargo-core-uberjar|1.6.4|javadoc|jar", + "m":"1499025541600", + "i":"jar|1498994022000|24376|2|2|1|jar", + "n":"Cargo Core Uberjar", + "d":"The Cargo Core Uberjar", + "1":"7d874f2d4bc3560e7b375cee9e275417d6bc089d" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-api|1.6.4|NA", + "m":"1499025542994", + "i":"jar|1498993854000|6652|1|1|1|jar", + "n":"Cargo Core Tools JBoss deployer API", + "d":"JBoss remote deployer API", + "1":"98c1de3b102147ffa6ae9d68401e67d8a28d404b" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-api|1.6.4|sources|jar", + "m":"1499025543020", + "i":"jar|1498993856000|6146|2|2|1|jar", + "n":"Cargo Core Tools JBoss deployer API", + "d":"JBoss remote deployer API", + "1":"b5d218e3548bec0c62b3e3984f2d0fac69e89c92" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-api|1.6.4|javadoc|jar", + "m":"1499025543041", + "i":"jar|1498993857000|50965|2|2|1|jar", + "n":"Cargo Core Tools JBoss deployer API", + "d":"JBoss remote deployer API", + "1":"41698d0fec305ad7adc4421f39ee4dcc2ad78b7a" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-7|1.6.4|NA", + "m":"1499025543737", + "i":"jar|1498993871000|7642|1|1|1|jar", + "n":"Cargo Core Tools JBoss 7.x deployer", + "d":"Remote deployer for JBoss 7.x", + "1":"6ecc273d5503bc1dd9f65f7e4dcb1a8de9f5101e" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-7|1.6.4|sources|jar", + "m":"1499025543760", + "i":"jar|1498993873000|2861|2|2|1|jar", + "n":"Cargo Core Tools JBoss 7.x deployer", + "d":"Remote deployer for JBoss 7.x", + "1":"c6b0774fecef1d41bd6f8fa8b8248dad22c4b419" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-7|1.6.4|javadoc|jar", + "m":"1499025543777", + "i":"jar|1498993873000|25337|2|2|1|jar", + "n":"Cargo Core Tools JBoss 7.x deployer", + "d":"Remote deployer for JBoss 7.x", + "1":"a2d31c6fa051833ba9ce146e128addd981f7a54a" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5.1-and-6|1.6.4|NA", + "m":"1499025544607", + "i":"jar|1498993865000|6362|1|1|1|jar", + "n":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "d":"Remote deployer for JBoss 5.1.x and 6.x", + "1":"da1bdc0fdb8dae6e33674762b181a8482908d4df" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5.1-and-6|1.6.4|sources|jar", + "m":"1499025544630", + "i":"jar|1498993867000|3156|2|2|1|jar", + "n":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "d":"Remote deployer for JBoss 5.1.x and 6.x", + "1":"c4bfa0c3029b6e50ebc432c296feda1afc120d4e" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5.1-and-6|1.6.4|javadoc|jar", + "m":"1499025544647", + "i":"jar|1498993868000|25445|2|2|1|jar", + "n":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "d":"Remote deployer for JBoss 5.1.x and 6.x", + "1":"0a92a7f200356817258f8823ed34ff43e7b10edd" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5|1.6.4|NA", + "m":"1499025545359", + "i":"jar|1498993860000|6355|1|1|1|jar", + "n":"Cargo Core Tools JBoss 5.0.x deployer", + "d":"Remote deployer for JBoss 5.0.x", + "1":"371051e26e93aa8c7b588ee7e12dcef20665b488" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5|1.6.4|sources|jar", + "m":"1499025545382", + "i":"jar|1498993862000|3167|2|2|1|jar", + "n":"Cargo Core Tools JBoss 5.0.x deployer", + "d":"Remote deployer for JBoss 5.0.x", + "1":"8592feaae9fd479831b98dc7abfdeb6221f21b28" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools-jboss-deployer-5|1.6.4|javadoc|jar", + "m":"1499025545403", + "i":"jar|1498993862000|25373|2|2|1|jar", + "n":"Cargo Core Tools JBoss 5.0.x deployer", + "d":"Remote deployer for JBoss 5.0.x", + "1":"84e67e73312792ebc9b033ed6e40d8e8fcb62d9e" + }, + { + "u":"org.codehaus.cargo|cargo-core-tools|1.6.4|NA", + "m":"1499025546171", + "i":"pom|1498993851000|1430|0|0|1|pom", + "n":"Cargo Core Tools", + "d":"Tools for the Core API", + "1":"37b6807f9423f212c3a1d2afcb62af90cc57a93b" + }, + { + "u":"org.codehaus.cargo|cargo-core-containers|1.6.4|NA", + "m":"1499025546883", + "i":"pom|1498993875000|2548|0|0|1|pom", + "n":"Cargo Core Containers", + "d":"Core API Container Implementations", + "1":"1026d569237030c1afb4136a70085a7d1fd1e122" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-wildfly|1.6.4|NA", + "m":"1499025547863", + "i":"jar|1498994012000|167715|1|1|1|jar", + "n":"Cargo Core WildFly Container", + "d":"Core API implementation for WildFly containers", + "1":"fa61f3b1537f8714c5bd430b81c8b7c5c3441c38" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-wildfly|1.6.4|sources|jar", + "m":"1499025547894", + "i":"jar|1498994014000|90525|2|2|1|jar", + "n":"Cargo Core WildFly Container", + "d":"Core API implementation for WildFly containers", + "1":"bffc6a728e3e3d1bed6f379e9ab200cd368eba07" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-wildfly|1.6.4|javadoc|jar", + "m":"1499025547918", + "i":"jar|1498994015000|450493|2|2|1|jar", + "n":"Cargo Core WildFly Container", + "d":"Core API implementation for WildFly containers", + "1":"c6613f5b309d3322f5933a86613a7c3e324099ed" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-websphere|1.6.4|NA", + "m":"1499025548417", + "i":"jar|1498994003000|183853|1|1|1|jar", + "n":"Cargo Core WebSphere Container", + "d":"Core API implementation for WebSphere containers", + "1":"7ec2fbec5602023d9ca74571397dc8d417e0dbfa" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-websphere|1.6.4|sources|jar", + "m":"1499025548447", + "i":"jar|1498994005000|179608|2|2|1|jar", + "n":"Cargo Core WebSphere Container", + "d":"Core API implementation for WebSphere containers", + "1":"7639bcdd9eca05bfecf1ce6774db90b20c599222" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-websphere|1.6.4|javadoc|jar", + "m":"1499025548472", + "i":"jar|1498994006000|334545|2|2|1|jar", + "n":"Cargo Core WebSphere Container", + "d":"Core API implementation for WebSphere containers", + "1":"8f009dd1741162d68251981f5e1f5eadf6a0ebc1" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-weblogic|1.6.4|NA", + "m":"1499025549039", + "i":"jar|1498993994000|142008|1|1|1|jar", + "n":"Cargo Core WebLogic Container", + "d":"Core API implementation for WebLogic containers", + "1":"dfc49e716d967202c7f76f0edbe19691a072f358" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-weblogic|1.6.4|sources|jar", + "m":"1499025549066", + "i":"jar|1498993996000|145777|2|2|1|jar", + "n":"Cargo Core WebLogic Container", + "d":"Core API implementation for WebLogic containers", + "1":"919784f4a28b9eaaf4c3084ca16b235e1b17e4c2" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-weblogic|1.6.4|javadoc|jar", + "m":"1499025549092", + "i":"jar|1498993997000|549536|2|2|1|jar", + "n":"Cargo Core WebLogic Container", + "d":"Core API implementation for WebLogic containers", + "1":"ab49a3a29712f2e25e157d7497cf27b33529a36b" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomee|1.6.4|NA", + "m":"1499025550166", + "i":"jar|1498993980000|99640|1|1|1|jar", + "n":"Cargo Core TomEE Container", + "d":"Core API implementation for TomEE containers", + "1":"505b3c3ac2b78aa3b6011e5f0a38226c86e15b9a" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomee|1.6.4|sources|jar", + "m":"1499025550195", + "i":"jar|1498993982000|19582|2|2|1|jar", + "n":"Cargo Core TomEE Container", + "d":"Core API implementation for TomEE containers", + "1":"3b918128b28562ad0242ef2953caa3b5161b7a06" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomee|1.6.4|javadoc|jar", + "m":"1499025550220", + "i":"jar|1498993983000|123506|2|2|1|jar", + "n":"Cargo Core TomEE Container", + "d":"Core API implementation for TomEE containers", + "1":"cd669e4973ad8d57b3a9be2a27069808606be940" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomcat|1.6.4|NA", + "m":"1499025550514", + "i":"jar|1498993973000|150155|1|1|1|jar", + "n":"Cargo Core Tomcat Container", + "d":"Core API implementation for Tomcat containers", + "1":"966b13ca12cb6bf6d1ce788c71480caf15e30804" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomcat|1.6.4|sources|jar", + "m":"1499025550543", + "i":"jar|1498993976000|140922|2|2|1|jar", + "n":"Cargo Core Tomcat Container", + "d":"Core API implementation for Tomcat containers", + "1":"5af9134e87afc2bb9d99e60a5b63a4669dc6f826" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-tomcat|1.6.4|javadoc|jar", + "m":"1499025550569", + "i":"jar|1498993976000|451396|2|2|1|jar", + "n":"Cargo Core Tomcat Container", + "d":"Core API implementation for Tomcat containers", + "1":"65a67bff864fa03a19e5a203234b68d0d39adfb1" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-resin|1.6.4|NA", + "m":"1499025551716", + "i":"jar|1498993958000|38856|1|1|1|jar", + "n":"Cargo Core Resin Container", + "d":"Core API implementation for Resin containers", + "1":"cf59444d3c26635c9403e5efb9c2724adc27fea0" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-resin|1.6.4|sources|jar", + "m":"1499025551741", + "i":"jar|1498993960000|35147|2|2|1|jar", + "n":"Cargo Core Resin Container", + "d":"Core API implementation for Resin containers", + "1":"d51c16814d1d69eb6179a194b2cf92136963357e" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-resin|1.6.4|javadoc|jar", + "m":"1499025551763", + "i":"jar|1498993961000|178228|2|2|1|jar", + "n":"Cargo Core Resin Container", + "d":"Core API implementation for Resin containers", + "1":"708d6a9f834c944aebaaa626a683e337f1d7419b" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-orion|1.6.4|NA", + "m":"1499025552853", + "i":"jar|1498993948000|31146|1|1|1|jar", + "n":"Cargo Core Orion Container", + "d":"Core API implementation for Orion containers", + "1":"e34cc5a3c83bb9fa764bc77bdd10e81a795ece1e" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-orion|1.6.4|sources|jar", + "m":"1499025552877", + "i":"jar|1498993950000|27963|2|2|1|jar", + "n":"Cargo Core Orion Container", + "d":"Core API implementation for Orion containers", + "1":"6559a78d70ac78f747a0b60ed28a07a67f372498" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-orion|1.6.4|javadoc|jar", + "m":"1499025552899", + "i":"jar|1498993951000|108335|2|2|1|jar", + "n":"Cargo Core Orion Container", + "d":"Core API implementation for Orion containers", + "1":"f7f8393c03775b35aba982645efa47dc624cf743" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-liberty|1.6.4|NA", + "m":"1499025553971", + "i":"jar|1498993940000|21031|1|1|1|jar", + "n":"Cargo Core WebSphere Liberty Container", + "d":"Core API implementation for WebSphere Liberty containers", + "1":"2c2bd418fbce822c6023737cf7edfd7d6dff4749" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-liberty|1.6.4|sources|jar", + "m":"1499025553996", + "i":"jar|1498993942000|17049|2|2|1|jar", + "n":"Cargo Core WebSphere Liberty Container", + "d":"Core API implementation for WebSphere Liberty containers", + "1":"17eb5c0be6880360aa1b2f8edaab43b3ec764833" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-liberty|1.6.4|javadoc|jar", + "m":"1499025554020", + "i":"jar|1498993943000|69270|2|2|1|jar", + "n":"Cargo Core WebSphere Liberty Container", + "d":"Core API implementation for WebSphere Liberty containers", + "1":"1a8d7bb537f96f46b36260044b2001940445fea4" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jrun|1.6.4|NA", + "m":"1499025554163", + "i":"jar|1498993934000|31709|1|1|1|jar", + "n":"Cargo Core JRun Container", + "d":"Core API implementation for JRun containers", + "1":"6d29e45c94a535b9adcfa247bcc8179dbe51a333" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jrun|1.6.4|sources|jar", + "m":"1499025554192", + "i":"jar|1498993936000|28743|2|2|1|jar", + "n":"Cargo Core JRun Container", + "d":"Core API implementation for JRun containers", + "1":"42cafde700bbc0d59048cd4f3ddbeb95e040da88" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jrun|1.6.4|javadoc|jar", + "m":"1499025554216", + "i":"jar|1498993936000|96232|2|2|1|jar", + "n":"Cargo Core JRun Container", + "d":"Core API implementation for JRun containers", + "1":"2a53d6ae7af18cd1f658482862ff9c764a012524" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jonas|1.6.4|NA", + "m":"1499025555113", + "i":"jar|1498993927000|62775|1|1|1|jar", + "n":"Cargo Core JOnAS Container", + "d":"Core API implementation for JOnAS containers", + "1":"84ef7296fa120fb1a353b54bdfc2d44b6172144a" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jonas|1.6.4|sources|jar", + "m":"1499025555146", + "i":"jar|1498993929000|57065|2|2|1|jar", + "n":"Cargo Core JOnAS Container", + "d":"Core API implementation for JOnAS containers", + "1":"d35ffa074868809a0ca70f1e08ab3400ca6b30d3" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jonas|1.6.4|javadoc|jar", + "m":"1499025555168", + "i":"jar|1498993930000|275875|2|2|1|jar", + "n":"Cargo Core JOnAS Container", + "d":"Core API implementation for JOnAS containers", + "1":"8f62f2dde78d241fb2250f42ecaa1e4267ae6e91" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jo|1.6.4|NA", + "m":"1499025556128", + "i":"jar|1498993917000|20133|1|1|1|jar", + "n":"Cargo Core jo! Container", + "d":"Core API implementation for jo! containers", + "1":"180df9a99693382ac8cd06b85cf80c5c3d887f3c" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jo|1.6.4|sources|jar", + "m":"1499025556153", + "i":"jar|1498993919000|17626|2|2|1|jar", + "n":"Cargo Core jo! Container", + "d":"Core API implementation for jo! containers", + "1":"5d7c6897af123c82b7d7764c08711e20f4b9c866" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jo|1.6.4|javadoc|jar", + "m":"1499025556175", + "i":"jar|1498993919000|59020|2|2|1|jar", + "n":"Cargo Core jo! Container", + "d":"Core API implementation for jo! containers", + "1":"45ac5b482e1a04abdccde061119688330f5ce59f" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jetty|1.6.4|NA", + "m":"1499025557274", + "i":"jar|1498993911000|1116481|1|1|1|jar", + "n":"Cargo Core Jetty Container", + "d":"Core API implementation for Jetty containers", + "1":"df625fc892caf4c0d0993c9131a01219b3f14a34" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jetty|1.6.4|sources|jar", + "m":"1499025557316", + "i":"jar|1498993913000|112776|2|2|1|jar", + "n":"Cargo Core Jetty Container", + "d":"Core API implementation for Jetty containers", + "1":"1be2286480bce7d5dc39809dff45b7c884ca11ce" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jetty|1.6.4|javadoc|jar", + "m":"1499025557339", + "i":"jar|1498993914000|384664|2|2|1|jar", + "n":"Cargo Core Jetty Container", + "d":"Core API implementation for Jetty containers", + "1":"130e0c884e68557f3d67af240fc6b193894989ad" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jboss|1.6.4|NA", + "m":"1499025558430", + "i":"jar|1498993901000|167723|1|1|1|jar", + "n":"Cargo Core JBoss Container", + "d":"Core API implementation for JBoss containers", + "1":"bc5406f67f0e22e3f4c2d827d97b6d9206f20a4b" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jboss|1.6.4|sources|jar", + "m":"1499025558462", + "i":"jar|1498993903000|137901|2|2|1|jar", + "n":"Cargo Core JBoss Container", + "d":"Core API implementation for JBoss containers", + "1":"d3e4f02615d38d29cd436dce3c1453e8dcab4e99" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-jboss|1.6.4|javadoc|jar", + "m":"1499025558490", + "i":"jar|1498993904000|494433|2|2|1|jar", + "n":"Cargo Core JBoss Container", + "d":"Core API implementation for JBoss containers", + "1":"0d9153e3dc5045b916e94137d8942ae88fd1434e" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-glassfish|1.6.4|NA", + "m":"1499025559650", + "i":"jar|1498993889000|49031|1|1|1|jar", + "n":"Cargo Core GlassFish Container", + "d":"Core API implementation for GlassFish containers", + "1":"fcf38290ed5b9193fc19eba6f965671fd6842f05" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-glassfish|1.6.4|sources|jar", + "m":"1499025559677", + "i":"jar|1498993891000|46891|2|2|1|jar", + "n":"Cargo Core GlassFish Container", + "d":"Core API implementation for GlassFish containers", + "1":"fd04b9c4f97f695e51eadfe88a0885e4ef227ad7" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-glassfish|1.6.4|javadoc|jar", + "m":"1499025559700", + "i":"jar|1498993892000|224764|2|2|1|jar", + "n":"Cargo Core GlassFish Container", + "d":"Core API implementation for GlassFish containers", + "1":"4c2ef8cc3f6ce32b4f47ec13bee807dd28cf04ee" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-geronimo|1.6.4|NA", + "m":"1499025560598", + "i":"jar|1498993880000|53520|1|1|1|jar", + "n":"Cargo Core Geronimo Container", + "d":"Core API implementation for Geronimo containers", + "1":"e898c3c7587b942d8dd675b8734e762a30d44793" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-geronimo|1.6.4|sources|jar", + "m":"1499025560622", + "i":"jar|1498993882000|45639|2|2|1|jar", + "n":"Cargo Core Geronimo Container", + "d":"Core API implementation for Geronimo containers", + "1":"834b52f3afdda44c9e72338c69791c14beb075a1" + }, + { + "u":"org.codehaus.cargo|cargo-core-container-geronimo|1.6.4|javadoc|jar", + "m":"1499025560656", + "i":"jar|1498993883000|155435|2|2|1|jar", + "n":"Cargo Core Geronimo Container", + "d":"Core API implementation for Geronimo containers", + "1":"8e7b80a648d03ddef89d15f71b8d370f81a90a40" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-util|1.6.4|NA", + "m":"1499025561718", + "i":"jar|1498993804000|39873|1|1|1|jar", + "n":"Cargo Core Util API", + "d":"Core Utility API (logging, Ant utils, File utils, etc)", + "1":"cfd827c8b7f19750acb7270c3081d8040b734ae7" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-util|1.6.4|tests|jar", + "m":"1499025561746", + "i":"jar|1498993808000|27217|2|2|1|jar", + "n":"Cargo Core Util API", + "d":"Core Utility API (logging, Ant utils, File utils, etc)", + "1":"24a93eb2127f72ff86ff88a0928767f36b1d9777" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-util|1.6.4|sources|jar", + "m":"1499025561769", + "i":"jar|1498993806000|36348|2|2|1|jar", + "n":"Cargo Core Util API", + "d":"Core Utility API (logging, Ant utils, File utils, etc)", + "1":"d9a64d2540fb5224f94d7792c2f87d0800142d24" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-util|1.6.4|javadoc|jar", + "m":"1499025561791", + "i":"jar|1498993807000|170998|2|2|1|jar", + "n":"Cargo Core Util API", + "d":"Core Utility API (logging, Ant utils, File utils, etc)", + "1":"0c7d4565a556aab07a9a3a3b2b950157efe9500e" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-module|1.6.4|NA", + "m":"1499025562939", + "i":"jar|1498993822000|314695|1|1|1|jar", + "n":"Cargo Core Module API", + "d":"Core API to parse/create J2EE Modules", + "1":"1dd8d46adc3a68a8580eeb71f985498670dd41b6" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-module|1.6.4|tests|jar", + "m":"1499025562970", + "i":"jar|1498993825000|57957|2|2|1|jar", + "n":"Cargo Core Module API", + "d":"Core API to parse/create J2EE Modules", + "1":"1cc914b940e13b4afca8fbb20fc7c12bc99fc95a" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-module|1.6.4|sources|jar", + "m":"1499025562993", + "i":"jar|1498993824000|318979|2|2|1|jar", + "n":"Cargo Core Module API", + "d":"Core API to parse/create J2EE Modules", + "1":"a3da22529c3016d4dc5e05c4224c91934fd6e14b" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-module|1.6.4|javadoc|jar", + "m":"1499025563022", + "i":"jar|1498993825000|856601|2|2|1|jar", + "n":"Cargo Core Module API", + "d":"Core API to parse/create J2EE Modules", + "1":"d385349de6b76a0fa6c2aecb689df1014571519f" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-generic|1.6.4|NA", + "m":"1499025564176", + "i":"jar|1498993846000|38042|1|1|1|jar", + "n":"Cargo Core Generic API", + "d":"Core API to generically access the typed container API", + "1":"4a8dba8d4b37cd79480c434850365f2fc3d49674" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-generic|1.6.4|sources|jar", + "m":"1499025564201", + "i":"jar|1498993848000|32719|2|2|1|jar", + "n":"Cargo Core Generic API", + "d":"Core API to generically access the typed container API", + "1":"51046c9559319256e87ddbc5cceafc1f2b9bfe8c" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-generic|1.6.4|javadoc|jar", + "m":"1499025564223", + "i":"jar|1498993849000|196136|2|2|1|jar", + "n":"Cargo Core Generic API", + "d":"Core API to generically access the typed container API", + "1":"7a7f0d087e546de13b73e937f69c737a8256ce2c" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-container|1.6.4|NA", + "m":"1499025565330", + "i":"jar|1498993837000|157513|1|1|1|jar", + "n":"Cargo Core Container API", + "d":"API to start/stop/configure containers", + "1":"2662013e1e1e3d25c5e491e190dd51d373ef24cf" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-container|1.6.4|tests|jar", + "m":"1499025565359", + "i":"jar|1498993841000|80765|2|2|1|jar", + "n":"Cargo Core Container API", + "d":"API to start/stop/configure containers", + "1":"154cf07f2a77a91a8d36455bba006789760001a5" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-container|1.6.4|sources|jar", + "m":"1499025565384", + "i":"jar|1498993840000|173794|2|2|1|jar", + "n":"Cargo Core Container API", + "d":"API to start/stop/configure containers", + "1":"1f238461684b938efc68c562c1bfc6fcf16b7b32" + }, + { + "u":"org.codehaus.cargo|cargo-core-api-container|1.6.4|javadoc|jar", + "m":"1499025565412", + "i":"jar|1498993841000|833152|2|2|1|jar", + "n":"Cargo Core Container API", + "d":"API to start/stop/configure containers", + "1":"3fdf017d8431111c015c294e74bdd238f65c94b4" + }, + { + "u":"org.codehaus.cargo|cargo-core-api|1.6.4|NA", + "m":"1499025566611", + "i":"pom|1498993795000|1374|0|0|1|pom", + "n":"Cargo Core API", + "d":"The Cargo Core API", + "1":"479659951ad41323f8c1b952e33304e72ed3c9f8" + }, + { + "u":"org.codehaus.cargo|cargo-core|1.6.4|NA", + "m":"1499025567608", + "i":"pom|1498993793000|2434|0|0|1|pom", + "n":"Cargo Core", + "d":"Cargo Core", + "1":"1b112731c2d06e220b23963d06fc96f6ba972213" + }, + { + "u":"org.codehaus.cargo|cargo-build-tools|1.6.4|NA", + "m":"1499025568779", + "i":"jar|1498993509000|6281|1|0|1|jar", + "n":"Cargo Build Tools", + "d":"Cargo Build Tools", + "1":"e9536ad4afe4bdfb694e276454afcd241535f9b5" + }, + { + "u":"org.codehaus.cargo|cargo-build-tools|1.6.4|sources|jar", + "m":"1499025568810", + "i":"jar|1498993510000|4656|2|2|1|jar", + "n":"Cargo Build Tools", + "d":"Cargo Build Tools", + "1":"e1168b547a5c3dbc2bf60353585c33391eb539a7" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-with-datasource|1.6.4|NA", + "m":"1499025569868", + "i":"maven-archetype|1498994945000|5570|1|0|1|jar", + "n":"Cargo Maven Archetype Webapp with DataSource", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.", + "1":"d9825d846615c9d6200dc48d169bb57392932ae2" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-with-datasource|1.6.4|sources|jar", + "m":"1499025569892", + "i":"jar|1498994947000|7161|2|2|1|jar", + "n":"Cargo Maven Archetype Webapp with DataSource", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.", + "1":"72f0f845947f9a009de89d19edc5540d47cedfb9" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-single-module|1.6.4|NA", + "m":"1499025570535", + "i":"maven-archetype|1498994881000|4098|1|0|1|jar", + "n":"Cargo Maven Archetype Single Webapp Module", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.", + "1":"0d5caf9e5a4164a8a1826be7b52468a7f807a99f" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-single-module|1.6.4|sources|jar", + "m":"1499025570559", + "i":"jar|1498994889000|5694|2|2|1|jar", + "n":"Cargo Maven Archetype Single Webapp Module", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.", + "1":"f7c583cf4a4f89dab50252447c2282251bd3997e" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-functional-tests-module|1.6.4|NA", + "m":"1499025571566", + "i":"maven-archetype|1498994918000|5650|1|0|1|jar", + "n":"Cargo Maven Archetype Webapp Functional Tests Module", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.", + "1":"270d4f9b76345c4b6c51c205ccf6bf7f8b2cc52e" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-webapp-functional-tests-module|1.6.4|sources|jar", + "m":"1499025571590", + "i":"jar|1498994921000|8402|2|2|1|jar", + "n":"Cargo Maven Archetype Webapp Functional Tests Module", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.", + "1":"accd3ab036b0458eaa4224fbc94a0afe700f0284" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-remote-deployment|1.6.4|NA", + "m":"1499025572573", + "i":"maven-archetype|1498994972000|3847|1|0|1|jar", + "n":"Cargo Maven Archetype demonstrating Remote Deployment", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.", + "1":"edcfbfc5bca3061a090fc8bc621d2a424facadb6" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-remote-deployment|1.6.4|sources|jar", + "m":"1499025572597", + "i":"jar|1498994975000|5340|2|2|1|jar", + "n":"Cargo Maven Archetype demonstrating Remote Deployment", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.", + "1":"579c84f5552f5053e6c63fbe40ba302541c65e41" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-multiple-containers|1.6.4|NA", + "m":"1499025573308", + "i":"maven-archetype|1498994854000|4075|1|0|1|jar", + "n":"Cargo Maven Archetype Starting and Stopping Mulitple Containers", + "d":"Sample Maven archetype showing how to start / stop multiple containers.", + "1":"678df1f83d33edc71b96afea0edc371b3cf02201" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-multiple-containers|1.6.4|sources|jar", + "m":"1499025573334", + "i":"jar|1498994856000|5648|2|2|1|jar", + "n":"Cargo Maven Archetype Starting and Stopping Mulitple Containers", + "d":"Sample Maven archetype showing how to start / stop multiple containers.", + "1":"fcfe6275a125466afc0b18e8e4c97e6b8cb343d1" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-daemon|1.6.4|NA", + "m":"1499025573520", + "i":"maven-archetype|1498994812000|3537|1|0|1|jar", + "n":"Cargo Maven Archetype demonstrating the Cargo Daemon", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.", + "1":"6d5bfa65d4f04fdb985e89d80e53a83bab9562e9" + }, + { + "u":"org.codehaus.cargo|cargo-archetype-daemon|1.6.4|sources|jar", + "m":"1499025573542", + "i":"jar|1498994814000|5017|2|2|1|jar", + "n":"Cargo Maven Archetype demonstrating the Cargo Daemon", + "d":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.", + "1":"e246f549dbc6ceedb87507291daf0b970fae9450" + }, + { + "u":"org.codehaus.cargo|cargo-ant|1.6.4|NA", + "m":"1499025574032", + "i":"jar|1498994531000|26267|1|1|1|jar", + "n":"Cargo Ant tasks", + "d":"Ant tasks for Cargo", + "1":"f947dfc72607f3d56bb035fa64d2ba6fe3108e88" + }, + { + "u":"org.codehaus.cargo|cargo-ant|1.6.4|sources|jar", + "m":"1499025574060", + "i":"jar|1498994533000|21050|2|2|1|jar", + "n":"Cargo Ant tasks", + "d":"Ant tasks for Cargo", + "1":"63f20758b0aafb411151bde3ad9250fbdd4c7a50" + }, + { + "u":"org.codehaus.cargo|cargo-ant|1.6.4|javadoc|jar", + "m":"1499025574083", + "i":"jar|1498994534000|79935|2|2|1|jar", + "n":"Cargo Ant tasks", + "d":"Ant tasks for Cargo", + "1":"00fe990714e9ff4abdf2ad42acf6647cb9144fd5" + }, + { + "u":"org.codehaus.cargo|authentication-war|1.6.4|NA", + "m":"1499025575298", + "i":"war|1498993740000|4766|1|1|1|war", + "n":"Cargo Authenticated WAR test data for samples", + "1":"95638bad750e7fb3e39b74d4b1bd602c344bc56f" + }, + { + "u":"org.codehaus.cargo|authentication-war|1.6.4|sources|jar", + "m":"1499025575312", + "i":"jar|1498993748000|2067|2|2|1|jar", + "n":"Cargo Authenticated WAR test data for samples", + "1":"bf152142f630de9bf47db617add423538f099787" + }, + { + "u":"org.codehaus.cargo|authentication-war|1.6.4|javadoc|jar", + "m":"1499025575330", + "i":"jar|1498993749000|27403|2|2|1|jar", + "n":"Cargo Authenticated WAR test data for samples", + "1":"a284c5ee01a2abce6225dea424fef36684af6cf4" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.1|NA", + "m":"1499025670453", + "i":"jar|1499008655000|374422|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"1a990804787f3e9f5ed4808a286f30b51b18dba9" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.1|sources|jar", + "m":"1499025670491", + "i":"jar|1499008654000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"aca748ff3cb0920fb645cb4fd5293cf7e008ea30" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.1|javadoc|jar", + "m":"1499025670517", + "i":"jar|1499008655000|1207388|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"eef87d02e91751f2930ff57d7fa72d9f278c4620" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.0|NA", + "m":"1499025670580", + "i":"jar|1499007958000|374443|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"5d05610ab60757b2ea190fbf572547c4ec7fc5a8" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.0|sources|jar", + "m":"1499025670618", + "i":"jar|1499007956000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"3a3a52e38e72171aceb118e03a6dd1fb65405157" + }, + { + "u":"org.clapper|grizzled-scala_2.12|4.4.0|javadoc|jar", + "m":"1499025670645", + "i":"jar|1499007958000|1207426|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"d7baeb94527151449e74d2add5ad07ede17c4c37" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.1|NA", + "m":"1499025670840", + "i":"jar|1499008653000|649998|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"742d914f2c32b68b93dd7ad064006ccd83b34b00" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.1|sources|jar", + "m":"1499025670881", + "i":"jar|1499008652000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"f04a7b17ff47c4b95342a156cab37cab80d62b00" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.1|javadoc|jar", + "m":"1499025670907", + "i":"jar|1499008653000|792240|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"3878d4d1ddc415c589aeddc2ecb0eb30635ae86a" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.0|NA", + "m":"1499025670964", + "i":"jar|1499007956000|650018|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"5d04bd494fbad16b301a8a6d647be51ceffafd37" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.0|sources|jar", + "m":"1499025671012", + "i":"jar|1499007954000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"43c815622432c13cef31e5f9a0251a1b8bcad33d" + }, + { + "u":"org.clapper|grizzled-scala_2.11|4.4.0|javadoc|jar", + "m":"1499025671039", + "i":"jar|1499007955000|792252|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"907aa2a110013ff34bb52a485b8da48734f7559b" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.1|NA", + "m":"1499025671755", + "i":"jar|1499008651000|643342|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"b59e02c752c629cee677be2fe270db97e605612c" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.1|sources|jar", + "m":"1499025671797", + "i":"jar|1499008649000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"9de0ff627753926feee49a179aae517c954b29de" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.1|javadoc|jar", + "m":"1499025671822", + "i":"jar|1499008651000|772946|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"d9a52c504bbb6639052227159cc97655ba49937a" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.0|NA", + "m":"1499025671887", + "i":"jar|1499007953000|643320|1|1|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"495df25d654e481beb9ef2fb134eafe57998d091" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.0|sources|jar", + "m":"1499025671929", + "i":"jar|1499007951000|88323|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"3a02b980e28345004973878a46cd1d927ffdd60c" + }, + { + "u":"org.clapper|grizzled-scala_2.10|4.4.0|javadoc|jar", + "m":"1499025671956", + "i":"jar|1499007953000|772958|2|2|1|jar", + "n":"grizzled-scala", + "d":"A general-purpose Scala utility library", + "1":"7a99faa5c3aee20e5373123d9a6813762c7ad2a8" + }, + { + "u":"org.clapper|avsl_2.12|1.0.15|NA", + "m":"1499025676126", + "i":"jar|1499009619000|123140|1|1|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"b351c5becb877f760afc87156bf1f7508e7c1804" + }, + { + "u":"org.clapper|avsl_2.12|1.0.15|sources|jar", + "m":"1499025676161", + "i":"jar|1499009618000|21407|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"5e89c6aaf88c273ddfe75869df02d3479639b272" + }, + { + "u":"org.clapper|avsl_2.12|1.0.15|javadoc|jar", + "m":"1499025676190", + "i":"jar|1499009618000|807899|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"24f2bf08d84208d66c97111e98837fada683da35" + }, + { + "u":"org.clapper|avsl_2.11|1.0.15|NA", + "m":"1499025676492", + "i":"jar|1499009616000|231808|1|1|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"c6747b47b17192a532281bb11ea16dc507a9de53" + }, + { + "u":"org.clapper|avsl_2.11|1.0.15|sources|jar", + "m":"1499025676528", + "i":"jar|1499009616000|21407|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"69cc47bac44b7874406d1837da04190dcd41019b" + }, + { + "u":"org.clapper|avsl_2.11|1.0.15|javadoc|jar", + "m":"1499025676554", + "i":"jar|1499009616000|490778|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"04be454e67a279085058b2907f4be6aa5b1c819e" + }, + { + "u":"org.clapper|avsl_2.10|1.0.15|NA", + "m":"1499025676892", + "i":"jar|1499009615000|229363|1|1|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"cfdc25bcabbbd24e1e001c50583282419124f3d8" + }, + { + "u":"org.clapper|avsl_2.10|1.0.15|sources|jar", + "m":"1499025676926", + "i":"jar|1499009614000|21407|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"859353f87e39b0742f9d44f482ed046aaa1a3db3" + }, + { + "u":"org.clapper|avsl_2.10|1.0.15|javadoc|jar", + "m":"1499025676950", + "i":"jar|1499009614000|487374|2|2|1|jar", + "n":"avsl", + "d":"A Very Simple Logger", + "1":"41645654b43b1b2863a184ce11329f7777ff9ee9" + }, + { + "u":"nl.topicus|spanner-jdbc|0.7|NA", + "m":"1499031406169", + "i":"jar|1499020489000|104206|1|1|1|jar", + "n":"spanner-jdbc", + "d":"JDBC Driver for Google Cloud Spanner", + "1":"c0ceb9dae9b84a47d8ad2809db9e62a1fd5d3b0d" + }, + { + "u":"nl.topicus|spanner-jdbc|0.7|sources|jar", + "m":"1499031406204", + "i":"jar|1499020490000|32978|2|2|1|jar", + "n":"spanner-jdbc", + "d":"JDBC Driver for Google Cloud Spanner", + "1":"28caa56aacb24572cd95f186ecd3770318b8d0a2" + }, + { + "u":"nl.topicus|spanner-jdbc|0.7|javadoc|jar", + "m":"1499031406228", + "i":"jar|1499020492000|177605|2|2|1|jar", + "n":"spanner-jdbc", + "d":"JDBC Driver for Google Cloud Spanner", + "1":"4eec76f0de09acf2bdd6651736e92afbeb7cfb60" + }, + { + "u":"net.liftweb|lift-webkit_2.12|3.1.0|NA", + "m":"1499032498906", + "i":"jar|1499023052000|4095916|1|1|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"b7c6c52850a5e4eeb0c41daaab6445598214902b" + }, + { + "u":"net.liftweb|lift-webkit_2.12|3.1.0|sources|jar", + "m":"1499032498990", + "i":"jar|1499023043000|770368|2|2|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"c10df2443f247ad5708e264616e376e95a8dc581" + }, + { + "u":"net.liftweb|lift-webkit_2.12|3.1.0|javadoc|jar", + "m":"1499032499033", + "i":"jar|1499023067000|8347003|2|2|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"1f4352f316c2822748ac572d7ba1bea685984e88" + }, + { + "u":"net.liftweb|lift-webkit_2.11|3.1.0|NA", + "m":"1499032499304", + "i":"jar|1499023243000|6409742|1|1|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"8b9b6cd21fcb7a795fd7218e05348cf857b601cf" + }, + { + "u":"net.liftweb|lift-webkit_2.11|3.1.0|sources|jar", + "m":"1499032499398", + "i":"jar|1499023231000|770330|2|2|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"812ec1960090c8736b0858548bc32cf005b01ae0" + }, + { + "u":"net.liftweb|lift-webkit_2.11|3.1.0|javadoc|jar", + "m":"1499032499439", + "i":"jar|1499023250000|3910767|2|2|1|jar", + "n":"Lift Webkit", + "d":"Webkit Library", + "1":"5bd02fd7c3af3c75acc35f990f833f598a064cfb" + }, + { + "u":"net.liftweb|lift-util_2.12|3.1.0|NA", + "m":"1499032504939", + "i":"jar|1499022987000|1003316|1|1|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"5f8946c085454dbb5dbd55e5a53a6c335fc83aa2" + }, + { + "u":"net.liftweb|lift-util_2.12|3.1.0|sources|jar", + "m":"1499032504989", + "i":"jar|1499022988000|136518|2|2|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"059e5fef6172df74934e85406be632cf1a07d343" + }, + { + "u":"net.liftweb|lift-util_2.12|3.1.0|javadoc|jar", + "m":"1499032505016", + "i":"jar|1499022984000|3853063|2|2|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"c2e575924117d4a21a1ae73cbefad397f71c124c" + }, + { + "u":"net.liftweb|lift-util_2.11|3.1.0|NA", + "m":"1499032505205", + "i":"jar|1499023171000|1533879|1|1|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"1cf8eea4614ad339e3e768938d59e517a62751a9" + }, + { + "u":"net.liftweb|lift-util_2.11|3.1.0|sources|jar", + "m":"1499032505258", + "i":"jar|1499023171000|136518|2|2|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"df85009c2927ff2db0856496e2719562c064b4bc" + }, + { + "u":"net.liftweb|lift-util_2.11|3.1.0|javadoc|jar", + "m":"1499032505285", + "i":"jar|1499023166000|1532138|2|2|1|jar", + "n":"Lift Util", + "d":"Utilities Library", + "1":"f59ac4672d3bd123ccd2fe79efb2cc8c4b51c4a1" + }, + { + "u":"net.liftweb|lift-testkit_2.12|3.1.0|NA", + "m":"1499032512886", + "i":"jar|1499022972000|135595|1|1|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"216c830faecb693c790045f8795d187d97b9161d" + }, + { + "u":"net.liftweb|lift-testkit_2.12|3.1.0|sources|jar", + "m":"1499032512916", + "i":"jar|1499022973000|19056|2|2|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"b7fc18461daf7ad6699f63953e4119872e31befe" + }, + { + "u":"net.liftweb|lift-testkit_2.12|3.1.0|javadoc|jar", + "m":"1499032512941", + "i":"jar|1499022975000|841910|2|2|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"ff4b75dc2175de6fd8a068818556570a1cbe1b9a" + }, + { + "u":"net.liftweb|lift-testkit_2.11|3.1.0|NA", + "m":"1499032513110", + "i":"jar|1499023175000|242098|1|1|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"c8d8d31d8475f8f2229ea86b8109641e957f7359" + }, + { + "u":"net.liftweb|lift-testkit_2.11|3.1.0|sources|jar", + "m":"1499032513140", + "i":"jar|1499023176000|19056|2|2|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"76ec54a37c6179a10c8e3a3a931bd3ed189153b4" + }, + { + "u":"net.liftweb|lift-testkit_2.11|3.1.0|javadoc|jar", + "m":"1499032513168", + "i":"jar|1499023177000|518465|2|2|1|jar", + "n":"Lift Testkit", + "d":"Testkit for Webkit Library", + "1":"dd96c8c9d4869ebd0822a213c625b79e6e0f41b2" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.12|3.1.0|NA", + "m":"1499032518344", + "i":"jar|1499023022000|136158|1|1|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"7fbbbeb0e4f9767f7636a6fbd9ffe7becdadfbc4" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.12|3.1.0|sources|jar", + "m":"1499032518374", + "i":"jar|1499023019000|11490|2|2|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"4759d857c28f0d3c637247dda7abee7a098c66ab" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.12|3.1.0|javadoc|jar", + "m":"1499032518399", + "i":"jar|1499023021000|805665|2|2|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"4d6433f00d0e24431855642eae3d7557caedc358" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.11|3.1.0|NA", + "m":"1499032518564", + "i":"jar|1499023219000|141789|1|1|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"c2df12ff06c1be6596385a8dd8269db0fc66136a" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.11|3.1.0|sources|jar", + "m":"1499032518596", + "i":"jar|1499023218000|11491|2|2|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"e63ab9acd14324765b766fc97af7acb6350ed9de" + }, + { + "u":"net.liftweb|lift-squeryl-record_2.11|3.1.0|javadoc|jar", + "m":"1499032518622", + "i":"jar|1499023219000|479094|2|2|1|jar", + "n":"Lift Squeryl Record", + "d":"Lift Squeryl Record", + "1":"c0a5783debba9d4b84898a3803dbaf4ffbb564ff" + }, + { + "u":"net.liftweb|lift-record_2.12|3.1.0|NA", + "m":"1499032525850", + "i":"jar|1499023031000|366737|1|1|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"eeb913862e0f901ba2f4a0f0330821ff7922121e" + }, + { + "u":"net.liftweb|lift-record_2.12|3.1.0|sources|jar", + "m":"1499032525885", + "i":"jar|1499023032000|42887|2|2|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"6b7b68c40c1acce4922558a590f799770efc6a1e" + }, + { + "u":"net.liftweb|lift-record_2.12|3.1.0|javadoc|jar", + "m":"1499032525912", + "i":"jar|1499023030000|1703466|2|2|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"87d90842cf2539697bd2cfc6ce81d013b02a2f85" + }, + { + "u":"net.liftweb|lift-record_2.11|3.1.0|NA", + "m":"1499032526082", + "i":"jar|1499023228000|530641|1|1|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"9b71ca0442a5719a7d1196cb8d0b660f195858e4" + }, + { + "u":"net.liftweb|lift-record_2.11|3.1.0|sources|jar", + "m":"1499032526119", + "i":"jar|1499023229000|42887|2|2|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"e97e7112605f32cfb3b700daba803ff1fd9e5aae" + }, + { + "u":"net.liftweb|lift-record_2.11|3.1.0|javadoc|jar", + "m":"1499032526144", + "i":"jar|1499023226000|1244228|2|2|1|jar", + "n":"Lift Record", + "d":"Lift Record", + "1":"a8b9dea24b7e4f8c8f2156e6021a13f7d07a9bf5" + }, + { + "u":"net.liftweb|lift-proto_2.12|3.1.0|NA", + "m":"1499032531116", + "i":"jar|1499023008000|118413|1|1|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"c3717179aab8bae7862eb55e09742ee3f0cd15b5" + }, + { + "u":"net.liftweb|lift-proto_2.12|3.1.0|sources|jar", + "m":"1499032531149", + "i":"jar|1499023005000|15329|2|2|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"5c8d4f156fc08c72615f2cf47e900f46dd84a546" + }, + { + "u":"net.liftweb|lift-proto_2.12|3.1.0|javadoc|jar", + "m":"1499032531173", + "i":"jar|1499023007000|719938|2|2|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"62927ff710dcb4bf71d659da6681dd70b1328984" + }, + { + "u":"net.liftweb|lift-proto_2.11|3.1.0|NA", + "m":"1499032531332", + "i":"jar|1499023208000|263133|1|1|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"26c0aea3a86d2c2962aa1112f29af7dd0c8a5687" + }, + { + "u":"net.liftweb|lift-proto_2.11|3.1.0|sources|jar", + "m":"1499032531367", + "i":"jar|1499023206000|15329|2|2|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"3a2038b6111ca8fead18e44b87bc017e4112c871" + }, + { + "u":"net.liftweb|lift-proto_2.11|3.1.0|javadoc|jar", + "m":"1499032531393", + "i":"jar|1499023207000|426154|2|2|1|jar", + "n":"Lift Proto", + "d":"Lift Proto", + "1":"fa83e67d7d966dbcae1db020cb730efdf9e939bc" + }, + { + "u":"net.liftweb|lift-mongodb_2.12|3.1.0|NA", + "m":"1499032547897", + "i":"jar|1499022968000|118372|1|1|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"c140b5b55bd2ab0564e1def22e2e44651784cbb8" + }, + { + "u":"net.liftweb|lift-mongodb_2.12|3.1.0|sources|jar", + "m":"1499032547928", + "i":"jar|1499022967000|17804|2|2|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"cbbb3add8c592f00b430ce48a9fa2f81d268cd2d" + }, + { + "u":"net.liftweb|lift-mongodb_2.12|3.1.0|javadoc|jar", + "m":"1499032547953", + "i":"jar|1499022970000|787134|2|2|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"c903c3f2f3554a23f28d32d0de35a4f268d21ee0" + }, + { + "u":"net.liftweb|lift-mongodb_2.11|3.1.0|NA", + "m":"1499032548134", + "i":"jar|1499023159000|155967|1|1|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"2432656c5a8dfff83ef3d7b0bfa40bd395e6df75" + }, + { + "u":"net.liftweb|lift-mongodb_2.11|3.1.0|sources|jar", + "m":"1499032548171", + "i":"jar|1499023159000|17804|2|2|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"0a91bb806104cd5196b66e36b639a8df3a338463" + }, + { + "u":"net.liftweb|lift-mongodb_2.11|3.1.0|javadoc|jar", + "m":"1499032548197", + "i":"jar|1499023161000|464939|2|2|1|jar", + "n":"Lift Mongodb", + "d":"Lift Mongodb", + "1":"e54e7717de44c934317c046070f7f4e219c28449" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.12|3.1.0|NA", + "m":"1499032553075", + "i":"jar|1499023026000|212078|1|1|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"46978faba03b9acddbcc217a13a8d1e61b32544c" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.12|3.1.0|sources|jar", + "m":"1499032553106", + "i":"jar|1499023022000|32623|2|2|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"5e3cdc0ca8c8f971017b99db94d84dac916a250b" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.12|3.1.0|javadoc|jar", + "m":"1499032553133", + "i":"jar|1499023026000|1106275|2|2|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"92d301a9a61ec0ad4c170c2db635211e5b95226d" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.11|3.1.0|NA", + "m":"1499032553296", + "i":"jar|1499023224000|358067|1|1|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"9f443827783084a5bb2513f37dfa200ceb33ffe7" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.11|3.1.0|sources|jar", + "m":"1499032553329", + "i":"jar|1499023220000|32623|2|2|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"bd7cf834da157805e7cad0d920e25ed186f9dcc6" + }, + { + "u":"net.liftweb|lift-mongodb-record_2.11|3.1.0|javadoc|jar", + "m":"1499032553354", + "i":"jar|1499023223000|733596|2|2|1|jar", + "n":"Lift Mongodb Record", + "d":"Lift Mongodb Record", + "1":"64c63cc698be148cdc73e4dd256f07b71c64203e" + }, + { + "u":"net.liftweb|lift-markdown_2.12|3.1.0|NA", + "m":"1499032557350", + "i":"jar|1499022945000|212735|1|1|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"66c43da0646258b19a3eaaeae8e646542633bb39" + }, + { + "u":"net.liftweb|lift-markdown_2.12|3.1.0|sources|jar", + "m":"1499032557381", + "i":"jar|1499022946000|27880|2|2|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"c88ed40622b991e5e427b71ac7d7d9668eaf0363" + }, + { + "u":"net.liftweb|lift-markdown_2.12|3.1.0|javadoc|jar", + "m":"1499032557404", + "i":"jar|1499022949000|1055438|2|2|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"b5671e6e110937e336e171fec2824496b034d056" + }, + { + "u":"net.liftweb|lift-markdown_2.11|3.1.0|NA", + "m":"1499032557565", + "i":"jar|1499023141000|467487|1|1|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"87d5c31c6e9a8b709d67eb1754d1e9993b1a314e" + }, + { + "u":"net.liftweb|lift-markdown_2.11|3.1.0|sources|jar", + "m":"1499032557608", + "i":"jar|1499023141000|27881|2|2|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"4fa456ffefe67c55aa302d56fff2d9cb3461846d" + }, + { + "u":"net.liftweb|lift-markdown_2.11|3.1.0|javadoc|jar", + "m":"1499032557633", + "i":"jar|1499023144000|696856|2|2|1|jar", + "n":"Lift Markdown", + "d":"Markdown Parser", + "1":"4b3454786c43b422bffddc50d14f128009469a7f" + }, + { + "u":"net.liftweb|lift-mapper_2.12|3.1.0|NA", + "m":"1499032562209", + "i":"jar|1499023036000|890682|1|1|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"bf349176a47a5fc625c9dae2975fcb3b42201adc" + }, + { + "u":"net.liftweb|lift-mapper_2.12|3.1.0|sources|jar", + "m":"1499032562322", + "i":"jar|1499023033000|103645|2|2|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"2e6c0670dc20668983b836d6b9e5ced70bbe2196" + }, + { + "u":"net.liftweb|lift-mapper_2.12|3.1.0|javadoc|jar", + "m":"1499032562351", + "i":"jar|1499023041000|2822651|2|2|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"cd65d2e4e0d80ebe816bf155fa3ad8137ff0832e" + }, + { + "u":"net.liftweb|lift-mapper_2.11|3.1.0|NA", + "m":"1499032562741", + "i":"jar|1499023264000|1501544|1|1|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"f1102f77af793fd39e100ff58d7b66e7ed9d8a91" + }, + { + "u":"net.liftweb|lift-mapper_2.11|3.1.0|sources|jar", + "m":"1499032562795", + "i":"jar|1499023254000|103645|2|2|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"d6be7e4ecc13dc649f05c3cc9462101bb5007714" + }, + { + "u":"net.liftweb|lift-mapper_2.11|3.1.0|javadoc|jar", + "m":"1499032562821", + "i":"jar|1499023267000|1795304|2|2|1|jar", + "n":"Lift Mapper", + "d":"Mapper Library", + "1":"0d495a900ba2615366f5960e17821db9e27746b5" + }, + { + "u":"net.liftweb|lift-json_2.12|3.1.0|NA", + "m":"1499032576933", + "i":"jar|1499022941000|369329|1|1|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"cc7c8b07ce47f825a32b9cc8b1b621d98b177b9c" + }, + { + "u":"net.liftweb|lift-json_2.12|3.1.0|sources|jar", + "m":"1499032576969", + "i":"jar|1499022937000|40738|2|2|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"042a2b07cd80af63ae5fd1281c6028b05e454307" + }, + { + "u":"net.liftweb|lift-json_2.12|3.1.0|javadoc|jar", + "m":"1499032576994", + "i":"jar|1499022939000|1028321|2|2|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"d00c2191b75e2ea4ad16469f0aff63abe198ad15" + }, + { + "u":"net.liftweb|lift-json_2.11|3.1.0|NA", + "m":"1499032577158", + "i":"jar|1499023139000|544699|1|1|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"815e258cfc911380df6c1af8fe1239935fc06cae" + }, + { + "u":"net.liftweb|lift-json_2.11|3.1.0|sources|jar", + "m":"1499032577203", + "i":"jar|1499023130000|40738|2|2|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"4b08c3f5755046d67274fbdc8c2a5eadf3036b77" + }, + { + "u":"net.liftweb|lift-json_2.11|3.1.0|javadoc|jar", + "m":"1499032577229", + "i":"jar|1499023134000|654474|2|2|1|jar", + "n":"Lift Json", + "d":"JSON Library", + "1":"778a72f847359047f687a15544df3f35a836cd40" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.12|3.1.0|NA", + "m":"1499032583593", + "i":"jar|1499022941000|87692|1|1|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"6f4527ad94f34c9b02a875c6eed495f54bd82356" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.12|3.1.0|sources|jar", + "m":"1499032583622", + "i":"jar|1499022941000|5537|2|2|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"77303e82197a89d20bd05617f6bf77ad6b8615c8" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.12|3.1.0|javadoc|jar", + "m":"1499032583648", + "i":"jar|1499022943000|708994|2|2|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"933906fd659207a0f728ab585c3a8da0d5312ba1" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.11|3.1.0|NA", + "m":"1499032583809", + "i":"jar|1499023156000|109050|1|1|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"6b53a68e151a808120333ae25e1015d67ba847a0" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.11|3.1.0|sources|jar", + "m":"1499032583843", + "i":"jar|1499023155000|5538|2|2|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"d87524d2e47cb0f5058c4ae325b98563c4fa0215" + }, + { + "u":"net.liftweb|lift-json-scalaz7_2.11|3.1.0|javadoc|jar", + "m":"1499032583868", + "i":"jar|1499023157000|418525|2|2|1|jar", + "n":"Lift Json Scalaz7", + "d":"JSON Library based on Scalaz 7", + "1":"778e976d58622f6cd974d4c2c4b17c825c0b9be2" + }, + { + "u":"net.liftweb|lift-json-ext_2.12|3.1.0|NA", + "m":"1499032588621", + "i":"jar|1499022958000|88090|1|1|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"5a09911da63262748bb193bfb9a722b011ab5cf8" + }, + { + "u":"net.liftweb|lift-json-ext_2.12|3.1.0|sources|jar", + "m":"1499032588653", + "i":"jar|1499022957000|4882|2|2|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"bdfa2da248ae3f66979c7970a53b6c0ddee0f42c" + }, + { + "u":"net.liftweb|lift-json-ext_2.12|3.1.0|javadoc|jar", + "m":"1499032588676", + "i":"jar|1499022956000|696838|2|2|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"b67de753e378430cbb87648f9d8157aadf94f9e9" + }, + { + "u":"net.liftweb|lift-json-ext_2.11|3.1.0|NA", + "m":"1499032588854", + "i":"jar|1499023154000|88357|1|1|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"de02459cd1e519ad4c016cdfb3bab646b0282e08" + }, + { + "u":"net.liftweb|lift-json-ext_2.11|3.1.0|sources|jar", + "m":"1499032588887", + "i":"jar|1499023153000|4882|2|2|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"3f74250fffc651cd8d72c3e253306ee9435e7295" + }, + { + "u":"net.liftweb|lift-json-ext_2.11|3.1.0|javadoc|jar", + "m":"1499032588909", + "i":"jar|1499023153000|400340|2|2|1|jar", + "n":"Lift Json Ext", + "d":"Extentions to JSON Library", + "1":"7b01c98599c052dd55cdcc92ed225ac77358b303" + }, + { + "u":"net.liftweb|lift-db_2.12|3.1.0|NA", + "m":"1499032605132", + "i":"jar|1499023002000|149517|1|1|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"bdb921e2f8eea358144e706dca2be42aa10d8abc" + }, + { + "u":"net.liftweb|lift-db_2.12|3.1.0|sources|jar", + "m":"1499032605164", + "i":"jar|1499023005000|20170|2|2|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"a93320ade505b4b36bde1cf434588becb57155de" + }, + { + "u":"net.liftweb|lift-db_2.12|3.1.0|javadoc|jar", + "m":"1499032605193", + "i":"jar|1499023003000|837363|2|2|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"6c44d31088e02926fdbd391bde064168ae717790" + }, + { + "u":"net.liftweb|lift-db_2.11|3.1.0|NA", + "m":"1499032605360", + "i":"jar|1499023203000|322929|1|1|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"e6ec1e95aabad445c90d85ba0240eefb9bfddf3f" + }, + { + "u":"net.liftweb|lift-db_2.11|3.1.0|sources|jar", + "m":"1499032605399", + "i":"jar|1499023205000|20169|2|2|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"7f86c3925b44473bd5dc4b66e3e59a076f143506" + }, + { + "u":"net.liftweb|lift-db_2.11|3.1.0|javadoc|jar", + "m":"1499032605426", + "i":"jar|1499023204000|508967|2|2|1|jar", + "n":"Lift Db", + "d":"Lift Db", + "1":"a6da928efe32d0b537fa333e03833bfa7d48ac83" + }, + { + "u":"net.liftweb|lift-common_2.12|3.1.0|NA", + "m":"1499032613170", + "i":"jar|1499022950000|191911|1|1|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"3cc0c4fb74dcad2784a624f63847d331d6060aa5" + }, + { + "u":"net.liftweb|lift-common_2.12|3.1.0|sources|jar", + "m":"1499032613204", + "i":"jar|1499022954000|36399|2|2|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"5a46a36cacd96cbc87ed5f488c2056b1a57aaccb" + }, + { + "u":"net.liftweb|lift-common_2.12|3.1.0|javadoc|jar", + "m":"1499032613233", + "i":"jar|1499022953000|1179871|2|2|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"d4c573b2906db5756998d60984ff133a969adf27" + }, + { + "u":"net.liftweb|lift-common_2.11|3.1.0|NA", + "m":"1499032613404", + "i":"jar|1499023145000|246588|1|1|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"2bd44c585d682664649823e06316dbda2a74295e" + }, + { + "u":"net.liftweb|lift-common_2.11|3.1.0|sources|jar", + "m":"1499032613435", + "i":"jar|1499023148000|36400|2|2|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"43b293427736c87f70a9e0a62f168bc7a74ea887" + }, + { + "u":"net.liftweb|lift-common_2.11|3.1.0|javadoc|jar", + "m":"1499032613460", + "i":"jar|1499023147000|671878|2|2|1|jar", + "n":"Lift Common", + "d":"Common Libraties and Utilities", + "1":"1120d5b080de4ea74cccb0349f50c902e6b5c6a0" + }, + { + "u":"net.liftweb|lift-actor_2.12|3.1.0|NA", + "m":"1499032629635", + "i":"jar|1499022935000|77026|1|1|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"7f33ab403fc3c488ccb81d2158787466e0e86807" + }, + { + "u":"net.liftweb|lift-actor_2.12|3.1.0|sources|jar", + "m":"1499032629666", + "i":"jar|1499022934000|11654|2|2|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"88e123eba5b0397d145dd226f497208329389662" + }, + { + "u":"net.liftweb|lift-actor_2.12|3.1.0|javadoc|jar", + "m":"1499032629690", + "i":"jar|1499022933000|732563|2|2|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"57407253774842c4de344f8ca41dbb76f899cb1d" + }, + { + "u":"net.liftweb|lift-actor_2.11|3.1.0|NA", + "m":"1499032629849", + "i":"jar|1499023123000|133033|1|1|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"f8952a0b30af94d6bf5eec8e022574987e225b4e" + }, + { + "u":"net.liftweb|lift-actor_2.11|3.1.0|sources|jar", + "m":"1499032629881", + "i":"jar|1499023116000|11655|2|2|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"3cd071fb50b832f7064d04b6876f12da50d82009" + }, + { + "u":"net.liftweb|lift-actor_2.11|3.1.0|javadoc|jar", + "m":"1499032629907", + "i":"jar|1499023110000|430361|2|2|1|jar", + "n":"Lift Actor", + "d":"Simple Actor", + "1":"2157f7d3150fdf9cdf1a8909841a56f31cba0c1a" + }, + { + "u":"net.cakesolutions|validated-config_2.12|1.0.2|NA", + "m":"1499033232743", + "i":"jar|1499032641000|41351|1|1|1|jar", + "n":"validated-config", + "d":"validated-config", + "1":"8ab307d42b33defbb1639e3c188b13d748581e5a" + }, + { + "u":"net.cakesolutions|validated-config_2.12|1.0.2|sources|jar", + "m":"1499033232772", + "i":"jar|1499032642000|4547|2|2|1|jar", + "n":"validated-config", + "d":"validated-config", + "1":"8d7ac2aac6d1b6651c92e2f2396ba1c125dd19e3" + }, + { + "u":"net.cakesolutions|validated-config_2.12|1.0.2|javadoc|jar", + "m":"1499033232793", + "i":"jar|1499032644000|698122|2|2|1|jar", + "n":"validated-config", + "d":"validated-config", + "1":"6ca7f45e378974c9667956676d6adbacc71f94d1" + }, + { + "u":"net.bull.javamelody|javamelody-spring-boot-starter|1.68.0|NA", + "m":"1499033256458", + "i":"jar|1499007672000|7736|1|1|1|jar", + "n":"JavaMelody - Spring Boot Starter", + "d":"Spring Boot Starter for JavaMelody", + "1":"fc3cb01dcbe60ff37fdac87e962e6b794e841290" + }, + { + "u":"net.bull.javamelody|javamelody-spring-boot-starter|1.68.0|sources|jar", + "m":"1499033256493", + "i":"jar|1499007686000|7254|2|2|1|jar", + "n":"JavaMelody - Spring Boot Starter", + "d":"Spring Boot Starter for JavaMelody", + "1":"46afb630bd636cc6eb2566cc3ebbb298a2593ec8" + }, + { + "u":"net.bull.javamelody|javamelody-spring-boot-starter|1.68.0|javadoc|jar", + "m":"1499033256517", + "i":"jar|1499007700000|32981|2|2|1|jar", + "n":"JavaMelody - Spring Boot Starter", + "d":"Spring Boot Starter for JavaMelody", + "1":"3bfd9a576433ea6f3281ac779e02a08fcf1444a1" + }, + { + "u":"net.bull.javamelody|javamelody-core|1.68.0|NA", + "m":"1499033256774", + "i":"jar|1499007478000|1283457|1|1|1|jar", + "n":"JavaMelody - Core", + "d":"Monitoring of JavaEE applications", + "1":"65e4d9a31c4b1d5b3a55401be70a8eb41f05a879" + }, + { + "u":"net.bull.javamelody|javamelody-core|1.68.0|sources|jar", + "m":"1499033256828", + "i":"jar|1499007505000|1052150|2|2|1|jar", + "n":"JavaMelody - Core", + "d":"Monitoring of JavaEE applications", + "1":"99a6c46bb62dc51b323f5bae2039e69e0510e331" + }, + { + "u":"net.bull.javamelody|javamelody-core|1.68.0|javadoc|jar", + "m":"1499033256876", + "i":"jar|1499007528000|763569|2|2|1|jar", + "n":"JavaMelody - Core", + "d":"Monitoring of JavaEE applications", + "1":"86a15f577fefeec5dc45fe4894dd158f0ae676f3" + }, + { + "u":"net.bull.javamelody|javamelody-collector-server|1.68.0|NA", + "m":"1499033258329", + "i":"war|1499007651000|10176776|0|0|1|war", + "n":"JavaMelody - Collector server", + "d":"Optional centralized collector server for Java Melody", + "1":"2e670f652b44425b5b85281d9b14663e14ac7664" + }, + { + "u":"net.bull.javamelody|alfresco-javamelody-addon|1.68.0|NA", + "m":"1499033258613", + "i":"amp|1499007747000|3018076|0|0|1|amp", + "n":"Alfresco JavaMelody add-on", + "d":"JavaMelody Monitoring in Alfresco", + "1":"7c57a7aad673f2e44ff1477ac9f1edec66bc6a73" + }, + { + "u":"me.tatarka.redux|redux-thunk|0.9|NA", + "m":"1499033422728", + "i":"pom|1499031875000|1310|1|1|1|jar", + "n":"redux-thunk", + "d":"Redux ported to java/android", + "1":"03c3587f88f4e36d35152eafc4ca6aa106ce3fee" + }, + { + "u":"me.tatarka.redux|redux-thunk|0.9|sources|jar", + "m":"1499033422749", + "i":"jar|1499031876000|1108|2|2|1|jar", + "n":"redux-thunk", + "d":"Redux ported to java/android", + "1":"764b511c1d9dbb5c46ca9e2cfbc32f29de270829" + }, + { + "u":"me.tatarka.redux|redux-thunk|0.9|javadoc|jar", + "m":"1499033422768", + "i":"jar|1499031876000|261|2|2|1|jar", + "n":"redux-thunk", + "d":"Redux ported to java/android", + "1":"0b1822191d48b9ed572fc4fe043b41fedebec26f" + }, + { + "u":"me.tatarka.redux|redux-rx2|0.9|NA", + "m":"1499033422807", + "i":"pom|1499031868000|1485|1|1|1|jar", + "n":"redux-rx2", + "d":"Redux ported to java/android", + "1":"ccfe3d6ea02347ca035100a5f213cf8aa290e562" + }, + { + "u":"me.tatarka.redux|redux-rx2|0.9|sources|jar", + "m":"1499033422835", + "i":"jar|1499031868000|3447|2|2|1|jar", + "n":"redux-rx2", + "d":"Redux ported to java/android", + "1":"e045358beb5d1b91e34904d4ae7962919f726185" + }, + { + "u":"me.tatarka.redux|redux-rx2|0.9|javadoc|jar", + "m":"1499033422855", + "i":"jar|1499031868000|261|2|2|1|jar", + "n":"redux-rx2", + "d":"Redux ported to java/android", + "1":"8e73cf31afdd20b61d75e41f9ba8bdba43dfa3f1" + }, + { + "u":"me.tatarka.redux|redux-rx|0.9|NA", + "m":"1499033422893", + "i":"pom|1499031862000|1475|1|1|1|jar", + "n":"redux-rx", + "d":"Redux ported to java/android", + "1":"664ac1bcf515c3489c2f8fc700229b2495e2bd76" + }, + { + "u":"me.tatarka.redux|redux-rx|0.9|sources|jar", + "m":"1499033422918", + "i":"jar|1499031862000|2479|2|2|1|jar", + "n":"redux-rx", + "d":"Redux ported to java/android", + "1":"ae9a1bfe2900901092614b7405847c37a8b8c56b" + }, + { + "u":"me.tatarka.redux|redux-rx|0.9|javadoc|jar", + "m":"1499033422939", + "i":"jar|1499031862000|261|2|2|1|jar", + "n":"redux-rx", + "d":"Redux ported to java/android", + "1":"69d36dd1a6f429bd752f7f1edc7a68ee326367e1" + }, + { + "u":"me.tatarka.redux|redux-replay|0.9|NA", + "m":"1499033422978", + "i":"pom|1499031855000|1312|1|1|1|jar", + "n":"redux-replay", + "d":"Redux ported to java/android", + "1":"8e889497d7c7c4b0a04cef7671973f4e6e7458ab" + }, + { + "u":"me.tatarka.redux|redux-replay|0.9|sources|jar", + "m":"1499033422999", + "i":"jar|1499031855000|1295|2|2|1|jar", + "n":"redux-replay", + "d":"Redux ported to java/android", + "1":"66560aad0d6a96adbda27bedfd4bd3bf2eb6d396" + }, + { + "u":"me.tatarka.redux|redux-replay|0.9|javadoc|jar", + "m":"1499033423018", + "i":"jar|1499031855000|261|2|2|1|jar", + "n":"redux-replay", + "d":"Redux ported to java/android", + "1":"268853e63d6e733cd0b53d4d373496a9766f2e44" + }, + { + "u":"me.tatarka.redux|redux-core|0.9|NA", + "m":"1499033423054", + "i":"pom|1499031853000|1096|1|1|1|jar", + "n":"redux-core", + "d":"Redux ported to java/android", + "1":"7efe59f60498aaaf3e0d39fdda8055c14b3eb181" + }, + { + "u":"me.tatarka.redux|redux-core|0.9|sources|jar", + "m":"1499033423081", + "i":"jar|1499031853000|6588|2|2|1|jar", + "n":"redux-core", + "d":"Redux ported to java/android", + "1":"955948173220f011b95aec13b26585dd9b0fd106" + }, + { + "u":"me.tatarka.redux|redux-core|0.9|javadoc|jar", + "m":"1499033423103", + "i":"jar|1499031853000|261|2|2|1|jar", + "n":"redux-core", + "d":"Redux ported to java/android", + "1":"a63d6c7c69f3c329c013099f4cf03ab27f8bd269" + }, + { + "u":"me.tatarka.redux|redux-android-lifecycle|0.9|NA", + "m":"1499033423138", + "i":"aar|1499031849000|5879|1|1|1|aar", + "n":"redux-android-lifecycle", + "d":"Redux ported to java/android", + "1":"b2fa12ed115aa9ebac59d5ff4eeab71864c87f7d" + }, + { + "u":"me.tatarka.redux|redux-android-lifecycle|0.9|sources|jar", + "m":"1499033423152", + "i":"jar|1499031850000|3250|2|2|1|jar", + "n":"redux-android-lifecycle", + "d":"Redux ported to java/android", + "1":"3ea015eb6462ba1a1ef9ff4702474959b3a5f581" + }, + { + "u":"me.tatarka.redux|redux-android-lifecycle|0.9|javadoc|jar", + "m":"1499033423170", + "i":"jar|1499031850000|261|2|2|1|jar", + "n":"redux-android-lifecycle", + "d":"Redux ported to java/android", + "1":"be1203185530f456ba3698a4c20bd43ac0ff6554" + }, + { + "u":"me.tatarka.redux|redux-android|0.9|NA", + "m":"1499033423205", + "i":"aar|1499031848000|5220|1|1|1|aar", + "n":"redux-android", + "d":"Redux ported to java/android", + "1":"1bdc42e1bf582f4b73d06a0844165ae9bafe2224" + }, + { + "u":"me.tatarka.redux|redux-android|0.9|sources|jar", + "m":"1499033423220", + "i":"jar|1499031848000|2544|2|2|1|jar", + "n":"redux-android", + "d":"Redux ported to java/android", + "1":"5ba60ca98f8659f4e738aef7546b085326cc36ac" + }, + { + "u":"me.tatarka.redux|redux-android|0.9|javadoc|jar", + "m":"1499033423238", + "i":"jar|1499031848000|261|2|2|1|jar", + "n":"redux-android", + "d":"Redux ported to java/android", + "1":"bfd9b2403657ec822c7bcda590e10e5d16a98452" + }, + { + "u":"me.aflak.libraries|fingerprintdialog|1.1|NA", + "m":"1499033512557", + "i":"aar|1499030650000|39598|1|1|1|aar", + "n":"FingerprintDialog", + "d":"Short library that allows you to create fingerprint dialogs for authentications.", + "1":"d23beac1111080fc04c10b8eb5c84fdaa3053f97" + }, + { + "u":"me.aflak.libraries|fingerprintdialog|1.1|sources|jar", + "m":"1499033512571", + "i":"jar|1499030649000|2848|2|2|1|jar", + "n":"FingerprintDialog", + "d":"Short library that allows you to create fingerprint dialogs for authentications.", + "1":"0854c3b12851a19b92a34da86590940ac028fd97" + }, + { + "u":"me.aflak.libraries|fingerprintdialog|1.1|javadoc|jar", + "m":"1499033512589", + "i":"jar|1499030649000|22703|2|2|1|jar", + "n":"FingerprintDialog", + "d":"Short library that allows you to create fingerprint dialogs for authentications.", + "1":"8754765c3092485b29f023352383f7639704a076" + }, + { + "u":"io.ultreia.tabb|tabb|1.4|NA", + "m":"1499034211372", + "i":"pom|1499011950000|8696|0|0|1|pom", + "n":"TABB :: Pom", + "d":"TABB toolkit written in Java", + "1":"ea45b78c18de437792f357b6dcb6993a5c37d35a" + }, + { + "u":"io.ultreia.tabb|mplc|1.4|NA", + "m":"1499034211494", + "i":"zip|1499012003000|7191225|1|1|1|zip", + "n":"TABB :: MPLC", + "d":"TABB :: MPLC", + "1":"46085251fb376c51ca36904981111184cbf8b89b" + }, + { + "u":"io.ultreia.tabb|mplc|1.4|sources|jar", + "m":"1499034211512", + "i":"jar|1499012002000|87528|2|2|1|jar", + "n":"TABB :: MPLC", + "d":"TABB :: MPLC", + "1":"744b0e5a758fdbe8621fdf53460401270f09a147" + }, + { + "u":"io.ultreia.tabb|mplc|1.4|javadoc|jar", + "m":"1499034211541", + "i":"jar|1499012002000|410923|2|2|1|jar", + "n":"TABB :: MPLC", + "d":"TABB :: MPLC", + "1":"7fd6a6a6127c85799b3b45feefedf03b376a57e5" + }, + { + "u":"io.ultreia.tabb|apdp|1.4|NA", + "m":"1499034211697", + "i":"jar|1499011973000|52438|1|1|1|jar", + "n":"TABB :: APDP", + "d":"TABB :: APDP", + "1":"40c2711c115b7326412f397ca9b840fd834f27c0" + }, + { + "u":"io.ultreia.tabb|apdp|1.4|sources|jar", + "m":"1499034211727", + "i":"jar|1499011973000|33658|2|2|1|jar", + "n":"TABB :: APDP", + "d":"TABB :: APDP", + "1":"3935e228f247cdc1d74809283e0836154a7f43d6" + }, + { + "u":"io.ultreia.tabb|apdp|1.4|javadoc|jar", + "m":"1499034211757", + "i":"jar|1499011974000|60345|2|2|1|jar", + "n":"TABB :: APDP", + "d":"TABB :: APDP", + "1":"13356e0da91fd5323ffd06b10123a576255869c8" + }, + { + "u":"io.trane|future-java|0.2.1|NA", + "m":"1499034225498", + "i":"jar|1498980204000|64856|1|1|1|jar", + "n":"future-java", + "1":"ba1b98a3f9587a095e81dadb14befa423be9be7b" + }, + { + "u":"io.trane|future-java|0.2.1|sources|jar", + "m":"1499034225529", + "i":"jar|1498980205000|24359|2|2|1|jar", + "n":"future-java", + "1":"96bf76446e0fdd5feb49299d856555bdb4b9f9a6" + }, + { + "u":"io.trane|future-java|0.2.1|javadoc|jar", + "m":"1499034225554", + "i":"jar|1498980203000|133974|2|2|1|jar", + "n":"future-java", + "1":"eb67d6f9483e9c915b53bb3854a953eb17b23476" + }, + { + "u":"io.trane|future-benchmark|0.2.1|NA", + "m":"1499034226000", + "i":"jar|1498980204000|537377|1|1|1|jar", + "n":"future-benchmark", + "1":"4f8a93afcab79ca1f08299b62bcd51777b9e6b22" + }, + { + "u":"io.trane|future-benchmark|0.2.1|sources|jar", + "m":"1499034226046", + "i":"jar|1498980204000|5365|2|2|1|jar", + "n":"future-benchmark", + "1":"034e02762dac0939fa204ba9b15c496b9e7718de" + }, + { + "u":"io.trane|future-benchmark|0.2.1|javadoc|jar", + "m":"1499034226070", + "i":"jar|1498980204000|91926|2|2|1|jar", + "n":"future-benchmark", + "1":"8f5511800016507ceef669eb7ecc3b4c38e759eb" + }, + { + "u":"io.trane|future|0.2.1|NA", + "m":"1499034226513", + "i":"pom|1498980205000|4106|0|0|1|pom", + "n":"future", + "d":"High-performance Future implementation for the JVM", + "1":"59195c5bc05bb0b2631087f425d5d5ca2948ae90" + }, + { + "u":"io.scalecube|docker-utils|1.0.3|NA", + "m":"1499034483132", + "i":"jar|1498983479000|21818|1|1|1|jar", + "n":"Docker Utils", + "d":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "1":"b10512d23601eaeeff318b2c98005c300e277c17" + }, + { + "u":"io.scalecube|docker-utils|1.0.3|sources|jar", + "m":"1499034483162", + "i":"jar|1498983477000|7521|2|2|1|jar", + "n":"Docker Utils", + "d":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "1":"eb7ddc73912294d202487324e3e0834bcc5a481b" + }, + { + "u":"io.scalecube|docker-utils|1.0.3|javadoc|jar", + "m":"1499034483187", + "i":"jar|1498983479000|38167|2|2|1|jar", + "n":"Docker Utils", + "d":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "1":"aa90b4662b48857609227ddc3edcf83b341bfea5" + }, + { + "u":"io.qala.datagen|qala-datagen-parent|2.2.1|NA", + "m":"1499034641033", + "i":"pom|1499025907000|10496|0|0|1|pom", + "n":"Qala Datagen", + "d":"Java lib to generate random data to facilitate Randomized Testing.", + "1":"d687ae5e94a109076d4c7e98726c4b3d35cdf6a8" + }, + { + "u":"io.qala.datagen|qala-datagen-junit5|2.2.1|NA", + "m":"1499034641466", + "i":"jar|1499025902000|33931|1|1|1|jar", + "1":"e2e6fbc0689fe4ca5a6dc2cb11f52f126742145b" + }, + { + "u":"io.qala.datagen|qala-datagen-junit5|2.2.1|sources|jar", + "m":"1499034641493", + "i":"jar|1499025907000|20315|2|2|1|jar", + "1":"41209e53d9f3acec3e63eb067f09656f4c64bae1" + }, + { + "u":"io.qala.datagen|qala-datagen-junit5|2.2.1|javadoc|jar", + "m":"1499034641515", + "i":"jar|1499025907000|101415|2|2|1|jar", + "1":"d38ce82b8f46e87662b1d6ca45d8a585a10cbf50" + }, + { + "u":"io.qala.datagen|qala-datagen-java8types|2.2.1|NA", + "m":"1499034641685", + "i":"jar|1499025899000|6371|1|1|1|jar", + "1":"3822f29c626f57c225d616cb8f955f1cae18cb5f" + }, + { + "u":"io.qala.datagen|qala-datagen-java8types|2.2.1|sources|jar", + "m":"1499034641709", + "i":"jar|1499025906000|3156|2|2|1|jar", + "1":"385c6d2a4bf024050a975764c7100dc2810b9caf" + }, + { + "u":"io.qala.datagen|qala-datagen-java8types|2.2.1|javadoc|jar", + "m":"1499034641727", + "i":"jar|1499025903000|32320|2|2|1|jar", + "1":"b3a1877c2b727383fbc9814aaeb572ade6253a06" + }, + { + "u":"io.qala.datagen|qala-datagen|2.2.1|NA", + "m":"1499034642027", + "i":"jar|1499025905000|28274|1|1|1|jar", + "1":"43474d9b42b18c36f2b9225493f4ee09ea75c96e" + }, + { + "u":"io.qala.datagen|qala-datagen|2.2.1|sources|jar", + "m":"1499034642055", + "i":"jar|1499025899000|18370|2|2|1|jar", + "1":"f08a06d6cd11b48efec0ddee8275ace66bfa1889" + }, + { + "u":"io.qala.datagen|qala-datagen|2.2.1|javadoc|jar", + "m":"1499034642077", + "i":"jar|1499025899000|123003|2|2|1|jar", + "1":"360912c6240d2f13b050a555d6e3a9afd310a0a2" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.12|0.3.1|NA", + "m":"1499035526816", + "i":"jar|1499027796000|242837|1|1|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"f907f4c25d98ca13ffb734f41913d4ec2dd55bed" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035526857", + "i":"jar|1499027797000|16669|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035526882", + "i":"jar|1499027799000|8616|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.11|0.3.1|NA", + "m":"1499035526975", + "i":"jar|1499027699000|273943|1|1|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"c7fb257b6e1ea75f650b645fe813642d0feb5c3a" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035527006", + "i":"jar|1499027700000|16669|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc" + }, + { + "u":"io.frees|freestyle_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035527030", + "i":"jar|1499027702000|8616|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle_2.12|0.3.1|NA", + "m":"1499035527124", + "i":"jar|1499027776000|137186|1|1|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"043254098224ecac232438d821453b27e6ca5538" + }, + { + "u":"io.frees|freestyle_2.12|0.3.1|sources|jar", + "m":"1499035527151", + "i":"jar|1499027777000|16669|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c" + }, + { + "u":"io.frees|freestyle_2.12|0.3.1|javadoc|jar", + "m":"1499035527175", + "i":"jar|1499027779000|8616|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle_2.11|0.3.1|NA", + "m":"1499035527267", + "i":"jar|1499027686000|159837|1|1|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"00c005c604c335f0ecd5d2795c17b370673b964d" + }, + { + "u":"io.frees|freestyle_2.11|0.3.1|sources|jar", + "m":"1499035527294", + "i":"jar|1499027687000|16669|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc" + }, + { + "u":"io.frees|freestyle_2.11|0.3.1|javadoc|jar", + "m":"1499035527324", + "i":"jar|1499027689000|8616|2|2|1|jar", + "n":"freestyle", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.12|0.3.1|NA", + "m":"1499035527584", + "i":"jar|1499027830000|50310|1|1|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"ede0867dbaa1d73c64511d20c3f4cca2c1e5a871" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035527611", + "i":"jar|1499027832000|4686|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"fc12dae44e5ecb932203c2ff68a3da0362f92360" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035527634", + "i":"jar|1499027833000|8616|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.11|0.3.1|NA", + "m":"1499035527725", + "i":"jar|1499027669000|56569|1|1|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"e177d79f6d12a27d993bbc974590aa543b790367" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035527750", + "i":"jar|1499027671000|4686|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"942025c455d0600bdd608ef2f24ce938ba865008" + }, + { + "u":"io.frees|freestyle-tagless_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035527780", + "i":"jar|1499027672000|8616|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-tagless_2.12|0.3.1|NA", + "m":"1499035527871", + "i":"jar|1499027782000|28680|1|1|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"b29fd2ba93b12830e3d70793cf5b76c1131436d1" + }, + { + "u":"io.frees|freestyle-tagless_2.12|0.3.1|sources|jar", + "m":"1499035527908", + "i":"jar|1499027784000|4686|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"fc12dae44e5ecb932203c2ff68a3da0362f92360" + }, + { + "u":"io.frees|freestyle-tagless_2.12|0.3.1|javadoc|jar", + "m":"1499035527931", + "i":"jar|1499027785000|8616|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-tagless_2.11|0.3.1|NA", + "m":"1499035528023", + "i":"jar|1499027664000|36192|1|1|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"44a5aa889be9ce938719b0826505f222cf85eefd" + }, + { + "u":"io.frees|freestyle-tagless_2.11|0.3.1|sources|jar", + "m":"1499035528050", + "i":"jar|1499027666000|4686|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"942025c455d0600bdd608ef2f24ce938ba865008" + }, + { + "u":"io.frees|freestyle-tagless_2.11|0.3.1|javadoc|jar", + "m":"1499035528072", + "i":"jar|1499027667000|8616|2|2|1|jar", + "n":"freestyle-tagless", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.12|0.3.1|NA", + "m":"1499035528673", + "i":"jar|1499027814000|72696|1|1|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"eb2a395f9ff7fc7352923b87115c44a4958dc721" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035528701", + "i":"jar|1499027811000|1694|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"a92779a9d7924e5bb62e59e9de0d7d072b4b981e" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035528720", + "i":"jar|1499027811000|8616|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.11|0.3.1|NA", + "m":"1499035528812", + "i":"jar|1499027681000|73915|1|1|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"f5b47173e90c2075f606c3b7ff951ec4bb19ee31" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035528839", + "i":"jar|1499027678000|1694|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"9cf4eb1cebfdbebe24165d5b28fcb8d62ae42562" + }, + { + "u":"io.frees|freestyle-logging_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035528858", + "i":"jar|1499027678000|8616|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-logging_2.12|0.3.1|NA", + "m":"1499035528951", + "i":"jar|1499027803000|38207|1|1|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"1e43999614468b9c30f481adb3a76a94b0ee0c23" + }, + { + "u":"io.frees|freestyle-logging_2.12|0.3.1|sources|jar", + "m":"1499035528977", + "i":"jar|1499027800000|1692|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"5fc399f6395dd053b1e2d04a2ed5109028a2e1b9" + }, + { + "u":"io.frees|freestyle-logging_2.12|0.3.1|javadoc|jar", + "m":"1499035528996", + "i":"jar|1499027799000|8616|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-logging_2.11|0.3.1|NA", + "m":"1499035529086", + "i":"jar|1499027676000|38165|1|1|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"349613a11fff49a4f63e1002e1d547cc0c8bbd28" + }, + { + "u":"io.frees|freestyle-logging_2.11|0.3.1|sources|jar", + "m":"1499035529112", + "i":"jar|1499027673000|1692|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"dfc591256471078fbb8d1d4b239dbc4bed7bd5d0" + }, + { + "u":"io.frees|freestyle-logging_2.11|0.3.1|javadoc|jar", + "m":"1499035529130", + "i":"jar|1499027673000|8616|2|2|1|jar", + "n":"freestyle-logging", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.12|0.3.1|NA", + "m":"1499035530555", + "i":"jar|1499027838000|359962|1|1|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"5be7bec658bd98bd445359326697df46da472a2c" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035530585", + "i":"jar|1499027840000|8188|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d184cde727b259e4ef180c7ed338516322528fbe" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035530608", + "i":"jar|1499027841000|8616|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.11|0.3.1|NA", + "m":"1499035530697", + "i":"jar|1499027723000|384267|1|1|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"bbc16058e8401bfaeb7b621d0704cc7c7f0c4153" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035530729", + "i":"jar|1499027726000|8188|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"2417b728011a3a2a08564ac187d887616f2ac335" + }, + { + "u":"io.frees|freestyle-effects_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035530752", + "i":"jar|1499027727000|8616|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-effects_2.12|0.3.1|NA", + "m":"1499035530843", + "i":"jar|1499027824000|194499|1|1|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"4274ecf66ae641a559aded2d5618e3fe4fe010e5" + }, + { + "u":"io.frees|freestyle-effects_2.12|0.3.1|sources|jar", + "m":"1499035530873", + "i":"jar|1499027827000|8188|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d184cde727b259e4ef180c7ed338516322528fbe" + }, + { + "u":"io.frees|freestyle-effects_2.12|0.3.1|javadoc|jar", + "m":"1499035530895", + "i":"jar|1499027828000|8616|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-effects_2.11|0.3.1|NA", + "m":"1499035530990", + "i":"jar|1499027730000|208893|1|1|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"3eb0d509562dcfa42dd6327f4e5c2e919ff18329" + }, + { + "u":"io.frees|freestyle-effects_2.11|0.3.1|sources|jar", + "m":"1499035531019", + "i":"jar|1499027733000|8188|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"2417b728011a3a2a08564ac187d887616f2ac335" + }, + { + "u":"io.frees|freestyle-effects_2.11|0.3.1|javadoc|jar", + "m":"1499035531041", + "i":"jar|1499027734000|8616|2|2|1|jar", + "n":"freestyle-effects", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-config_2.12|0.3.1|NA", + "m":"1499035531292", + "i":"jar|1499027788000|23209|1|1|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"3dfb81b67806e50eedd35bbbc0cb49c6a9bf32b3" + }, + { + "u":"io.frees|freestyle-config_2.12|0.3.1|sources|jar", + "m":"1499035531319", + "i":"jar|1499027786000|1404|2|2|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"34b71b4d24f0c7764689e94f9485e3cac66b56da" + }, + { + "u":"io.frees|freestyle-config_2.12|0.3.1|javadoc|jar", + "m":"1499035531337", + "i":"jar|1499027785000|8616|2|2|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-config_2.11|0.3.1|NA", + "m":"1499035531428", + "i":"jar|1499027659000|30679|1|1|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"cf1aaa3d59a36613257bbf93ef69d91f0c95aee0" + }, + { + "u":"io.frees|freestyle-config_2.11|0.3.1|sources|jar", + "m":"1499035531453", + "i":"jar|1499027658000|1404|2|2|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"198440eda2c8ed48f127ef7f76bfa450a71c669c" + }, + { + "u":"io.frees|freestyle-config_2.11|0.3.1|javadoc|jar", + "m":"1499035531472", + "i":"jar|1499027657000|8616|2|2|1|jar", + "n":"freestyle-config", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.12|0.3.1|NA", + "m":"1499035531565", + "i":"jar|1499027845000|119281|1|1|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"e690526bb1973f079dabaa06ee6fc1271eabe59a" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035531593", + "i":"jar|1499027843000|4300|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035531615", + "i":"jar|1499027842000|8616|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.11|0.3.1|NA", + "m":"1499035531705", + "i":"jar|1499027706000|132742|1|1|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"f88454581e85b7ed447817febab8124cd9da5c04" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035531735", + "i":"jar|1499027703000|4300|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b" + }, + { + "u":"io.frees|freestyle-cache_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035531757", + "i":"jar|1499027702000|8616|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-cache_2.12|0.3.1|NA", + "m":"1499035531851", + "i":"jar|1499027808000|61928|1|1|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"0babed618b1889e4397acbf6adbc15bc04624bee" + }, + { + "u":"io.frees|freestyle-cache_2.12|0.3.1|sources|jar", + "m":"1499035531879", + "i":"jar|1499027806000|4300|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c" + }, + { + "u":"io.frees|freestyle-cache_2.12|0.3.1|javadoc|jar", + "m":"1499035531901", + "i":"jar|1499027805000|8616|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-cache_2.11|0.3.1|NA", + "m":"1499035531991", + "i":"jar|1499027716000|72492|1|1|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"410dbd67787fc9b70b98a11d284bbad2f6e44eb0" + }, + { + "u":"io.frees|freestyle-cache_2.11|0.3.1|sources|jar", + "m":"1499035532018", + "i":"jar|1499027714000|4300|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b" + }, + { + "u":"io.frees|freestyle-cache_2.11|0.3.1|javadoc|jar", + "m":"1499035532041", + "i":"jar|1499027713000|8616|2|2|1|jar", + "n":"freestyle-cache", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.12|0.3.1|NA", + "m":"1499035532305", + "i":"jar|1499027817000|29445|1|1|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"09fd9075344815fc42d468e7b7ced2d3d7d5457c" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035532330", + "i":"jar|1499027818000|1167|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"fa0e4e4331e1da55b7ad9701dd142639e3420286" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035532349", + "i":"jar|1499027819000|8616|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.11|0.3.1|NA", + "m":"1499035532444", + "i":"jar|1499027709000|34115|1|1|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"dfc9100b029f837d8227ad1cff2a1a027fafc60e" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035532470", + "i":"jar|1499027710000|1167|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"a689774a3020bc612ad48376cf5e6040b17070f3" + }, + { + "u":"io.frees|freestyle-async_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035532489", + "i":"jar|1499027710000|8616|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async_2.12|0.3.1|NA", + "m":"1499035532582", + "i":"jar|1499027768000|17102|1|1|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"92c1069544cfea459c632e1fcaed27a6a06e704e" + }, + { + "u":"io.frees|freestyle-async_2.12|0.3.1|sources|jar", + "m":"1499035532607", + "i":"jar|1499027769000|1167|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"fa0e4e4331e1da55b7ad9701dd142639e3420286" + }, + { + "u":"io.frees|freestyle-async_2.12|0.3.1|javadoc|jar", + "m":"1499035532626", + "i":"jar|1499027770000|8616|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async_2.11|0.3.1|NA", + "m":"1499035532716", + "i":"jar|1499027690000|19901|1|1|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"cae7ddd9a9f35d04643e196eeac61c9b77dfb4f1" + }, + { + "u":"io.frees|freestyle-async_2.11|0.3.1|sources|jar", + "m":"1499035532742", + "i":"jar|1499027691000|1167|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"a689774a3020bc612ad48376cf5e6040b17070f3" + }, + { + "u":"io.frees|freestyle-async_2.11|0.3.1|javadoc|jar", + "m":"1499035532760", + "i":"jar|1499027692000|8616|2|2|1|jar", + "n":"freestyle-async", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.12|0.3.1|NA", + "m":"1499035532854", + "i":"jar|1499027850000|8432|1|1|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"2783456039a2fc47736335e573ea26108e1d3441" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035532880", + "i":"jar|1499027851000|1098|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035532899", + "i":"jar|1499027849000|8616|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.11|0.3.1|NA", + "m":"1499035532990", + "i":"jar|1499027752000|13046|1|1|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"90602fc221ac9e842960b06c0e5ad3d60a2fd135" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035533014", + "i":"jar|1499027753000|1098|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb" + }, + { + "u":"io.frees|freestyle-async-monix_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035533032", + "i":"jar|1499027750000|8616|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-monix_2.12|0.3.1|NA", + "m":"1499035533125", + "i":"jar|1499027860000|4947|1|1|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"bc5d95766456972c0842be89eea7a187262cab23" + }, + { + "u":"io.frees|freestyle-async-monix_2.12|0.3.1|sources|jar", + "m":"1499035533148", + "i":"jar|1499027861000|1098|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0" + }, + { + "u":"io.frees|freestyle-async-monix_2.12|0.3.1|javadoc|jar", + "m":"1499035533167", + "i":"jar|1499027859000|8616|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-monix_2.11|0.3.1|NA", + "m":"1499035533257", + "i":"jar|1499027742000|8003|1|1|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"02f4a2d94ec061bad021925b796b024b25bf1396" + }, + { + "u":"io.frees|freestyle-async-monix_2.11|0.3.1|sources|jar", + "m":"1499035533282", + "i":"jar|1499027744000|1098|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb" + }, + { + "u":"io.frees|freestyle-async-monix_2.11|0.3.1|javadoc|jar", + "m":"1499035533300", + "i":"jar|1499027741000|8616|2|2|1|jar", + "n":"freestyle-async-monix", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.12|0.3.1|NA", + "m":"1499035533391", + "i":"jar|1499027867000|4542|1|1|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"dfa0b55bee93f34798884ff1fba585e2e8fae419" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.12|0.3.1|sources|jar", + "m":"1499035533413", + "i":"jar|1499027869000|1007|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"e64008d2637249c52253a37cc0ff72b734eb8026" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.12|0.3.1|javadoc|jar", + "m":"1499035533432", + "i":"jar|1499027865000|8616|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.11|0.3.1|NA", + "m":"1499035533522", + "i":"jar|1499027737000|4467|1|1|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"df4d8332a6f644252a4d4a29f4dab43af582a63c" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.11|0.3.1|sources|jar", + "m":"1499035533545", + "i":"jar|1499027739000|1007|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b" + }, + { + "u":"io.frees|freestyle-async-fs2_sjs0.6_2.11|0.3.1|javadoc|jar", + "m":"1499035533564", + "i":"jar|1499027736000|8616|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-fs2_2.12|0.3.1|NA", + "m":"1499035533663", + "i":"jar|1499027855000|2892|1|1|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"6a82dab9239a6ed3b8c88c83ef711143800e2338" + }, + { + "u":"io.frees|freestyle-async-fs2_2.12|0.3.1|sources|jar", + "m":"1499035533683", + "i":"jar|1499027856000|1007|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"e64008d2637249c52253a37cc0ff72b734eb8026" + }, + { + "u":"io.frees|freestyle-async-fs2_2.12|0.3.1|javadoc|jar", + "m":"1499035533701", + "i":"jar|1499027854000|8616|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"io.frees|freestyle-async-fs2_2.11|0.3.1|NA", + "m":"1499035533790", + "i":"jar|1499027747000|2827|1|1|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"5e8011aae41b5838c0196c22420ae28d1e511889" + }, + { + "u":"io.frees|freestyle-async-fs2_2.11|0.3.1|sources|jar", + "m":"1499035533811", + "i":"jar|1499027748000|1007|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b" + }, + { + "u":"io.frees|freestyle-async-fs2_2.11|0.3.1|javadoc|jar", + "m":"1499035533830", + "i":"jar|1499027746000|8616|2|2|1|jar", + "n":"freestyle-async-fs2", + "d":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "1":"d0ce4a77869cf9d2f2fd3d0eb8f1876b1de254c3" + }, + { + "u":"info.hupel|pide-package_2.12|0.8.2|NA", + "m":"1499037519473", + "i":"jar|1498989599000|2541963|1|1|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"58568d4024ff1a04eb49d1af299317afb70e92cd" + }, + { + "u":"info.hupel|pide-package_2.12|0.8.2|sources|jar", + "m":"1499037519508", + "i":"jar|1498989602000|250|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"6697b7545efe634845f217daa4f423a3c6d56b0e" + }, + { + "u":"info.hupel|pide-package_2.12|0.8.2|javadoc|jar", + "m":"1499037519529", + "i":"jar|1498989600000|189|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"5a22a11b200662daff254e1663aedda21594bbfb" + }, + { + "u":"info.hupel|pide-package_2.11|0.8.2|NA", + "m":"1499037519789", + "i":"jar|1498989506000|4121739|1|1|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"21b51abc04e51026679908afef5309fe1d09ae7f" + }, + { + "u":"info.hupel|pide-package_2.11|0.8.2|sources|jar", + "m":"1499037519819", + "i":"jar|1498989509000|250|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"7826e25f8097f3aa1b10ca48b15396391dea2702" + }, + { + "u":"info.hupel|pide-package_2.11|0.8.2|javadoc|jar", + "m":"1499037519840", + "i":"jar|1498989507000|189|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"52946ec8c26f84112ff885c70b38d776093cee3e" + }, + { + "u":"info.hupel|pide-package_2.10|0.8.2|NA", + "m":"1499037520201", + "i":"jar|1498989408000|3779808|1|1|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"20cd76900635eaeb3baef7d7d246dd97b6f99d01" + }, + { + "u":"info.hupel|pide-package_2.10|0.8.2|sources|jar", + "m":"1499037520231", + "i":"jar|1498989410000|250|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"622dcf73010084128f19f2beba9bbc292cbe098e" + }, + { + "u":"info.hupel|pide-package_2.10|0.8.2|javadoc|jar", + "m":"1499037520252", + "i":"jar|1498989409000|189|2|2|1|jar", + "n":"pidePackage", + "d":"pidePackage", + "1":"d5c689ca38cd58bc1bc582ebb0c6769298106d56" + }, + { + "u":"info.hupel|pide-interface_2.12|0.8.2|NA", + "m":"1499037520745", + "i":"jar|1498989549000|53920|1|1|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"2c6d7b4531e6835289952ddbedaff7bbaff85a13" + }, + { + "u":"info.hupel|pide-interface_2.12|0.8.2|sources|jar", + "m":"1499037520775", + "i":"jar|1498989546000|7218|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"847d4c63868bc63f351a7224851fcf2834b0a8ca" + }, + { + "u":"info.hupel|pide-interface_2.12|0.8.2|javadoc|jar", + "m":"1499037520799", + "i":"jar|1498989549000|720547|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"b742de75d0077672741611737f68660bf6f270f7" + }, + { + "u":"info.hupel|pide-interface_2.11|0.8.2|NA", + "m":"1499037521102", + "i":"jar|1498989457000|65878|1|1|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"9a98d55f3abc0953a43071172fe9dec994f45fb4" + }, + { + "u":"info.hupel|pide-interface_2.11|0.8.2|sources|jar", + "m":"1499037521133", + "i":"jar|1498989455000|7218|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"4a4681657d8eace5f8f157cee24f4f3da421d614" + }, + { + "u":"info.hupel|pide-interface_2.11|0.8.2|javadoc|jar", + "m":"1499037521156", + "i":"jar|1498989457000|421335|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"36bb3cad4925b127b620505cb1fb3ad641279157" + }, + { + "u":"info.hupel|pide-interface_2.10|0.8.2|NA", + "m":"1499037521822", + "i":"jar|1498989364000|65189|1|1|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"4217cc50b55910915b32796c4934819248703aac" + }, + { + "u":"info.hupel|pide-interface_2.10|0.8.2|sources|jar", + "m":"1499037521851", + "i":"jar|1498989356000|7218|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"9094eac7a6d263607461c501177a1512d0b363ef" + }, + { + "u":"info.hupel|pide-interface_2.10|0.8.2|javadoc|jar", + "m":"1499037521876", + "i":"jar|1498989362000|419414|2|2|1|jar", + "n":"pideInterface", + "d":"pideInterface", + "1":"41c90091e03cfb3edfc39daef6f290616c74105e" + }, + { + "u":"info.hupel|pide-2016_2.12|0.8.2|NA", + "m":"1499037522630", + "i":"jar|1498989586000|1712949|1|1|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"489477a72ecc73557d4f03b40f92fd1eb8b2cf61" + }, + { + "u":"info.hupel|pide-2016_2.12|0.8.2|sources|jar", + "m":"1499037522689", + "i":"jar|1498989593000|157726|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"d91a2bab0aadc938cf5d82474ece95eb02e6bce6" + }, + { + "u":"info.hupel|pide-2016_2.12|0.8.2|javadoc|jar", + "m":"1499037522721", + "i":"jar|1498989592000|2750262|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"e9980a746a23bd5c0d3299211c3f76adefc1f3c6" + }, + { + "u":"info.hupel|pide-2016_2.11|0.8.2|NA", + "m":"1499037523031", + "i":"jar|1498989492000|3027372|1|1|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"6e53ccb8533d6aa94da56bb0c4ccd02817cd0e5d" + }, + { + "u":"info.hupel|pide-2016_2.11|0.8.2|sources|jar", + "m":"1499037523124", + "i":"jar|1498989499000|157726|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"cfc88628adae49b1060afc384b34877c2206d35b" + }, + { + "u":"info.hupel|pide-2016_2.11|0.8.2|javadoc|jar", + "m":"1499037523155", + "i":"jar|1498989497000|1918333|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"1b1fd28d82f1388aa4abd9247c3879cc3e5c7aae" + }, + { + "u":"info.hupel|pide-2016_2.10|0.8.2|NA", + "m":"1499037523705", + "i":"jar|1498989432000|3012131|1|1|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"9bcda396173b20983884c22d718951aef66d2f36" + }, + { + "u":"info.hupel|pide-2016_2.10|0.8.2|sources|jar", + "m":"1499037523773", + "i":"jar|1498989439000|157726|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"4d2d11a77bff38bcbd554a384f9d2b8d481e2faa" + }, + { + "u":"info.hupel|pide-2016_2.10|0.8.2|javadoc|jar", + "m":"1499037523802", + "i":"jar|1498989437000|1894669|2|2|1|jar", + "n":"pide2016", + "d":"pide2016", + "1":"2962ae430ab0488b395691409fe6c65901b090ca" + }, + { + "u":"info.hupel|pide-2016-1_2.12|0.8.2|NA", + "m":"1499037524445", + "i":"jar|1498989612000|2117178|1|1|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"8f91a3461df01bf192c3f63c9715444ed68b0e36" + }, + { + "u":"info.hupel|pide-2016-1_2.12|0.8.2|sources|jar", + "m":"1499037524507", + "i":"jar|1498989619000|213195|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"4e09d6853e578b5251b0b27dbc67eb034104d666" + }, + { + "u":"info.hupel|pide-2016-1_2.12|0.8.2|javadoc|jar", + "m":"1499037524536", + "i":"jar|1498989618000|3208073|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"72896c471c74ec484ade59c974d0f84db72f2530" + }, + { + "u":"info.hupel|pide-2016-1_2.11|0.8.2|NA", + "m":"1499037524791", + "i":"jar|1498989520000|3775477|1|1|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"59231e2e098c1e974b32f9eeccd294f97b4f2535" + }, + { + "u":"info.hupel|pide-2016-1_2.11|0.8.2|sources|jar", + "m":"1499037524844", + "i":"jar|1498989525000|213195|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"f82e3192fe72fff366f905e2a42b7dff175ace50" + }, + { + "u":"info.hupel|pide-2016-1_2.11|0.8.2|javadoc|jar", + "m":"1499037524886", + "i":"jar|1498989524000|2186387|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"b405482cc2207176b08b5cbc5a4dab8cdfe54447" + }, + { + "u":"info.hupel|pide-2016-1_2.10|0.8.2|NA", + "m":"1499037525132", + "i":"jar|1498989421000|3757713|1|1|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"cec02dd7258859ad9f573bfdf1fe375ad46efd23" + }, + { + "u":"info.hupel|pide-2016-1_2.10|0.8.2|sources|jar", + "m":"1499037525191", + "i":"jar|1498989426000|213195|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"a250906a0303c36c7851de7536f942c73500d2f4" + }, + { + "u":"info.hupel|pide-2016-1_2.10|0.8.2|javadoc|jar", + "m":"1499037525233", + "i":"jar|1498989425000|2157869|2|2|1|jar", + "n":"pide2016-1", + "d":"pide2016-1", + "1":"2b4306d8314fcb4406622c25fa87baeda1c47e6f" + }, + { + "u":"info.hupel|libisabelle_2.12|0.8.2|NA", + "m":"1499037527640", + "i":"jar|1498989567000|379125|1|1|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"62b93fe38b65437c3f9aec9d59847c36df904c2d" + }, + { + "u":"info.hupel|libisabelle_2.12|0.8.2|sources|jar", + "m":"1499037527680", + "i":"jar|1498989571000|29491|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"7427a35e75ccc4acc5ea58553d0f3b2f1ba68d21" + }, + { + "u":"info.hupel|libisabelle_2.12|0.8.2|javadoc|jar", + "m":"1499037527706", + "i":"jar|1498989568000|1091744|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"ac3e5c13dd84c771465a1840102af2de6f20ab33" + }, + { + "u":"info.hupel|libisabelle_2.11|0.8.2|NA", + "m":"1499037527999", + "i":"jar|1498989473000|483973|1|1|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"7c8d20a6102a82031660a6201674c319180b439c" + }, + { + "u":"info.hupel|libisabelle_2.11|0.8.2|sources|jar", + "m":"1499037528041", + "i":"jar|1498989477000|29491|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"6bf6f71c8066b56a45e2814d8c3bae5bfcd2d391" + }, + { + "u":"info.hupel|libisabelle_2.11|0.8.2|javadoc|jar", + "m":"1499037528067", + "i":"jar|1498989474000|698525|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"88485d964c61dece919e81973904dc79793f1c76" + }, + { + "u":"info.hupel|libisabelle_2.10|0.8.2|NA", + "m":"1499037528757", + "i":"jar|1498989374000|481943|1|1|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"c5d7663339ddd6d15ea51d4e4eb5f7407b3f9ea0" + }, + { + "u":"info.hupel|libisabelle_2.10|0.8.2|sources|jar", + "m":"1499037528797", + "i":"jar|1498989391000|29491|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"c4c5bf0480426fe8d61651f870e7e1ee909fec91" + }, + { + "u":"info.hupel|libisabelle_2.10|0.8.2|javadoc|jar", + "m":"1499037528824", + "i":"jar|1498989379000|692285|2|2|1|jar", + "n":"libisabelle", + "d":"libisabelle", + "1":"f7db84b9fb6b6f75f70823551edbf26c7d2b9aed" + }, + { + "u":"info.hupel|libisabelle-setup_2.12|0.8.2|NA", + "m":"1499037529648", + "i":"jar|1498989576000|71692|1|1|1|jar", + "n":"setup", + "d":"setup", + "1":"3793a558598e780232a7fcf052c85befab67d0a2" + }, + { + "u":"info.hupel|libisabelle-setup_2.12|0.8.2|sources|jar", + "m":"1499037529678", + "i":"jar|1498989574000|10700|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"8fa3e86b991ed9ace2a01095261f39585075be06" + }, + { + "u":"info.hupel|libisabelle-setup_2.12|0.8.2|javadoc|jar", + "m":"1499037529704", + "i":"jar|1498989574000|752209|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"7471bb24431e6d2f8823f4e6a6b48930260a5378" + }, + { + "u":"info.hupel|libisabelle-setup_2.11|0.8.2|NA", + "m":"1499037529984", + "i":"jar|1498989482000|99758|1|1|1|jar", + "n":"setup", + "d":"setup", + "1":"6b5a6bb893b01b093daaaa0513540b34754b4d39" + }, + { + "u":"info.hupel|libisabelle-setup_2.11|0.8.2|sources|jar", + "m":"1499037530019", + "i":"jar|1498989480000|10700|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"6fb332740360fa6178ab43facf0e740fa20b8564" + }, + { + "u":"info.hupel|libisabelle-setup_2.11|0.8.2|javadoc|jar", + "m":"1499037530044", + "i":"jar|1498989479000|444243|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"8169af338f8178e95bff8628713409b331deb6ad" + }, + { + "u":"info.hupel|libisabelle-setup_2.10|0.8.2|NA", + "m":"1499037530728", + "i":"jar|1498989443000|98895|1|1|1|jar", + "n":"setup", + "d":"setup", + "1":"aef453a60f5f4e5a0d7cc9deb2a44840921a0cff" + }, + { + "u":"info.hupel|libisabelle-setup_2.10|0.8.2|sources|jar", + "m":"1499037530763", + "i":"jar|1498989441000|10700|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"d097c2b751e01bc1d997088e77214e6de27cb929" + }, + { + "u":"info.hupel|libisabelle-setup_2.10|0.8.2|javadoc|jar", + "m":"1499037530794", + "i":"jar|1498989441000|443259|2|2|1|jar", + "n":"setup", + "d":"setup", + "1":"4ec941b208035a298095c9d940506b41688d0867" + }, + { + "u":"info.hupel|libisabelle-docs_2.12|0.8.2|NA", + "m":"1499037531598", + "i":"jar|1498989608000|300|1|1|1|jar", + "n":"docs", + "d":"docs", + "1":"80dc446a34abc6142433120e870eb317e8c85f66" + }, + { + "u":"info.hupel|libisabelle-docs_2.12|0.8.2|sources|jar", + "m":"1499037531624", + "i":"jar|1498989602000|243|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"6a23a8d74684c4b83f96f7f3175d95d145e0ba79" + }, + { + "u":"info.hupel|libisabelle-docs_2.12|0.8.2|javadoc|jar", + "m":"1499037531646", + "i":"jar|1498989605000|1310741|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"3deac870084434893a72f7da1f6561fa78aca080" + }, + { + "u":"info.hupel|libisabelle-docs_2.11|0.8.2|NA", + "m":"1499037531952", + "i":"jar|1498989514000|300|1|1|1|jar", + "n":"docs", + "d":"docs", + "1":"018499fe3acd0846f27488a3cf5027199f87bd4c" + }, + { + "u":"info.hupel|libisabelle-docs_2.11|0.8.2|sources|jar", + "m":"1499037531978", + "i":"jar|1498989509000|243|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"da22c42861fb4ec49c2cc677dd894a4a11f5d9ae" + }, + { + "u":"info.hupel|libisabelle-docs_2.11|0.8.2|javadoc|jar", + "m":"1499037532001", + "i":"jar|1498989511000|852896|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"9118c665e1d2581d7d8374a3780badbff94d8906" + }, + { + "u":"info.hupel|libisabelle-docs_2.10|0.8.2|NA", + "m":"1499037532694", + "i":"jar|1498989415000|300|1|1|1|jar", + "n":"docs", + "d":"docs", + "1":"02e784a8141a71628a9a7692136f56e3124a767c" + }, + { + "u":"info.hupel|libisabelle-docs_2.10|0.8.2|sources|jar", + "m":"1499037532723", + "i":"jar|1498989411000|243|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"7acd693e69a91d4a8352f9be82c61d13968e8115" + }, + { + "u":"info.hupel|libisabelle-docs_2.10|0.8.2|javadoc|jar", + "m":"1499037532744", + "i":"jar|1498989412000|843773|2|2|1|jar", + "n":"docs", + "d":"docs", + "1":"d226b9458018d01b98d986afcfd107aa1ee03c7f" + }, + { + "u":"info.hupel|isabellectl_2.12|0.8.2|NA", + "m":"1499037533886", + "i":"jar|1498989625000|148120|1|1|1|jar", + "n":"cli", + "d":"cli", + "1":"8ecb81b95d5ee47413ff2a610f41676e0a299aaa" + }, + { + "u":"info.hupel|isabellectl_2.12|0.8.2|sources|jar", + "m":"1499037533926", + "i":"jar|1498989622000|6412|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"d9deb24dd3b1b95f1c7cb904c31c145fba16c866" + }, + { + "u":"info.hupel|isabellectl_2.12|0.8.2|javadoc|jar", + "m":"1499037533952", + "i":"jar|1498989624000|697057|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"a2de356ba14ee765c007ffb4c5153e18f1219cfa" + }, + { + "u":"info.hupel|isabellectl_2.11|0.8.2|NA", + "m":"1499037534229", + "i":"jar|1498989531000|181850|1|1|1|jar", + "n":"cli", + "d":"cli", + "1":"aa237ec4f715d8c03f7513cc44b4599d7381f677" + }, + { + "u":"info.hupel|isabellectl_2.11|0.8.2|sources|jar", + "m":"1499037534264", + "i":"jar|1498989529000|6412|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"d05fb9d7ec63423dbf37fb302fbd6ecdcdb3f823" + }, + { + "u":"info.hupel|isabellectl_2.11|0.8.2|javadoc|jar", + "m":"1499037534288", + "i":"jar|1498989530000|404339|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"66abe19fcc6bb1f9f3774010c6b6b0de2162790c" + }, + { + "u":"info.hupel|isabellectl_2.10|0.8.2|NA", + "m":"1499037534614", + "i":"jar|1498989401000|176486|1|1|1|jar", + "n":"cli", + "d":"cli", + "1":"60d0fb433f962ab08ae84fac897e65fb4b3e9a84" + }, + { + "u":"info.hupel|isabellectl_2.10|0.8.2|sources|jar", + "m":"1499037534647", + "i":"jar|1498989399000|6412|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"27f91d2bef2dab080704db7e3739927e7f0c859a" + }, + { + "u":"info.hupel|isabellectl_2.10|0.8.2|javadoc|jar", + "m":"1499037534673", + "i":"jar|1498989400000|404099|2|2|1|jar", + "n":"cli", + "d":"cli", + "1":"a293eab1e3c4cbfd4399f131b933873acb86fa62" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.12|1.7.0-M1|NA", + "m":"1499038110115", + "i":"jar|1499017916000|951074|1|1|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"0feb610600ffea4384d4a656b3f7c1b7a93000ce" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.12|1.7.0-M1|sources|jar", + "m":"1499038110172", + "i":"jar|1499017917000|269535|2|2|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"96993a71e8f95ee4888f24d71d88c33dc92c1267" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.12|1.7.0-M1|javadoc|jar", + "m":"1499038110203", + "i":"jar|1499017915000|5614773|2|2|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"94817df713f7fdf6ce63348182b165a7458ee742" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.11|1.7.0-M1|NA", + "m":"1499038110405", + "i":"jar|1499017842000|1613049|1|1|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"48c82ca8f362ae8c8c7507eeac967a6d737f0b35" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.11|1.7.0-M1|sources|jar", + "m":"1499038110463", + "i":"jar|1499017853000|269535|2|2|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"02ab9d81d2ee87ec54e846ccb8c7fd6e7564a9de" + }, + { + "u":"eu.cdevreeze.yaidom|yaidom_2.11|1.7.0-M1|javadoc|jar", + "m":"1499038110492", + "i":"jar|1499017838000|1748493|2|2|1|jar", + "n":"yaidom", + "d":"yaidom", + "1":"1ec0b714966f1c3d4b984e5e5ea38f926e0aa78c" + }, + { + "u":"de.philippkatz.maven.plugins|test-parser-plugin|2.0|NA", + "m":"1499038607524", + "i":"maven-plugin|1499015786000|7558|1|1|1|jar", + "n":"Test Parser Plugin for Maven", + "d":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "1":"d5707e807f09cf4c12a31382e6d5bdc45fa7095f" + }, + { + "u":"de.philippkatz.maven.plugins|test-parser-plugin|2.0|sources|jar", + "m":"1499038607554", + "i":"jar|1499015786000|1993|2|2|1|jar", + "n":"Test Parser Plugin for Maven", + "d":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "1":"e49b0ac86ec75671876cbd6aefd947bc1149681f" + }, + { + "u":"de.philippkatz.maven.plugins|test-parser-plugin|2.0|javadoc|jar", + "m":"1499038607577", + "i":"jar|1499015786000|36834|2|2|1|jar", + "n":"Test Parser Plugin for Maven", + "d":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "1":"85839e4e6c789773eeb6ed7555692b4ade3b3eaa" + }, + { + "u":"de.alpharogroup|user-rest-web|3.12.0|NA", + "m":"1499038977001", + "i":"war|1499012939000|50831771|1|0|1|war", + "1":"aebcba1c2103acb23baf5bb6049c029fabeb1389" + }, + { + "u":"de.alpharogroup|user-rest-web|3.12.0|sources|jar", + "m":"1499038977021", + "i":"jar|1499012947000|14113|2|2|1|jar", + "1":"5641aafc9b5e5da713227a0dfda8bdfc55b526fb" + }, + { + "u":"de.alpharogroup|user-rest-client|3.12.0|NA", + "m":"1499038977120", + "i":"jar|1499012873000|3247|1|1|1|jar", + "1":"69b374a8278b0ef6cb87d45822b096120916162e" + }, + { + "u":"de.alpharogroup|user-rest-client|3.12.0|sources|jar", + "m":"1499038977146", + "i":"jar|1499012889000|3576|2|2|1|jar", + "1":"cd89bd42f00581a65ca96ccda98916db9c10c5ca" + }, + { + "u":"de.alpharogroup|user-rest-client|3.12.0|javadoc|jar", + "m":"1499038977168", + "i":"jar|1499012880000|24351|2|2|1|jar", + "1":"7f7a851482915bafb165eb668804c7bf95600162" + }, + { + "u":"de.alpharogroup|user-rest-api|3.12.0|NA", + "m":"1499038977273", + "i":"jar|1499012880000|15856|1|1|1|jar", + "1":"f6c6ae48190c6e44b34c2250f0f5195a5a46b481" + }, + { + "u":"de.alpharogroup|user-rest-api|3.12.0|sources|jar", + "m":"1499038977302", + "i":"jar|1499012884000|22621|2|2|1|jar", + "1":"57e7f828881904e52b08437f9cbf7d191ba07cf3" + }, + { + "u":"de.alpharogroup|user-rest-api|3.12.0|javadoc|jar", + "m":"1499038977329", + "i":"jar|1499012871000|109998|2|2|1|jar", + "1":"cf9543edeb44c09642827157fa9a40705a014a6d" + }, + { + "u":"de.alpharogroup|user-management-rest-web|3.12.0|NA", + "m":"1499038977452", + "i":"war|1499017154000|53545137|1|0|1|war", + "1":"5b31ef1422b39b28468378eaf45b991ba2ba84da" + }, + { + "u":"de.alpharogroup|user-management-rest-web|3.12.0|sources|jar", + "m":"1499038977474", + "i":"jar|1499017159000|1380053|2|2|1|jar", + "1":"ea709c50832877e8b12178a21d29fcef056e2970" + }, + { + "u":"de.alpharogroup|user-management-rest-client|3.12.0|NA", + "m":"1499038977572", + "i":"jar|1499017171000|4370|1|1|1|jar", + "1":"3b537a196a2f1d3d4d48d51b18c735cc4c100610" + }, + { + "u":"de.alpharogroup|user-management-rest-client|3.12.0|sources|jar", + "m":"1499038977610", + "i":"jar|1499017084000|4277|2|2|1|jar", + "1":"66b297d2da72813b58609517331ab9e496fb7cd5" + }, + { + "u":"de.alpharogroup|user-management-rest-client|3.12.0|javadoc|jar", + "m":"1499038977635", + "i":"jar|1499017075000|24861|2|2|1|jar", + "1":"c041f8ce55d060e0333e10260552531d2c2211b0" + }, + { + "u":"de.alpharogroup|user-management-rest-api|3.12.0|NA", + "m":"1499038977737", + "i":"jar|1499017160000|22602|1|1|1|jar", + "1":"e7383c1510f3c41a09f917880871e1251f53b4b3" + }, + { + "u":"de.alpharogroup|user-management-rest-api|3.12.0|sources|jar", + "m":"1499038977766", + "i":"jar|1499017172000|30637|2|2|1|jar", + "1":"af7c508d709b70edadf978ea5a9cebb20b4451e9" + }, + { + "u":"de.alpharogroup|user-management-rest-api|3.12.0|javadoc|jar", + "m":"1499038977792", + "i":"jar|1499017167000|138333|2|2|1|jar", + "1":"440c00fe5c5c7fc53820a83c6940240ec691e67f" + }, + { + "u":"de.alpharogroup|user-management-init|3.12.0|NA", + "m":"1499038977897", + "i":"jar|1499017088000|1421680|1|1|1|jar", + "1":"f73dde94287df25f8261029d6abcbf87b7069ad3" + }, + { + "u":"de.alpharogroup|user-management-init|3.12.0|sources|jar", + "m":"1499038977948", + "i":"jar|1499017082000|1422559|2|2|1|jar", + "1":"1385c0791ca108035df1213284f9fa59ce28fe62" + }, + { + "u":"de.alpharogroup|user-management-init|3.12.0|javadoc|jar", + "m":"1499038977994", + "i":"jar|1499017173000|37200|2|2|1|jar", + "1":"905c59bddf02f5c2824e602d759b0919f6da6022" + }, + { + "u":"de.alpharogroup|user-management-entities|3.12.0|NA", + "m":"1499038978099", + "i":"jar|1499017173000|21275|1|1|1|jar", + "1":"b4e7c2212651b8cf2a7c75ec02993948fa25f6dd" + }, + { + "u":"de.alpharogroup|user-management-entities|3.12.0|sources|jar", + "m":"1499038978128", + "i":"jar|1499017169000|25319|2|2|1|jar", + "1":"0e8ac2cd41040f57c56e4716c1dab4a35a7ada07" + }, + { + "u":"de.alpharogroup|user-management-entities|3.12.0|javadoc|jar", + "m":"1499038978163", + "i":"jar|1499017163000|125410|2|2|1|jar", + "1":"7717096a7b9756b9e474f3de03ef42e822b9f6aa" + }, + { + "u":"de.alpharogroup|user-management-domain|3.12.0|NA", + "m":"1499038978271", + "i":"jar|1499017091000|51736|1|1|1|jar", + "1":"e8698f4aa7a3e6f2ec837d62986bd9125360018c" + }, + { + "u":"de.alpharogroup|user-management-domain|3.12.0|sources|jar", + "m":"1499038978301", + "i":"jar|1499017089000|47225|2|2|1|jar", + "1":"772006fe18cb8f073a34b287e9d1f93f99f380ac" + }, + { + "u":"de.alpharogroup|user-management-domain|3.12.0|javadoc|jar", + "m":"1499038978330", + "i":"jar|1499017078000|216979|2|2|1|jar", + "1":"f779dc2398d206e8ca3a401db1247ef4d87e8132" + }, + { + "u":"de.alpharogroup|user-management-data|3.12.0|NA", + "m":"1499038978444", + "i":"pom|1499017164000|7538|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project that holds module projects for the persistence of user data and for management for it.", + "1":"4decdbac2ed75e8583d59e96bcf1a176b13fc5ac" + }, + { + "u":"de.alpharogroup|user-management-business|3.12.0|NA", + "m":"1499038978534", + "i":"jar|1499017168000|50743|1|1|1|jar", + "1":"bd97402494a00291bcd4f11aa18863147ecae28c" + }, + { + "u":"de.alpharogroup|user-management-business|3.12.0|sources|jar", + "m":"1499038978564", + "i":"jar|1499017160000|48581|2|2|1|jar", + "1":"7d29207dc35dda90730b5582d988dc7cc94bdd05" + }, + { + "u":"de.alpharogroup|user-management-business|3.12.0|javadoc|jar", + "m":"1499038978592", + "i":"jar|1499017090000|221908|2|2|1|jar", + "1":"d4e68e460f619e068b52db2d32d4cd02a808fc12" + }, + { + "u":"de.alpharogroup|user-init|3.12.0|NA", + "m":"1499038978677", + "i":"jar|1499012950000|47078|1|1|1|jar", + "1":"1c9e5f0ef290ede2cd950f5d347fc28777edc34a" + }, + { + "u":"de.alpharogroup|user-init|3.12.0|sources|jar", + "m":"1499038978706", + "i":"jar|1499012882000|48015|2|2|1|jar", + "1":"2ad78b943c4a002f142aa8840a0fb400b952c9b9" + }, + { + "u":"de.alpharogroup|user-init|3.12.0|javadoc|jar", + "m":"1499038978734", + "i":"jar|1499012875000|36605|2|2|1|jar", + "1":"b257b1514965a7f108240de8f3101fa551b76023" + }, + { + "u":"de.alpharogroup|user-entities|3.12.0|NA", + "m":"1499038978842", + "i":"jar|1499012954000|17196|1|1|1|jar", + "1":"8d6bac9dc20cb5cfbff9dd529e7327f73fd0b7ff" + }, + { + "u":"de.alpharogroup|user-entities|3.12.0|sources|jar", + "m":"1499038978871", + "i":"jar|1499012948000|20921|2|2|1|jar", + "1":"bfb7380b1f9f76c98448b12b19f7257c6c4b01e7" + }, + { + "u":"de.alpharogroup|user-entities|3.12.0|javadoc|jar", + "m":"1499038978901", + "i":"jar|1499012942000|109417|2|2|1|jar", + "1":"2e9b19ecdc4de6c2431ecef4e8765a375747a065" + }, + { + "u":"de.alpharogroup|user-domain|3.12.0|NA", + "m":"1499038979011", + "i":"jar|1499012943000|36237|1|1|1|jar", + "1":"671a8b7959fe5da49c3a1a723f728a53b397443d" + }, + { + "u":"de.alpharogroup|user-domain|3.12.0|sources|jar", + "m":"1499038979040", + "i":"jar|1499012944000|35232|2|2|1|jar", + "1":"84d9a5ca878b941a386d9cde15407b1ab8b59903" + }, + { + "u":"de.alpharogroup|user-domain|3.12.0|javadoc|jar", + "m":"1499038979066", + "i":"jar|1499012887000|170954|2|2|1|jar", + "1":"96a2889cd6146a0f88d13977a843f72ae36736be" + }, + { + "u":"de.alpharogroup|user-data|3.12.0|NA", + "m":"1499038979188", + "i":"pom|1499012882000|3753|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project that holds module projects for the persistence of user data.", + "1":"9fcebdaaae7da76c4367f4dedbcf174e72f53c1b" + }, + { + "u":"de.alpharogroup|user-business|3.12.0|NA", + "m":"1499038979270", + "i":"jar|1499012955000|24039|1|1|1|jar", + "1":"0c41db9bf0ece6d7ac46cc6de47cd7b30a56267e" + }, + { + "u":"de.alpharogroup|user-business|3.12.0|sources|jar", + "m":"1499038979299", + "i":"jar|1499012952000|27856|2|2|1|jar", + "1":"ce35fa79bd7b9c092d53e9f3568eab5c34b974b2" + }, + { + "u":"de.alpharogroup|user-business|3.12.0|javadoc|jar", + "m":"1499038979327", + "i":"jar|1499012947000|133424|2|2|1|jar", + "1":"62149ced18232a3e1ff0ba9bb0d2970165818cc9" + }, + { + "u":"de.alpharogroup|rest-client|3.29.0|NA", + "m":"1499038981822", + "i":"jar|1499007020000|9457|1|1|1|jar", + "1":"ddf847f74738c88515592147769cd0a3eb55f651" + }, + { + "u":"de.alpharogroup|rest-client|3.29.0|sources|jar", + "m":"1499038981855", + "i":"jar|1499007004000|7908|2|2|1|jar", + "1":"25cebd3c9bec23b20f2c5477cf3b0997a27e5fcc" + }, + { + "u":"de.alpharogroup|rest-client|3.29.0|javadoc|jar", + "m":"1499038981885", + "i":"jar|1499006998000|39994|2|2|1|jar", + "1":"c3cf40acb886360a99352e18e9ec4f970aa3b67b" + }, + { + "u":"de.alpharogroup|rest-api|3.29.0|NA", + "m":"1499038982435", + "i":"jar|1499007003000|10341|1|1|1|jar", + "1":"eb1b25bbeea8f43a8c10d02108b21a6192c731e2" + }, + { + "u":"de.alpharogroup|rest-api|3.29.0|sources|jar", + "m":"1499038982464", + "i":"jar|1499007011000|10547|2|2|1|jar", + "1":"09dffef8467b17f5298cf291a9786acb2b07d117" + }, + { + "u":"de.alpharogroup|rest-api|3.29.0|javadoc|jar", + "m":"1499038982489", + "i":"jar|1499007005000|69961|2|2|1|jar", + "1":"c537ad89b2745aa21acbe347c80f51af3e5a5ba0" + }, + { + "u":"de.alpharogroup|resource-system-rest-web|3.12.0|NA", + "m":"1499038983697", + "i":"war|1499016681000|42834946|1|0|1|war", + "1":"64712c35917e84d5e89230e02121e80a9b6981f6" + }, + { + "u":"de.alpharogroup|resource-system-rest-web|3.12.0|sources|jar", + "m":"1499038983717", + "i":"jar|1499016702000|192703|2|2|1|jar", + "1":"208b2408da37629d602dc3c047b70ad772203a94" + }, + { + "u":"de.alpharogroup|resource-system-rest-client|3.12.0|NA", + "m":"1499038983821", + "i":"jar|1499016692000|3215|1|1|1|jar", + "1":"c5589b99dafcfbea875e03f88869ffb887903902" + }, + { + "u":"de.alpharogroup|resource-system-rest-client|3.12.0|sources|jar", + "m":"1499038983848", + "i":"jar|1499016697000|3705|2|2|1|jar", + "1":"843fa7d2555d1de93872a7416498c2bbd9e6e08d" + }, + { + "u":"de.alpharogroup|resource-system-rest-client|3.12.0|javadoc|jar", + "m":"1499038983869", + "i":"jar|1499016693000|24651|2|2|1|jar", + "1":"dbf76826cddc81421d0e63880ea5a1887f675a44" + }, + { + "u":"de.alpharogroup|resource-system-rest-api|3.12.0|NA", + "m":"1499038983978", + "i":"jar|1499016690000|8203|1|1|1|jar", + "1":"fffbb11611bf1c06ddda89235c2ae5f9028a4ef3" + }, + { + "u":"de.alpharogroup|resource-system-rest-api|3.12.0|sources|jar", + "m":"1499038984008", + "i":"jar|1499016714000|8905|2|2|1|jar", + "1":"f14eb06e8bc75b1cbcdb29fe59ec931994a5b0ea" + }, + { + "u":"de.alpharogroup|resource-system-rest-api|3.12.0|javadoc|jar", + "m":"1499038984033", + "i":"jar|1499016708000|53982|2|2|1|jar", + "1":"a127d8954b0bce3cfa55b32784b417131ae29e40" + }, + { + "u":"de.alpharogroup|resource-system-init|3.12.0|NA", + "m":"1499038984145", + "i":"jar|1499016685000|201826|1|1|1|jar", + "1":"e8792695ad2538a177e6ceba7adf163e379d84ce" + }, + { + "u":"de.alpharogroup|resource-system-init|3.12.0|sources|jar", + "m":"1499038984178", + "i":"jar|1499016710000|202757|2|2|1|jar", + "1":"a6d4ebd3c2466b5d9298808e748a64dbfab93a63" + }, + { + "u":"de.alpharogroup|resource-system-init|3.12.0|javadoc|jar", + "m":"1499038984207", + "i":"jar|1499016706000|37235|2|2|1|jar", + "1":"048c8bd4bcc1cd87b8deb630e164bf158f32e93c" + }, + { + "u":"de.alpharogroup|resource-system-entities|3.12.0|NA", + "m":"1499038984315", + "i":"jar|1499016703000|5740|1|1|1|jar", + "1":"0b5f564f28989d9239e470fa8b5b0d3773ec14d8" + }, + { + "u":"de.alpharogroup|resource-system-entities|3.12.0|sources|jar", + "m":"1499038984346", + "i":"jar|1499016709000|6686|2|2|1|jar", + "1":"4a1648ec94c9948537ef29cbb7b051299b380754" + }, + { + "u":"de.alpharogroup|resource-system-entities|3.12.0|javadoc|jar", + "m":"1499038984370", + "i":"jar|1499016705000|51142|2|2|1|jar", + "1":"21a867e810ec5769e39e212a86253f9a9a5fbdf2" + }, + { + "u":"de.alpharogroup|resource-system-domain|3.12.0|NA", + "m":"1499038984481", + "i":"jar|1499016712000|9680|1|1|1|jar", + "1":"eca43be10e27abbb270bb997cf53cbfc329a8929" + }, + { + "u":"de.alpharogroup|resource-system-domain|3.12.0|sources|jar", + "m":"1499038984511", + "i":"jar|1499016711000|8140|2|2|1|jar", + "1":"8d40b2c42c99792d92c83c3e505a44f1458fc450" + }, + { + "u":"de.alpharogroup|resource-system-domain|3.12.0|javadoc|jar", + "m":"1499038984535", + "i":"jar|1499016707000|62993|2|2|1|jar", + "1":"4827f92c1f9a135bed3dc1877875a2ec24afbd78" + }, + { + "u":"de.alpharogroup|resource-system-data|3.12.0|NA", + "m":"1499038984642", + "i":"pom|1499016700000|3598|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project that holds module projects for the persistence of address data.", + "1":"60df12c147f6726afc63211bd24f0e0562b55337" + }, + { + "u":"de.alpharogroup|resource-system-business|3.12.0|NA", + "m":"1499038984725", + "i":"jar|1499016697000|12098|1|1|1|jar", + "1":"535eb60dc7df6e888416fe10223e451d916f421e" + }, + { + "u":"de.alpharogroup|resource-system-business|3.12.0|sources|jar", + "m":"1499038984753", + "i":"jar|1499016705000|12909|2|2|1|jar", + "1":"2de3bb93f283bf73df1d863d026ea109917b1b33" + }, + { + "u":"de.alpharogroup|resource-system-business|3.12.0|javadoc|jar", + "m":"1499038984778", + "i":"jar|1499016696000|87943|2|2|1|jar", + "1":"cf6769307fdc738c677076f2c595a99f1b2ddaea" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-web|3.12.0|NA", + "m":"1499038984880", + "i":"war|1499014731000|42059244|1|0|1|war", + "d":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "1":"bfe0e3ec2a83460cf353248afc00b9fe1827a92e" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-web|3.12.0|sources|jar", + "m":"1499038984900", + "i":"jar|1499014735000|16166|2|2|1|jar", + "d":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "1":"bfc09d8d03e2120fd4bd19c2d282771c2753ba33" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-client|3.12.0|NA", + "m":"1499038985004", + "i":"jar|1499014742000|3259|1|1|1|jar", + "1":"5ff6cbfcc2b0d81d9e67f3af0c2196d5f508e75f" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-client|3.12.0|sources|jar", + "m":"1499038985029", + "i":"jar|1499014664000|3786|2|2|1|jar", + "1":"24aa031ada8cfcf17fa24125738537ab24274de7" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-client|3.12.0|javadoc|jar", + "m":"1499038985051", + "i":"jar|1499014743000|25062|2|2|1|jar", + "1":"ff5087c491897a63b699a09572a003763e64b0e2" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-api|3.12.0|NA", + "m":"1499038985165", + "i":"jar|1499014682000|5020|1|1|1|jar", + "1":"5a84eb31c35710f3503516fcea4b3a2eacd65f66" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-api|3.12.0|sources|jar", + "m":"1499038985195", + "i":"jar|1499014744000|5669|2|2|1|jar", + "1":"6f72dfa7993e990da5e4a91a45f707b96e0027e0" + }, + { + "u":"de.alpharogroup|resource-bundles-rest-api|3.12.0|javadoc|jar", + "m":"1499038985219", + "i":"jar|1499014738000|40831|2|2|1|jar", + "1":"7becc6ee99d811fc8bee354af81a61ec3649e493" + }, + { + "u":"de.alpharogroup|resource-bundles-init|3.12.0|NA", + "m":"1499038985327", + "i":"jar|1499014680000|47591|1|1|1|jar", + "1":"3f965cf68ba5c4addddc49f64219fd6c5ac3bedf" + }, + { + "u":"de.alpharogroup|resource-bundles-init|3.12.0|sources|jar", + "m":"1499038985357", + "i":"jar|1499014737000|48596|2|2|1|jar", + "1":"8ebe996206fa4977291ac2b7c676083116725082" + }, + { + "u":"de.alpharogroup|resource-bundles-init|3.12.0|javadoc|jar", + "m":"1499038985383", + "i":"jar|1499014686000|37584|2|2|1|jar", + "1":"831f965bf00f7eb07c1e74a402f61bad1ecc7a75" + }, + { + "u":"de.alpharogroup|resource-bundles-entities|3.12.0|NA", + "m":"1499038985496", + "i":"jar|1499014748000|26131|1|1|1|jar", + "1":"96c7fade6a0aef5cc08c9c2b71ba3f66b5cf018d" + }, + { + "u":"de.alpharogroup|resource-bundles-entities|3.12.0|sources|jar", + "m":"1499038985526", + "i":"jar|1499014745000|24620|2|2|1|jar", + "1":"f111ee185037456d373ff5987308a8166de7b0f1" + }, + { + "u":"de.alpharogroup|resource-bundles-entities|3.12.0|javadoc|jar", + "m":"1499038985552", + "i":"jar|1499014739000|114823|2|2|1|jar", + "1":"7d62bd6e4aa7c22b8d912e6815f76c976c1e3277" + }, + { + "u":"de.alpharogroup|resource-bundles-domain|3.12.0|NA", + "m":"1499038985658", + "i":"jar|1499014734000|28964|1|1|1|jar", + "1":"01e05aeaa4e64674f4072293e613d1bb68428724" + }, + { + "u":"de.alpharogroup|resource-bundles-domain|3.12.0|sources|jar", + "m":"1499038985689", + "i":"jar|1499014682000|24753|2|2|1|jar", + "1":"eff9576524c2e9d6ab3f1be6d20028fa18fae256" + }, + { + "u":"de.alpharogroup|resource-bundles-domain|3.12.0|javadoc|jar", + "m":"1499038985716", + "i":"jar|1499014672000|124649|2|2|1|jar", + "1":"da9b6fdf770a29a0650f73b88caad0d6411b57f0" + }, + { + "u":"de.alpharogroup|resource-bundles-data|3.12.0|NA", + "m":"1499038985824", + "i":"pom|1499014739000|3112|0|0|1|pom", + "n":"${project.artifactId}", + "d":"This project provides Java resource bundles(i18n) that can be saved to your prefered database and load back. \n\t\tIt is kept simple and have only one table in the database. There is also restful web services provided for \n\t\tproviding resource bundles also for the web and can be used also with other languages than java.", + "1":"f1e498644ef156e7412086cd5b3e477371ac4461" + }, + { + "u":"de.alpharogroup|resource-bundles-business|3.12.0|NA", + "m":"1499038985912", + "i":"jar|1499014736000|28383|1|1|1|jar", + "1":"7d7ce8861441afdb861a3e0331efee3f21e32a7b" + }, + { + "u":"de.alpharogroup|resource-bundles-business|3.12.0|sources|jar", + "m":"1499038985941", + "i":"jar|1499014736000|34786|2|2|1|jar", + "1":"045c1dfa673a9666b29c3e97a91c7793dad34f88" + }, + { + "u":"de.alpharogroup|resource-bundles-business|3.12.0|javadoc|jar", + "m":"1499038985971", + "i":"jar|1499014684000|161212|2|2|1|jar", + "1":"c107b3732f7fe20e611114f140c8514f98c52bdd" + }, + { + "u":"de.alpharogroup|persistence-api|3.29.0|NA", + "m":"1499038987661", + "i":"pom|1499007013000|4117|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project that holds module projects for base classes for persistence like base entity or base business objects and mapper for mapping between them.", + "1":"8eeca5cab8929736f0cbafb544e9114d53eb53d0" + }, + { + "u":"de.alpharogroup|mvn-persistence-parent|3.8.1|NA", + "m":"1499038990164", + "i":"pom|1499004314000|16331|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project for module projects that is for persistence of data.", + "1":"e35c8d22a275cd3840776f29db477a55ca587835" + }, + { + "u":"de.alpharogroup|mvn-parent-projects|1.11.0|NA", + "m":"1499038991377", + "i":"pom|1498987270000|13246|0|0|1|pom", + "n":"${project.artifactId}", + "d":"This project holds parent projects that holds general properties for specific projects.", + "1":"1a4e8c459a33fddb7287702325ed10bb51423165" + }, + { + "u":"de.alpharogroup|mvn-java-parent|2.26.1|NA", + "m":"1499038991669", + "i":"pom|1498989355000|17232|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project for general java projects.", + "1":"63a98cd95b167ce260db489e606a1f3c7d1c270a" + }, + { + "u":"de.alpharogroup|domain-api|3.29.0|NA", + "m":"1499039001524", + "i":"jar|1499007008000|14180|1|1|1|jar", + "1":"bc5584a8251e7ca760d4382cd6dfecdf30189ac4" + }, + { + "u":"de.alpharogroup|domain-api|3.29.0|sources|jar", + "m":"1499039001554", + "i":"jar|1499007004000|12405|2|2|1|jar", + "1":"945f4974d6d4a9b3bc9e774f0898d0162707ef78" + }, + { + "u":"de.alpharogroup|domain-api|3.29.0|javadoc|jar", + "m":"1499039001579", + "i":"jar|1499006996000|82027|2|2|1|jar", + "1":"b5c0b970be2aec93f57a55e98e7e41ea5d11333d" + }, + { + "u":"de.alpharogroup|data-usertype|3.29.0|NA", + "m":"1499039002926", + "i":"jar|1499007002000|4404|1|1|1|jar", + "1":"62b198d4ae9b2ce53d3f224643226ab3e738db7e" + }, + { + "u":"de.alpharogroup|data-usertype|3.29.0|sources|jar", + "m":"1499039002960", + "i":"jar|1499006995000|4257|2|2|1|jar", + "1":"ce6acfd2547ac6e70b42b5d62a8153abd5257fe9" + }, + { + "u":"de.alpharogroup|data-usertype|3.29.0|javadoc|jar", + "m":"1499039002985", + "i":"jar|1499007023000|27001|2|2|1|jar", + "1":"d6a1540d0db98d5ce72b9c3d929dfd0262a1607b" + }, + { + "u":"de.alpharogroup|data-initialization|3.29.0|NA", + "m":"1499039003589", + "i":"jar|1499007011000|7552|1|1|1|jar", + "1":"4e8e954f917286b219d2ab5bfe70da75eca59f15" + }, + { + "u":"de.alpharogroup|data-initialization|3.29.0|sources|jar", + "m":"1499039003616", + "i":"jar|1499007001000|5899|2|2|1|jar", + "1":"d31ea5666965e1553ad39c73bf7e3e8d8d1dc014" + }, + { + "u":"de.alpharogroup|data-initialization|3.29.0|javadoc|jar", + "m":"1499039003642", + "i":"jar|1499006994000|29052|2|2|1|jar", + "1":"43e9d72e4fd4bbd81a0b1d29511a3cf8c324209e" + }, + { + "u":"de.alpharogroup|data-api|3.29.0|NA", + "m":"1499039004234", + "i":"jar|1499007015000|36865|1|1|1|jar", + "1":"5881f8fdab27496c937f5f1fe4d48ac2c1bfa059" + }, + { + "u":"de.alpharogroup|data-api|3.29.0|sources|jar", + "m":"1499039004264", + "i":"jar|1499006995000|36437|2|2|1|jar", + "1":"4e4be804436fb52d2aab9534ee70f91c5b33fd62" + }, + { + "u":"de.alpharogroup|data-api|3.29.0|javadoc|jar", + "m":"1499039004290", + "i":"jar|1499007022000|239791|2|2|1|jar", + "1":"8885f59e223b12e38e16acce3fb8272e8623f3c9" + }, + { + "u":"de.alpharogroup|business-api|3.29.0|NA", + "m":"1499039006133", + "i":"jar|1499007010000|8340|1|1|1|jar", + "1":"236f33f4a275d733385bd01acd3eef06c1e209d2" + }, + { + "u":"de.alpharogroup|business-api|3.29.0|sources|jar", + "m":"1499039006166", + "i":"jar|1499007023000|8621|2|2|1|jar", + "1":"94d5b0852a90927dcaf88e7ccc5ed6d5787ea611" + }, + { + "u":"de.alpharogroup|business-api|3.29.0|javadoc|jar", + "m":"1499039006192", + "i":"jar|1499007018000|71243|2|2|1|jar", + "1":"6f06d21f3357082af1005d23289149f984b03b25" + }, + { + "u":"de.alpharogroup|address-book-rest-web|3.12.0|NA", + "m":"1499039007946", + "i":"war|1499014181000|47183472|1|0|1|war", + "1":"9c4fa741527bd97f46bf809edd688f03078e01c8" + }, + { + "u":"de.alpharogroup|address-book-rest-web|3.12.0|sources|jar", + "m":"1499039007966", + "i":"jar|1499014120000|2746478|2|2|1|jar", + "1":"5391cb173c6a4727cdf761d8c9e10fe13f1718cc" + }, + { + "u":"de.alpharogroup|address-book-rest-client|3.12.0|NA", + "m":"1499039008094", + "i":"jar|1499014105000|3248|1|1|1|jar", + "1":"e2a52504a40bfb4123fb2c725b210f89a1524523" + }, + { + "u":"de.alpharogroup|address-book-rest-client|3.12.0|sources|jar", + "m":"1499039008120", + "i":"jar|1499014208000|3684|2|2|1|jar", + "1":"3ffa66da8e880ebf41d48e19fa2970abd38ce955" + }, + { + "u":"de.alpharogroup|address-book-rest-client|3.12.0|javadoc|jar", + "m":"1499039008143", + "i":"jar|1499014194000|24710|2|2|1|jar", + "1":"edf5ef714813442ecb1c49facfc9cd39483d16ac" + }, + { + "u":"de.alpharogroup|address-book-rest-api|3.12.0|NA", + "m":"1499039008246", + "i":"jar|1499014114000|14157|1|1|1|jar", + "1":"186700ebe761f16a4b090a62edc856bae08a665b" + }, + { + "u":"de.alpharogroup|address-book-rest-api|3.12.0|sources|jar", + "m":"1499039008276", + "i":"jar|1499014200000|16222|2|2|1|jar", + "1":"cd134296c2559193556b37b98a834ebb96cec831" + }, + { + "u":"de.alpharogroup|address-book-rest-api|3.12.0|javadoc|jar", + "m":"1499039008300", + "i":"jar|1499014123000|88322|2|2|1|jar", + "1":"1eb19cf75d8db310249d759b4fe1908c4e9e2f68" + }, + { + "u":"de.alpharogroup|address-book-init|3.12.0|NA", + "m":"1499039008404", + "i":"jar|1499014207000|2858244|1|1|1|jar", + "1":"722aed6300e75613375e4e26aa29cc3a41d82341" + }, + { + "u":"de.alpharogroup|address-book-init|3.12.0|sources|jar", + "m":"1499039008460", + "i":"jar|1499014187000|2859154|2|2|1|jar", + "1":"297be0b55daab34912fcd5b84b039d04e4cdc62e" + }, + { + "u":"de.alpharogroup|address-book-init|3.12.0|javadoc|jar", + "m":"1499039008516", + "i":"jar|1499014121000|37131|2|2|1|jar", + "1":"2847a3e422380de283e48ec34280b38f5419622f" + }, + { + "u":"de.alpharogroup|address-book-entities|3.12.0|NA", + "m":"1499039008628", + "i":"jar|1499014201000|372089|1|1|1|jar", + "1":"abb54d1954d2f545b71652e9f557c02d419205e4" + }, + { + "u":"de.alpharogroup|address-book-entities|3.12.0|sources|jar", + "m":"1499039008661", + "i":"jar|1499014122000|375358|2|2|1|jar", + "1":"a0f3bb83e79b46da50ac25ecb3dee89c22f12759" + }, + { + "u":"de.alpharogroup|address-book-entities|3.12.0|javadoc|jar", + "m":"1499039008687", + "i":"jar|1499014113000|80479|2|2|1|jar", + "1":"4b0261a93bde440aaf8593d131060c7c42048f33" + }, + { + "u":"de.alpharogroup|address-book-domain|3.12.0|NA", + "m":"1499039008790", + "i":"jar|1499014109000|34743|1|1|1|jar", + "1":"c6a579e4c4cd415de4f3c5671856dcc0995fb83c" + }, + { + "u":"de.alpharogroup|address-book-domain|3.12.0|sources|jar", + "m":"1499039008821", + "i":"jar|1499014110000|28377|2|2|1|jar", + "1":"2715309fb5f3921c0354446540c2b34393990d30" + }, + { + "u":"de.alpharogroup|address-book-domain|3.12.0|javadoc|jar", + "m":"1499039008852", + "i":"jar|1499014098000|153093|2|2|1|jar", + "1":"df1793a4824811146dc121b0f55f4c672e5e7ade" + }, + { + "u":"de.alpharogroup|address-book-data|3.12.0|NA", + "m":"1499039008959", + "i":"pom|1499014121000|3980|0|0|1|pom", + "n":"${project.artifactId}", + "d":"Parent project that holds module projects for the persistence of address data.", + "1":"ca8229d9fd27720c8d1443acfb905edca1a1dd31" + }, + { + "u":"de.alpharogroup|address-book-business|3.12.0|NA", + "m":"1499039009053", + "i":"jar|1499014115000|46925|1|1|1|jar", + "1":"79424b57d1e7f5a239cc070ace119d83f5f5e649" + }, + { + "u":"de.alpharogroup|address-book-business|3.12.0|sources|jar", + "m":"1499039009083", + "i":"jar|1499014202000|37098|2|2|1|jar", + "1":"a6377c75fd5d44dbad43e0f736fdbe048f90e294" + }, + { + "u":"de.alpharogroup|address-book-business|3.12.0|javadoc|jar", + "m":"1499039009108", + "i":"jar|1499014193000|167566|2|2|1|jar", + "1":"e40b505de963d230b50412c014c47c6efb33d8d0" + }, + { + "u":"com.vanniktech|emoji-twitter|0.5.1|NA", + "m":"1499039575597", + "i":"aar|1499006371000|2234323|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"12a18ca9c7a45c937c1b8d74f7486e8efde3a710" + }, + { + "u":"com.vanniktech|emoji-twitter|0.5.1|sources|jar", + "m":"1499039575614", + "i":"jar|1499006391000|20264|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"01872003ae17a543a44fae4982ab0af8d1d6e189" + }, + { + "u":"com.vanniktech|emoji-twitter|0.5.1|javadoc|jar", + "m":"1499039575642", + "i":"jar|1499006382000|44923|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"2a403e5e43a44bc018666dfdb8081be6fecb121e" + }, + { + "u":"com.vanniktech|emoji-one|0.5.1|NA", + "m":"1499039575697", + "i":"aar|1499006264000|3010384|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"538ca8598d9e818afca011226c89be80ef1f82e0" + }, + { + "u":"com.vanniktech|emoji-one|0.5.1|sources|jar", + "m":"1499039575714", + "i":"jar|1499006283000|20003|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"b222ff796e010f0fa2801804d4cc66b5872ebf5a" + }, + { + "u":"com.vanniktech|emoji-one|0.5.1|javadoc|jar", + "m":"1499039575740", + "i":"jar|1499006272000|44669|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"363a1e49d33fd6c52122ae2103b1137a4735180e" + }, + { + "u":"com.vanniktech|emoji-one|0.5.0|NA", + "m":"1499039575785", + "i":"aar|1499003378000|1906344|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"afe5bcbff5b2a5fd789a50a30e069464793ea3b8" + }, + { + "u":"com.vanniktech|emoji-one|0.5.0|sources|jar", + "m":"1499039575804", + "i":"jar|1499003384000|16701|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"826a3da4947eec1d6305464bc0564f711fdd697b" + }, + { + "u":"com.vanniktech|emoji-one|0.5.0|javadoc|jar", + "m":"1499039575830", + "i":"jar|1499003387000|44636|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"5fa9f433897865311f7cecac45cebef7b58db26f" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.1|NA", + "m":"1499039575912", + "i":"aar|1499006322000|4961132|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"f30fcb1be4210cd5eb9e25a5c7b01d40c385025d" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.1|sources|jar", + "m":"1499039575932", + "i":"jar|1499006331000|19917|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"e8b8aa2d8dab43da2084c02ea679caf83c47dfde" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.1|javadoc|jar", + "m":"1499039575957", + "i":"jar|1499006334000|44686|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"e68f516e6e69ad6f3358d59a049d1be57a4cf72f" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.0|NA", + "m":"1499039576008", + "i":"aar|1499003359000|4961730|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"c4d710cc00d69ed6fe87092df277fcbdab7ba134" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.0|sources|jar", + "m":"1499039576026", + "i":"jar|1499003363000|19937|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"24259cb69a11d621a2240079175bf87150071ed8" + }, + { + "u":"com.vanniktech|emoji-ios|0.5.0|javadoc|jar", + "m":"1499039576052", + "i":"jar|1499003368000|44666|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"4f9398c6994238fd8a94915fc186109e5df5d507" + }, + { + "u":"com.vanniktech|emoji-google|0.5.1|NA", + "m":"1499039576133", + "i":"aar|1499005551000|3308434|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"13ff88806146d5b6afc1deafd8f05ec45a3e85d0" + }, + { + "u":"com.vanniktech|emoji-google|0.5.1|sources|jar", + "m":"1499039576150", + "i":"jar|1499005575000|20011|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"1a3adc7a0b19c01f40988ff613e2e0f6f9d8a9a8" + }, + { + "u":"com.vanniktech|emoji-google|0.5.1|javadoc|jar", + "m":"1499039576177", + "i":"jar|1499005569000|44870|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"f07db96c6e73f6f97fd817d0dea9d413435e4b41" + }, + { + "u":"com.vanniktech|emoji|0.5.1|NA", + "m":"1499039576233", + "i":"aar|1499005523000|74348|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"46d1ef2e5f3a09b852560b8845ef2f30e47a8b2b" + }, + { + "u":"com.vanniktech|emoji|0.5.1|sources|jar", + "m":"1499039576251", + "i":"jar|1499005530000|29227|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"52a6d8f21e60b8e1eefa99ce726159c1f28d6df9" + }, + { + "u":"com.vanniktech|emoji|0.5.1|javadoc|jar", + "m":"1499039576277", + "i":"jar|1499005532000|86710|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"01f394af3aa4c2a035df73fc4b2f71c7400e271b" + }, + { + "u":"com.vanniktech|emoji|0.5.0|NA", + "m":"1499039576320", + "i":"aar|1499003314000|56329|1|1|1|aar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"4b91c9ceb4ead9258ab3916ccfd516e1f2e3d204" + }, + { + "u":"com.vanniktech|emoji|0.5.0|sources|jar", + "m":"1499039576338", + "i":"jar|1499003321000|20334|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"4bec2ab1443afc239d4c3a853bc3cfc987e67942" + }, + { + "u":"com.vanniktech|emoji|0.5.0|javadoc|jar", + "m":"1499039576368", + "i":"jar|1499003337000|72546|2|2|1|jar", + "n":"Emoji", + "d":"A simple library to add Emoji support to your Android Application", + "1":"0ce3d2ef6e712605f4d8fa884375a91ee4780359" + }, + { + "u":"com.udojava|EvalEx|1.7|NA", + "m":"1499039691427", + "i":"jar|1499000248000|56514|1|1|1|jar", + "n":"EvalEx", + "d":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "1":"a97e9ee632a1f25fc6ea9b044be14bd766d1c84e" + }, + { + "u":"com.udojava|EvalEx|1.7|sources|jar", + "m":"1499039691457", + "i":"jar|1499000249000|11834|2|2|1|jar", + "n":"EvalEx", + "d":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "1":"c9d45644a76d79c40aac0cc3d8a10284e1f19c5b" + }, + { + "u":"com.udojava|EvalEx|1.7|javadoc|jar", + "m":"1499039691482", + "i":"jar|1499000246000|63672|2|2|1|jar", + "n":"EvalEx", + "d":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "1":"a84750aeafe24623259c58f85686afa103b01043" + }, + { + "u":"com.turo|pushy-parent|0.10.1|NA", + "m":"1499040274722", + "i":"pom|1499013102000|9243|0|0|1|pom", + "n":"Pushy parent", + "d":"A Java library for sending push notifications", + "1":"7ea2ae72b2cc80b0238459d355c84babdf57417f" + }, + { + "u":"com.turo|pushy-dropwizard-metrics-listener|0.10.1|NA", + "m":"1499040274780", + "i":"jar|1499013149000|6064|1|1|1|jar", + "n":"Dropwizard Metrics listener for Pushy", + "d":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "1":"564734c77ec889bb42a9ab5c6a703a8236adfe09" + }, + { + "u":"com.turo|pushy-dropwizard-metrics-listener|0.10.1|sources|jar", + "m":"1499040274808", + "i":"jar|1499013151000|6010|2|2|1|jar", + "n":"Dropwizard Metrics listener for Pushy", + "d":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "1":"e3d33f5b0b40ec3a113213763b304199591a4335" + }, + { + "u":"com.turo|pushy-dropwizard-metrics-listener|0.10.1|javadoc|jar", + "m":"1499040274831", + "i":"jar|1499013151000|31712|2|2|1|jar", + "n":"Dropwizard Metrics listener for Pushy", + "d":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "1":"3b07f4ad0dd5c77cda684244c7aee96e7600508d" + }, + { + "u":"com.turo|pushy|0.10.1|NA", + "m":"1499040274911", + "i":"jar|1499013136000|102002|1|1|1|jar", + "n":"Pushy", + "1":"0638539fe9dea85881b98ebd71aa9709ab7295b8" + }, + { + "u":"com.turo|pushy|0.10.1|sources|jar", + "m":"1499040274943", + "i":"jar|1499013138000|88362|2|2|1|jar", + "n":"Pushy", + "1":"94498e475f442ab1fd054818a6cd1fbc8339a677" + }, + { + "u":"com.turo|pushy|0.10.1|javadoc|jar", + "m":"1499040274971", + "i":"jar|1499013139000|174955|2|2|1|jar", + "n":"Pushy", + "1":"d1b4c705cc101193fb7ce54378d39eee3f4c024f" + }, + { + "u":"com.thejholmes.russound|mock|1.2.0|NA", + "m":"1499040585336", + "i":"jar|1498866927000|26081|1|1|1|jar", + "n":"Russound Matrix Mock Receiver", + "d":"An API that lets create a mock receiver to test your instance against.", + "1":"e49013e192379968fe07f14d945c3842e0ae6b4e" + }, + { + "u":"com.thejholmes.russound|mock|1.2.0|sources|jar", + "m":"1499040585367", + "i":"jar|1498866943000|3808|2|2|1|jar", + "n":"Russound Matrix Mock Receiver", + "d":"An API that lets create a mock receiver to test your instance against.", + "1":"43ebd93251857d20a81b05d3d43333fa824593d5" + }, + { + "u":"com.thejholmes.russound|mock|1.2.0|javadoc|jar", + "m":"1499040585389", + "i":"jar|1498866937000|261|2|2|1|jar", + "n":"Russound Matrix Mock Receiver", + "d":"An API that lets create a mock receiver to test your instance against.", + "1":"e8a9507ff2438f12791b6307b3e112bb58e759d3" + }, + { + "u":"com.thejholmes.russound|api|1.2.0|NA", + "m":"1499040585495", + "i":"jar|1498866928000|59559|1|1|1|jar", + "n":"Russound Matrix API", + "d":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "1":"ccf97b601be7c7a0ea6fe39f375bf34890a8868d", + "Bundle-SymbolicName":"com.thejholmes.russound.api", + "Bundle-Version":"1.2.0", + "Export-Package":"com.thejholmes.russound;version=\"1.2.0\";uses:=\"kotlin,kotlin.jvm.internal,org.slf4j\",com.thejholmes.russound.serial;version=\"1.2.0\";uses:=\"com.thejholmes.russound,kotlin,kotlin.jvm.internal,org.slf4j\",com.thejholmes.russound.util;version=\"1.2.0\";uses:=kotlin", + "Bundle-Name":"api", + "Import-Package":"com.thejholmes.russound;version=\"[1.2,2)\",com.thejholmes.russound.util;version=\"[1.2,2)\",kotlin,kotlin.collections,kotlin.concurrent,kotlin.io,kotlin.jvm.functions,kotlin.jvm.internal,kotlin.ranges,kotlin.sequences,kotlin.text,org.slf4j;version=\"[1.7,2)\"" + }, + { + "u":"com.thejholmes.russound|api|1.2.0|sources|jar", + "m":"1499040585525", + "i":"jar|1498866947000|10321|2|2|1|jar", + "n":"Russound Matrix API", + "d":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "1":"8030cdf46d3e99f9408229cafd92c64ca4998352" + }, + { + "u":"com.thejholmes.russound|api|1.2.0|javadoc|jar", + "m":"1499040585550", + "i":"jar|1498866937000|261|2|2|1|jar", + "n":"Russound Matrix API", + "d":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "1":"2e5d4c9df70ffa8c1dd3cd64a973e05c477b63ab" + }, + { + "u":"com.spotify|docker-client|8.8.0|NA", + "m":"1499041623675", + "i":"jar|1499025878000|677475|1|1|1|jar", + "n":"docker-client", + "d":"A docker client", + "1":"d173d3b3e1375e3ff7a639248187b42482401265" + }, + { + "u":"com.spotify|docker-client|8.8.0|sources|jar", + "m":"1499041623721", + "i":"jar|1499025900000|380304|2|2|1|jar", + "n":"docker-client", + "d":"A docker client", + "1":"0eaf853246fac2538ffa3e059b9e3ebef3be8e2c" + }, + { + "u":"com.spotify|docker-client|8.8.0|shaded|jar", + "m":"1499041623756", + "i":"jar|1499025899000|7399375|2|2|1|jar", + "n":"docker-client", + "d":"A docker client", + "1":"0c7ed0484d2794ed05707d96352a38930e2dbb87" + }, + { + "u":"com.spotify|docker-client|8.8.0|shaded-sources|jar", + "m":"1499041623856", + "i":"jar|1499025888000|6341709|2|2|1|jar", + "n":"docker-client", + "d":"A docker client", + "1":"fcf0f1284166b9dc6a29fa041652e571d1be0849" + }, + { + "u":"com.spotify|docker-client|8.8.0|javadoc|jar", + "m":"1499041623931", + "i":"jar|1499025902000|1554495|2|2|1|jar", + "n":"docker-client", + "d":"A docker client", + "1":"1594ad24fe6d4ce0d01176bcae527bb9a15856e7" + }, + { + "u":"com.sackcentury|shinebutton|0.1.9|NA", + "m":"1499042117680", + "i":"aar|1499017768000|44473|1|1|1|aar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"26111ebe89bf0e71068e3ade534015de90035907" + }, + { + "u":"com.sackcentury|shinebutton|0.1.9|sources|jar", + "m":"1499042117698", + "i":"jar|1499017781000|9423|2|2|1|jar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"3c1e7d805e2a64194e5f3ec3ef8b6929e0610238" + }, + { + "u":"com.sackcentury|shinebutton|0.1.9|javadoc|jar", + "m":"1499042117721", + "i":"jar|1499017784000|85453|2|2|1|jar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"dadb08bdb18a460e1e4481a74130ffebe32c973f" + }, + { + "u":"com.sackcentury|shinebutton|0.1.8|NA", + "m":"1499042117766", + "i":"aar|1499012700000|43937|1|1|1|aar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"4cbdd29f40cee0fc156f1b74f3b204a3ea599679" + }, + { + "u":"com.sackcentury|shinebutton|0.1.8|sources|jar", + "m":"1499042117783", + "i":"jar|1499012717000|9025|2|2|1|jar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"534787127d6a90d0852c1f171f97be6ab993ce59" + }, + { + "u":"com.sackcentury|shinebutton|0.1.8|javadoc|jar", + "m":"1499042117810", + "i":"jar|1499012720000|85060|2|2|1|jar", + "n":"ShineButton", + "d":"This is a UI lib for Android. Effects like shining.", + "1":"dd882ef20fabd61b3d5fdc70bab8324dcfc5d528" + }, + { + "u":"com.restfb|restfb|1.43.0|NA", + "m":"1499042176742", + "i":"jar|1498992159000|520418|1|1|1|jar", + "n":"RestFB", + "d":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "1":"8689d1e66a4800f5945c4d4874996d22f4fe9a25" + }, + { + "u":"com.restfb|restfb|1.43.0|sources|jar", + "m":"1499042176786", + "i":"jar|1498992169000|598288|2|2|1|jar", + "n":"RestFB", + "d":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "1":"e334bc0026db1f4a7c45e5b361fbe03230280c85" + }, + { + "u":"com.restfb|restfb|1.43.0|javadoc|jar", + "m":"1499042176825", + "i":"jar|1498992231000|6074485|2|2|1|jar", + "n":"RestFB", + "d":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "1":"802e8cdf7069d2219b92fc3fc18bc730467a8c7a" + }, + { + "u":"com.quadas|konfig_2.12|0.1-M10|NA", + "m":"1499042318768", + "i":"jar|1499039662000|47144|1|1|1|jar", + "n":"konfig", + "d":"konfig", + "1":"c6302e04ba5eca4aac68d43213d0d01012170483" + }, + { + "u":"com.quadas|konfig_2.12|0.1-M10|sources|jar", + "m":"1499042318794", + "i":"jar|1499039660000|2677|2|2|1|jar", + "n":"konfig", + "d":"konfig", + "1":"a20bbb64ebadd74efe032e99513405dbd5b2fe5f" + }, + { + "u":"com.quadas|konfig_2.12|0.1-M10|javadoc|jar", + "m":"1499042318812", + "i":"jar|1499039660000|691955|2|2|1|jar", + "n":"konfig", + "d":"konfig", + "1":"9187b88b192fc4c146d02b8ce1d83cbac0518420" + }, + { + "u":"com.quadas|konfig_2.11|0.1-M10|NA", + "m":"1499042318896", + "i":"jar|1499039661000|61678|1|1|1|jar", + "n":"konfig", + "d":"konfig", + "1":"9d1070129be73cdbde893e4b92268dedd33da330" + }, + { + "u":"com.quadas|konfig_2.11|0.1-M10|sources|jar", + "m":"1499042318922", + "i":"jar|1499039662000|2677|2|2|1|jar", + "n":"konfig", + "d":"konfig", + "1":"79e8555e472d3c1e56138fb7f2021cd15fd3a9fb" + }, + { + "u":"com.quadas|konfig_2.11|0.1-M10|javadoc|jar", + "m":"1499042318940", + "i":"jar|1499039661000|400609|2|2|1|jar", + "n":"konfig", + "d":"konfig", + "1":"c48c98b4fb5a609e9ae774871a593b94ac126ae7" + }, + { + "u":"com.quadas|konfig-twitter-util_2.12|0.1-M10|NA", + "m":"1499042319028", + "i":"jar|1499039577000|5121|1|1|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"72968435a6eb2280e86a2c0c0f0e5b77485bfd56" + }, + { + "u":"com.quadas|konfig-twitter-util_2.12|0.1-M10|sources|jar", + "m":"1499042319052", + "i":"jar|1499039576000|971|2|2|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"13bb85616cdc0b8fa0bc62e39a093804ac796936" + }, + { + "u":"com.quadas|konfig-twitter-util_2.12|0.1-M10|javadoc|jar", + "m":"1499042319070", + "i":"jar|1499039575000|639162|2|2|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"774edb0cccce0014ed951a5ef9c027212524da20" + }, + { + "u":"com.quadas|konfig-twitter-util_2.11|0.1-M10|NA", + "m":"1499042319158", + "i":"jar|1499039576000|5494|1|1|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"e46e2eb21bc47a85edb9ae309c2837d4310f4ec4" + }, + { + "u":"com.quadas|konfig-twitter-util_2.11|0.1-M10|sources|jar", + "m":"1499042319181", + "i":"jar|1499039576000|971|2|2|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"4bb834d495501f89c3cd870cb4d6f055ec729afb" + }, + { + "u":"com.quadas|konfig-twitter-util_2.11|0.1-M10|javadoc|jar", + "m":"1499042319199", + "i":"jar|1499039578000|354084|2|2|1|jar", + "n":"konfig-twitter-util", + "d":"konfig-twitter-util", + "1":"d6b326d8f3cda7ebcc2240153f9daec5e68a6976" + }, + { + "u":"com.orctom|basepom|1.3|tests|jar", + "m":"1499042827784", + "i":"jar|1499040337000|3883|2|2|1|jar", + "n":"basepom", + "d":"Basepom", + "1":"ae488b888439e9eb4d2414e087ec236604a1245e" + }, + { + "u":"com.orctom|basepom|1.3|NA", + "m":"1499042827811", + "i":"pom|1499040358000|15872|0|0|1|pom", + "n":"basepom", + "d":"Basepom", + "1":"4ee1fa18f2f316aaf3c0416eea90ce483e85f1e2" + }, + { + "u":"com.orbitz.consul|consul-client|0.16.1|NA", + "m":"1499042828588", + "i":"jar|1499024166000|439051|1|1|1|jar", + "n":"consul-client", + "d":"Consul Client for Java", + "1":"63241080552f41d9c1bc2c3e3e7e58f91aa91be4" + }, + { + "u":"com.orbitz.consul|consul-client|0.16.1|sources|jar", + "m":"1499042828628", + "i":"jar|1499024174000|235653|2|2|1|jar", + "n":"consul-client", + "d":"Consul Client for Java", + "1":"07f327cba772f6857384b507a34cbbf7f89918c3" + }, + { + "u":"com.orbitz.consul|consul-client|0.16.1|shaded|jar", + "m":"1499042828657", + "i":"jar|1499024173000|3045982|2|2|1|jar", + "n":"consul-client", + "d":"Consul Client for Java", + "1":"eacdc2f3ae02d84a7e691c5aaf4095dfaf8ffaab" + }, + { + "u":"com.orbitz.consul|consul-client|0.16.1|javadoc|jar", + "m":"1499042828711", + "i":"jar|1499024169000|1325812|2|2|1|jar", + "n":"consul-client", + "d":"Consul Client for Java", + "1":"8d3cf259b9c4f39221d4c324c229a08bcc8103f5" + }, + { + "u":"com.mohiva|play-silhouette_2.12|5.0.0-RC1|NA", + "m":"1499043784503", + "i":"jar|1498988277000|900455|1|1|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"551f04394c8819f07ce7fe4fecbd5d580e0c99da" + }, + { + "u":"com.mohiva|play-silhouette_2.12|5.0.0-RC1|sources|jar", + "m":"1499043784561", + "i":"jar|1498988245000|164524|2|2|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"aedc463329c93634c769295a65b562d9bf48b5a2" + }, + { + "u":"com.mohiva|play-silhouette_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043784592", + "i":"jar|1498988269000|2550196|2|2|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"bf48b5b37f6d515a7bd4b330b2b8278e3772e4b6" + }, + { + "u":"com.mohiva|play-silhouette_2.11|5.0.0-RC1|NA", + "m":"1499043784686", + "i":"jar|1498988387000|1208914|1|1|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"557332267baead582d9f3b7e3c01b3a1373896d7" + }, + { + "u":"com.mohiva|play-silhouette_2.11|5.0.0-RC1|sources|jar", + "m":"1499043784741", + "i":"jar|1498988359000|164524|2|2|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"71c980d583100f712defc62d50c972ccd4b1bd6d" + }, + { + "u":"com.mohiva|play-silhouette_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043784770", + "i":"jar|1498988376000|1692854|2|2|1|jar", + "n":"play-silhouette", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"29235a98fd68b256a7f64e4eda467f9e748e927a" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.12|5.0.0-RC1|NA", + "m":"1499043785700", + "i":"jar|1498988295000|51461|1|1|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"04494b708650ca89058927ac0bf475fbc1196431" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.12|5.0.0-RC1|sources|jar", + "m":"1499043785733", + "i":"jar|1498988297000|4450|2|2|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"1e3494bd0ebaf96b952df54f49a16c900ed8c890" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043785758", + "i":"jar|1498988294000|707202|2|2|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"52d6d7078c5be831449e00b75c697bb92deacbc9" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.11|5.0.0-RC1|NA", + "m":"1499043785830", + "i":"jar|1498988392000|52856|1|1|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"9e82349f10425a7b32b7f9b67e408d0f808e89f9" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.11|5.0.0-RC1|sources|jar", + "m":"1499043785862", + "i":"jar|1498988394000|4450|2|2|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"48805f9b33bfbeeef2be44028125021ebfe6d388" + }, + { + "u":"com.mohiva|play-silhouette-testkit_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043785887", + "i":"jar|1498988391000|408445|2|2|1|jar", + "n":"play-silhouette-testkit", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"65039f527f0b1f4000a8e7c1830d98b96378c12f" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.12|5.0.0-RC1|NA", + "m":"1499043786738", + "i":"jar|1498988301000|16231|1|1|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"afe13c85c5a45abcc7a9a8332d7e3438076c5dc0" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.12|5.0.0-RC1|sources|jar", + "m":"1499043786767", + "i":"jar|1498988299000|8930|2|2|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"0062678e5d026f12a8d875d1f5769f1147b422cf" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043786796", + "i":"jar|1498988307000|673784|2|2|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"e1a91a08dc21b698e747179d637a156458cf4bde" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.11|5.0.0-RC1|NA", + "m":"1499043786866", + "i":"jar|1498988406000|23539|1|1|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"9a7e8911542afaca420ded579396e4d499387572" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.11|5.0.0-RC1|sources|jar", + "m":"1499043786898", + "i":"jar|1498988404000|8930|2|2|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"99f9c9c1e5dd9637f4368d4ddc633c28518a641e" + }, + { + "u":"com.mohiva|play-silhouette-persistence_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043786923", + "i":"jar|1498988410000|383690|2|2|1|jar", + "n":"play-silhouette-persistence", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"00bcc68d430772a41d821a999a6e8fe2101fd7ad" + }, + { + "u":"com.mohiva|play-silhouette-persistence-reactivemongo_2.11|4.0.3|NA", + "m":"1499043787144", + "i":"jar|1498988756000|25398|1|1|1|jar", + "n":"play-silhouette-persistence-reactivemongo", + "d":"ReactiveMongo persistence module for Silhouette", + "1":"a9d742a167aa93ccaf035dac253686ad2ac47c78" + }, + { + "u":"com.mohiva|play-silhouette-persistence-reactivemongo_2.11|4.0.3|sources|jar", + "m":"1499043787177", + "i":"jar|1498988755000|4125|2|2|1|jar", + "n":"play-silhouette-persistence-reactivemongo", + "d":"ReactiveMongo persistence module for Silhouette", + "1":"085e71d23dd0e241abca14f28e70a11b61c03ad2" + }, + { + "u":"com.mohiva|play-silhouette-persistence-reactivemongo_2.11|4.0.3|javadoc|jar", + "m":"1499043787210", + "i":"jar|1498988755000|189|2|2|1|jar", + "n":"play-silhouette-persistence-reactivemongo", + "d":"ReactiveMongo persistence module for Silhouette", + "1":"0722216e35c02a6876a2ef1e77bbcb074603dda5" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.12|5.0.0-RC1|NA", + "m":"1499043787464", + "i":"jar|1498988309000|8612|1|1|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"999e43d1072cab7c4e30a2310d32adb8a6a83e43" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.12|5.0.0-RC1|sources|jar", + "m":"1499043787495", + "i":"jar|1498988309000|4337|2|2|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"da9fcdfc4c836d7aa0a52a8da80dd8151260ff72" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043787521", + "i":"jar|1498988316000|656641|2|2|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"b3f834a12eb70ae4ddfadc6a74ebb6dc73fb471a" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.11|5.0.0-RC1|NA", + "m":"1499043787598", + "i":"jar|1498988349000|8436|1|1|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"0aa25da4394873262db2fb452c75296fccdb18ca" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.11|5.0.0-RC1|sources|jar", + "m":"1499043787627", + "i":"jar|1498988352000|4337|2|2|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"d57dc7dea6c6d0c9132ac2ff8a83cc82a8da0442" + }, + { + "u":"com.mohiva|play-silhouette-password-bcrypt_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043787653", + "i":"jar|1498988356000|368995|2|2|1|jar", + "n":"play-silhouette-password-bcrypt", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"9f828b0e91d776d5b424a78486884816e0fd2984" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.12|5.0.0-RC1|NA", + "m":"1499043788070", + "i":"jar|1498988233000|19185|1|1|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"34ee106e4c20dafc91e8547997e9a082410ad3d4" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.12|5.0.0-RC1|sources|jar", + "m":"1499043788100", + "i":"jar|1498988232000|4634|2|2|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"555cfacb2f74005ac1fce70b4bbe1ace9fb3eb5d" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043788125", + "i":"jar|1498988239000|663535|2|2|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"179581b81debb3688f386ec9cc64ef73faf9f436" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.11|5.0.0-RC1|NA", + "m":"1499043788201", + "i":"jar|1498988411000|23562|1|1|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"36b1f63a6cc7c78c14729203386a061875a39349" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.11|5.0.0-RC1|sources|jar", + "m":"1499043788232", + "i":"jar|1498988411000|4634|2|2|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"751a3a9bdb76bd4b523d48ba3c1ee022f4a8015e" + }, + { + "u":"com.mohiva|play-silhouette-crypto-jca_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043788258", + "i":"jar|1498988415000|375186|2|2|1|jar", + "n":"play-silhouette-crypto-jca", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"c83b2bc2818139dce63f7a16478ada8d402cd21b" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.12|5.0.0-RC1|NA", + "m":"1499043788363", + "i":"jar|1498988287000|36894|1|1|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"4df4fc2eae1827871c55703bc04c7dc26bf6033c" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.12|5.0.0-RC1|sources|jar", + "m":"1499043788393", + "i":"jar|1498988287000|4745|2|2|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"2765e09e117c7278c0e5560e24ea31e491d7856d" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.12|5.0.0-RC1|javadoc|jar", + "m":"1499043788419", + "i":"jar|1498988284000|703238|2|2|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"5e303e5a55f80086ae01c86219e2e72361a4c8c4" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.11|5.0.0-RC1|NA", + "m":"1499043788490", + "i":"jar|1498988402000|49500|1|1|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"a951f81b543ade07d9cdc65cb327f430c313d07c" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.11|5.0.0-RC1|sources|jar", + "m":"1499043788519", + "i":"jar|1498988402000|4745|2|2|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"05d1976f405d9e0b5626a34663edc0c872c62a54" + }, + { + "u":"com.mohiva|play-silhouette-cas_2.11|5.0.0-RC1|javadoc|jar", + "m":"1499043788547", + "i":"jar|1498988399000|408642|2|2|1|jar", + "n":"play-silhouette-cas", + "d":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "1":"2014987e9028043a87eea6fc1e318b629e081a78" + }, + { + "u":"com.mohiva|play-html-compressor_2.12|0.7.0|NA", + "m":"1499043788743", + "i":"jar|1498987278000|19978|1|1|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"2ef26083588d69a9284dd71a460a7b5462d69fd9" + }, + { + "u":"com.mohiva|play-html-compressor_2.12|0.7.0|sources|jar", + "m":"1499043788772", + "i":"jar|1498987276000|5327|2|2|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"57e7b6e7d469989cf87cb22a72cb9b281230c504" + }, + { + "u":"com.mohiva|play-html-compressor_2.12|0.7.0|javadoc|jar", + "m":"1499043788797", + "i":"jar|1498987275000|682227|2|2|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"16ffd898e5d2416c06a1da78cc36f8f6a8f1c4f6" + }, + { + "u":"com.mohiva|play-html-compressor_2.11|0.7.0|NA", + "m":"1499043788876", + "i":"jar|1498987307000|30583|1|1|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"9120a87905cbfd224b26a92478a4a9709d8871fc" + }, + { + "u":"com.mohiva|play-html-compressor_2.11|0.7.0|sources|jar", + "m":"1499043788908", + "i":"jar|1498987305000|5327|2|2|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"da1b849b61c9deb1b28a9f9bc65d2786c267d344" + }, + { + "u":"com.mohiva|play-html-compressor_2.11|0.7.0|javadoc|jar", + "m":"1499043788933", + "i":"jar|1498987301000|389792|2|2|1|jar", + "n":"play-html-compressor", + "d":"Google's HTML Compressor for Play Framework 2", + "1":"e8d2266706ece4aad230791877886216b5241db0" + }, + { + "u":"com.mikepenz|materialdrawer|5.9.4|NA", + "m":"1499043825105", + "i":"aar|1499001435000|196431|1|1|1|aar", + "n":"MaterialDrawer Library", + "d":"MaterialDrawer Library", + "1":"f4d8856e98bc05fcc93e75a1dc0fb59b73ee7f8c" + }, + { + "u":"com.mikepenz|materialdrawer|5.9.4|sources|jar", + "m":"1499043825123", + "i":"jar|1499001444000|219637|2|2|1|jar", + "n":"MaterialDrawer Library", + "d":"MaterialDrawer Library", + "1":"a21b421682d3062c80dfaeb5ca2081b933b8f2ba" + }, + { + "u":"com.mikepenz|materialdrawer|5.9.4|javadoc|jar", + "m":"1499043825154", + "i":"jar|1499001439000|379581|2|2|1|jar", + "n":"MaterialDrawer Library", + "d":"MaterialDrawer Library", + "1":"482827a69e185480ac551936ba66b85aaf526567" + }, + { + "u":"com.mikepenz|itemanimators|1.0.0|NA", + "m":"1499043828300", + "i":"aar|1499000090000|33683|1|1|1|aar", + "n":"itemanimators Library", + "d":"ItemAnimators Library", + "1":"c32338bcf123194142578818aaccab9688272766" + }, + { + "u":"com.mikepenz|itemanimators|1.0.0|sources|jar", + "m":"1499043828322", + "i":"jar|1499000096000|19444|2|2|1|jar", + "n":"itemanimators Library", + "d":"ItemAnimators Library", + "1":"675df81c0f14ccb5dc4fb82df9ab52d514e793eb" + }, + { + "u":"com.mikepenz|itemanimators|1.0.0|javadoc|jar", + "m":"1499043828350", + "i":"jar|1499000093000|85734|2|2|1|jar", + "n":"itemanimators Library", + "d":"ItemAnimators Library", + "1":"d3b902fdc8009cb043a890c0d12d5db96b6a2d35" + }, + { + "u":"com.mikepenz|iconics-core|2.8.8|NA", + "m":"1499043828814", + "i":"aar|1498998758000|67119|1|1|1|aar", + "n":"Android-Iconics Library", + "d":"Android-Iconics Library", + "1":"2a6908e6b182deec99ff76d0eacc6a806db546c3" + }, + { + "u":"com.mikepenz|iconics-core|2.8.8|sources|jar", + "m":"1499043828833", + "i":"jar|1498998763000|84942|2|2|1|jar", + "n":"Android-Iconics Library", + "d":"Android-Iconics Library", + "1":"1c999a27d3ef2a49b61f6727dd5e5c5ac45b8931" + }, + { + "u":"com.mikepenz|iconics-core|2.8.8|javadoc|jar", + "m":"1499043828860", + "i":"jar|1498998765000|135867|2|2|1|jar", + "n":"Android-Iconics Library", + "d":"Android-Iconics Library", + "1":"bb2492077b630873d1464988776a821422c8a6d7" + }, + { + "u":"com.marcarndt.morse|sshsftp|1.0.3|NA", + "m":"1499043996081", + "i":"jar|1499017012000|37648|1|1|1|jar", + "n":"Morse SSH SFTP Plugin", + "d":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "1":"177cbe74b3501ae78e305d12bb91e875d0c87d51" + }, + { + "u":"com.marcarndt.morse|sshsftp|1.0.3|sources|jar", + "m":"1499043996111", + "i":"jar|1499017012000|19005|2|2|1|jar", + "n":"Morse SSH SFTP Plugin", + "d":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "1":"75955e9cc2f07d381e9b1a03cb17abc17a5c59d1" + }, + { + "u":"com.marcarndt.morse|sshsftp|1.0.3|javadoc|jar", + "m":"1499043996138", + "i":"jar|1499017012000|186783|2|2|1|jar", + "n":"Morse SSH SFTP Plugin", + "d":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "1":"fb557ad130caf596294c3ee480991248f4a6e493" + }, + { + "u":"com.marcarndt.morse|alerts|1.1.2|NA", + "m":"1499043996824", + "i":"jar|1499015708000|9896|1|1|1|jar", + "n":"Morse CDI Alert Service", + "d":"Alert Service plugin for Morse Bot", + "1":"8f5009531cd52108560aaf56131164cb87745c2f" + }, + { + "u":"com.marcarndt.morse|alerts|1.1.2|sources|jar", + "m":"1499043996857", + "i":"jar|1499015708000|4729|2|2|1|jar", + "n":"Morse CDI Alert Service", + "d":"Alert Service plugin for Morse Bot", + "1":"45fea2fc8daa58aeb7749fd16047a11eeaa430ec" + }, + { + "u":"com.marcarndt.morse|alerts|1.1.2|javadoc|jar", + "m":"1499043996882", + "i":"jar|1499015708000|56178|2|2|1|jar", + "n":"Morse CDI Alert Service", + "d":"Alert Service plugin for Morse Bot", + "1":"4abab14936d4ffc2ab3ed5c2647bb977e9211556" + }, + { + "u":"com.logitags|cibet-springsecurity|2.0|NA", + "m":"1499044091842", + "i":"jar|1498985447000|41395|1|1|1|jar", + "1":"efd2fe86c52099dcd158a7a6531012928179796c" + }, + { + "u":"com.logitags|cibet-springsecurity|2.0|tests|jar", + "m":"1499044091872", + "i":"jar|1498985425000|40386|2|2|1|jar", + "1":"bd5237068542b880165b74a69ee1c5ff43cfd520" + }, + { + "u":"com.logitags|cibet-springsecurity|2.0|test-sources|jar", + "m":"1499044091897", + "i":"jar|1498985494000|29145|2|2|1|jar", + "1":"63325bc9d1283ea2888d22288eeaa99321b8d620" + }, + { + "u":"com.logitags|cibet-springsecurity|2.0|sources|jar", + "m":"1499044091923", + "i":"jar|1498985484000|26794|2|2|1|jar", + "1":"18e8e553b7257a65784ca7510e721c5e8f10112c" + }, + { + "u":"com.logitags|cibet-springsecurity|2.0|javadoc|jar", + "m":"1499044091950", + "i":"jar|1498985449000|144695|2|2|1|jar", + "1":"14ffa7cc161e93a8b25e6708c6f9c41f0615b2d6" + }, + { + "u":"com.logitags|cibet-shiro|2.0|NA", + "m":"1499044092015", + "i":"jar|1498985421000|10719|1|1|1|jar", + "1":"043e55bffc5d1fbf657a58465aa5abdef49e15e4" + }, + { + "u":"com.logitags|cibet-shiro|2.0|tests|jar", + "m":"1499044092047", + "i":"jar|1498985484000|12192|2|2|1|jar", + "1":"23e6e7c0278fa05e0ddb5984f96494f52b4f8335" + }, + { + "u":"com.logitags|cibet-shiro|2.0|test-sources|jar", + "m":"1499044092074", + "i":"jar|1498985485000|9342|2|2|1|jar", + "1":"0998fdfe3a3886fe0bf6f9358d10360f11395e3e" + }, + { + "u":"com.logitags|cibet-shiro|2.0|sources|jar", + "m":"1499044092103", + "i":"jar|1498985486000|8729|2|2|1|jar", + "1":"9b12839cac0eb8e5f38e45704160390f62280196" + }, + { + "u":"com.logitags|cibet-shiro|2.0|javadoc|jar", + "m":"1499044092132", + "i":"jar|1498985459000|52974|2|2|1|jar", + "1":"dc5f3e236d6450bb3c26885137f6653bd6f8849d" + }, + { + "u":"com.logitags|cibet-jpa|2.0|NA", + "m":"1499044092190", + "i":"jar|1498985472000|102033|1|1|1|jar", + "1":"76442295bd911c77acd42487d73a3ab1f20e3428" + }, + { + "u":"com.logitags|cibet-jpa|2.0|tests|jar", + "m":"1499044092224", + "i":"jar|1498985489000|24354|2|2|1|jar", + "1":"b102e9be3d841c40fcb4a4c31745736b0b283314" + }, + { + "u":"com.logitags|cibet-jpa|2.0|test-sources|jar", + "m":"1499044092250", + "i":"jar|1498985446000|15868|2|2|1|jar", + "1":"7ef2efc5169d2a1224d7667d16921d60b510452b" + }, + { + "u":"com.logitags|cibet-jpa|2.0|sources|jar", + "m":"1499044092280", + "i":"jar|1498985445000|59836|2|2|1|jar", + "1":"2564460f46cad8abea2101ee7f2e4c9a50ecfa5f" + }, + { + "u":"com.logitags|cibet-jpa|2.0|javadoc|jar", + "m":"1499044092306", + "i":"jar|1498985405000|267068|2|2|1|jar", + "1":"f29238fdc81140fc53083a5ee535ca418733d4ae" + }, + { + "u":"com.logitags|cibet-integrationtest|2.0|NA", + "m":"1499044092369", + "i":"jar|1498985470000|5194|0|0|1|jar", + "1":"430daf26d709d8664b59c7fe08340c506c6af627" + }, + { + "u":"com.logitags|cibet-integrationtest|2.0|tests|jar", + "m":"1499044092409", + "i":"jar|1498985468000|693345|2|2|1|jar", + "1":"a8a078f20034d0caef46973fcfcd4b3650157c52" + }, + { + "u":"com.logitags|cibet-integrationtest|2.0|test-sources|jar", + "m":"1499044092450", + "i":"jar|1498985482000|381512|2|2|1|jar", + "1":"8032427d1d83e7e6efc4d53690d0d9cbecf8b2f6" + }, + { + "u":"com.logitags|cibet-envers|2.0|NA", + "m":"1499044092523", + "i":"jar|1498985486000|12851|1|1|1|jar", + "1":"ca8f214718a22c77eca5dfcfcc937f937676b740" + }, + { + "u":"com.logitags|cibet-envers|2.0|tests|jar", + "m":"1499044092554", + "i":"jar|1498985444000|7295|2|2|1|jar", + "1":"af097aece3ba363f061bb838738c5f84d6c7ae7c" + }, + { + "u":"com.logitags|cibet-envers|2.0|test-sources|jar", + "m":"1499044092580", + "i":"jar|1498985458000|6089|2|2|1|jar", + "1":"355414fa2df2a90b019b46b411e464e9b37dfd71" + }, + { + "u":"com.logitags|cibet-envers|2.0|sources|jar", + "m":"1499044092606", + "i":"jar|1498985469000|12478|2|2|1|jar", + "1":"e2942078a273287381acc1275866a7a68b655f83" + }, + { + "u":"com.logitags|cibet-envers|2.0|javadoc|jar", + "m":"1499044092632", + "i":"jar|1498985426000|60627|2|2|1|jar", + "1":"7bf539bc93a88fef13d3678072170a8968252773" + }, + { + "u":"com.logitags|cibet-core|2.0|NA", + "m":"1499044092692", + "i":"jar|1498985401000|515486|1|1|1|jar", + "1":"e17e03c7cfd010e7cee43c68ec6639ddd5006d88" + }, + { + "u":"com.logitags|cibet-core|2.0|tests|jar", + "m":"1499044092741", + "i":"jar|1498985457000|269207|2|2|1|jar", + "1":"ccb5abad20deee64fa517c960c6e820ff5a38639" + }, + { + "u":"com.logitags|cibet-core|2.0|test-sources|jar", + "m":"1499044092784", + "i":"jar|1498985395000|195321|2|2|1|jar", + "1":"e9445012b1f0ef02a23c04ba70bc4fdf1bcbcf72" + }, + { + "u":"com.logitags|cibet-core|2.0|sources|jar", + "m":"1499044092814", + "i":"jar|1498985477000|359827|2|2|1|jar", + "1":"ed6efb8ab79f5bdbcfee2a69e9799116c98b3546" + }, + { + "u":"com.logitags|cibet-core|2.0|javadoc|jar", + "m":"1499044092848", + "i":"jar|1498985443000|1384109|2|2|1|jar", + "1":"ea2c2c27834c33951681260fc0e5b11279ffea7c" + }, + { + "u":"com.logitags|cibet|2.0|tests|jar", + "m":"1499044092933", + "i":"jar|1498985493000|5771|2|2|1|jar", + "n":"Better control with cibet", + "d":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "1":"4ef2d15ebf585531ed6b2c673604d6d14aae3b5f" + }, + { + "u":"com.logitags|cibet|2.0|test-sources|jar", + "m":"1499044092966", + "i":"jar|1498985415000|612330|2|2|1|jar", + "n":"Better control with cibet", + "d":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "1":"57738db392ce6e3b0a34e4d32a63a90e3aac827e" + }, + { + "u":"com.logitags|cibet|2.0|sources|jar", + "m":"1499044093010", + "i":"jar|1498985454000|459389|2|2|1|jar", + "n":"Better control with cibet", + "d":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "1":"eb05a5671e40571e8389d68688e6aec7b34aad1e" + }, + { + "u":"com.logitags|cibet|2.0|NA", + "m":"1499044093049", + "i":"pom|1498985419000|28735|1|0|1|pom", + "n":"Better control with cibet", + "d":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "1":"f98428d7c4c13916d0e2e941878357b2407d0389" + }, + { + "u":"com.jakewharton.twirl|twirl-parent|1.1.0|NA", + "m":"1499045318067", + "i":"pom|1499021701000|4537|0|0|1|pom", + "n":"Twirl Maven Plugin (Parent)", + "d":"Maven plugin for compiling Twirl templates.", + "1":"6f1f28b51cbb3089ac2a4cd8811daaf7aec9362b" + }, + { + "u":"com.jakewharton.twirl|twirl-maven-plugin|1.1.0|NA", + "m":"1499045318172", + "i":"maven-plugin|1499021724000|9763|1|1|1|jar", + "n":"Twirl Maven Plugin", + "d":"Maven plugin for compiling Twirl templates.", + "1":"dceb77315269adbbf1231f039c4db0b6a9fd40b8" + }, + { + "u":"com.jakewharton.twirl|twirl-maven-plugin|1.1.0|sources|jar", + "m":"1499045318209", + "i":"jar|1499021726000|3240|2|2|1|jar", + "n":"Twirl Maven Plugin", + "d":"Maven plugin for compiling Twirl templates.", + "1":"e597cccd73a65c9d8711d329391036754b2e1ac5" + }, + { + "u":"com.jakewharton.twirl|twirl-maven-plugin|1.1.0|javadoc|jar", + "m":"1499045318230", + "i":"jar|1499021727000|23681|2|2|1|jar", + "n":"Twirl Maven Plugin", + "d":"Maven plugin for compiling Twirl templates.", + "1":"5bf8da4be551e21d33d591ee93af44f625aead9d" + }, + { + "u":"com.jakewharton.twirl|sample-templates|1.1.0|NA", + "m":"1499045318422", + "i":"jar|1499021739000|18482|1|1|1|jar", + "n":"Sample Templates", + "1":"e3cb786de2759b00956e170e3f8c5e46cb92be95" + }, + { + "u":"com.jakewharton.twirl|sample-templates|1.1.0|sources|jar", + "m":"1499045318452", + "i":"jar|1499021740000|4052|2|2|1|jar", + "n":"Sample Templates", + "1":"e9cef2fe17f79d051fc1b46787a5649c88f5ea09" + }, + { + "u":"com.jakewharton.twirl|sample-templates|1.1.0|javadoc|jar", + "m":"1499045318474", + "i":"jar|1499021740000|332|2|2|1|jar", + "n":"Sample Templates", + "1":"240eb634bf6dc6cfd2a89ae66130f02607bd48dd" + }, + { + "u":"com.jakewharton.twirl|sample-runtime|1.1.0|NA", + "m":"1499045318569", + "i":"jar|1499021744000|2344|1|1|1|jar", + "n":"Sample Runtime", + "1":"8a86873a1ffcde1bb21ea86b9d777a4ce6a6d3d0" + }, + { + "u":"com.jakewharton.twirl|sample-runtime|1.1.0|sources|jar", + "m":"1499045318594", + "i":"jar|1499021745000|783|2|2|1|jar", + "n":"Sample Runtime", + "1":"0339eb68b809460304ebcdf7ac11eb0ae6644c97" + }, + { + "u":"com.jakewharton.twirl|sample-runtime|1.1.0|javadoc|jar", + "m":"1499045318615", + "i":"jar|1499021746000|22758|2|2|1|jar", + "n":"Sample Runtime", + "1":"972e18017e15646f8e55b4b0fe0c2ff71dd96063" + }, + { + "u":"com.jakewharton.twirl|sample|1.1.0|NA", + "m":"1499045318718", + "i":"pom|1499021728000|602|0|0|1|pom", + "n":"Sample", + "1":"97be6c98547bfcc00d7549f281adb77049bd4caa" + }, + { + "u":"com.jakewharton.rx2|replaying-share-parent|2.0.0|NA", + "m":"1499045323794", + "i":"pom|1499025236000|4086|0|0|1|pom", + "n":"RxJava Replaying Share (Parent)", + "d":"An RxJava transformer which combines replay(1), publish(), and refCount() operators.", + "1":"e4d741b6cba58dc3349770495f305cacd42d3030" + }, + { + "u":"com.jakewharton.rx2|replaying-share-kotlin|2.0.0|NA", + "m":"1499045323836", + "i":"jar|1499025382000|3265|1|1|1|jar", + "n":"RxJava Replaying Share (Kotlin Extensions)", + "1":"0aa2f3750e9c61a554a06b818b841d77130423a0" + }, + { + "u":"com.jakewharton.rx2|replaying-share-kotlin|2.0.0|sources|jar", + "m":"1499045323861", + "i":"jar|1499025394000|1502|2|2|1|jar", + "n":"RxJava Replaying Share (Kotlin Extensions)", + "1":"68977afff8cfce2ee4d7e1c51d2c31e73b4f956e" + }, + { + "u":"com.jakewharton.rx2|replaying-share-kotlin|2.0.0|javadoc|jar", + "m":"1499045323882", + "i":"jar|1499025395000|332|2|2|1|jar", + "n":"RxJava Replaying Share (Kotlin Extensions)", + "1":"2b9b9fc9dc041834b8593c5e7665b6fd7ef22db7" + }, + { + "u":"com.jakewharton.rx2|replaying-share|2.0.0|NA", + "m":"1499045323933", + "i":"jar|1499025312000|7568|1|1|1|jar", + "n":"RxJava Replaying Share", + "1":"42f0c738e1954699e26511fcd471849427612221" + }, + { + "u":"com.jakewharton.rx2|replaying-share|2.0.0|sources|jar", + "m":"1499045323962", + "i":"jar|1499025332000|2318|2|2|1|jar", + "n":"RxJava Replaying Share", + "1":"6ebd35a8bad75d099097ce8a4b5a5f8fcd4d9da6" + }, + { + "u":"com.jakewharton.rx2|replaying-share|2.0.0|javadoc|jar", + "m":"1499045323984", + "i":"jar|1499025341000|24737|2|2|1|jar", + "n":"RxJava Replaying Share", + "1":"b7aff62f7d3f29bddb0c261f6638a33ce882c594" + }, + { + "u":"com.itranswarp|warpdb|2.7|NA", + "m":"1499045347325", + "i":"jar|1498991539000|57255|1|1|1|jar", + "n":"warpdb", + "d":"Simple, DSL-driven RDBMS interface for Java", + "1":"dfc181597410df308f5a0f58d01ce87beabfef66" + }, + { + "u":"com.itranswarp|warpdb|2.7|tests|jar", + "m":"1499045347354", + "i":"jar|1498991537000|41682|2|2|1|jar", + "n":"warpdb", + "d":"Simple, DSL-driven RDBMS interface for Java", + "1":"6fd74fb3b87431fdbeffd18e19df1cc6c5d89b52" + }, + { + "u":"com.itranswarp|warpdb|2.7|sources|jar", + "m":"1499045347381", + "i":"jar|1498991540000|27455|2|2|1|jar", + "n":"warpdb", + "d":"Simple, DSL-driven RDBMS interface for Java", + "1":"a9b43ee36a71764fa13792dddc25e0e4d410f4c5" + }, + { + "u":"com.itranswarp|warpdb|2.7|javadoc|jar", + "m":"1499045347406", + "i":"jar|1498991533000|124798|2|2|1|jar", + "n":"warpdb", + "d":"Simple, DSL-driven RDBMS interface for Java", + "1":"ae2432a6f855a4e46f31b0a68a6090c3e54be4bd" + }, + { + "u":"com.isupatches|wisefy|1.0.8|NA", + "m":"1499045360943", + "i":"aar|1499028451000|55362|1|1|1|aar", + "n":"wisefy", + "d":"Wrapper around WifiManager and ConfigurationManager for Android", + "1":"f8ca48120de19f4a637bfe5c750df512951e1a12" + }, + { + "u":"com.isupatches|wisefy|1.0.8|sources|jar", + "m":"1499045360962", + "i":"jar|1499028451000|9356|2|2|1|jar", + "n":"wisefy", + "d":"Wrapper around WifiManager and ConfigurationManager for Android", + "1":"dc2941c7e2894af0939012eab278f5a58532eab6" + }, + { + "u":"com.isupatches|wisefy|1.0.8|javadoc|jar", + "m":"1499045360992", + "i":"jar|1499028451000|38930|2|2|1|jar", + "n":"wisefy", + "d":"Wrapper around WifiManager and ConfigurationManager for Android", + "1":"179ac050b9eecbc30e90952fd423b3601631c0e5" + }, + { + "u":"com.insightml|insight-ml-core|1.1.0|NA", + "m":"1499045482454", + "i":"jar|1499009556000|354880|1|1|1|jar", + "1":"a64cd3ce4250487c2ede6bf5c1e6c0f31cfb642b" + }, + { + "u":"com.insightml|insight-ml-core|1.1.0|tests|jar", + "m":"1499045482493", + "i":"jar|1499009551000|94966|2|2|1|jar", + "1":"4b68944b22c242ea897fee0d2f16397e073b48e5" + }, + { + "u":"com.insightml|insight-ml-core|1.1.0|sources|jar", + "m":"1499045482521", + "i":"jar|1499009548000|246398|2|2|1|jar", + "1":"ef28e4ff6fbed90c9afeafda14b2d16bf044dc80" + }, + { + "u":"com.insightml|insight-ml-core|1.1.0|javadoc|jar", + "m":"1499045482552", + "i":"jar|1499009546000|1450977|2|2|1|jar", + "1":"a585aa7e243ebcb4404540ae8b364571bb8ca544" + }, + { + "u":"com.google.maps|google-maps-services|0.1.21|NA", + "m":"1499046396980", + "i":"jar|1499042899000|149545|1|1|1|jar", + "n":"Java Client for Google Maps Services", + "d":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "1":"2cc001a6b7588daf5b4d5d12c3fd949b1cb9e6e1" + }, + { + "u":"com.google.maps|google-maps-services|0.1.21|sources|jar", + "m":"1499046397054", + "i":"jar|1499042921000|141664|2|2|1|jar", + "n":"Java Client for Google Maps Services", + "d":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "1":"45329ae4aed0298fcfddcc02396afd687d6798b1" + }, + { + "u":"com.google.maps|google-maps-services|0.1.21|javadoc|jar", + "m":"1499046397081", + "i":"jar|1499042914000|408246|2|2|1|jar", + "n":"Java Client for Google Maps Services", + "d":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "1":"66cfaf8e76881b998e00d543daf923d4395ba481" + }, + { + "u":"com.google.gerrit|gerrit-war|2.13.9|NA", + "m":"1499046429334", + "i":"war|1499039065000|51278489|0|0|1|war", + "n":"Gerrit Code Review - WAR", + "d":"Gerrit WAR", + "1":"769bc441e42089a9d052a7be1bb1a0954ca176ce" + }, + { + "u":"com.google.gerrit|gerrit-plugin-js-archetype|2.13.9|NA", + "m":"1499046429988", + "i":"jar|1499039818000|15524|0|0|1|jar", + "n":"Gerrit Code Review - Web UI JavaScript Plugin Archetype", + "d":"Maven Archetype for Gerrit Web UI JavaScript Plugins", + "1":"0b87cb6c36b848071fffe43902117cc59b77c53a" + }, + { + "u":"com.google.gerrit|gerrit-plugin-gwtui|2.13.9|NA", + "m":"1499046430721", + "i":"jar|1499039168000|7051241|1|1|1|jar", + "n":"Gerrit Code Review - Plugin GWT UI", + "d":"Common Classes for Gerrit GWT UI Plugins", + "1":"e63e18db9fcc72b262bd71bcafb948b8c3858714", + "Bundle-SymbolicName":"slf4j.api", + "Bundle-Version":"1.7.7", + "Export-Package":"org.slf4j;version=1.7.7, org.slf4j.spi;version=1.7.7, org.slf4j.helpers;version=1.7.7", + "Bundle-Description":"The slf4j API", + "Bundle-Name":"slf4j-api", + "Bundle-License":"Apache 2.0", + "Bundle-DocURL":"http://www.joda.org/joda-time/", + "Import-Package":"org.slf4j.impl;version=1.6.0" + }, + { + "u":"com.google.gerrit|gerrit-plugin-gwtui|2.13.9|sources|jar", + "m":"1499046430784", + "i":"jar|1499039215000|141110|2|2|1|jar", + "n":"Gerrit Code Review - Plugin GWT UI", + "d":"Common Classes for Gerrit GWT UI Plugins", + "1":"05822cac9819697ffd8d83bcdac49ca06b41ef7c" + }, + { + "u":"com.google.gerrit|gerrit-plugin-gwtui|2.13.9|javadoc|jar", + "m":"1499046430840", + "i":"jar|1499039263000|307703|2|2|1|jar", + "n":"Gerrit Code Review - Plugin GWT UI", + "d":"Common Classes for Gerrit GWT UI Plugins", + "1":"5945d2518b2208ad98934147e97e66efc38cae32" + }, + { + "u":"com.google.gerrit|gerrit-plugin-gwt-archetype|2.13.9|NA", + "m":"1499046431578", + "i":"jar|1499039829000|23019|0|0|1|jar", + "n":"Gerrit Code Review - Web UI GWT Plugin Archetype", + "d":"Maven Archetype for Gerrit Web UI GWT Plugins", + "1":"e8ac5315956ba633b82c90e835ded1e497d15373" + }, + { + "u":"com.google.gerrit|gerrit-plugin-archetype|2.13.9|NA", + "m":"1499046432242", + "i":"jar|1499039806000|19516|0|0|1|jar", + "n":"Gerrit Code Review - Plugin Archetype", + "d":"Maven Archetype for Gerrit Plugins", + "1":"6e3da5aaea8442161f92c94097780761eaac2299" + }, + { + "u":"com.google.gerrit|gerrit-plugin-api|2.13.9|NA", + "m":"1499046432987", + "i":"jar|1499039153000|32872670|1|1|1|jar", + "n":"Gerrit Code Review - Plugin API", + "d":"API for Gerrit Plugins", + "1":"a9b00025900f68c1f86036ea07591a2876b10c37", + "Bundle-SymbolicName":"org.apache.velocity", + "Bundle-Version":"1.7", + "Export-Package":"org.apache.velocity;uses:=\"org.apache.velocity.context,org.apache.velocity.exception,org.apache.velocity.runtime.resource\",org.apache.velocity.anakia;uses:=\"com.werken.xpath,org.apache.tools.ant,org.apache.tools.ant.taskdefs,org.jdom,org.jdom.output\",org.apache.velocity.app;uses:=\"org.apache.commons.collections,org.apache.velocity,org.apache.velocity.context,org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.log\",org.apache.velocity.app.event;uses:=\"org.apache.velocity.context,org.apache.velocity.runtime,org.apache.velocity.util.introspection\",org.apache.velocity.app.event.implement;uses:=\"org.apache.velocity.app.event,org.apache.velocity.context,org.apache.velocity.runtime,org.apache.velocity.util,org.apache.velocity.util.introspection\",org.apache.velocity.app.tools;uses:=\"org.apache.velocity.context\",org.apache.velocity.context;uses:=\"org.apache.velocity.app.event,org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.parser.node,org.apache.velocity.runtime.resource,org.apache.velocity.util.introspection\",org.apache.velocity.convert,org.apache.velocity.exception;uses:=\"org.apache.velocity.runtime.parser,org.apache.velocity.util.introspection\",org.apache.velocity.io,org.apache.velocity.runtime;uses:=\"org.apache.commons.collections,org.apache.velocity,org.apache.velocity.app.event,org.apache.velocity.context,org.apache.velocity.exception,org.apache.velocity.runtime.directive,org.apache.velocity.runtime.log,org.apache.velocity.runtime.parser,org.apache.velocity.runtime.parser.node,org.apache.velocity.runtime.resource,org.apache.velocity.util.introspection\",org.apache.velocity.runtime.defaults,org.apache.velocity.runtime.directive;uses:=\"org.apache.velocity.context,org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.parser,org.apache.velocity.runtime.parser.node\",org.apache.velocity.runtime.log;uses:=\"org.apache.log.format,org.apache.velocity.runtime,org.apache.velocity.runtime.directive,org.apache.velocity.runtime.parser.node,org.apache.velocity.util.introspection\",org.apache.velocity.runtime.parser;uses:=\"org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.directive,org.apache.velocity.runtime.parser.node\",org.apache.velocity.runtime.parser.node;uses:=\"org.apache.commons.lang.text,org.apache.velocity.context,org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.log,org.apache.velocity.runtime.parser,org.apache.velocity.util.introspection\",org.apache.velocity.runtime.resource;uses:=\"org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.resource.loader\",org.apache.velocity.runtime.resource.loader;uses:=\"javax.sql,org.apache.commons.collections,org.apache.velocity.exception,org.apache.velocity.runtime,org.apache.velocity.runtime.resource,org.apache.velocity.runtime.resource.util\",org.apache.velocity.runtime.resource.util,org.apache.velocity.runtime.visitor;uses:=\"org.apache.velocity.context,org.apache.velocity.runtime.parser.node\",org.apache.velocity.servlet;uses:=\"javax.servlet,javax.servlet.http,org.apache.velocity,org.apache.velocity.context,org.apache.velocity.exception\",org.apache.velocity.texen;uses:=\"org.apache.velocity,org.apache.velocity.app,org.apache.velocity.context\",org.apache.velocity.texen.ant;uses:=\"org.apache.commons.collections,org.apache.tools.ant,org.apache.velocity.context\",org.apache.velocity.texen.defaults,org.apache.velocity.texen.util,org.apache.velocity.util;uses:=\"org.apache.velocity.context,org.apache.velocity.runtime,org.apache.velocity.runtime.parser.node,org.apache.velocity.util.introspection\",org.apache.velocity.util.introspection;uses:=\"org.apache.velocity.runtime,org.apache.velocity.runtime.log,org.apache.velocity.runtime.parser.node,org.apache.velocity.util\"", + "Bundle-Description":"Protocol Buffers are a way of encoding structured data in an efficient yet extensible format.", + "Bundle-Name":"Apache Velocity", + "Bundle-License":"http://www.opensource.org/licenses/bsd-license.php", + "Bundle-DocURL":"http://tukaani.org/xz/java.html", + "Import-Package":"com.werken.xpath;resolution:=optional,javax.naming,javax.servlet;resolution:=optional,javax.servlet.http;resolution:=optional,javax.sql,org.apache.commons.collections,org.apache.commons.collections.map,org.apache.commons.lang,org.apache.commons.lang.builder,org.apache.commons.lang.text,org.apache.commons.logging;resolution:=optional,org.apache.log;resolution:=optional,org.apache.log.format;resolution:=optional,org.apache.log.output.io;resolution:=optional,org.apache.log4j;resolution:=optional,org.apache.oro.text.perl;resolution:=optional,org.apache.tools.ant;resolution:=optional,org.apache.tools.ant.taskdefs;resolution:=optional,org.jdom;resolution:=optional,org.jdom.input;resolution:=optional,org.jdom.output;resolution:=optional,org.xml.sax" + }, + { + "u":"com.google.gerrit|gerrit-plugin-api|2.13.9|sources|jar", + "m":"1499046433142", + "i":"jar|1499039204000|2419934|2|2|1|jar", + "n":"Gerrit Code Review - Plugin API", + "d":"API for Gerrit Plugins", + "1":"6f07372e482e6b1e99bd5bc57ee1ba6b534d8439" + }, + { + "u":"com.google.gerrit|gerrit-plugin-api|2.13.9|javadoc|jar", + "m":"1499046433178", + "i":"jar|1499039252000|4499580|2|2|1|jar", + "n":"Gerrit Code Review - Plugin API", + "d":"API for Gerrit Plugins", + "1":"04e7e85423a6ceb42700d906f131bb3b24f7369d" + }, + { + "u":"com.google.gerrit|gerrit-extension-api|2.13.9|NA", + "m":"1499046434062", + "i":"jar|1499039134000|3592866|1|1|1|jar", + "n":"Gerrit Code Review - Extension API", + "d":"API for Gerrit Extensions", + "1":"166819680c2dc501fa7f8bd13b4d6846297777de", + "Bundle-SymbolicName":"com.google.inject", + "Bundle-Version":"4.1.0", + "Export-Package":"com.google.inject;version=\"1.4\",com.google.inject.spi;version=\"1.4\",com.google.inject.matcher;version=\"1.4\",com.google.inject.util;version=\"1.4\",com.google.inject.binder;version=\"1.4\",com.google.inject.name;version=\"1.4\"", + "Bundle-Description":"Guice is a lightweight dependency injection framework for Java 6 and above", + "Bundle-Name":"guice", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"https://github.com/google/guice", + "Import-Package":"com.google.common.base;version=\"19.0\",com.google.common.cache;version=\"19.0\",com.google.common.collect;version=\"19.0\",javax.inject,org.aopalliance.intercept" + }, + { + "u":"com.google.gerrit|gerrit-extension-api|2.13.9|sources|jar", + "m":"1499046434104", + "i":"jar|1499039191000|215508|2|2|1|jar", + "n":"Gerrit Code Review - Extension API", + "d":"API for Gerrit Extensions", + "1":"8018e0def6a84fd1ec51533c2a3250479afc3e53" + }, + { + "u":"com.google.gerrit|gerrit-extension-api|2.13.9|javadoc|jar", + "m":"1499046434150", + "i":"jar|1499039239000|970976|2|2|1|jar", + "n":"Gerrit Code Review - Extension API", + "d":"API for Gerrit Extensions", + "1":"d32d22343faa9cb1aed2ccab6aa2a78e8a0145a2" + }, + { + "u":"com.google.gerrit|gerrit-acceptance-framework|2.13.9|NA", + "m":"1499046434901", + "i":"jar|1499039120000|14229198|1|1|1|jar", + "n":"Gerrit Code Review - Acceptance Test Framework", + "d":"Framework for Gerrit's acceptance tests", + "1":"53a6e2baca19303bbf3967b861cf9814323c31f6", + "Bundle-SymbolicName":"org.powermock.powermock-reflect", + "Bundle-Version":"1.6.4", + "Export-Package":"org.powermock.reflect;uses:=\"org.powermock.reflect.matching\";version=\"1.6.4\",org.powermock.reflect.exceptions;version=\"1.6.4\",org.powermock.reflect.internal;uses:=\"org.powermock.reflect.matching\";version=\"1.6.4\",org.powermock.reflect.internal.matcherstrategies;uses:=\"org.powermock.reflect.exceptions\";version=\"1.6.4\",org.powermock.reflect.internal.primitivesupport;version=\"1.6.4\",org.powermock.reflect.matching;version=\"1.6.4\",org.powermock.reflect.proxyframework;uses:=\"org.powermock.reflect.spi\";version=\"1.6.4\",org.powermock.reflect.spi;version=\"1.6.4\"", + "Bundle-Description":"Various utilities for accessing internals of a class.", + "Bundle-Name":"powermock-reflect", + "Bundle-License":"http://www.apache.org/licenses/LICENSE-2.0.txt", + "Bundle-DocURL":"http://logging.apache.org/log4j/1.2", + "Import-Package":"org.objenesis;version=\"[2.1,3)\",org.objenesis.instantiator;version=\"[2.1,3)\"" + }, + { + "u":"com.google.gerrit|gerrit-acceptance-framework|2.13.9|sources|jar", + "m":"1499046434988", + "i":"jar|1499039179000|47482|2|2|1|jar", + "n":"Gerrit Code Review - Acceptance Test Framework", + "d":"Framework for Gerrit's acceptance tests", + "1":"f75ba862b02156a0ca24e9220a712dbf3dcc582e" + }, + { + "u":"com.google.gerrit|gerrit-acceptance-framework|2.13.9|javadoc|jar", + "m":"1499046435038", + "i":"jar|1499039226000|119132|2|2|1|jar", + "n":"Gerrit Code Review - Acceptance Test Framework", + "d":"Framework for Gerrit's acceptance tests", + "1":"7bfc3760c59a01f290b3441f67e13d6b90d8db94" + }, + { + "u":"com.github.vincentrussell|sql-to-mongo-db-query-converter|1.3.2|NA", + "m":"1499048165842", + "i":"jar|1499042728000|50059|1|1|1|jar", + "n":"sql-to-mongo-db-query-converter", + "d":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "1":"741d19644f5b5ce125f4a8dec3c1aee4be426e5a" + }, + { + "u":"com.github.vincentrussell|sql-to-mongo-db-query-converter|1.3.2|standalone|jar", + "m":"1499048165871", + "i":"jar|1499042732000|8165106|2|2|1|jar", + "n":"sql-to-mongo-db-query-converter", + "d":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "1":"b00ddca11d4b77f4707952a70c3e5aaad6445198" + }, + { + "u":"com.github.vincentrussell|sql-to-mongo-db-query-converter|1.3.2|sources|jar", + "m":"1499048165979", + "i":"jar|1499042733000|20757|2|2|1|jar", + "n":"sql-to-mongo-db-query-converter", + "d":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "1":"57ac9eff03b2eb9aa52f581aeb22e734923e375b" + }, + { + "u":"com.github.vincentrussell|sql-to-mongo-db-query-converter|1.3.2|javadoc|jar", + "m":"1499048166003", + "i":"jar|1499042733000|73426|2|2|1|jar", + "n":"sql-to-mongo-db-query-converter", + "d":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "1":"92e442c94089a31de85bd5ff4e167fe31c3e2dd1" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.1|NA", + "m":"1499048187569", + "i":"jar|1498996192000|42125|1|1|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"cc737471028fff9c866fba75cef52db6d07e473f" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.1|sources|jar", + "m":"1499048187605", + "i":"jar|1498996170000|4153|2|2|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"c481ae945627bafa519b1a703974e4e18148e0b4" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.1|javadoc|jar", + "m":"1499048187627", + "i":"jar|1498996200000|376604|2|2|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"fd48390f68997c8ba2f8f4cadef345ffd56e7e61" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.0|NA", + "m":"1499048187681", + "i":"jar|1498991269000|42169|1|1|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"afa08cd5648ff86b13b70c23bba532204dd07183" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.0|sources|jar", + "m":"1499048187715", + "i":"jar|1498991262000|4153|2|2|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"7fad43ad2dbcea936842f73b950c9eca4844aca8" + }, + { + "u":"com.github.uosdmlab|spark-nkp_2.11|0.3.0|javadoc|jar", + "m":"1499048187741", + "i":"jar|1498991274000|376609|2|2|1|jar", + "n":"spark-nkp", + "d":"spark-nkp", + "1":"a7066124ee197c113976e49b61d5e47995fca0d4" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.12|0.2.0|NA", + "m":"1499048218859", + "i":"jar|1499000334000|4565|1|1|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"e8404c4da7a998baee790e618cf8956496726c22" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.12|0.2.0|sources|jar", + "m":"1499048218889", + "i":"jar|1499000337000|1372|2|2|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"88d38bde4fcec255c22cf67740265fc8759d3190" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.12|0.2.0|javadoc|jar", + "m":"1499048218911", + "i":"jar|1499000336000|644453|2|2|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"fb41df0fbbed5bafbe11c1220b92146d905278c9" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.11|0.2.0|NA", + "m":"1499048218981", + "i":"jar|1499000290000|5185|1|1|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"7d738f29d68e3975af6a86ff46c123d40d3f0971" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.11|0.2.0|sources|jar", + "m":"1499048219011", + "i":"jar|1499000316000|1372|2|2|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"648dd53dc7894555db3b1ff2b21abdba09494365" + }, + { + "u":"com.github.tototoshi|reverse-router-extension_2.11|0.2.0|javadoc|jar", + "m":"1499048219033", + "i":"jar|1499000301000|358030|2|2|1|jar", + "n":"reverse-router-extension", + "d":"reverse-router-extension", + "1":"c369986f0c4e62438f2c30a56d3da96e6549a09c" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.12|1.2.0|NA", + "m":"1499048222809", + "i":"jar|1499002246000|52579|1|1|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"6dff070f50f2f8a3e7ecc1e644ac7c02f1b03a2e" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.12|1.2.0|sources|jar", + "m":"1499048222839", + "i":"jar|1499002243000|5782|2|2|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"268d64e25439460ed90ceafdc85ff1c1bbc76a4c" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.12|1.2.0|javadoc|jar", + "m":"1499048222867", + "i":"jar|1499002250000|736391|2|2|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"449b609b3a2fda46c90de52e4731ad2258ae0ea6" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.11|1.2.0|NA", + "m":"1499048222936", + "i":"jar|1499002262000|54893|1|1|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"89b25b2dfab6bd3faf8ee1ce5c78f7bc5a709bfa" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.11|1.2.0|sources|jar", + "m":"1499048222968", + "i":"jar|1499002260000|5782|2|2|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"b7dd00dcfceceed7dfd5b5043fb8f67fd2b55a73" + }, + { + "u":"com.github.tototoshi|play-joda-routes-binder_2.11|1.2.0|javadoc|jar", + "m":"1499048222994", + "i":"jar|1499002269000|432813|2|2|1|jar", + "n":"play-joda-routes-binder", + "d":"play-joda-routes-binder", + "1":"81e445a499e8367e940a2b14d092a820f58e7695" + }, + { + "u":"com.github.tomtung|latex2unicode_2.12|0.2.1|NA", + "m":"1499048228097", + "i":"jar|1499019656000|55353|1|1|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"8d545e08beb91470e3bda795cbe80699feaa2faf" + }, + { + "u":"com.github.tomtung|latex2unicode_2.12|0.2.1|sources|jar", + "m":"1499048228127", + "i":"jar|1499019657000|11984|2|2|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"3cb663582e21232daea2c7e619d90ba45c66debd" + }, + { + "u":"com.github.tomtung|latex2unicode_2.12|0.2.1|javadoc|jar", + "m":"1499048228153", + "i":"jar|1499019664000|667422|2|2|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"d8955a37e8daa3e836bb09e9fd2a2c7441933487" + }, + { + "u":"com.github.tomtung|latex2unicode_2.11|0.2.1|NA", + "m":"1499048228246", + "i":"jar|1499019613000|113913|1|1|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"ecb77013ade117f16d5800d4d6d2f732af8821cf" + }, + { + "u":"com.github.tomtung|latex2unicode_2.11|0.2.1|sources|jar", + "m":"1499048228278", + "i":"jar|1499019614000|11984|2|2|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"f63f0203093c1987859f71c90c22ff39b58b7387" + }, + { + "u":"com.github.tomtung|latex2unicode_2.11|0.2.1|javadoc|jar", + "m":"1499048228309", + "i":"jar|1499019617000|380284|2|2|1|jar", + "n":"latex2unicode", + "d":"latex2unicode", + "1":"35bbad46e9cb37b22d1ba84b6e6c73d8c65e5a1d" + }, + { + "u":"com.github.stijndehaes|play-prometheus-filters_2.11|0.2.0|NA", + "m":"1499048340653", + "i":"jar|1498999710000|34048|1|1|1|jar", + "n":"play-prometheus-filters", + "d":"play-prometheus-filters", + "1":"03a73352c733d8ee56a1c7a62c1e2645d7c30fad" + }, + { + "u":"com.github.stijndehaes|play-prometheus-filters_2.11|0.2.0|sources|jar", + "m":"1499048340686", + "i":"jar|1498999709000|6053|2|2|1|jar", + "n":"play-prometheus-filters", + "d":"play-prometheus-filters", + "1":"749c93193dac155e6596cf770bccb6d85fd50364" + }, + { + "u":"com.github.stijndehaes|play-prometheus-filters_2.11|0.2.0|javadoc|jar", + "m":"1499048340712", + "i":"jar|1498999730000|397339|2|2|1|jar", + "n":"play-prometheus-filters", + "d":"play-prometheus-filters", + "1":"95f9fa2eaaf494c4913270af64d7b247ab79cfce" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-sonar-plugin|1.24.1|NA", + "m":"1499048423297", + "i":"sonar-plugin|1499010789000|3993070|1|1|1|jar", + "n":"SevNTU Checkstyle Sonar Extension Plugin", + "d":"SevNTU Checkstyle extension plugin for Sonar", + "1":"9571540fddbe24ea0e9770e453916ebdf0c842cc" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-sonar-plugin|1.24.1|sources|jar", + "m":"1499048423329", + "i":"jar|1499010790000|12882|2|2|1|jar", + "n":"SevNTU Checkstyle Sonar Extension Plugin", + "d":"SevNTU Checkstyle extension plugin for Sonar", + "1":"044d3f7a4de24d791877f19881368eb978564bdb" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-sonar-plugin|1.24.1|javadoc|jar", + "m":"1499048423355", + "i":"jar|1499010789000|29481|2|2|1|jar", + "n":"SevNTU Checkstyle Sonar Extension Plugin", + "d":"SevNTU Checkstyle extension plugin for Sonar", + "1":"f6906b4da4dc1d96d9fdb537588386de1f25a50d" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-maven-plugin|1.24.1|NA", + "m":"1499048423436", + "i":"jar|1499010758000|2924|1|0|1|jar", + "n":"Sevntu Checkstyle Maven Plugin", + "1":"ae54fb7c650203298e0b806dc97b3cdd6788c05e" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-maven-plugin|1.24.1|sources|jar", + "m":"1499048423464", + "i":"jar|1499010757000|764|2|2|1|jar", + "n":"Sevntu Checkstyle Maven Plugin", + "1":"222d9c1618f283b51315a393333461a4e88cb39a" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-idea-extension|1.24.1|NA", + "m":"1499048423536", + "i":"jar|1499010765000|193304|1|1|1|jar", + "n":"Sevntu Checkstyle Idea extension", + "1":"defeab02fc4197910d5a0d6b5b995ec1c5c20841" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-idea-extension|1.24.1|sources|jar", + "m":"1499048423575", + "i":"jar|1499010763000|27396|2|2|1|jar", + "n":"Sevntu Checkstyle Idea extension", + "1":"bec575c41072d7e2e4a596804544c214a04537bf" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checkstyle-idea-extension|1.24.1|javadoc|jar", + "m":"1499048423601", + "i":"jar|1499010766000|22339|2|2|1|jar", + "n":"Sevntu Checkstyle Idea extension", + "1":"7533683fc5f8577a669531e953720789ac8c2a1e" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checks|1.24.1|NA", + "m":"1499048423680", + "i":"jar|1499010748000|169476|1|1|1|jar", + "1":"31778216a037513d3e184e4f1ca70a340436d339" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checks|1.24.1|sources|jar", + "m":"1499048423717", + "i":"jar|1499010751000|179879|2|2|1|jar", + "1":"af8b89da3bd59a64d09c3fc6a5817932ac211b71" + }, + { + "u":"com.github.sevntu-checkstyle|sevntu-checks|1.24.1|javadoc|jar", + "m":"1499048423745", + "i":"jar|1499010753000|403669|2|2|1|jar", + "1":"2bb0df8b20ac5c913b302f878ea6d82ef75a0f65" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.20|NA", + "m":"1499048846865", + "i":"maven-plugin|1499029733000|10598|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"c66fdd91baa322b8ce1d82457931dd9ca20e01cf" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.20|sources|jar", + "m":"1499048846899", + "i":"jar|1499029734000|5055|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"864417782b6e3277788bdb16c359b896085c55ae" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.20|javadoc|jar", + "m":"1499048846927", + "i":"jar|1499029734000|23971|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"82925f7cf5dc389448452a9bedc6a0f56987adc0" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.19|NA", + "m":"1499048846977", + "i":"maven-plugin|1499017439000|10602|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"e6359ae5d7c5ce26acca1e03fbc99461f4a43bb5" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.19|sources|jar", + "m":"1499048847010", + "i":"jar|1499017440000|5057|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"527d367cd36bafb846bbf31c325f35e047f6aeeb" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.19|javadoc|jar", + "m":"1499048847037", + "i":"jar|1499017440000|23965|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"9a3c7ce76367dd9baa67a22a770b66498f7d8791" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.18|NA", + "m":"1499048847091", + "i":"maven-plugin|1498997825000|10097|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"ab85baaae9574464783b1a801626a5850b8cd9cd" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.18|sources|jar", + "m":"1499048847122", + "i":"jar|1498997825000|4983|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"baa6909399ea6da13ea44ad10e9471ec5d3d9f4e" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-maven-plugin|1.0.18|javadoc|jar", + "m":"1499048847151", + "i":"jar|1498997825000|23977|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"810d990732f18a73d95b2ffc9102b51b3004c012" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.20|NA", + "m":"1499048847529", + "i":"jar|1499029651000|8377586|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"3cc11ab8b3d7cbe3577b640c59152815ee8122d2" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.20|sources|jar", + "m":"1499048847636", + "i":"jar|1499029644000|3366|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"e30219a4b559221faa27da388476c05137812e82" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.20|javadoc|jar", + "m":"1499048847658", + "i":"jar|1499029652000|22569|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"bc16bdaa9ee40f682c283692f652806b1e97c8df" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.19|NA", + "m":"1499048847709", + "i":"jar|1499017351000|8377368|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"8bdb588fe1bc94a7161283267af0acc405f4b445" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.19|sources|jar", + "m":"1499048847820", + "i":"jar|1499017351000|3367|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"f0e9377525b9ad6f44fa7e0d11d3fa15eb04128a" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.19|javadoc|jar", + "m":"1499048847842", + "i":"jar|1499017343000|22573|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"966c4d553efbea38aa1102ce0afb6284b053bb1d" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.18|NA", + "m":"1499048847893", + "i":"jar|1498997742000|8373153|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"5d3156db77dd327a98cb2de88bd431b850365691" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.18|sources|jar", + "m":"1499048848008", + "i":"jar|1498997734000|3366|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"4a45d75f5efda8f4977f307b1758bc8fbc910425" + }, + { + "u":"com.github.marc-christian-schulze.structs4java|structs4java-core|1.0.18|javadoc|jar", + "m":"1499048848032", + "i":"jar|1498997735000|22571|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Structs4Java is a code generator based on C/C++ structures.", + "1":"4acbe1bccd26ae7e49202a25234a149f83b1c0b0" + }, + { + "u":"com.github.kuros|random-jpa|0.4.8|NA", + "m":"1499048928452", + "i":"jar|1499020402000|200944|1|1|1|jar", + "n":"${project.artifactId}", + "d":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "1":"1a5e966b031ef4a46f5c9af253d4ad5e7f146dc2" + }, + { + "u":"com.github.kuros|random-jpa|0.4.8|sources|jar", + "m":"1499048928494", + "i":"jar|1499020406000|143964|2|2|1|jar", + "n":"${project.artifactId}", + "d":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "1":"abd2f9076463485bc3134e60c97f158eaa898e19" + }, + { + "u":"com.github.kuros|random-jpa|0.4.8|javadoc|jar", + "m":"1499048928523", + "i":"jar|1499020408000|810397|2|2|1|jar", + "n":"${project.artifactId}", + "d":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "1":"968fb4cd274d8c4ac7b35e66b98a0e5a95433033" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing-data|0.2.77|NA", + "m":"1499049079834", + "i":"jar|1499016432000|7052|1|1|1|jar", + "n":"connect-utils-testing-data", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"be0efbe91c363f05d1c0d0b399a4bfce3bb4f658" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing-data|0.2.77|sources|jar", + "m":"1499049079864", + "i":"jar|1499016430000|6113|2|2|1|jar", + "n":"connect-utils-testing-data", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"f4155f2283fd8da59f07b618110a6a141b42074f" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing-data|0.2.77|javadoc|jar", + "m":"1499049079898", + "i":"jar|1499016429000|30268|2|2|1|jar", + "n":"connect-utils-testing-data", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"87802886c950bbc4239fa59a52237a1612c261a2" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing|0.2.77|NA", + "m":"1499049080366", + "i":"jar|1499016432000|33405|1|1|1|jar", + "n":"connect-utils-testing", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"9216d400042cf0b39ac6a515b24ef744ed4b140e" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing|0.2.77|sources|jar", + "m":"1499049080400", + "i":"jar|1499016432000|19747|2|2|1|jar", + "n":"connect-utils-testing", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"78d15c354188247302b056a85ef0f1800ad2911c" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-testing|0.2.77|javadoc|jar", + "m":"1499049080427", + "i":"jar|1499016431000|52761|2|2|1|jar", + "n":"connect-utils-testing", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"589f1f3550593c2bb8a5865c6ce8fe5325097594" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils-parent|0.2.77|NA", + "m":"1499049081420", + "i":"pom|1499016433000|12147|0|0|1|pom", + "n":"connect-utils-parent", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"a3507c65de8d93eb87e626e2253261941d300a56" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils|0.2.77|NA", + "m":"1499049082327", + "i":"jar|1499016430000|75836|1|1|1|jar", + "n":"connect-utils", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"22cf1cd02b756610ebc1573cc248c3d3e5bdccb6" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils|0.2.77|sources|jar", + "m":"1499049082360", + "i":"jar|1499016430000|51693|2|2|1|jar", + "n":"connect-utils", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"7b010f28aeabbe62eb031d7026945a6351bd2e87" + }, + { + "u":"com.github.jcustenborder.kafka.connect|connect-utils|0.2.77|javadoc|jar", + "m":"1499049082387", + "i":"jar|1499016428000|238576|2|2|1|jar", + "n":"connect-utils", + "d":"A helper library for building Kafka Connect Connectors.", + "1":"9e7d1b2bae9107182b0b497340bfd1508a0c7cc5" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.12|0.4.2|NA", + "m":"1499049259746", + "i":"jar|1499025278000|21171|1|1|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"8aa99a7e7b57b3f1642ede69aa39546dd9e3b200" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.12|0.4.2|sources|jar", + "m":"1499049259776", + "i":"jar|1499025276000|929|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.12|0.4.2|javadoc|jar", + "m":"1499049259798", + "i":"jar|1499025282000|653989|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"46f5d8f0c257a9772bc58569a20f38ae639f4b30" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.11|0.4.2|NA", + "m":"1499049260002", + "i":"jar|1499025254000|21885|1|1|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"71e91e648a4417db4270e0b14826e04a0456e612" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.11|0.4.2|sources|jar", + "m":"1499049260033", + "i":"jar|1499025252000|929|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"1ae27f126eaaf42373c56e453c9e43f963dfa822" + }, + { + "u":"com.github.fomkin|levsha-events_sjs0.6_2.11|0.4.2|javadoc|jar", + "m":"1499049260056", + "i":"jar|1499025258000|366467|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"8c09a1fa60010e9384461efc32882901ad881114" + }, + { + "u":"com.github.fomkin|levsha-events_2.12|0.4.2|NA", + "m":"1499049260271", + "i":"jar|1499025301000|11495|1|1|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"6fe60fd021bb19a2b1f958dddd20655de2165c99" + }, + { + "u":"com.github.fomkin|levsha-events_2.12|0.4.2|sources|jar", + "m":"1499049260301", + "i":"jar|1499025300000|929|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866" + }, + { + "u":"com.github.fomkin|levsha-events_2.12|0.4.2|javadoc|jar", + "m":"1499049260322", + "i":"jar|1499025306000|653989|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"31745f71f01455dad933e584dba494ecfaad4108" + }, + { + "u":"com.github.fomkin|levsha-events_2.11|0.4.2|NA", + "m":"1499049260534", + "i":"jar|1499025224000|12007|1|1|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"c64a8673a706015e5c232d141ad3434ebb5f8042" + }, + { + "u":"com.github.fomkin|levsha-events_2.11|0.4.2|sources|jar", + "m":"1499049260564", + "i":"jar|1499025223000|929|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"1ae27f126eaaf42373c56e453c9e43f963dfa822" + }, + { + "u":"com.github.fomkin|levsha-events_2.11|0.4.2|javadoc|jar", + "m":"1499049260585", + "i":"jar|1499025228000|366467|2|2|1|jar", + "n":"levsha-events", + "d":"levsha-events", + "1":"02eac8095738f7d5e44790b61821070cfce503ed" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.12|0.4.2|NA", + "m":"1499049260793", + "i":"jar|1499025308000|49699|1|1|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"f2995c66cfba1aa059def6ea4259b78196369ad1" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.12|0.4.2|sources|jar", + "m":"1499049260827", + "i":"jar|1499025310000|3617|2|2|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"c65e3647fb0c2fbb15921737f7032e273d58802d" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.12|0.4.2|javadoc|jar", + "m":"1499049260848", + "i":"jar|1499025312000|653745|2|2|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"c556fcc64086dfa38fde82423d8e8936386e4fa4" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.11|0.4.2|NA", + "m":"1499049261062", + "i":"jar|1499025259000|67525|1|1|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"c30e7b4def4e6d33a82e5f8f943e49f80e289bd4" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.11|0.4.2|sources|jar", + "m":"1499049261094", + "i":"jar|1499025261000|3617|2|2|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"a147a75317ff1c0a9364807fa1f26d3ceb99ca29" + }, + { + "u":"com.github.fomkin|levsha-dom_sjs0.6_2.11|0.4.2|javadoc|jar", + "m":"1499049261117", + "i":"jar|1499025266000|367845|2|2|1|jar", + "n":"levsha-dom", + "d":"levsha-dom", + "1":"1b14f4c55dba8946c34965ace8de3c09e05c54d3" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.12|0.4.2|NA", + "m":"1499049261318", + "i":"jar|1499025283000|280417|1|1|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"fbbf863df4aed0a2252ab18448c8ef76ee5ee603" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.12|0.4.2|sources|jar", + "m":"1499049261353", + "i":"jar|1499025290000|13923|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"5dbf02dbbdd1342676172b684aed46ec0fff678d" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.12|0.4.2|javadoc|jar", + "m":"1499049261376", + "i":"jar|1499025289000|779762|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"97a958e69a35228f3981dbb676edcfa37b375a5c" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.11|0.4.2|NA", + "m":"1499049261578", + "i":"jar|1499025244000|299174|1|1|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"f474358aa47e5c17353aadff262e27306e5f8dbd" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.11|0.4.2|sources|jar", + "m":"1499049261613", + "i":"jar|1499025250000|13923|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06" + }, + { + "u":"com.github.fomkin|levsha-core_sjs0.6_2.11|0.4.2|javadoc|jar", + "m":"1499049261636", + "i":"jar|1499025250000|474363|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"c2cac462b02ad93f0fe4946360f7f457d6782e27" + }, + { + "u":"com.github.fomkin|levsha-core_2.12|0.4.2|NA", + "m":"1499049261844", + "i":"jar|1499025292000|147582|1|1|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"e4967735d2981e4bce8f08e17f3afb9722fdd4f2" + }, + { + "u":"com.github.fomkin|levsha-core_2.12|0.4.2|sources|jar", + "m":"1499049261874", + "i":"jar|1499025299000|13923|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"5dbf02dbbdd1342676172b684aed46ec0fff678d" + }, + { + "u":"com.github.fomkin|levsha-core_2.12|0.4.2|javadoc|jar", + "m":"1499049261899", + "i":"jar|1499025298000|779762|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"f30e6a23c776d14e2e9ae85cfead6af29bb99345" + }, + { + "u":"com.github.fomkin|levsha-core_2.11|0.4.2|NA", + "m":"1499049262105", + "i":"jar|1499025232000|161261|1|1|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"82fb96733b476031483b725052f8f88e40a13b2c" + }, + { + "u":"com.github.fomkin|levsha-core_2.11|0.4.2|sources|jar", + "m":"1499049262143", + "i":"jar|1499025242000|13923|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06" + }, + { + "u":"com.github.fomkin|levsha-core_2.11|0.4.2|javadoc|jar", + "m":"1499049262168", + "i":"jar|1499025242000|474363|2|2|1|jar", + "n":"levsha-core", + "d":"levsha-core", + "1":"8354c958b62104773d19afa619027e6b303559e8" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.2|NA", + "m":"1499049263024", + "i":"bundle|1499028141000|137832|1|1|1|jar", + "n":"korolev", + "d":"korolev", + "1":"76c0d2be3891d004cc0ca0c642160157f1b92cae", + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev;version=\"0.4.2\";uses:=\"bridge,korolev.util,levsha,levsha.impl,scala,scala.collection,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util,slogging\",korolev.js;version=\"0.4.2\",korolev.util;version=\"0.4.2\";uses:=\"korolev,scala,scala.collection,scala.concurrent.duration,scala.reflect,scala.runtime\"", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev", + "Import-Package":"bridge,levsha,levsha.impl,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.concurrent;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.concurrent.duration;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.runtime.java8;version=\"[2.12,3)\",scala.sys;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.2|sources|jar", + "m":"1499049263057", + "i":"jar|1499028145000|15408|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"79f5ea89217808bf0d425861b4e44a94c930c567" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.2|javadoc|jar", + "m":"1499049263086", + "i":"jar|1499028145000|780231|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"aa329990454bf8e0383e8f6c545266cf49065b8c" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.1|NA", + "m":"1499049263148", + "i":"bundle|1498999385000|137825|1|1|1|jar", + "n":"korolev", + "d":"korolev", + "1":"da391a34c44b2253f079f0c8386a37b9b908ae64", + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev;version=\"0.4.1\";uses:=\"bridge,korolev.util,levsha,levsha.impl,scala,scala.collection,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util,slogging\",korolev.js;version=\"0.4.1\",korolev.util;version=\"0.4.1\";uses:=\"korolev,scala,scala.collection,scala.concurrent.duration,scala.reflect,scala.runtime\"", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev", + "Import-Package":"bridge,levsha,levsha.impl,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.concurrent;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.concurrent.duration;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.runtime.java8;version=\"[2.12,3)\",scala.sys;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.1|sources|jar", + "m":"1499049263181", + "i":"jar|1498999388000|15410|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"061774504514a81614df20c2f17c8eb3a8aa6157" + }, + { + "u":"com.github.fomkin|korolev_2.12|0.4.1|javadoc|jar", + "m":"1499049263209", + "i":"jar|1498999387000|780231|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"75dcba88debc8e0a9aca83e261e5dc9f99f62e81" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.2|NA", + "m":"1499049263422", + "i":"bundle|1499028028000|213338|1|1|1|jar", + "n":"korolev", + "d":"korolev", + "1":"02cc82b1161199fab701a37af3a3ad14e394360c", + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev;version=\"0.4.2\";uses:=\"bridge,korolev.util,levsha,levsha.impl,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util,slogging\",korolev.js;version=\"0.4.2\",korolev.util;version=\"0.4.2\";uses:=\"korolev,scala,scala.collection,scala.concurrent.duration,scala.reflect,scala.runtime\"", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev", + "Import-Package":"bridge,levsha,levsha.impl,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.concurrent;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.concurrent.duration;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.sys;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.2|sources|jar", + "m":"1499049263456", + "i":"jar|1499028032000|15408|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"17b47d8a0f66f8f10b6c14eb7c5d1385d3fd9932" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.2|javadoc|jar", + "m":"1499049263482", + "i":"jar|1499028031000|477440|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"95043e90c6df06d5a1b2d1d8bc5f8ce24a47f703" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.1|NA", + "m":"1499049263541", + "i":"bundle|1498999254000|213335|1|1|1|jar", + "n":"korolev", + "d":"korolev", + "1":"cf30ff10d4108b642d7cff2dfb44e8fd38241be6", + "Bundle-SymbolicName":"com.github.fomkin.korolev", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev;version=\"0.4.1\";uses:=\"bridge,korolev.util,levsha,levsha.impl,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util,slogging\",korolev.js;version=\"0.4.1\",korolev.util;version=\"0.4.1\";uses:=\"korolev,scala,scala.collection,scala.concurrent.duration,scala.reflect,scala.runtime\"", + "Bundle-Description":"korolev", + "Bundle-Name":"korolev", + "Import-Package":"bridge,levsha,levsha.impl,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.concurrent;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.concurrent.duration;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.sys;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.1|sources|jar", + "m":"1499049263572", + "i":"jar|1498999263000|15410|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"e60563be89d077defa284e0fe464c7c3a48bcb6d" + }, + { + "u":"com.github.fomkin|korolev_2.11|0.4.1|javadoc|jar", + "m":"1499049263599", + "i":"jar|1498999262000|477440|2|2|1|jar", + "n":"korolev", + "d":"korolev", + "1":"c6fe38b64386fc62d95c458cc5626f719f983b93" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.2|NA", + "m":"1499049265078", + "i":"bundle|1499028159000|131280|1|1|1|jar", + "n":"server", + "d":"server", + "1":"cf35abe567acec8680b945e11ab46bd491909888", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev.server;version=\"0.4.2\";uses:=\"bridge,korolev,levsha,levsha.impl,scala,scala.collection,scala.collection.concurrent,scala.collection.immutable,scala.collection.mutable,scala.reflect,scala.runtime,scala.util,slogging\"", + "Bundle-Description":"server", + "Bundle-Name":"server", + "Import-Package":"bridge,korolev,levsha,levsha.impl,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.concurrent;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.io;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.runtime.java8;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.2|sources|jar", + "m":"1499049265110", + "i":"jar|1499028164000|19325|2|2|1|jar", + "n":"server", + "d":"server", + "1":"fede6b0c5d59d86d4ed0c65d266638f3e95bd212" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.2|javadoc|jar", + "m":"1499049265137", + "i":"jar|1499028164000|724541|2|2|1|jar", + "n":"server", + "d":"server", + "1":"a265cdb8dec2cade4822d3af9c0ed49468371fab" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.1|NA", + "m":"1499049265198", + "i":"bundle|1498999413000|131285|1|1|1|jar", + "n":"server", + "d":"server", + "1":"2b11b94e9a002b114cea1f4bd249a55097035d46", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev.server;version=\"0.4.1\";uses:=\"bridge,korolev,levsha,levsha.impl,scala,scala.collection,scala.collection.concurrent,scala.collection.immutable,scala.collection.mutable,scala.reflect,scala.runtime,scala.util,slogging\"", + "Bundle-Description":"server", + "Bundle-Name":"server", + "Import-Package":"bridge,korolev,levsha,levsha.impl,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.concurrent;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.io;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.runtime.java8;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.1|sources|jar", + "m":"1499049265234", + "i":"jar|1498999431000|19325|2|2|1|jar", + "n":"server", + "d":"server", + "1":"eb7f30c356d6510bfe0798d4e66a7fd670c30259" + }, + { + "u":"com.github.fomkin|korolev-server_2.12|0.4.1|javadoc|jar", + "m":"1499049265261", + "i":"jar|1498999424000|724541|2|2|1|jar", + "n":"server", + "d":"server", + "1":"79bb6ba21033e439ed3e72523021d3023d771b94" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.2|NA", + "m":"1499049265501", + "i":"bundle|1499028050000|196379|1|1|1|jar", + "n":"server", + "d":"server", + "1":"9325d871c10d24dd4cfa8d92e6edbeeaead0ce9c", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev.server;version=\"0.4.2\";uses:=\"bridge,korolev,levsha,levsha.impl,scala,scala.collection,scala.collection.concurrent,scala.collection.immutable,scala.collection.mutable,scala.reflect,scala.runtime,scala.util,slogging\"", + "Bundle-Description":"server", + "Bundle-Name":"server", + "Import-Package":"bridge,korolev,levsha,levsha.impl,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.concurrent;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.io;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.2|sources|jar", + "m":"1499049265533", + "i":"jar|1499028053000|19325|2|2|1|jar", + "n":"server", + "d":"server", + "1":"e8b11c14a898c3f628a4b6ac8f591c8b544385bb" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.2|javadoc|jar", + "m":"1499049265560", + "i":"jar|1499028052000|429385|2|2|1|jar", + "n":"server", + "d":"server", + "1":"6e4af56a133a434cc65b2cdd7ff57dabd2a9fb81" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.1|NA", + "m":"1499049265617", + "i":"bundle|1498999288000|196383|1|1|1|jar", + "n":"server", + "d":"server", + "1":"842f67d21c284903faff44797b8f7d65bc650b06", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev.server;version=\"0.4.1\";uses:=\"bridge,korolev,levsha,levsha.impl,scala,scala.collection,scala.collection.concurrent,scala.collection.immutable,scala.collection.mutable,scala.reflect,scala.runtime,scala.util,slogging\"", + "Bundle-Description":"server", + "Bundle-Name":"server", + "Import-Package":"bridge,korolev,levsha,levsha.impl,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.concurrent;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.io;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.1|sources|jar", + "m":"1499049265856", + "i":"jar|1498999292000|19325|2|2|1|jar", + "n":"server", + "d":"server", + "1":"30e003efed74bb6a8ebf65cc087b6bbdf82d300b" + }, + { + "u":"com.github.fomkin|korolev-server_2.11|0.4.1|javadoc|jar", + "m":"1499049265885", + "i":"jar|1498999290000|429385|2|2|1|jar", + "n":"server", + "d":"server", + "1":"eac682b03bd15a685f01bd34bff0805fa98844db" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.2|NA", + "m":"1499049266589", + "i":"bundle|1499028173000|51410|1|1|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"a9345e7ec4fa7eadfe03ee2e95659baa88d8b4f3", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev.blazeServer;version=\"0.4.2\";uses:=\"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.pipeline,org.http4s.websocket,org.slf4j,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze", + "Import-Package":"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.channel.nio2,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.http.websocket,org.http4s.blaze.pipeline,org.http4s.blaze.pipeline.stages,org.http4s.blaze.util,org.http4s.websocket,org.slf4j;version=\"[1.7,2)\",scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.concurrent.duration;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.sys;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",scala.util.control;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.2|sources|jar", + "m":"1499049266619", + "i":"jar|1499028169000|8069|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"d774255a8358708d9bcf3d704093e5024831691f" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.2|javadoc|jar", + "m":"1499049266644", + "i":"jar|1499028171000|666197|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"a77ff8b258108e6acf373031b8d5e2493c4f11c9" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.1|NA", + "m":"1499049266704", + "i":"bundle|1498999410000|51410|1|1|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"ee35cdbe79666699f715c2760699cfb50132d34f", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev.blazeServer;version=\"0.4.1\";uses:=\"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.pipeline,org.http4s.websocket,org.slf4j,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze", + "Import-Package":"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.channel.nio2,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.http.websocket,org.http4s.blaze.pipeline,org.http4s.blaze.pipeline.stages,org.http4s.blaze.util,org.http4s.websocket,org.slf4j;version=\"[1.7,2)\",scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.concurrent.duration;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.sys;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\",scala.util.control;version=\"[2.12,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.1|sources|jar", + "m":"1499049266736", + "i":"jar|1498999398000|8069|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"fd7a6ebae93c8b74c31d2e260cd3da43217284dc" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.12|0.4.1|javadoc|jar", + "m":"1499049266761", + "i":"jar|1498999408000|666197|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"e38147d51e1d0412d84f4618acccb32252ca8936" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.2|NA", + "m":"1499049266970", + "i":"bundle|1499028047000|72902|1|1|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"1342b23502c22936ccbe204d0c2621a2e780648d", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev.blazeServer;version=\"0.4.2\";uses:=\"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.pipeline,org.http4s.websocket,org.slf4j,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze", + "Import-Package":"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.channel.nio2,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.http.websocket,org.http4s.blaze.pipeline,org.http4s.blaze.pipeline.stages,org.http4s.blaze.util,org.http4s.websocket,org.slf4j;version=\"[1.7,2)\",scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.concurrent.duration;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.sys;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",scala.util.control;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.2|sources|jar", + "m":"1499049267000", + "i":"jar|1499028044000|8069|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"8373216ea395c27b68d3e7ffa2b3d50d0a979f04" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.2|javadoc|jar", + "m":"1499049267026", + "i":"jar|1499028045000|379510|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"a6b3e904a32abab73253a3d053d8d7dc0ed26cc0" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.1|NA", + "m":"1499049267085", + "i":"bundle|1498999284000|72903|1|1|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"9edf80b76718966df9b40141ce82416eaa71c7a5", + "Bundle-SymbolicName":"com.github.fomkin.korolev.server.blaze", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev.blazeServer;version=\"0.4.1\";uses:=\"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.pipeline,org.http4s.websocket,org.slf4j,scala,scala.collection,scala.collection.immutable,scala.collection.mutable,scala.concurrent,scala.concurrent.duration,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"server-blaze", + "Bundle-Name":"server-blaze", + "Import-Package":"javax.net.ssl,korolev,korolev.server,korolev.util,org.http4s.blaze.channel,org.http4s.blaze.channel.nio2,org.http4s.blaze.http,org.http4s.blaze.http.http_parser,org.http4s.blaze.http.websocket,org.http4s.blaze.pipeline,org.http4s.blaze.pipeline.stages,org.http4s.blaze.util,org.http4s.websocket,org.slf4j;version=\"[1.7,2)\",scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.concurrent.duration;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.sys;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\",scala.util.control;version=\"[2.11,3)\",slogging" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.1|sources|jar", + "m":"1499049267117", + "i":"jar|1498999281000|8069|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"2cd737060e0ba9fa0801d901b3f6f5ccbfa602b1" + }, + { + "u":"com.github.fomkin|korolev-server-blaze_2.11|0.4.1|javadoc|jar", + "m":"1499049267141", + "i":"jar|1498999282000|379510|2|2|1|jar", + "n":"server-blaze", + "d":"server-blaze", + "1":"d5767da9a007aaf91b2bf778a089b34d1387563c" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.2|NA", + "m":"1499049267346", + "i":"bundle|1499028173000|443|1|1|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"2ed5a5892d53d1b0de67297f9dafd3f786b8183d", + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.2", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.2|sources|jar", + "m":"1499049267373", + "i":"jar|1499028179000|1742|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"cccdd6d533bfd5a97e62a88e51893c55e6767b4c" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.2|javadoc|jar", + "m":"1499049267395", + "i":"jar|1499028176000|644798|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"5f191287e80762288ffe5d041db110208493f4f1" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.1|NA", + "m":"1499049267455", + "i":"bundle|1498999444000|444|1|1|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"942b149c751b2cbab9fbc43cd0ba704e9a5f7486", + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.1", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.1|sources|jar", + "m":"1499049267481", + "i":"jar|1498999468000|1742|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"81543b8f952c5acdf415e6f9151a7c82c8d252c9" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.12|0.4.1|javadoc|jar", + "m":"1499049267505", + "i":"jar|1498999457000|644798|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"9013c083aa291ee767997a60028ce80952d123be" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.2|NA", + "m":"1499049267646", + "i":"bundle|1499028034000|444|1|1|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"26de758f91ee0539569da74cf92e3f668bd5ed15", + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.2", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.2|sources|jar", + "m":"1499049267672", + "i":"jar|1499028040000|1742|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"e88e98a9f73c17f0251e486241e45b0a04ef8b60" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.2|javadoc|jar", + "m":"1499049267694", + "i":"jar|1499028037000|360843|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"168843d5a6ca20e755af97a1c5390ab59e47d6aa" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.1|NA", + "m":"1499049267744", + "i":"bundle|1498999271000|445|1|1|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"f42c53b6c08798141300d51baaf066c0424c1537", + "Bundle-SymbolicName":"com.github.fomkin.korolev.jcache.support", + "Bundle-Version":"0.4.1", + "Bundle-Description":"jcache-support", + "Bundle-Name":"jcache-support" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.1|sources|jar", + "m":"1499049267770", + "i":"jar|1498999278000|1742|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"e7c4499577701d6ec915de69d6873c175c0abc73" + }, + { + "u":"com.github.fomkin|korolev-jcache-support_2.11|0.4.1|javadoc|jar", + "m":"1499049267794", + "i":"jar|1498999274000|360843|2|2|1|jar", + "n":"jcache-support", + "d":"jcache-support", + "1":"a0b4f6eeff5f3f650141d0ca0251f26d58114eb1" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.2|NA", + "m":"1499049268973", + "i":"bundle|1499028129000|28968|1|1|1|jar", + "n":"bridge", + "d":"bridge", + "1":"4dc61446f324000fc1f80b3cb177b23f0d24dbc6", + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.2", + "Export-Package":"bridge;version=\"0.4.2\";uses:=\"korolev,scala,scala.collection,scala.collection.mutable,scala.reflect,scala.runtime\",bridge.js;version=\"0.4.2\"", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge", + "Import-Package":"korolev,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\"" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.2|sources|jar", + "m":"1499049269005", + "i":"jar|1499028134000|7263|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"3d8e14032b936109183314c6eee245713040d330" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.2|javadoc|jar", + "m":"1499049269030", + "i":"jar|1499028133000|683360|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"b3fd14adf5acbb8d4009f05e67d82ecb83cd1aa1" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.1|NA", + "m":"1499049269093", + "i":"bundle|1498999374000|28969|1|1|1|jar", + "n":"bridge", + "d":"bridge", + "1":"e42dd1d4557e84e5a1e2a5578c2f0453c6079697", + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.1", + "Export-Package":"bridge;version=\"0.4.1\";uses:=\"korolev,scala,scala.collection,scala.collection.mutable,scala.reflect,scala.runtime\",bridge.js;version=\"0.4.1\"", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge", + "Import-Package":"korolev,scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.immutable;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\"" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.1|sources|jar", + "m":"1499049269122", + "i":"jar|1498999378000|7263|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"3844e4173091473f1bd5900a4e2a88564be7a758" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.12|0.4.1|javadoc|jar", + "m":"1499049269148", + "i":"jar|1498999378000|683360|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"82540dad7ced39a376c5c9c43ec36fa8240283a3" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.2|NA", + "m":"1499049269369", + "i":"bundle|1499028017000|29674|1|1|1|jar", + "n":"bridge", + "d":"bridge", + "1":"a258484cf0a71d7e0cf703cab2531f31dbe15138", + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.2", + "Export-Package":"bridge;version=\"0.4.2\";uses:=\"korolev,scala,scala.collection,scala.collection.mutable,scala.reflect,scala.runtime\",bridge.js;version=\"0.4.2\"", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge", + "Import-Package":"korolev,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\"" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.2|sources|jar", + "m":"1499049269398", + "i":"jar|1499028021000|7263|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"76f22a1020e13cf1014910c0b3e36c1eeb1495cf" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.2|javadoc|jar", + "m":"1499049269425", + "i":"jar|1499028021000|394467|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"ba35320d1763fbd9c76c381d79f64b28ba2aa279" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.1|NA", + "m":"1499049269479", + "i":"bundle|1498999265000|29675|1|1|1|jar", + "n":"bridge", + "d":"bridge", + "1":"55f14fb6b3b77408a5caa42d657b0ff378eee4f3", + "Bundle-SymbolicName":"com.github.fomkin.korolev.bridge", + "Bundle-Version":"0.4.1", + "Export-Package":"bridge;version=\"0.4.1\";uses:=\"korolev,scala,scala.collection,scala.collection.mutable,scala.reflect,scala.runtime\",bridge.js;version=\"0.4.1\"", + "Bundle-Description":"bridge", + "Bundle-Name":"bridge", + "Import-Package":"korolev,scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.immutable;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\"" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.1|sources|jar", + "m":"1499049269508", + "i":"jar|1498999268000|7263|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"b70e3e31cfb539675f44f02c62cb7dd7266bb35d" + }, + { + "u":"com.github.fomkin|korolev-bridge_2.11|0.4.1|javadoc|jar", + "m":"1499049269533", + "i":"jar|1498999268000|394467|2|2|1|jar", + "n":"bridge", + "d":"bridge", + "1":"cc65226fa949e64f098f3d74c282e31a64947949" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.2|NA", + "m":"1499049270206", + "i":"bundle|1499028123000|16879|1|1|1|jar", + "n":"async", + "d":"async", + "1":"f44f210ae562c8cf52305355279b2695fbd34a68", + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev;version=\"0.4.2\";uses:=\"scala,scala.collection,scala.concurrent,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"async", + "Bundle-Name":"async", + "Import-Package":"scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\"" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.2|sources|jar", + "m":"1499049270235", + "i":"jar|1499028124000|1576|2|2|1|jar", + "n":"async", + "d":"async", + "1":"77739e60f995899ff7a06b10f37a85a8c6847b35" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.2|javadoc|jar", + "m":"1499049270257", + "i":"jar|1499028126000|652879|2|2|1|jar", + "n":"async", + "d":"async", + "1":"e069d1e72bc5c6eb37923caafa4c52e6710e2de8" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.1|NA", + "m":"1499049270313", + "i":"bundle|1498999364000|16879|1|1|1|jar", + "n":"async", + "d":"async", + "1":"cfadba70f46142e328d769e37efe2b5ce47a6b7c", + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev;version=\"0.4.1\";uses:=\"scala,scala.collection,scala.concurrent,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"async", + "Bundle-Name":"async", + "Import-Package":"scala;version=\"[2.12,3)\",scala.collection;version=\"[2.12,3)\",scala.collection.generic;version=\"[2.12,3)\",scala.collection.mutable;version=\"[2.12,3)\",scala.concurrent;version=\"[2.12,3)\",scala.reflect;version=\"[2.12,3)\",scala.runtime;version=\"[2.12,3)\",scala.util;version=\"[2.12,3)\"" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.1|sources|jar", + "m":"1499049270345", + "i":"jar|1498999366000|1576|2|2|1|jar", + "n":"async", + "d":"async", + "1":"5355c4c8a106b7dc9a0eb0c19a1e8599b19fba3b" + }, + { + "u":"com.github.fomkin|korolev-async_2.12|0.4.1|javadoc|jar", + "m":"1499049270367", + "i":"jar|1498999372000|652879|2|2|1|jar", + "n":"async", + "d":"async", + "1":"a6e1cc6a4903c9a6f1a96456c28e9d49ddb9572a" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.2|NA", + "m":"1499049270787", + "i":"bundle|1499028002000|17652|1|1|1|jar", + "n":"async", + "d":"async", + "1":"75c2d00546e48a896daefd295d05533fd92de425", + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.2", + "Export-Package":"korolev;version=\"0.4.2\";uses:=\"scala,scala.collection,scala.concurrent,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"async", + "Bundle-Name":"async", + "Import-Package":"scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\"" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.2|sources|jar", + "m":"1499049270820", + "i":"jar|1499028003000|1576|2|2|1|jar", + "n":"async", + "d":"async", + "1":"a114946226e509a40b9a32ccc1cc43e32f9c7e54" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.2|javadoc|jar", + "m":"1499049270849", + "i":"jar|1499028005000|367599|2|2|1|jar", + "n":"async", + "d":"async", + "1":"343c4c322a8153265257552d74360e0f649ca49f" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.1|NA", + "m":"1499049270909", + "i":"bundle|1498999203000|17653|1|1|1|jar", + "n":"async", + "d":"async", + "1":"f5ed73bd121926b665a906e0c12c2576006d794c", + "Bundle-SymbolicName":"com.github.fomkin.korolev.async", + "Bundle-Version":"0.4.1", + "Export-Package":"korolev;version=\"0.4.1\";uses:=\"scala,scala.collection,scala.concurrent,scala.reflect,scala.runtime,scala.util\"", + "Bundle-Description":"async", + "Bundle-Name":"async", + "Import-Package":"scala;version=\"[2.11,3)\",scala.collection;version=\"[2.11,3)\",scala.collection.generic;version=\"[2.11,3)\",scala.collection.mutable;version=\"[2.11,3)\",scala.concurrent;version=\"[2.11,3)\",scala.reflect;version=\"[2.11,3)\",scala.runtime;version=\"[2.11,3)\",scala.util;version=\"[2.11,3)\"" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.1|sources|jar", + "m":"1499049270939", + "i":"jar|1498999205000|1576|2|2|1|jar", + "n":"async", + "d":"async", + "1":"4709bce9ce75f8e1049c1c79d2b914fa3d34f776" + }, + { + "u":"com.github.fomkin|korolev-async_2.11|0.4.1|javadoc|jar", + "m":"1499049270964", + "i":"jar|1498999219000|367599|2|2|1|jar", + "n":"async", + "d":"async", + "1":"1f5d43be748a797fdc027a02fa2cb7c49144fc7a" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.7|NA", + "m":"1499049348637", + "i":"aar|1499018409000|182183|1|1|1|aar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"4b8cd4f63b9a7e1f5e33c3dd6da5d568817d5781" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.7|sources|jar", + "m":"1499049348655", + "i":"jar|1499018416000|94001|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"2d2be8cb45354329b2d4ffa542cca9fbc5d204e5" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.7|javadoc|jar", + "m":"1499049348683", + "i":"jar|1499018424000|371734|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"6fc32e68c3b2b06e40ce7ae600979f08bda4acd9" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.6|NA", + "m":"1499049348734", + "i":"aar|1499016592000|181642|1|1|1|aar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"295f8754aeb2871644f95218fd12a22b119dbf2d" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.6|sources|jar", + "m":"1499049348754", + "i":"jar|1499016599000|93745|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"cd2c29b4763d1189cd64c840953a327851a44c2d" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.6|javadoc|jar", + "m":"1499049348784", + "i":"jar|1499016607000|371669|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"f855a0f088ba4840a1a8206ad8b60a201e0904c1" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.5|NA", + "m":"1499049348838", + "i":"aar|1499006308000|162541|1|1|1|aar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"54a4b6ab92c6ded7ac026e8848488c868326cc4a" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.5|sources|jar", + "m":"1499049348857", + "i":"jar|1499006312000|94220|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"cd836239d8006f613f9dd827bedcc8c39be97c42" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.5|javadoc|jar", + "m":"1499049348883", + "i":"jar|1499006319000|366258|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"b396ad38129b9f8c76f97d7ffd849bbe96733396" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.4|NA", + "m":"1499049348936", + "i":"aar|1499002407000|179798|1|1|1|aar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"b1efb7bb2be48a45bbe764f1e1e32e864ff44503" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.4|sources|jar", + "m":"1499049348954", + "i":"jar|1499002422000|94045|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"784a06cd225dc017cd470f42e1e41c52cb5f668d" + }, + { + "u":"com.github.dozzatq|phoenix|1.4.4|javadoc|jar", + "m":"1499049348980", + "i":"jar|1499002418000|366016|2|2|1|jar", + "n":"Phoenix", + "d":"Phoenix Library For Simplifying my life", + "1":"699c80e6ead2f307be553009046208018798cbca" + }, + { + "u":"com.github.dannil|scb-java-client|0.4.0|NA", + "m":"1499049434014", + "i":"jar|1498999258000|261248|1|1|1|jar", + "n":"scb-java-client", + "d":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "1":"cf8cd658e0e63236d006b6427c0f916c77f1e182" + }, + { + "u":"com.github.dannil|scb-java-client|0.4.0|sources|jar", + "m":"1499049434052", + "i":"jar|1498999263000|339581|2|2|1|jar", + "n":"scb-java-client", + "d":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "1":"9b21295813bd947a0931a50b27e0ffa0fbc4506d" + }, + { + "u":"com.github.dannil|scb-java-client|0.4.0|javadoc|jar", + "m":"1499049434083", + "i":"jar|1498999264000|2111643|2|2|1|jar", + "n":"scb-java-client", + "d":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "1":"5a62bdfb0a4ee756e5bd8763a3b009fe9807a569" + }, + { + "u":"com.github.bjoernpetersen|musicbot-mp3Playback|0.5.0|NA", + "m":"1499049578343", + "i":"jar|1498992864000|4569|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"TODO", + "1":"7eb6a68ee07a8b3f6db326b83e42358df29549bf" + }, + { + "u":"com.github.bjoernpetersen|musicbot-mp3Playback|0.5.0|sources|jar", + "m":"1499049578373", + "i":"jar|1498992862000|4561|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"TODO", + "1":"6ac059907e786152d83849b19de3042c5182d58b" + }, + { + "u":"com.github.bjoernpetersen|musicbot-mp3Playback|0.5.0|javadoc|jar", + "m":"1499049578397", + "i":"jar|1498992863000|24061|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"TODO", + "1":"0154a0ca21d38fd4eb9c3594079bac17ff13f214" + }, + { + "u":"com.github.bjoernpetersen|musicbot|0.6.0|NA", + "m":"1499049578605", + "i":"jar|1498990789000|94809|1|1|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Core library of JMusicBot, which plays music from various providers.", + "1":"b459c0398f87625c2474a1004a01ffc22bb75898" + }, + { + "u":"com.github.bjoernpetersen|musicbot|0.6.0|sources|jar", + "m":"1499049578638", + "i":"jar|1498990790000|46155|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Core library of JMusicBot, which plays music from various providers.", + "1":"dd8531228a3946282c25e460724db310991781b9" + }, + { + "u":"com.github.bjoernpetersen|musicbot|0.6.0|javadoc|jar", + "m":"1499049578668", + "i":"jar|1498990787000|345380|2|2|1|jar", + "n":"${project.groupId}:${project.artifactId}", + "d":"Core library of JMusicBot, which plays music from various providers.", + "1":"36f22a037980a3a56a044f249d994230f9b6ae76" + }, + { + "u":"com.github.axet|zip4j|1.3.2-2|NA", + "m":"1499049612819", + "i":"jar|1499036431000|140519|1|1|1|jar", + "n":"zip4j", + "d":"zip4j library", + "1":"e964123e4a8dc9da33f7241b9b14c6500636e5ec" + }, + { + "u":"com.github.axet|zip4j|1.3.2-2|sources|jar", + "m":"1499049612852", + "i":"jar|1499036436000|106470|2|2|1|jar", + "n":"zip4j", + "d":"zip4j library", + "1":"65e1d212f7d92f2f8ef5839667d1dd4ac83375ca" + }, + { + "u":"com.github.axet|zip4j|1.3.2-2|javadoc|jar", + "m":"1499049612882", + "i":"jar|1499036437000|389786|2|2|1|jar", + "n":"zip4j", + "d":"zip4j library", + "1":"6f444c1404278722e4674dcef588ac807b2c573d" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.53|NA", + "m":"1499049616710", + "i":"maven-plugin|1499025496000|297334|1|1|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "1":"02e0be3264e8e750cbbffff2a764bb276a019a87" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.53|sources|jar", + "m":"1499049616749", + "i":"jar|1499025500000|211398|2|2|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "1":"2364391bb37ef433a21e8cd099361eb827626c24" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.53|javadoc|jar", + "m":"1499049616781", + "i":"jar|1499025501000|589035|2|2|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "1":"8473ef5f244b6e60470d139b7b7e43353cdfe152" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.51|NA", + "m":"1499049616841", + "i":"maven-plugin|1499023330000|254004|1|1|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "1":"5e82a8ba62deef96ba4a80d8c9c96fd6a312f5ca" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.51|sources|jar", + "m":"1499049616878", + "i":"jar|1499023334000|182973|2|2|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "1":"28fbbfe0da5f476a0cda39ae8b27f3ac460b26be" + }, + { + "u":"com.github.axet|versions-maven-plugin|0.0.51|javadoc|jar", + "m":"1499049616909", + "i":"jar|1499023337000|525771|2|2|1|jar", + "n":"Versions Maven Plugin", + "d":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "1":"494a18f1e025d4613b2fe8ec5ce0255c6cf6c88d" + }, + { + "u":"com.github.axet|java-unrar|1.7.0-3|NA", + "m":"1499049621010", + "i":"jar|1499036384000|137832|1|1|1|jar", + "n":"Java UnRar", + "d":"java unrar library", + "1":"8a94836272bed887791df2b103748757b9e289a7" + }, + { + "u":"com.github.axet|java-unrar|1.7.0-3|sources|jar", + "m":"1499049621043", + "i":"jar|1499036387000|111685|2|2|1|jar", + "n":"Java UnRar", + "d":"java unrar library", + "1":"9a4fed602d63452d2a896cb9233630e0ebad6862" + }, + { + "u":"com.github.axet|java-unrar|1.7.0-3|javadoc|jar", + "m":"1499049621071", + "i":"jar|1499036388000|521709|2|2|1|jar", + "n":"Java UnRar", + "d":"java unrar library", + "1":"1a24faeac875d3b758723c2298c1eb3db0f2b324" + }, + { + "u":"com.github.axet|android-library|1.14.12|NA", + "m":"1499049623706", + "i":"aar|1499015119000|246294|1|1|1|aar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"990fbb50014f3306c3f131483476c68c7a8acced" + }, + { + "u":"com.github.axet|android-library|1.14.12|sources|jar", + "m":"1499049623727", + "i":"jar|1499015123000|96763|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"a803b44168a5428b1298523e1184cb809e6015ae" + }, + { + "u":"com.github.axet|android-library|1.14.12|javadoc|jar", + "m":"1499049623758", + "i":"jar|1499015128000|335264|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"d19e30cfa7f3b334b394072e71513bce8ea1730e" + }, + { + "u":"com.github.axet|android-library|1.14.11|NA", + "m":"1499049623809", + "i":"aar|1499014611000|246253|1|1|1|aar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"1c754425fef94da099f458c64357d91c5faa5255" + }, + { + "u":"com.github.axet|android-library|1.14.11|sources|jar", + "m":"1499049623827", + "i":"jar|1499014621000|96778|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"f906f9ef776f7162bf58929a416cd7f2c8630794" + }, + { + "u":"com.github.axet|android-library|1.14.11|javadoc|jar", + "m":"1499049623856", + "i":"jar|1499014617000|335439|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"39d51f315b4732c2e9bc5d85911b091b08dfe4fe" + }, + { + "u":"com.github.axet|android-audio-library|1.0.12|NA", + "m":"1499049626919", + "i":"aar|1499015322000|169425|1|1|1|aar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"a0bfc86dd6d60714a6f3d45d80ea6f488947b86c" + }, + { + "u":"com.github.axet|android-audio-library|1.0.12|sources|jar", + "m":"1499049626939", + "i":"jar|1499015331000|39048|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"019707898d84b680acd716dd6e30c74c5d052a2e" + }, + { + "u":"com.github.axet|android-audio-library|1.0.12|javadoc|jar", + "m":"1499049626967", + "i":"jar|1499015326000|164099|2|2|1|jar", + "n":"Android Library", + "d":"Android Simple Widgets and Support classes.", + "1":"b73da07ff633a6d0bf37d0737a9ee4c1694a4016" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|NA", + "m":"1499050023941", + "i":"jar|1498996119000|4672549|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"b8c60d8f7f44360c12adf757c231f49e7e8e9b97" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|tests|jar", + "m":"1499050023962", + "i":"jar|1498996111000|80310|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"389e6a1f4da533612c379a78a5d1cc01bccd9b12" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|sources|jar", + "m":"1499050023994", + "i":"jar|1498996202000|126537|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"934f90070dc7ab44184870795494697a3ea97af3" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|sgadmin-standalone|zip", + "m":"1499050024026", + "i":"zip|1498996158000|23902630|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"fd36f2a5103b5157922b7a861f0b3b7e594fe34a" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|sgadmin-standalone|tar.gz", + "m":"1499050024039", + "i":"tar.gz|1498996198000|23898629|2|2|1|tar.gz", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"76f0005bc94641c3b469f366ee7d596f81234cf5" + }, + { + "u":"com.floragunn|search-guard-5|5.4.3-14|javadoc|jar", + "m":"1499050024052", + "i":"jar|1498996200000|433075|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"fad84ddbba90102bcb469e8b84029538d965063b" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|NA", + "m":"1499050024106", + "i":"jar|1498943759000|4672537|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"49709f9c575259de6e021ddbdfdb20a5c84a30ff" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|tests|jar", + "m":"1499050024125", + "i":"jar|1498943740000|80310|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"823c657a32534968c1682acefd67ccd09d630d31" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|sources|jar", + "m":"1499050024154", + "i":"jar|1498943858000|126537|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"c6d93a6de0bc0aff6d03be54ee0e83f87bde09c2" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|sgadmin-standalone|zip", + "m":"1499050024183", + "i":"zip|1498943807000|23901626|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"bfea1ce938a29bdd1d44b500c9d09e8dddd6bb49" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|sgadmin-standalone|tar.gz", + "m":"1499050024196", + "i":"tar.gz|1498943854000|23897632|2|2|1|tar.gz", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"91b9cd351a45b834ddf920f8fbb82d00e8a513c3" + }, + { + "u":"com.floragunn|search-guard-5|5.4.2-14|javadoc|jar", + "m":"1499050024210", + "i":"jar|1498943857000|432845|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"b7aef6045efa66c674222d16ca0adaa3be6e6d8e" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|NA", + "m":"1499050024319", + "i":"jar|1498941850000|4674082|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"59ae893c3c2403a4d9c81ee0fbdd0510e7476ac7" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|tests|jar", + "m":"1499050024338", + "i":"jar|1498941838000|80306|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"411b82db0b4661d075ce28e268a399593e196778" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|sources|jar", + "m":"1499050024364", + "i":"jar|1498941945000|126535|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"7893da1a472ae51553c0400490d2c7c96b797bee" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|sgadmin-standalone|zip", + "m":"1499050024392", + "i":"zip|1498941896000|23896342|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"4ed1adfc6121fced910f1c3d264772dc908fc8d1" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|sgadmin-standalone|tar.gz", + "m":"1499050024405", + "i":"tar.gz|1498941942000|23894120|2|2|1|tar.gz", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"f184f23a63cd662251ff2522d22972b7f7dfbcb7" + }, + { + "u":"com.floragunn|search-guard-5|5.4.1-14|javadoc|jar", + "m":"1499050024420", + "i":"jar|1498941944000|432855|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"bc770636123f365b167e6e3534e6cf0bc9020c94" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|NA", + "m":"1499050024835", + "i":"jar|1498940896000|4647552|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"e198347e134f8f80b1e420c0729c9da2f95b60a6" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|tests|jar", + "m":"1499050024853", + "i":"jar|1498940888000|80276|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"e7532073fbb335ea2aa48b3a9e2b895c35d055b8" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|sources|jar", + "m":"1499050024880", + "i":"jar|1498940983000|126512|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"3f822f0ff12628cf7130fc4e8b861cb4c2c8f661" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|sgadmin-standalone|zip", + "m":"1499050024911", + "i":"zip|1498940936000|24048735|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"7d41f4ce3cb546fb2a76312ff079dcd78c0161df" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|sgadmin-standalone|tar.gz", + "m":"1499050024925", + "i":"tar.gz|1498940980000|24045741|2|2|1|tar.gz", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"2b66f8d52d8242a0c21b8265f3193705d73a4fbb" + }, + { + "u":"com.floragunn|search-guard-5|5.4.0-14|javadoc|jar", + "m":"1499050024937", + "i":"jar|1498940982000|432747|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"0c80044df333f2d8c395c1512dbfedb508f93c7a" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|NA", + "m":"1499050025043", + "i":"jar|1498942803000|4762737|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"7d1836107e75316c3b533a636007ca212b3b1802" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|tests|jar", + "m":"1499050025063", + "i":"jar|1498942793000|80282|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"c371769669e28aa117a80fd7f3bdbc2148840348" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|sources|jar", + "m":"1499050025090", + "i":"jar|1498942891000|126095|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"e2fd602a911f1868179125175311c010dbd7e9ef" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|sgadmin-standalone|zip", + "m":"1499050025117", + "i":"zip|1498942845000|24391832|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"3ef75b4342955a11444b80dc99c21120f9a9ebcb" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|sgadmin-standalone|tar.gz", + "m":"1499050025131", + "i":"tar.gz|1498942888000|24387311|2|2|1|tar.gz", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"c4025d0965c0d3038b26210dac6753d6925e7abb" + }, + { + "u":"com.floragunn|search-guard-5|5.3.3-14|javadoc|jar", + "m":"1499050025145", + "i":"jar|1498942890000|432597|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 5", + "1":"1fe234c9de64e7a571f7176dae9213bb8256a331" + }, + { + "u":"com.floragunn|search-guard-2|2.4.5.14|NA", + "m":"1499050026214", + "i":"jar|1498939711000|174913|1|1|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 2", + "1":"239f0e6a8e8353a933d552ce2ef3bf00957bdb34" + }, + { + "u":"com.floragunn|search-guard-2|2.4.5.14|tests|jar", + "m":"1499050026233", + "i":"jar|1498939709000|93737|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 2", + "1":"3e4d67be8778ce25093679f5012c42ec3328d17d" + }, + { + "u":"com.floragunn|search-guard-2|2.4.5.14|sources|jar", + "m":"1499050026266", + "i":"jar|1498939708000|117201|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 2", + "1":"e03691792ba7b6f8a9c09ec6af2a9d507712220c" + }, + { + "u":"com.floragunn|search-guard-2|2.4.5.14|sgadmin-standalone|zip", + "m":"1499050026295", + "i":"zip|1498939751000|24133822|2|2|1|zip", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 2", + "1":"93e9841cdc1799ba86c1575ed3f7fa4b3e6d5255" + }, + { + "u":"com.floragunn|search-guard-2|2.4.5.14|javadoc|jar", + "m":"1499050026308", + "i":"jar|1498939753000|439327|2|2|1|jar", + "n":"Search Guard", + "d":"Provide access control related features for Elasticsearch 2", + "1":"c2f2547bc1acf62a0afd00a2c144691c6c955bbe" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.4-3|NA", + "m":"1499050028890", + "i":"jar|1498945468000|28951|1|1|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"0b2f55a8a04eadd5334f2bd35ba3d81787255c46" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.4-3|tests|jar", + "m":"1499050028919", + "i":"jar|1498945478000|4372|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"d59d94f763714b6fdd6265f3167f46e907aad471" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.4-3|sources|jar", + "m":"1499050028948", + "i":"jar|1498945486000|9958|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"d2bb1226740e1fc95f7298395477e11b1350be73" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.4-3|javadoc|jar", + "m":"1499050028974", + "i":"jar|1498945492000|25298|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"d7db19a4d432c058f201fdebdea54eee55756e56" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.4-3|jar-with-dependencies|jar", + "m":"1499050029000", + "i":"jar|1498945498000|28644|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"510a212343e50fd04a206931a39120b716e503a2" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.3-3|NA", + "m":"1499050029090", + "i":"jar|1498945423000|28952|1|1|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"28a8c2710ca7628ed9ec8fcc18548156a8bea5ef" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.3-3|tests|jar", + "m":"1499050029124", + "i":"jar|1498945424000|4369|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"97e912a8b0d8fc3a59ef99c30bcafc4147cd4359" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.3-3|sources|jar", + "m":"1499050029151", + "i":"jar|1498945425000|9958|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"324e61ffe0d067bda25b78f8452edc2e8681db71" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.3-3|javadoc|jar", + "m":"1499050029179", + "i":"jar|1498945426000|25283|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"edb811b87f72057177240d3df0bf9855c67a3650" + }, + { + "u":"com.floragunn|dlic-search-guard-module-kibana-multitenancy|5.3-3|jar-with-dependencies|jar", + "m":"1499050029204", + "i":"jar|1498945426000|28646|2|2|1|jar", + "n":"Search Guard", + "d":"Provide multitenancy and other features for kibana", + "1":"3a6787cf29158a5821a374501518825142cdcf7c" + }, + { + "u":"com.floragunn|dlic-search-guard-auth-http-jwt|5.0-5|NA", + "m":"1499050031086", + "i":"jar|1498945246000|10762|1|1|1|jar", + "n":"Search Guard", + "d":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "1":"24f06a0fedfcf6cb476c1f8d47d636ad1931fae4" + }, + { + "u":"com.floragunn|dlic-search-guard-auth-http-jwt|5.0-5|tests|jar", + "m":"1499050031119", + "i":"jar|1498945250000|12806|2|2|1|jar", + "n":"Search Guard", + "d":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "1":"9fe7b69613758779d4dcf4fdf4bf6f4ddc8a3ed6" + }, + { + "u":"com.floragunn|dlic-search-guard-auth-http-jwt|5.0-5|sources|jar", + "m":"1499050031144", + "i":"jar|1498945252000|4165|2|2|1|jar", + "n":"Search Guard", + "d":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "1":"15282f34bf340ea9dbf9aef2da69782ed840a689" + }, + { + "u":"com.floragunn|dlic-search-guard-auth-http-jwt|5.0-5|javadoc|jar", + "m":"1499050031172", + "i":"jar|1498945257000|25139|2|2|1|jar", + "n":"Search Guard", + "d":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "1":"463ddbc2edeb5cc10af471d26e5c1a0451cadc08" + }, + { + "u":"com.floragunn|dlic-search-guard-auth-http-jwt|5.0-5|jar-with-dependencies|jar", + "m":"1499050031197", + "i":"jar|1498945261000|1391369|2|2|1|jar", + "n":"Search Guard", + "d":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "1":"c2e6743ae21c3b15158f4dc161e85cfe25db529b" + }, + { + "u":"com.defano.jmonet|jmonet|0.0.5|NA", + "m":"1499050722660", + "i":"jar|1499023249000|85830|1|1|1|jar", + "n":"JMonet", + "d":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "1":"e8365535ac24f57e414c969c08d1fe1cba33ab4d" + }, + { + "u":"com.defano.jmonet|jmonet|0.0.5|sources|jar", + "m":"1499050722696", + "i":"jar|1499023250000|56247|2|2|1|jar", + "n":"JMonet", + "d":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "1":"de3054d25e5bfd4612a0ea4596b2ce2dc71bd025" + }, + { + "u":"com.defano.jmonet|jmonet|0.0.5|javadoc|jar", + "m":"1499050722731", + "i":"jar|1499023249000|463000|2|2|1|jar", + "n":"JMonet", + "d":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "1":"561357aa16dc99ec9d29c17fd481a3d62bc82740" + }, + { + "u":"com.bekioui.parent|maven-parent|1.1.0|NA", + "m":"1499051497642", + "i":"pom|1499014271000|4375|0|0|1|pom", + "n":"Maven Parent", + "d":"Pom parent for java project.", + "1":"ff4cece0820d00acf3a6d36764ad074d6658d920" + }, + { + "u":"com.bekioui.maven.plugin|merge-maven-plugin|1.0.0|NA", + "m":"1499051497818", + "i":"maven-plugin|1499017040000|8684|1|1|1|jar", + "n":"Merge Maven Plugin", + "d":"Merge files into one file", + "1":"8231b7dbbfd13facf36626cd381a9b1cfd7c7a47" + }, + { + "u":"com.bekioui.maven.plugin|merge-maven-plugin|1.0.0|sources|jar", + "m":"1499051497847", + "i":"jar|1499017055000|4998|2|2|1|jar", + "n":"Merge Maven Plugin", + "d":"Merge files into one file", + "1":"e72686587daec0b8de676f2842eaf0b6520ed6e2" + }, + { + "u":"com.bekioui.maven.plugin|merge-maven-plugin|1.0.0|javadoc|jar", + "m":"1499051497872", + "i":"jar|1499017062000|28595|2|2|1|jar", + "n":"Merge Maven Plugin", + "d":"Merge files into one file", + "1":"5eab36b880d1bace7a7473a45dfd3fa816194dd7" + }, + { + "u":"com.beachape|gander_2.12|0.0.3|NA", + "m":"1499051505906", + "i":"jar|1499003430000|157341|1|1|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"a5f9d1c9281cb8857ec6d5959911b8a4549180cb" + }, + { + "u":"com.beachape|gander_2.12|0.0.3|sources|jar", + "m":"1499051505941", + "i":"jar|1499003431000|44356|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"ab3216113da6d20360d8d70f5b109a565b9a6788" + }, + { + "u":"com.beachape|gander_2.12|0.0.3|javadoc|jar", + "m":"1499051505971", + "i":"jar|1499003433000|862669|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"e9fa03cb94744271d9f33ee0a9b58221038d12bd" + }, + { + "u":"com.beachape|gander_2.11|0.0.3|NA", + "m":"1499051506041", + "i":"jar|1499003413000|233806|1|1|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"90cd6023ca2c8b9b43da9c65baf515df1b8c0bb6" + }, + { + "u":"com.beachape|gander_2.11|0.0.3|sources|jar", + "m":"1499051506080", + "i":"jar|1499003414000|44356|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"d2ac290f4112201778eff03ba1c00b7df78cfd2f" + }, + { + "u":"com.beachape|gander_2.11|0.0.3|javadoc|jar", + "m":"1499051506104", + "i":"jar|1499003417000|535231|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"bd1ba8b4186b03e8a81a6f0cf66f1ef5075f830e" + }, + { + "u":"com.beachape|gander_2.10|0.0.3|NA", + "m":"1499051506218", + "i":"jar|1499003397000|231008|1|1|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"e162b0e9a74bc4c8e9bd5db3caffc6adbaf8f842" + }, + { + "u":"com.beachape|gander_2.10|0.0.3|sources|jar", + "m":"1499051506255", + "i":"jar|1499003398000|44356|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"fea18b8fa894bed218772c9cac76265c4d3f49da" + }, + { + "u":"com.beachape|gander_2.10|0.0.3|javadoc|jar", + "m":"1499051506281", + "i":"jar|1499003400000|531046|2|2|1|jar", + "n":"gander", + "d":"Html Content / Article Extractor in Scala", + "1":"4c60447bf05e808bfe516efee5b97b93f5e23741" + }, + { + "u":"com.anjlab.android.iab.v3|library|1.0.41|NA", + "m":"1499052022907", + "i":"jar|1499014750000|36728|1|1|1|jar", + "n":"Android In-App Billing v3 Library", + "d":"A lightweight implementation of Android In-app Billing Version 3", + "1":"fbb0fa0682216fb9f5424cc44453518122ab8fe1" + }, + { + "u":"com.anjlab.android.iab.v3|library|1.0.41|sources|jar", + "m":"1499052022939", + "i":"jar|1499014780000|19026|2|2|1|jar", + "n":"Android In-App Billing v3 Library", + "d":"A lightweight implementation of Android In-app Billing Version 3", + "1":"139b2a33e08274503bc6b13672dfb11641be26ad" + }, + { + "u":"com.anjlab.android.iab.v3|library|1.0.41|javadoc|jar", + "m":"1499052022965", + "i":"jar|1499014761000|261|2|2|1|jar", + "n":"Android In-App Billing v3 Library", + "d":"A lightweight implementation of Android In-app Billing Version 3", + "1":"b45f3aecb00a7900c0b7d96c7d20e7474baec278" + }, + { + "u":"com.amap.api|navi-3dmap|5.1.0_3dmap5.2.1|NA", + "m":"1499052788483", + "i":"jar|1499044348000|18209666|1|1|1|jar", + "n":"navi-3dmap", + "d":"AMap is the best sdk of map in china.", + "1":"1106879361bc03319ff1d02eb4553895c2b5db52" + }, + { + "u":"com.amap.api|navi-3dmap|5.1.0_3dmap5.2.1|sources|jar", + "m":"1499052788551", + "i":"jar|1499044348000|616|2|2|1|jar", + "n":"navi-3dmap", + "d":"AMap is the best sdk of map in china.", + "1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1" + }, + { + "u":"com.amap.api|navi-3dmap|5.1.0_3dmap5.2.1|javadoc|jar", + "m":"1499052788600", + "i":"jar|1499044348000|616|2|2|1|jar", + "n":"navi-3dmap", + "d":"AMap is the best sdk of map in china.", + "1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1" + }, + { + "u":"com.alibaba|fastjson|1.2.34|NA", + "m":"1499052855817", + "i":"jar|1499005081000|478640|1|1|1|jar", + "n":"fastjson", + "d":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "1":"6935ced5a69bdd145fe0eda2d3a3b5240c7fc9a9" + }, + { + "u":"com.alibaba|fastjson|1.2.34|sources|jar", + "m":"1499052855860", + "i":"jar|1499005080000|310474|2|2|1|jar", + "n":"fastjson", + "d":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "1":"10b31f235edeb024757de440d70d338bb2d1e514" + }, + { + "u":"com.alibaba|fastjson|1.2.34|javadoc|jar", + "m":"1499052855901", + "i":"jar|1499005078000|1003600|2|2|1|jar", + "n":"fastjson", + "d":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "1":"4aafdf215ef9a82206a3d9b87e701ad4c27324bc" + }, + { + "u":"com.alexecollins.docker|docker-maven-plugin|2.11.24|NA", + "m":"1499052880402", + "i":"maven-plugin|1499024585000|31421|1|1|1|jar", + "n":"Docker Maven Plugin", + "d":"A plug-in for starting and stopping Docker containers.", + "1":"e861a89b05916191933ab36e477661271e18a73d" + }, + { + "u":"com.alexecollins.docker|docker-maven-plugin|2.11.24|sources|jar", + "m":"1499052880431", + "i":"jar|1499024592000|13243|2|2|1|jar", + "n":"Docker Maven Plugin", + "d":"A plug-in for starting and stopping Docker containers.", + "1":"d52ff94bb5228cb3ab738fe5ecc08d1f9820772f" + }, + { + "u":"com.alexecollins.docker|docker-maven-plugin|2.11.24|javadoc|jar", + "m":"1499052880458", + "i":"jar|1499024594000|87286|2|2|1|jar", + "n":"Docker Maven Plugin", + "d":"A plug-in for starting and stopping Docker containers.", + "1":"eae0440990827ba398c3d24f888ee1262c6a5c74" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-boot2docker|2.11.29|NA", + "m":"1499052881805", + "i":"jar|1499024413000|11461|1|1|1|jar", + "n":"Docker Java Orchestration Plugin Boot2Docker", + "1":"f463c9f1259af6af108714b9f0a164ce2d582f46" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-boot2docker|2.11.29|sources|jar", + "m":"1499052881834", + "i":"jar|1499024417000|5623|2|2|1|jar", + "n":"Docker Java Orchestration Plugin Boot2Docker", + "1":"319600847c1a7afb84dfbc98e1ec408886b13584" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-boot2docker|2.11.29|javadoc|jar", + "m":"1499052881860", + "i":"jar|1499024419000|38294|2|2|1|jar", + "n":"Docker Java Orchestration Plugin Boot2Docker", + "1":"d95eeb2d5c59fb8fac565fe8a4d5b69ff14a8f4c" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-api|2.11.29|NA", + "m":"1499052882979", + "i":"jar|1499024366000|2971|1|1|1|jar", + "n":"Docker Java Orchestration Plugin API", + "1":"a1af1f1d617d12b972496c74272292a65343183b" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-api|2.11.29|sources|jar", + "m":"1499052883007", + "i":"jar|1499024371000|1558|2|2|1|jar", + "n":"Docker Java Orchestration Plugin API", + "1":"3227746f273ddfd49c384779f7aa46d9874a661a" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-plugin-api|2.11.29|javadoc|jar", + "m":"1499052883029", + "i":"jar|1499024372000|37291|2|2|1|jar", + "n":"Docker Java Orchestration Plugin API", + "1":"b8c77e67f13b221f0cc091fde93dcab8aed4ca35" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-model|2.11.29|NA", + "m":"1499052884173", + "i":"jar|1499024347000|17890|1|1|1|jar", + "n":"Docker Java Orchestration Model", + "1":"7ea8d9a7ad2d06dc2090cb678d1cb3c3ad58d2d7" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-model|2.11.29|sources|jar", + "m":"1499052884202", + "i":"jar|1499024351000|6444|2|2|1|jar", + "n":"Docker Java Orchestration Model", + "1":"ec61a0762aaf58a527951f081559f59f399cefdf" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-model|2.11.29|javadoc|jar", + "m":"1499052884226", + "i":"jar|1499024353000|83594|2|2|1|jar", + "n":"Docker Java Orchestration Model", + "1":"fd41bd4184cc947dfda7b361f27b767d5f141d3f" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-core|2.11.29|NA", + "m":"1499052885340", + "i":"jar|1499024394000|64362|1|1|1|jar", + "n":"Docker Java Orchestration Core", + "1":"df82e01fef59cc59fdd6275afdd9876ccae2cc4d" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-core|2.11.29|sources|jar", + "m":"1499052885373", + "i":"jar|1499024398000|26707|2|2|1|jar", + "n":"Docker Java Orchestration Core", + "1":"012cba759afee7a6053c6866d1685bac1adc7de8" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration-core|2.11.29|javadoc|jar", + "m":"1499052885399", + "i":"jar|1499024400000|98094|2|2|1|jar", + "n":"Docker Java Orchestration Core", + "1":"f28d4c4d19eae7facbc7873b5c7556ceeeac2d41" + }, + { + "u":"com.alexecollins.docker|docker-java-orchestration|2.11.29|NA", + "m":"1499052886447", + "i":"pom|1499024321000|5901|0|0|1|pom", + "n":"Docker Java Orchestration", + "d":"A library for orchestrating Docker containers.", + "1":"8c77d314d4da4a0d28b322115442f2bd30a0881b" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.12|1.2-P26-B4-RC1|NA", + "m":"1499052937509", + "i":"jar|1498912740000|180111|1|1|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"ef788677b6579137ef279ce667d10ad08419f652" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.12|1.2-P26-B4-RC1|sources|jar", + "m":"1499052937543", + "i":"jar|1498912744000|8527|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"08da80595862416d30e30ecfb0c4382b01354c6e" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.12|1.2-P26-B4-RC1|javadoc|jar", + "m":"1499052937567", + "i":"jar|1498912742000|819310|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"9f2aa253ceb9d6ae5677c147799a7058439001b4" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B4-RC1|NA", + "m":"1499052937671", + "i":"jar|1498997758000|321870|1|1|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"b3934a8b32d6c299bcbf6c1226555dab378aa5d0" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B4-RC1|sources|jar", + "m":"1499052937710", + "i":"jar|1498997771000|8527|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"78e46b1f0e96f3350c2508eb83a8a2a67f2e1210" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B4-RC1|javadoc|jar", + "m":"1499052937734", + "i":"jar|1498997770000|494552|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"1a20fdb2ec6197f3536d11b1aab610c40e9659b2" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B3-RC1|NA", + "m":"1499052937788", + "i":"jar|1498997419000|313278|1|1|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"2573b36aeb2112f34b2a77474a1c4ea5d68b980b" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B3-RC1|sources|jar", + "m":"1499052937824", + "i":"jar|1498997422000|8452|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"0160d8bd9f5ab2779b15443247a5ff46e269d303" + }, + { + "u":"com.adrianhurt|play-bootstrap_2.11|1.2-P26-B3-RC1|javadoc|jar", + "m":"1499052937850", + "i":"jar|1498997421000|494647|2|2|1|jar", + "n":"play-bootstrap", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"f088de546145891957bf931c2ea0565622285253" + }, + { + "u":"com.adrianhurt|play-bootstrap-core_2.11|1.2-P26-RC1|NA", + "m":"1499052939463", + "i":"jar|1498994804000|83668|1|1|1|jar", + "n":"play-bootstrap-core", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"320b057dc16a04439468771704b73c93d71a61c4" + }, + { + "u":"com.adrianhurt|play-bootstrap-core_2.11|1.2-P26-RC1|sources|jar", + "m":"1499052939494", + "i":"jar|1498994809000|5030|2|2|1|jar", + "n":"play-bootstrap-core", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"d2bafe8cb15d56b547ae4bbc19ffc15cc5ebfd4b" + }, + { + "u":"com.adrianhurt|play-bootstrap-core_2.11|1.2-P26-RC1|javadoc|jar", + "m":"1499052939519", + "i":"jar|1498994806000|379195|2|2|1|jar", + "n":"play-bootstrap-core", + "d":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "1":"265730a873fb830205775476ba50112bc967c7d2" + }, + { + "u":"co.wrisk.jcredstash|jcredstash|0.0.4|NA", + "m":"1499053032185", + "i":"jar|1499022493000|11611|1|1|1|jar", + "n":"JCredStash", + "d":"A pure Java implementation of the CredStash utility originally in Python", + "1":"d2b12ccae8e56d1b056a6058c9c2d2d5aa956705" + }, + { + "u":"co.wrisk.jcredstash|jcredstash|0.0.4|sources|jar", + "m":"1499053032214", + "i":"jar|1499022499000|6323|2|2|1|jar", + "n":"JCredStash", + "d":"A pure Java implementation of the CredStash utility originally in Python", + "1":"35cc6c622e4365b7f6aee72da93db009d6f022d2" + }, + { + "u":"co.wrisk.jcredstash|jcredstash|0.0.4|javadoc|jar", + "m":"1499053032238", + "i":"jar|1499022497000|31478|2|2|1|jar", + "n":"JCredStash", + "d":"A pure Java implementation of the CredStash utility originally in Python", + "1":"f4c58a2e9772f557fc123995ea9a8f035ba84340" + }, + { + "u":"cn.kanejin.commons|commons-util|1.0.0|NA", + "m":"1499053177874", + "i":"jar|1498999681000|4159|1|1|1|jar", + "n":"commons-util", + "d":"A Common Utils Project", + "1":"f9ddd32dab00d5cba377e3d13ff43223c5ec868f" + }, + { + "u":"cn.kanejin.commons|commons-util|1.0.0|sources|jar", + "m":"1499053177900", + "i":"jar|1498999679000|1856|2|2|1|jar", + "n":"commons-util", + "d":"A Common Utils Project", + "1":"0404e10de2edf31c332116f179fb2b65e93750a6" + }, + { + "u":"cn.kanejin.commons|commons-util|1.0.0|javadoc|jar", + "m":"1499053177923", + "i":"jar|1498999681000|27690|2|2|1|jar", + "n":"commons-util", + "d":"A Common Utils Project", + "1":"2b0bef011d9e0c904980459cb2ca6fc596ce4755" + }, + { + "u":"au.net.causal.maven.plugins|boxdb-maven-plugin|2.0|NA", + "m":"1499053631459", + "i":"maven-plugin|1499001942000|298715|1|1|1|jar", + "n":"Boxed Database Maven Plugin", + "d":"Maven plugin to start databases using Docker and VMs", + "1":"304b32bc34543aed6c86a40a1eeab81b70079324" + }, + { + "u":"au.net.causal.maven.plugins|boxdb-maven-plugin|2.0|sources|jar", + "m":"1499053631497", + "i":"jar|1499001951000|140642|2|2|1|jar", + "n":"Boxed Database Maven Plugin", + "d":"Maven plugin to start databases using Docker and VMs", + "1":"ebf83e009a58f65c16715d21ed9a3581f92cd89b" + }, + { + "u":"au.net.causal.maven.plugins|boxdb-maven-plugin|2.0|javadoc|jar", + "m":"1499053631526", + "i":"jar|1499001960000|696532|2|2|1|jar", + "n":"Boxed Database Maven Plugin", + "d":"Maven plugin to start databases using Docker and VMs", + "1":"b13683accdb714289605515a52f7293f2d85314f" + }, + { + "allGroups":"allGroups", + "allGroupsList":"" + }, + { + "rootGroups":"rootGroups", + "rootGroupsList":"" + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/expected_properties_uris.json b/minecode_pipelines/tests/data/maven/index/increment/expected_properties_uris.json new file mode 100644 index 00000000..6af89381 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/expected_properties_uris.json @@ -0,0 +1,482 @@ +[ + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.522.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.523.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.524.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.525.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.526.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.527.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.528.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.532.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.529.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.533.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.530.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.534.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.531.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.535.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.536.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.537.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.538.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.539.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.540.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.541.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.512.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.513.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.514.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.515.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.516.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.517.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.518.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.519.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.520.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.521.gz", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties", + "package_url":null, + "file_name":null, + "size":null, + "date":null, + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":0, + "visit_error":null + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/expected_uris.json b/minecode_pipelines/tests/data/maven/index/increment/expected_uris.json new file mode 100644 index 00000000..6ff515b3 --- /dev/null +++ b/minecode_pipelines/tests/data/maven/index/increment/expected_uris.json @@ -0,0 +1,56546 @@ +[ + { + "uri":"maven-index://repo1.maven.org/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/uk.com.robust-it/cloning@1.9.5", + "file_name":"cloning-1.9.5.jar", + "size":26402, + "date":"2017-07-02T07:57:35+00:00", + "md5":null, + "sha1":"ed4e1fc30fe5df3e663deead1501ac4fa72c7d58", + "sha256":null, + "priority":0, + "data":{ + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:57:35+00:00", + "size":26402, + "sha1":"ed4e1fc30fe5df3e663deead1501ac4fa72c7d58", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/uk.com.robust-it/cloning@1.9.5", + "file_name":"cloning-1.9.5.pom", + "size":0, + "date":"2017-07-02T07:57:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/uk.com.robust-it/cloning@1.9.5?classifier=sources", + "file_name":"cloning-1.9.5-sources.jar", + "size":14766, + "date":"2017-07-02T07:57:37+00:00", + "md5":null, + "sha1":"1d8339275d436e3a19c41e9145acc4860a75fb14", + "sha256":null, + "priority":0, + "data":{ + "group_id":"uk.com.robust-it", + "artifact_id":"cloning", + "version":"1.9.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:57:37+00:00", + "size":14766, + "sha1":"1d8339275d436e3a19c41e9145acc4860a75fb14", + "name":"cloning", + "description":"The cloning library is a small, open source (Apache\n licensed) Java library which deep-clones objects. The\n objects do not have to implement the Cloneable\n interface. Effectively, this library can clone ANY\n Java object. It can be used i.e. in cache\n implementations, if you don't want the cached object\n to be modified or whenever you want to create a deep\n copy of an object.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/uk/com/robust-it/cloning/1.9.5/cloning-1.9.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/uk.com.robust-it/cloning@1.9.5", + "file_name":"cloning-1.9.5.pom", + "size":0, + "date":"2017-07-02T07:57:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/su.litvak.chromecast/api-v2@0.10.1", + "file_name":"api-v2-0.10.1.jar", + "size":128889, + "date":"2017-07-02T08:29:04+00:00", + "md5":null, + "sha1":"015cf02919fed76b6d44e133d3cd33d8448104d8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:29:04+00:00", + "size":128889, + "sha1":"015cf02919fed76b6d44e133d3cd33d8448104d8", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/su.litvak.chromecast/api-v2@0.10.1", + "file_name":"api-v2-0.10.1.pom", + "size":0, + "date":"2017-07-02T08:29:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/su.litvak.chromecast/api-v2@0.10.1?classifier=sources", + "file_name":"api-v2-0.10.1-sources.jar", + "size":56160, + "date":"2017-07-02T08:29:07+00:00", + "md5":null, + "sha1":"a1ca8d589d8e2474ffe091df3533db93f9f9023b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"su.litvak.chromecast", + "artifact_id":"api-v2", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:29:07+00:00", + "size":56160, + "sha1":"a1ca8d589d8e2474ffe091df3533db93f9f9023b", + "name":"ChromeCast Java API v2", + "description":"Java implementation of ChromeCast V2 protocol client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/su/litvak/chromecast/api-v2/0.10.1/api-v2-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/su.litvak.chromecast/api-v2@0.10.1", + "file_name":"api-v2-0.10.1.pom", + "size":0, + "date":"2017-07-02T08:29:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.12@1.6.1", + "file_name":"view-update_2.12-1.6.1.jar", + "size":40057, + "date":"2017-07-02T10:57:42+00:00", + "md5":null, + "sha1":"d08e451a8cb54c6f01051b5c531eddf6f2515387", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:42+00:00", + "size":40057, + "sha1":"d08e451a8cb54c6f01051b5c531eddf6f2515387", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.12@1.6.1", + "file_name":"view-update_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.12@1.6.1?classifier=sources", + "file_name":"view-update_2.12-1.6.1-sources.jar", + "size":3888, + "date":"2017-07-02T10:57:41+00:00", + "md5":null, + "sha1":"692580d3963f34c9b056724f8a967c2a98996891", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:41+00:00", + "size":3888, + "sha1":"692580d3963f34c9b056724f8a967c2a98996891", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.12/1.6.1/view-update_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.12@1.6.1", + "file_name":"view-update_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.11@1.6.1", + "file_name":"view-update_2.11-1.6.1.jar", + "size":45287, + "date":"2017-07-02T10:58:25+00:00", + "md5":null, + "sha1":"4596f3be51938fe0e46a8c1ee35365e873ac9f30", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:25+00:00", + "size":45287, + "sha1":"4596f3be51938fe0e46a8c1ee35365e873ac9f30", + "name":"view-update", + "description":"view-update", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.11@1.6.1", + "file_name":"view-update_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.11@1.6.1?classifier=sources", + "file_name":"view-update_2.11-1.6.1-sources.jar", + "size":3888, + "date":"2017-07-02T10:58:24+00:00", + "md5":null, + "sha1":"50395ad6d68ff0b383c710f0a20a3d3f50419190", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:24+00:00", + "size":3888, + "sha1":"50395ad6d68ff0b383c710f0a20a3d3f50419190", + "name":"view-update", + "description":"view-update", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update_2.11/1.6.1/view-update_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update_2.11@1.6.1", + "file_name":"view-update_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.12@1.6.1", + "file_name":"view-update-sql_2.12-1.6.1.jar", + "size":39470, + "date":"2017-07-02T10:57:53+00:00", + "md5":null, + "sha1":"ec127d1451280f9c80fb3682a123418b9a637966", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:53+00:00", + "size":39470, + "sha1":"ec127d1451280f9c80fb3682a123418b9a637966", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.12@1.6.1", + "file_name":"view-update-sql_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.12@1.6.1?classifier=sources", + "file_name":"view-update-sql_2.12-1.6.1-sources.jar", + "size":5402, + "date":"2017-07-02T10:57:54+00:00", + "md5":null, + "sha1":"210a54990568740a462384796c87c776c19faac3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:54+00:00", + "size":5402, + "sha1":"210a54990568740a462384796c87c776c19faac3", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.12/1.6.1/view-update-sql_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.12@1.6.1", + "file_name":"view-update-sql_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.11@1.6.1", + "file_name":"view-update-sql_2.11-1.6.1.jar", + "size":56385, + "date":"2017-07-02T10:59:45+00:00", + "md5":null, + "sha1":"66dd6cc38d12fa27b01536d2aa33c1e5dacf10fa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:45+00:00", + "size":56385, + "sha1":"66dd6cc38d12fa27b01536d2aa33c1e5dacf10fa", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.11@1.6.1", + "file_name":"view-update-sql_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.11@1.6.1?classifier=sources", + "file_name":"view-update-sql_2.11-1.6.1-sources.jar", + "size":5402, + "date":"2017-07-02T10:59:46+00:00", + "md5":null, + "sha1":"2ab00bd801f7f82c599c99b5b424e65612ba8495", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"view-update-sql_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:46+00:00", + "size":5402, + "sha1":"2ab00bd801f7f82c599c99b5b424e65612ba8495", + "name":"view-update-sql", + "description":"view-update-sql", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/view-update-sql_2.11/1.6.1/view-update-sql_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/view-update-sql_2.11@1.6.1", + "file_name":"view-update-sql_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.12@1.6.1", + "file_name":"http-support_2.12-1.6.1.jar", + "size":26679, + "date":"2017-07-02T10:57:03+00:00", + "md5":null, + "sha1":"31877779190ab6bf8edfac489739957a97db577b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:03+00:00", + "size":26679, + "sha1":"31877779190ab6bf8edfac489739957a97db577b", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.12@1.6.1", + "file_name":"http-support_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.12@1.6.1?classifier=sources", + "file_name":"http-support_2.12-1.6.1-sources.jar", + "size":2341, + "date":"2017-07-02T10:57:04+00:00", + "md5":null, + "sha1":"3f307f0f1a76140e88efe4e6558f3674b5ae3973", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:04+00:00", + "size":2341, + "sha1":"3f307f0f1a76140e88efe4e6558f3674b5ae3973", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.12/1.6.1/http-support_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.12@1.6.1", + "file_name":"http-support_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.11@1.6.1", + "file_name":"http-support_2.11-1.6.1.jar", + "size":27990, + "date":"2017-07-02T10:59:25+00:00", + "md5":null, + "sha1":"e16346bd99aa731b2fe50de6a86b46cccc8e2db6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:25+00:00", + "size":27990, + "sha1":"e16346bd99aa731b2fe50de6a86b46cccc8e2db6", + "name":"http-support", + "description":"http-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.11@1.6.1", + "file_name":"http-support_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.11@1.6.1?classifier=sources", + "file_name":"http-support_2.11-1.6.1-sources.jar", + "size":2341, + "date":"2017-07-02T10:59:26+00:00", + "md5":null, + "sha1":"39d89bf8ef7b5c8a145b49a1e7ae84ffb8eb50a0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"http-support_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:26+00:00", + "size":2341, + "sha1":"39d89bf8ef7b5c8a145b49a1e7ae84ffb8eb50a0", + "name":"http-support", + "description":"http-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/http-support_2.11/1.6.1/http-support_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/http-support_2.11@1.6.1", + "file_name":"http-support_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.12@1.6.1", + "file_name":"eventstore-akka-persistence_2.12-1.6.1.jar", + "size":70465, + "date":"2017-07-02T10:57:30+00:00", + "md5":null, + "sha1":"c177235bac41d55c6449b1677ea30414b2becd93", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:30+00:00", + "size":70465, + "sha1":"c177235bac41d55c6449b1677ea30414b2becd93", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.12@1.6.1", + "file_name":"eventstore-akka-persistence_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.12@1.6.1?classifier=sources", + "file_name":"eventstore-akka-persistence_2.12-1.6.1-sources.jar", + "size":8825, + "date":"2017-07-02T10:57:28+00:00", + "md5":null, + "sha1":"384520bafa9f5b07ecf095eaa743ad4e0d488545", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:28+00:00", + "size":8825, + "sha1":"384520bafa9f5b07ecf095eaa743ad4e0d488545", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.12/1.6.1/eventstore-akka-persistence_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.12@1.6.1", + "file_name":"eventstore-akka-persistence_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.11@1.6.1", + "file_name":"eventstore-akka-persistence_2.11-1.6.1.jar", + "size":82817, + "date":"2017-07-02T10:58:59+00:00", + "md5":null, + "sha1":"f4f85308327a833c1ce5c4c23e37c04d461b54c7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:59+00:00", + "size":82817, + "sha1":"f4f85308327a833c1ce5c4c23e37c04d461b54c7", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.11@1.6.1", + "file_name":"eventstore-akka-persistence_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.11@1.6.1?classifier=sources", + "file_name":"eventstore-akka-persistence_2.11-1.6.1-sources.jar", + "size":8825, + "date":"2017-07-02T10:58:50+00:00", + "md5":null, + "sha1":"214a57b83558247b05885d42833e082055d88e6f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"eventstore-akka-persistence_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:50+00:00", + "size":8825, + "sha1":"214a57b83558247b05885d42833e082055d88e6f", + "name":"eventstore-akka-persistence", + "description":"eventstore-akka-persistence", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/eventstore-akka-persistence_2.11/1.6.1/eventstore-akka-persistence_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/eventstore-akka-persistence_2.11@1.6.1", + "file_name":"eventstore-akka-persistence_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.12@1.6.1", + "file_name":"akka-ddd-write-front_2.12-1.6.1.jar", + "size":21924, + "date":"2017-07-02T10:57:37+00:00", + "md5":null, + "sha1":"cb3d35fe78c211b7d513ad3d7756c5f8e8cb7795", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:37+00:00", + "size":21924, + "sha1":"cb3d35fe78c211b7d513ad3d7756c5f8e8cb7795", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.12@1.6.1", + "file_name":"akka-ddd-write-front_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-write-front_2.12-1.6.1-sources.jar", + "size":3373, + "date":"2017-07-02T10:57:33+00:00", + "md5":null, + "sha1":"33b96779499a790144c69e94e17f45acbbe9d05c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:33+00:00", + "size":3373, + "sha1":"33b96779499a790144c69e94e17f45acbbe9d05c", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.12/1.6.1/akka-ddd-write-front_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.12@1.6.1", + "file_name":"akka-ddd-write-front_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.11@1.6.1", + "file_name":"akka-ddd-write-front_2.11-1.6.1.jar", + "size":35539, + "date":"2017-07-02T10:59:20+00:00", + "md5":null, + "sha1":"5f66f89b5a7a57a5cbe7151d429ef32b110e071d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:20+00:00", + "size":35539, + "sha1":"5f66f89b5a7a57a5cbe7151d429ef32b110e071d", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.11@1.6.1", + "file_name":"akka-ddd-write-front_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-write-front_2.11-1.6.1-sources.jar", + "size":3373, + "date":"2017-07-02T10:59:09+00:00", + "md5":null, + "sha1":"1d75d62f11c4b23709a8b45bc5946a94d72d2bab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-write-front_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:09+00:00", + "size":3373, + "sha1":"1d75d62f11c4b23709a8b45bc5946a94d72d2bab", + "name":"akka-ddd-write-front", + "description":"akka-ddd-write-front", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-write-front_2.11/1.6.1/akka-ddd-write-front_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-write-front_2.11@1.6.1", + "file_name":"akka-ddd-write-front_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.12@1.6.1", + "file_name":"akka-ddd-test_2.12-1.6.1.jar", + "size":103795, + "date":"2017-07-02T10:57:57+00:00", + "md5":null, + "sha1":"872762183561e05e688dc5819b32c149458847a4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:57+00:00", + "size":103795, + "sha1":"872762183561e05e688dc5819b32c149458847a4", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.12@1.6.1", + "file_name":"akka-ddd-test_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-test_2.12-1.6.1-sources.jar", + "size":9867, + "date":"2017-07-02T10:58:00+00:00", + "md5":null, + "sha1":"ecf05354d5cc02463308296f32d4797351259b63", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:00+00:00", + "size":9867, + "sha1":"ecf05354d5cc02463308296f32d4797351259b63", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.12/1.6.1/akka-ddd-test_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.12@1.6.1", + "file_name":"akka-ddd-test_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.11@1.6.1", + "file_name":"akka-ddd-test_2.11-1.6.1.jar", + "size":126866, + "date":"2017-07-02T10:59:31+00:00", + "md5":null, + "sha1":"fb5a69c23c9a9107c279d1b138ab75c6ebb2a4dc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:31+00:00", + "size":126866, + "sha1":"fb5a69c23c9a9107c279d1b138ab75c6ebb2a4dc", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.11@1.6.1", + "file_name":"akka-ddd-test_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-test_2.11-1.6.1-sources.jar", + "size":9867, + "date":"2017-07-02T10:59:33+00:00", + "md5":null, + "sha1":"938a6ec022c4d7cc0a523174e1c6a8b760ef13ee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-test_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:33+00:00", + "size":9867, + "sha1":"938a6ec022c4d7cc0a523174e1c6a8b760ef13ee", + "name":"akka-ddd-test", + "description":"akka-ddd-test", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-test_2.11/1.6.1/akka-ddd-test_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-test_2.11@1.6.1", + "file_name":"akka-ddd-test_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.12@1.6.1", + "file_name":"akka-ddd-scheduling_2.12-1.6.1.jar", + "size":18135, + "date":"2017-07-02T10:57:49+00:00", + "md5":null, + "sha1":"6f8dffd475762a2b93dd310a27fdfaaefa4c7520", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:49+00:00", + "size":18135, + "sha1":"6f8dffd475762a2b93dd310a27fdfaaefa4c7520", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.12@1.6.1", + "file_name":"akka-ddd-scheduling_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-scheduling_2.12-1.6.1-sources.jar", + "size":3431, + "date":"2017-07-02T10:57:50+00:00", + "md5":null, + "sha1":"f51ec1abf22f0f7a3f30448f9641260ebb128095", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:50+00:00", + "size":3431, + "sha1":"f51ec1abf22f0f7a3f30448f9641260ebb128095", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.12/1.6.1/akka-ddd-scheduling_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.12@1.6.1", + "file_name":"akka-ddd-scheduling_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.11@1.6.1", + "file_name":"akka-ddd-scheduling_2.11-1.6.1.jar", + "size":18443, + "date":"2017-07-02T10:58:37+00:00", + "md5":null, + "sha1":"d05f6810d6290c7be0393616b3523297128f0f19", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:37+00:00", + "size":18443, + "sha1":"d05f6810d6290c7be0393616b3523297128f0f19", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.11@1.6.1", + "file_name":"akka-ddd-scheduling_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-scheduling_2.11-1.6.1-sources.jar", + "size":3431, + "date":"2017-07-02T10:58:38+00:00", + "md5":null, + "sha1":"6ad85fc6eea52f8a1e82c6cac737af825d1c7508", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-scheduling_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:38+00:00", + "size":3431, + "sha1":"6ad85fc6eea52f8a1e82c6cac737af825d1c7508", + "name":"akka-ddd-scheduling", + "description":"akka-ddd-scheduling", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-scheduling_2.11/1.6.1/akka-ddd-scheduling_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-scheduling_2.11@1.6.1", + "file_name":"akka-ddd-scheduling_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.12@1.6.1", + "file_name":"akka-ddd-protocol_2.12-1.6.1.jar", + "size":112994, + "date":"2017-07-02T10:57:16+00:00", + "md5":null, + "sha1":"93b40f35291ba917fb653d1887b7cdf3e93168a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:16+00:00", + "size":112994, + "sha1":"93b40f35291ba917fb653d1887b7cdf3e93168a7", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.12@1.6.1", + "file_name":"akka-ddd-protocol_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-protocol_2.12-1.6.1-sources.jar", + "size":14550, + "date":"2017-07-02T10:57:15+00:00", + "md5":null, + "sha1":"bb2a2f22a62aba6da42e80e8d1e1df37bd9cebca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:15+00:00", + "size":14550, + "sha1":"bb2a2f22a62aba6da42e80e8d1e1df37bd9cebca", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.12/1.6.1/akka-ddd-protocol_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.12@1.6.1", + "file_name":"akka-ddd-protocol_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.11@1.6.1", + "file_name":"akka-ddd-protocol_2.11-1.6.1.jar", + "size":128041, + "date":"2017-07-02T10:58:31+00:00", + "md5":null, + "sha1":"1c2f14f715fb7c2aa89f645e63c4c6d6ed3eb0d2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:31+00:00", + "size":128041, + "sha1":"1c2f14f715fb7c2aa89f645e63c4c6d6ed3eb0d2", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.11@1.6.1", + "file_name":"akka-ddd-protocol_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-protocol_2.11-1.6.1-sources.jar", + "size":14550, + "date":"2017-07-02T10:58:30+00:00", + "md5":null, + "sha1":"9dd3f88439219f94363467ef8a773d084afbe69f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-protocol_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:30+00:00", + "size":14550, + "sha1":"9dd3f88439219f94363467ef8a773d084afbe69f", + "name":"akka-ddd-protocol", + "description":"akka-ddd-protocol", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-protocol_2.11/1.6.1/akka-ddd-protocol_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-protocol_2.11@1.6.1", + "file_name":"akka-ddd-protocol_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.12@1.6.1", + "file_name":"akka-ddd-monitoring_2.12-1.6.1.jar", + "size":18642, + "date":"2017-07-02T10:57:10+00:00", + "md5":null, + "sha1":"be15daf3261cce15e010a5cbc706bab84025b208", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:10+00:00", + "size":18642, + "sha1":"be15daf3261cce15e010a5cbc706bab84025b208", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.12@1.6.1", + "file_name":"akka-ddd-monitoring_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-monitoring_2.12-1.6.1-sources.jar", + "size":3881, + "date":"2017-07-02T10:57:13+00:00", + "md5":null, + "sha1":"da1b18ebfb145fbf4ab3393b3e90b381584f455f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:13+00:00", + "size":3881, + "sha1":"da1b18ebfb145fbf4ab3393b3e90b381584f455f", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.12/1.6.1/akka-ddd-monitoring_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.12@1.6.1", + "file_name":"akka-ddd-monitoring_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.11@1.6.1", + "file_name":"akka-ddd-monitoring_2.11-1.6.1.jar", + "size":25100, + "date":"2017-07-02T10:59:02+00:00", + "md5":null, + "sha1":"2ad5805fb990a94bda1f18c538058e988d4fd2fc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:02+00:00", + "size":25100, + "sha1":"2ad5805fb990a94bda1f18c538058e988d4fd2fc", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.11@1.6.1", + "file_name":"akka-ddd-monitoring_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-monitoring_2.11-1.6.1-sources.jar", + "size":3881, + "date":"2017-07-02T10:59:04+00:00", + "md5":null, + "sha1":"248dc272046a2d9a002ebfa2a3c3dd1e9c9cc12a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-monitoring_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:04+00:00", + "size":3881, + "sha1":"248dc272046a2d9a002ebfa2a3c3dd1e9c9cc12a", + "name":"akka-ddd-monitoring", + "description":"akka-ddd-monitoring", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-monitoring_2.11/1.6.1/akka-ddd-monitoring_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-monitoring_2.11@1.6.1", + "file_name":"akka-ddd-monitoring_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.12@1.6.1", + "file_name":"akka-ddd-messaging_2.12-1.6.1.jar", + "size":104163, + "date":"2017-07-02T10:57:24+00:00", + "md5":null, + "sha1":"80236c93ab0287d33667dbdd50db9d61d90c0322", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:57:24+00:00", + "size":104163, + "sha1":"80236c93ab0287d33667dbdd50db9d61d90c0322", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.12@1.6.1", + "file_name":"akka-ddd-messaging_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-messaging_2.12-1.6.1-sources.jar", + "size":9439, + "date":"2017-07-02T10:57:25+00:00", + "md5":null, + "sha1":"d5bbf0620d479a62f06b7243535a268d347c7288", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:57:25+00:00", + "size":9439, + "sha1":"d5bbf0620d479a62f06b7243535a268d347c7288", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.12/1.6.1/akka-ddd-messaging_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.12@1.6.1", + "file_name":"akka-ddd-messaging_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:57:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.11@1.6.1", + "file_name":"akka-ddd-messaging_2.11-1.6.1.jar", + "size":107085, + "date":"2017-07-02T10:58:43+00:00", + "md5":null, + "sha1":"8384efe58606dd533d32b5a313fc623526f4b050", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:43+00:00", + "size":107085, + "sha1":"8384efe58606dd533d32b5a313fc623526f4b050", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.11@1.6.1", + "file_name":"akka-ddd-messaging_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-messaging_2.11-1.6.1-sources.jar", + "size":9439, + "date":"2017-07-02T10:58:45+00:00", + "md5":null, + "sha1":"3027da7063ff492a47c9ed9a5781a12690740c6a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-messaging_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:45+00:00", + "size":9439, + "sha1":"3027da7063ff492a47c9ed9a5781a12690740c6a", + "name":"akka-ddd-messaging", + "description":"akka-ddd-messaging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-messaging_2.11/1.6.1/akka-ddd-messaging_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-messaging_2.11@1.6.1", + "file_name":"akka-ddd-messaging_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.12@1.6.1", + "file_name":"akka-ddd-core_2.12-1.6.1.jar", + "size":235126, + "date":"2017-07-02T10:58:06+00:00", + "md5":null, + "sha1":"7ac0ac440cf223603e33b7705c73694977724817", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:06+00:00", + "size":235126, + "sha1":"7ac0ac440cf223603e33b7705c73694977724817", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.12@1.6.1", + "file_name":"akka-ddd-core_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.12@1.6.1?classifier=sources", + "file_name":"akka-ddd-core_2.12-1.6.1-sources.jar", + "size":25717, + "date":"2017-07-02T10:58:09+00:00", + "md5":null, + "sha1":"9e297d2857da80411c2a71d3f6434b166a99a0b0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.12", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:09+00:00", + "size":25717, + "sha1":"9e297d2857da80411c2a71d3f6434b166a99a0b0", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.12/1.6.1/akka-ddd-core_2.12-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.12@1.6.1", + "file_name":"akka-ddd-core_2.12-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:58:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.11@1.6.1", + "file_name":"akka-ddd-core_2.11-1.6.1.jar", + "size":276970, + "date":"2017-07-02T10:59:39+00:00", + "md5":null, + "sha1":"1320eaf6635ec5c7ed2763e926fa07a0b5566804", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:59:39+00:00", + "size":276970, + "sha1":"1320eaf6635ec5c7ed2763e926fa07a0b5566804", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.11@1.6.1", + "file_name":"akka-ddd-core_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.11@1.6.1?classifier=sources", + "file_name":"akka-ddd-core_2.11-1.6.1-sources.jar", + "size":25717, + "date":"2017-07-02T10:59:42+00:00", + "md5":null, + "sha1":"e0839afa82cfe289d43f5463cc43255962be7bf9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"pl.newicom.dddd", + "artifact_id":"akka-ddd-core_2.11", + "version":"1.6.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:59:42+00:00", + "size":25717, + "sha1":"e0839afa82cfe289d43f5463cc43255962be7bf9", + "name":"akka-ddd-core", + "description":"akka-ddd-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/pl/newicom/dddd/akka-ddd-core_2.11/1.6.1/akka-ddd-core_2.11-1.6.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/pl.newicom.dddd/akka-ddd-core_2.11@1.6.1", + "file_name":"akka-ddd-core_2.11-1.6.1.pom", + "size":0, + "date":"2017-07-02T10:59:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron-tool@1.0.0.CR2", + "file_name":"wildfly-elytron-tool-1.0.0.CR2.jar", + "size":2231830, + "date":"2017-07-02T09:48:21+00:00", + "md5":null, + "sha1":"4e5805ee9f296f18d4a7cbaaee2091a8eeb69e5b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:48:21+00:00", + "size":2231830, + "sha1":"4e5805ee9f296f18d4a7cbaaee2091a8eeb69e5b", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron-tool@1.0.0.CR2", + "file_name":"wildfly-elytron-tool-1.0.0.CR2.pom", + "size":0, + "date":"2017-07-02T09:48:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron-tool@1.0.0.CR2?classifier=sources", + "file_name":"wildfly-elytron-tool-1.0.0.CR2-sources.jar", + "size":30728, + "date":"2017-07-02T09:48:27+00:00", + "md5":null, + "sha1":"476945b335cfa0c672992a9eee26c631caf49c6a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron-tool", + "version":"1.0.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:48:27+00:00", + "size":30728, + "sha1":"476945b335cfa0c672992a9eee26c631caf49c6a", + "name":"WildFly Elytron Tool", + "description":"Set of tools for WildFly Elytron", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron-tool/1.0.0.CR2/wildfly-elytron-tool-1.0.0.CR2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron-tool@1.0.0.CR2", + "file_name":"wildfly-elytron-tool-1.0.0.CR2.pom", + "size":0, + "date":"2017-07-02T09:48:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron@1.1.0.CR2", + "file_name":"wildfly-elytron-1.1.0.CR2.jar", + "size":1966327, + "date":"2017-07-02T09:42:54+00:00", + "md5":null, + "sha1":"22c4c6e4f444f7da61db8f7f825039e0f73a6cf9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:42:54+00:00", + "size":1966327, + "sha1":"22c4c6e4f444f7da61db8f7f825039e0f73a6cf9", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron@1.1.0.CR2", + "file_name":"wildfly-elytron-1.1.0.CR2.pom", + "size":0, + "date":"2017-07-02T09:42:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron@1.1.0.CR2?classifier=sources", + "file_name":"wildfly-elytron-1.1.0.CR2-sources.jar", + "size":1379990, + "date":"2017-07-02T09:43:01+00:00", + "md5":null, + "sha1":"10cd83d0bfe61a204da486410dbda8bc6740067f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.wildfly.security", + "artifact_id":"wildfly-elytron", + "version":"1.1.0.CR2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:43:01+00:00", + "size":1379990, + "sha1":"10cd83d0bfe61a204da486410dbda8bc6740067f", + "name":"WildFly Elytron", + "description":"WildFly Security SPIs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":false, + "download_url":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/wildfly/security/wildfly-elytron/1.1.0.CR2/wildfly-elytron-1.1.0.CR2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.wildfly.security/wildfly-elytron@1.1.0.CR2", + "file_name":"wildfly-elytron-1.1.0.CR2.pom", + "size":0, + "date":"2017-07-02T09:43:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver-plugins@1.9.83", + "file_name":"webserver-plugins-1.9.83.jar", + "size":359, + "date":"2017-07-02T03:16:46+00:00", + "md5":null, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:46+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver-plugins@1.9.83", + "file_name":"webserver-plugins-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver-plugins@1.9.83?classifier=sources", + "file_name":"webserver-plugins-1.9.83-sources.jar", + "size":359, + "date":"2017-07-02T03:16:49+00:00", + "md5":null, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webserver-plugins", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:49+00:00", + "size":359, + "sha1":"a976e7a9037d8043276c6aabf31cc647b0e56ccd", + "name":"webserver-plugins", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webserver-plugins/1.9.83/webserver-plugins-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver-plugins@1.9.83", + "file_name":"webserver-plugins-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webserver/1.9.83/webserver-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver@1.9.83", + "file_name":"webserver-1.9.83.jar", + "size":350, + "date":"2017-07-02T03:16:39+00:00", + "md5":null, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:39+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webserver/1.9.83/webserver-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webserver/1.9.83/webserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver@1.9.83", + "file_name":"webserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webserver/1.9.83/webserver-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver@1.9.83?classifier=sources", + "file_name":"webserver-1.9.83-sources.jar", + "size":350, + "date":"2017-07-02T03:16:42+00:00", + "md5":null, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:42+00:00", + "size":350, + "sha1":"9049e02d4bc23c54a5472cdb03b1b4428f5b4678", + "name":"webserver", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webserver/1.9.83/webserver-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webserver/1.9.83/webserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webserver@1.9.83", + "file_name":"webserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webpiecesServerBuilder@1.9.83", + "file_name":"webpiecesServerBuilder-1.9.83.jar", + "size":361, + "date":"2017-07-02T03:21:24+00:00", + "md5":null, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:24+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webpiecesServerBuilder@1.9.83", + "file_name":"webpiecesServerBuilder-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webpiecesServerBuilder@1.9.83?classifier=sources", + "file_name":"webpiecesServerBuilder-1.9.83-sources.jar", + "size":361, + "date":"2017-07-02T03:21:28+00:00", + "md5":null, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"webpiecesServerBuilder", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:28+00:00", + "size":361, + "sha1":"b43fb52b74fdb3c296e9ecb1c4ce44701cea9cb4", + "name":"webpiecesServerBuilder", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/webpiecesServerBuilder/1.9.83/webpiecesServerBuilder-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/webpiecesServerBuilder@1.9.83", + "file_name":"webpiecesServerBuilder-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/templateProject/1.9.83/templateProject-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/templateProject@1.9.83", + "file_name":"templateProject-1.9.83.jar", + "size":355, + "date":"2017-07-02T03:21:31+00:00", + "md5":null, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:31+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/templateProject/1.9.83/templateProject-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/templateProject/1.9.83/templateProject-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/templateProject@1.9.83", + "file_name":"templateProject-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/templateProject/1.9.83/templateProject-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/templateProject@1.9.83?classifier=sources", + "file_name":"templateProject-1.9.83-sources.jar", + "size":355, + "date":"2017-07-02T03:21:32+00:00", + "md5":null, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"templateProject", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:32+00:00", + "size":355, + "sha1":"632f4e3d06fb25d843005afed4e15d5bd4e6cf3c", + "name":"templateProject", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/templateProject/1.9.83/templateProject-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/templateProject/1.9.83/templateProject-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/templateProject@1.9.83", + "file_name":"templateProject-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/runtimecompile@1.9.83", + "file_name":"runtimecompile-1.9.83.jar", + "size":37827, + "date":"2017-07-02T03:18:05+00:00", + "md5":null, + "sha1":"7212a2f595012404511f7bdd588a89858f97c36e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:05+00:00", + "size":37827, + "sha1":"7212a2f595012404511f7bdd588a89858f97c36e", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/runtimecompile@1.9.83", + "file_name":"runtimecompile-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/runtimecompile@1.9.83?classifier=sources", + "file_name":"runtimecompile-1.9.83-sources.jar", + "size":18343, + "date":"2017-07-02T03:18:08+00:00", + "md5":null, + "sha1":"ea527e744ee235fa2a07f8fb1af970a2e27e87d9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"runtimecompile", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:08+00:00", + "size":18343, + "sha1":"ea527e744ee235fa2a07f8fb1af970a2e27e87d9", + "name":"runtimecompile", + "description":"A runtimecompiler library backed by eclipse compiler such that programs can just call lib.getClass(Class z) and z will be compiled if source has changed(and the dependencies as well)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/runtimecompile/1.9.83/runtimecompile-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/runtimecompile@1.9.83", + "file_name":"runtimecompile-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/projectcreator@1.9.83", + "file_name":"projectcreator-1.9.83.jar", + "size":7883, + "date":"2017-07-02T03:21:15+00:00", + "md5":null, + "sha1":"defb07accd7aa9410a8124fc807b2bc010b40a79", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:15+00:00", + "size":7883, + "sha1":"defb07accd7aa9410a8124fc807b2bc010b40a79", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/projectcreator@1.9.83", + "file_name":"projectcreator-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/projectcreator@1.9.83?classifier=sources", + "file_name":"projectcreator-1.9.83-sources.jar", + "size":4684, + "date":"2017-07-02T03:21:20+00:00", + "md5":null, + "sha1":"167feeda2af5ee7fd4048d526b081aa781673edb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"projectcreator", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:20+00:00", + "size":4684, + "sha1":"167feeda2af5ee7fd4048d526b081aa781673edb", + "name":"projectcreator", + "description":"Project to create wepieces webservers with a gradle build, dev server, prod server and example app", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/projectcreator/1.9.83/projectcreator-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/projectcreator@1.9.83", + "file_name":"projectcreator-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/json-jackson-plugin@1.9.83", + "file_name":"json-jackson-plugin-1.9.83.jar", + "size":9124, + "date":"2017-07-02T03:19:57+00:00", + "md5":null, + "sha1":"a3bfe5df502af598ef772765bddd7d044d92ee5c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:57+00:00", + "size":9124, + "sha1":"a3bfe5df502af598ef772765bddd7d044d92ee5c", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/json-jackson-plugin@1.9.83", + "file_name":"json-jackson-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/json-jackson-plugin@1.9.83?classifier=sources", + "file_name":"json-jackson-plugin-1.9.83-sources.jar", + "size":5264, + "date":"2017-07-02T03:20:00+00:00", + "md5":null, + "sha1":"16cbcaea37f11289d3a94257a529e9a7e0a111f8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"json-jackson-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:00+00:00", + "size":5264, + "sha1":"16cbcaea37f11289d3a94257a529e9a7e0a111f8", + "name":"json-jackson-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/json-jackson-plugin/1.9.83/json-jackson-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/json-jackson-plugin@1.9.83", + "file_name":"json-jackson-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2to1_1-client@1.9.83", + "file_name":"http2to1_1-client-1.9.83.jar", + "size":10045, + "date":"2017-07-02T03:19:30+00:00", + "md5":null, + "sha1":"4b9797c7f8638ce8fc1b5e1cb0207f56490caec5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:30+00:00", + "size":10045, + "sha1":"4b9797c7f8638ce8fc1b5e1cb0207f56490caec5", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2to1_1-client@1.9.83", + "file_name":"http2to1_1-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2to1_1-client@1.9.83?classifier=sources", + "file_name":"http2to1_1-client-1.9.83-sources.jar", + "size":4592, + "date":"2017-07-02T03:19:32+00:00", + "md5":null, + "sha1":"b78974acf9b26c1bff0ce931d385751a0955b7e4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2to1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:32+00:00", + "size":4592, + "sha1":"b78974acf9b26c1bff0ce931d385751a0955b7e4", + "name":"http2to1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2to1_1-client/1.9.83/http2to1_1-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2to1_1-client@1.9.83", + "file_name":"http2to1_1-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-translations@1.9.83", + "file_name":"http2-translations-1.9.83.jar", + "size":7484, + "date":"2017-07-02T03:19:23+00:00", + "md5":null, + "sha1":"308ce202815849b05d162089b8836b521f10fc71", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:23+00:00", + "size":7484, + "sha1":"308ce202815849b05d162089b8836b521f10fc71", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-translations@1.9.83", + "file_name":"http2-translations-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-translations@1.9.83?classifier=sources", + "file_name":"http2-translations-1.9.83-sources.jar", + "size":4091, + "date":"2017-07-02T03:19:25+00:00", + "md5":null, + "sha1":"b04d42609ad28a965d8f566a0a23ba81fbcfaea6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-translations", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:25+00:00", + "size":4091, + "sha1":"b04d42609ad28a965d8f566a0a23ba81fbcfaea6", + "name":"http2-translations", + "description":"Translations from http1_1 to http2 and back", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-translations/1.9.83/http2-translations-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-translations@1.9.83", + "file_name":"http2-translations-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-parser@1.9.83", + "file_name":"http2-parser-1.9.83.jar", + "size":82338, + "date":"2017-07-02T03:19:15+00:00", + "md5":null, + "sha1":"10f6ef42d83c643dcfd07ebb6ebb17d87a45224c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:15+00:00", + "size":82338, + "sha1":"10f6ef42d83c643dcfd07ebb6ebb17d87a45224c", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-parser@1.9.83", + "file_name":"http2-parser-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-parser@1.9.83?classifier=sources", + "file_name":"http2-parser-1.9.83-sources.jar", + "size":44424, + "date":"2017-07-02T03:19:17+00:00", + "md5":null, + "sha1":"0e3b3b25fbcc11ffef71aaaf57a164d39ea97861", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:17+00:00", + "size":44424, + "sha1":"0e3b3b25fbcc11ffef71aaaf57a164d39ea97861", + "name":"http2-parser", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-parser/1.9.83/http2-parser-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-parser@1.9.83", + "file_name":"http2-parser-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-hpack@1.9.83", + "file_name":"http2-hpack-1.9.83.jar", + "size":36389, + "date":"2017-07-02T03:19:07+00:00", + "md5":null, + "sha1":"7c305dbc51ac9a16188f0b8ec530f11a5e3b96f7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:07+00:00", + "size":36389, + "sha1":"7c305dbc51ac9a16188f0b8ec530f11a5e3b96f7", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-hpack@1.9.83", + "file_name":"http2-hpack-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-hpack@1.9.83?classifier=sources", + "file_name":"http2-hpack-1.9.83-sources.jar", + "size":20645, + "date":"2017-07-02T03:19:10+00:00", + "md5":null, + "sha1":"030cff8b79b112b7adfced1512d9cdfee9faca97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-hpack", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:10+00:00", + "size":20645, + "sha1":"030cff8b79b112b7adfced1512d9cdfee9faca97", + "name":"http2-hpack", + "description":"A re-usable asynchronous http2 parser WITH header deserialization/serialization(hpack)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-hpack/1.9.83/http2-hpack-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-hpack@1.9.83", + "file_name":"http2-hpack-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-engine@1.9.83", + "file_name":"http2-engine-1.9.83.jar", + "size":114250, + "date":"2017-07-02T03:19:00+00:00", + "md5":null, + "sha1":"83301f2f15b479a7d69588b27b3634de9cc7e6dd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:00+00:00", + "size":114250, + "sha1":"83301f2f15b479a7d69588b27b3634de9cc7e6dd", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-engine@1.9.83", + "file_name":"http2-engine-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-engine@1.9.83?classifier=sources", + "file_name":"http2-engine-1.9.83-sources.jar", + "size":60221, + "date":"2017-07-02T03:19:02+00:00", + "md5":null, + "sha1":"4d0e1498a8cd7ca095b21b124f47d6972fb64a8b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-engine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:02+00:00", + "size":60221, + "sha1":"4d0e1498a8cd7ca095b21b124f47d6972fb64a8b", + "name":"http2-engine", + "description":"A re-usable asynchronous http2 parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-engine/1.9.83/http2-engine-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-engine@1.9.83", + "file_name":"http2-engine-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-client/1.9.83/http2-client-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-client@1.9.83", + "file_name":"http2-client-1.9.83.jar", + "size":17078, + "date":"2017-07-02T03:18:52+00:00", + "md5":null, + "sha1":"62a3f6789bf7fbcf5bc615e686fdabd087eb43f3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:52+00:00", + "size":17078, + "sha1":"62a3f6789bf7fbcf5bc615e686fdabd087eb43f3", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-client/1.9.83/http2-client-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-client/1.9.83/http2-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-client@1.9.83", + "file_name":"http2-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http2-client/1.9.83/http2-client-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-client@1.9.83?classifier=sources", + "file_name":"http2-client-1.9.83-sources.jar", + "size":10577, + "date":"2017-07-02T03:18:53+00:00", + "md5":null, + "sha1":"45c3e8ac90817f69a7cb5dc93eb30e824e3bc432", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http2-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:53+00:00", + "size":10577, + "sha1":"45c3e8ac90817f69a7cb5dc93eb30e824e3bc432", + "name":"http2-client", + "description":"Strictly an http/2 client for when you know the server does http2 keeping it KISS", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http2-client/1.9.83/http2-client-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http2-client/1.9.83/http2-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http2-client@1.9.83", + "file_name":"http2-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-parser@1.9.83", + "file_name":"http1_1-parser-1.9.83.jar", + "size":65561, + "date":"2017-07-02T03:18:44+00:00", + "md5":null, + "sha1":"e12ea5cd01d448021ba298397e038773228fc1f2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:44+00:00", + "size":65561, + "sha1":"e12ea5cd01d448021ba298397e038773228fc1f2", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-parser@1.9.83", + "file_name":"http1_1-parser-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-parser@1.9.83?classifier=sources", + "file_name":"http1_1-parser-1.9.83-sources.jar", + "size":37017, + "date":"2017-07-02T03:18:47+00:00", + "md5":null, + "sha1":"a1e868d5706ddf881760a6bdf11a4246e2986207", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http1_1-parser", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:47+00:00", + "size":37017, + "sha1":"a1e868d5706ddf881760a6bdf11a4246e2986207", + "name":"http1_1-parser", + "description":"A re-usable asynchronous http 1.1 parser that can be used with any nio client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http1_1-parser/1.9.83/http1_1-parser-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-parser@1.9.83", + "file_name":"http1_1-parser-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-client@1.9.83", + "file_name":"http1_1-client-1.9.83.jar", + "size":22492, + "date":"2017-07-02T03:18:37+00:00", + "md5":null, + "sha1":"a952687116943b46dbd054ebde81e95404aab621", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:37+00:00", + "size":22492, + "sha1":"a952687116943b46dbd054ebde81e95404aab621", + "name":"http1_1-client", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-client@1.9.83", + "file_name":"http1_1-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-client@1.9.83?classifier=sources", + "file_name":"http1_1-client-1.9.83-sources.jar", + "size":10915, + "date":"2017-07-02T03:18:41+00:00", + "md5":null, + "sha1":"35dffc6f854c29c70837251f0c39ff094a8a74c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http1_1-client", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:41+00:00", + "size":10915, + "sha1":"35dffc6f854c29c70837251f0c39ff094a8a74c3", + "name":"http1_1-client", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http1_1-client/1.9.83/http1_1-client-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http1_1-client@1.9.83", + "file_name":"http1_1-client-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver-test@1.9.83", + "file_name":"http-webserver-test-1.9.83.jar", + "size":17236, + "date":"2017-07-02T03:21:06+00:00", + "md5":null, + "sha1":"33d6b56b43ecede32018fe239f62bb89eb01f63f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:06+00:00", + "size":17236, + "sha1":"33d6b56b43ecede32018fe239f62bb89eb01f63f", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver-test@1.9.83", + "file_name":"http-webserver-test-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver-test@1.9.83?classifier=sources", + "file_name":"http-webserver-test-1.9.83-sources.jar", + "size":10899, + "date":"2017-07-02T03:21:09+00:00", + "md5":null, + "sha1":"fc43909597eec87d02d49b32a645a52f9e6db035", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-webserver-test", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:09+00:00", + "size":10899, + "sha1":"fc43909597eec87d02d49b32a645a52f9e6db035", + "name":"http-webserver-test", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-webserver-test/1.9.83/http-webserver-test-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver-test@1.9.83", + "file_name":"http-webserver-test-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver@1.9.83", + "file_name":"http-webserver-1.9.83.jar", + "size":57989, + "date":"2017-07-02T03:20:58+00:00", + "md5":null, + "sha1":"bdb4fd9e9f3c1133a0c6e91975ed5d35b028dce4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:58+00:00", + "size":57989, + "sha1":"bdb4fd9e9f3c1133a0c6e91975ed5d35b028dce4", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver@1.9.83", + "file_name":"http-webserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver@1.9.83?classifier=sources", + "file_name":"http-webserver-1.9.83-sources.jar", + "size":30513, + "date":"2017-07-02T03:21:01+00:00", + "md5":null, + "sha1":"55f0b0e77ef733f7b88a694d363c37d43a25fe72", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-webserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:01+00:00", + "size":30513, + "sha1":"55f0b0e77ef733f7b88a694d363c37d43a25fe72", + "name":"http-webserver", + "description":"The full webpieces server AS A library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-webserver/1.9.83/http-webserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-webserver@1.9.83", + "file_name":"http-webserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating-dev@1.9.83", + "file_name":"http-templating-dev-1.9.83.jar", + "size":50182, + "date":"2017-07-02T03:20:48+00:00", + "md5":null, + "sha1":"664114861723e0e9ff74c65ac60353d3c6a46169", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:48+00:00", + "size":50182, + "sha1":"664114861723e0e9ff74c65ac60353d3c6a46169", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating-dev@1.9.83", + "file_name":"http-templating-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating-dev@1.9.83?classifier=sources", + "file_name":"http-templating-dev-1.9.83-sources.jar", + "size":30057, + "date":"2017-07-02T03:20:52+00:00", + "md5":null, + "sha1":"5665817c2fbe54e0be46a7c16c88b55c7ab9f4bf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-templating-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:52+00:00", + "size":30057, + "sha1":"5665817c2fbe54e0be46a7c16c88b55c7ab9f4bf", + "name":"http-templating-dev", + "description":"Library that swaps out http-templating classes to enable compiling on any incoming request if the source code has changed for development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-templating-dev/1.9.83/http-templating-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating-dev@1.9.83", + "file_name":"http-templating-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-templating/1.9.83/http-templating-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating@1.9.83", + "file_name":"http-templating-1.9.83.jar", + "size":52684, + "date":"2017-07-02T03:20:39+00:00", + "md5":null, + "sha1":"82cafbbbb220455ed2754c7ee39d2f30f093b67d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:39+00:00", + "size":52684, + "sha1":"82cafbbbb220455ed2754c7ee39d2f30f093b67d", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-templating/1.9.83/http-templating-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-templating/1.9.83/http-templating-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating@1.9.83", + "file_name":"http-templating-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-templating/1.9.83/http-templating-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating@1.9.83?classifier=sources", + "file_name":"http-templating-1.9.83-sources.jar", + "size":32831, + "date":"2017-07-02T03:20:41+00:00", + "md5":null, + "sha1":"866e5d34869b45189c2ec593127c5e8a247f4f18", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-templating", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:41+00:00", + "size":32831, + "sha1":"866e5d34869b45189c2ec593127c5e8a247f4f18", + "name":"http-templating", + "description":"Templating library using groovy as the scripting language", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-templating/1.9.83/http-templating-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-templating/1.9.83/http-templating-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-templating@1.9.83", + "file_name":"http-templating-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-shared/1.9.83/http-shared-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-shared@1.9.83", + "file_name":"http-shared-1.9.83.jar", + "size":11571, + "date":"2017-07-02T03:20:32+00:00", + "md5":null, + "sha1":"4086b01040b49f6e9d7acd5c650d77ec7b39d497", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:32+00:00", + "size":11571, + "sha1":"4086b01040b49f6e9d7acd5c650d77ec7b39d497", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-shared/1.9.83/http-shared-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-shared/1.9.83/http-shared-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-shared@1.9.83", + "file_name":"http-shared-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-shared/1.9.83/http-shared-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-shared@1.9.83?classifier=sources", + "file_name":"http-shared-1.9.83-sources.jar", + "size":7919, + "date":"2017-07-02T03:20:35+00:00", + "md5":null, + "sha1":"e04c0ea2b882a180a01d4000a9e4db2c732587f4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-shared", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:35+00:00", + "size":7919, + "sha1":"e04c0ea2b882a180a01d4000a9e4db2c732587f4", + "name":"http-shared", + "description":"Shared contexts between the router and templating system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-shared/1.9.83/http-shared-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-shared/1.9.83/http-shared-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-shared@1.9.83", + "file_name":"http-shared-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router-dev@1.9.83", + "file_name":"http-router-dev-1.9.83.jar", + "size":13897, + "date":"2017-07-02T03:20:25+00:00", + "md5":null, + "sha1":"56a971d9ebd709b7c8fdbbea62301a50e2b73039", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:25+00:00", + "size":13897, + "sha1":"56a971d9ebd709b7c8fdbbea62301a50e2b73039", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router-dev@1.9.83", + "file_name":"http-router-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router-dev@1.9.83?classifier=sources", + "file_name":"http-router-dev-1.9.83-sources.jar", + "size":8441, + "date":"2017-07-02T03:20:29+00:00", + "md5":null, + "sha1":"1a48f4b7c2268a34faca05c756d1cf7b19843717", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-router-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:29+00:00", + "size":8441, + "sha1":"1a48f4b7c2268a34faca05c756d1cf7b19843717", + "name":"http-router-dev", + "description":"Library that swaps out specific http-router components to be able to compile code on any request that has changed for use in development servers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-router-dev/1.9.83/http-router-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router-dev@1.9.83", + "file_name":"http-router-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-router/1.9.83/http-router-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router@1.9.83", + "file_name":"http-router-1.9.83.jar", + "size":191986, + "date":"2017-07-02T03:20:16+00:00", + "md5":null, + "sha1":"d9d6e370aaadedb69b7532203c5ae8963d214183", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:16+00:00", + "size":191986, + "sha1":"d9d6e370aaadedb69b7532203c5ae8963d214183", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-router/1.9.83/http-router-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-router/1.9.83/http-router-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router@1.9.83", + "file_name":"http-router-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-router/1.9.83/http-router-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router@1.9.83?classifier=sources", + "file_name":"http-router-1.9.83-sources.jar", + "size":105422, + "date":"2017-07-02T03:20:21+00:00", + "md5":null, + "sha1":"7e595506c015cd2f7f324b6eca531aae85bab6f1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-router", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:21+00:00", + "size":105422, + "sha1":"7e595506c015cd2f7f324b6eca531aae85bab6f1", + "name":"http-router", + "description":"Http Router where you feed http requests in and get responses in the form of which view needs to be shown with the arguments that you need to give to that view", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-router/1.9.83/http-router-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-router/1.9.83/http-router-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-router@1.9.83", + "file_name":"http-router-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-frontend2@1.9.83", + "file_name":"http-frontend2-1.9.83.jar", + "size":45670, + "date":"2017-07-02T03:18:29+00:00", + "md5":null, + "sha1":"3d39d23b2f8e8967cc48af382ee027f9ff4f17b1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:29+00:00", + "size":45670, + "sha1":"3d39d23b2f8e8967cc48af382ee027f9ff4f17b1", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-frontend2@1.9.83", + "file_name":"http-frontend2-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-frontend2@1.9.83?classifier=sources", + "file_name":"http-frontend2-1.9.83-sources.jar", + "size":22429, + "date":"2017-07-02T03:18:32+00:00", + "md5":null, + "sha1":"61cb7baddf71a27488bb57b2d16b3eac706f6632", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-frontend2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:32+00:00", + "size":22429, + "sha1":"61cb7baddf71a27488bb57b2d16b3eac706f6632", + "name":"http-frontend2", + "description":"Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-frontend2/1.9.83/http-frontend2-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-frontend2@1.9.83", + "file_name":"http-frontend2-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-backpressure-tests@1.9.83", + "file_name":"http-backpressure-tests-1.9.83.jar", + "size":361, + "date":"2017-07-02T03:18:21+00:00", + "md5":null, + "sha1":"0b8cac5e42d358f8052888adf5e3c8d1d8d790e9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:18:21+00:00", + "size":361, + "sha1":"0b8cac5e42d358f8052888adf5e3c8d1d8d790e9", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-backpressure-tests@1.9.83", + "file_name":"http-backpressure-tests-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-backpressure-tests@1.9.83?classifier=sources", + "file_name":"http-backpressure-tests-1.9.83-sources.jar", + "size":361, + "date":"2017-07-02T03:18:23+00:00", + "md5":null, + "sha1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http-backpressure-tests", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:18:23+00:00", + "size":361, + "sha1":"f6410a8a87aeeeedaa353e8dffbae2af6ad413c8", + "name":"http-backpressure-tests", + "description":"An http client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http-backpressure-tests/1.9.83/http-backpressure-tests-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http-backpressure-tests@1.9.83", + "file_name":"http-backpressure-tests-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:18:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http/1.9.83/http-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http@1.9.83", + "file_name":"http-1.9.83.jar", + "size":345, + "date":"2017-07-02T03:16:30+00:00", + "md5":null, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:30+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http/1.9.83/http-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http/1.9.83/http-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http@1.9.83", + "file_name":"http-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/http/1.9.83/http-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http@1.9.83?classifier=sources", + "file_name":"http-1.9.83-sources.jar", + "size":345, + "date":"2017-07-02T03:16:35+00:00", + "md5":null, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"http", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:35+00:00", + "size":345, + "sha1":"8559a887e9d5f71fb947ec9ce5a9511a0314ad6b", + "name":"http", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/http/1.9.83/http-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/http/1.9.83/http-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/http@1.9.83", + "file_name":"http-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/hibernate-plugin@1.9.83", + "file_name":"hibernate-plugin-1.9.83.jar", + "size":10853, + "date":"2017-07-02T03:19:49+00:00", + "md5":null, + "sha1":"4efd5955453240db8018ddccdf6bc4743d32b628", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:49+00:00", + "size":10853, + "sha1":"4efd5955453240db8018ddccdf6bc4743d32b628", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/hibernate-plugin@1.9.83", + "file_name":"hibernate-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/hibernate-plugin@1.9.83?classifier=sources", + "file_name":"hibernate-plugin-1.9.83-sources.jar", + "size":6374, + "date":"2017-07-02T03:19:51+00:00", + "md5":null, + "sha1":"b6b33d66b6e68f2975b70fc370bb00b262fe28ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"hibernate-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:51+00:00", + "size":6374, + "sha1":"b6b33d66b6e68f2975b70fc370bb00b262fe28ca", + "name":"hibernate-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/hibernate-plugin/1.9.83/hibernate-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/hibernate-plugin@1.9.83", + "file_name":"hibernate-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/h2db-plugin@1.9.83", + "file_name":"h2db-plugin-1.9.83.jar", + "size":5575, + "date":"2017-07-02T03:19:42+00:00", + "md5":null, + "sha1":"87fa6bf1cdc23cc4322937203efbfb5466e03cfa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:19:42+00:00", + "size":5575, + "sha1":"87fa6bf1cdc23cc4322937203efbfb5466e03cfa", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/h2db-plugin@1.9.83", + "file_name":"h2db-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/h2db-plugin@1.9.83?classifier=sources", + "file_name":"h2db-plugin-1.9.83-sources.jar", + "size":3989, + "date":"2017-07-02T03:19:45+00:00", + "md5":null, + "sha1":"7da486aca8455f0bc0bd872b33705c8123111ce0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"h2db-plugin", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:19:45+00:00", + "size":3989, + "sha1":"7da486aca8455f0bc0bd872b33705c8123111ce0", + "name":"h2db-plugin", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/h2db-plugin/1.9.83/h2db-plugin-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/h2db-plugin@1.9.83", + "file_name":"h2db-plugin-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:19:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/gradle-plugin-htmlcompiler@1.9.83", + "file_name":"gradle-plugin-htmlcompiler-1.9.83.jar", + "size":14591, + "date":"2017-07-02T03:20:08+00:00", + "md5":null, + "sha1":"7dd5a6d2cbdaaa754384677f85b12d83ff018037", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:20:08+00:00", + "size":14591, + "sha1":"7dd5a6d2cbdaaa754384677f85b12d83ff018037", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/gradle-plugin-htmlcompiler@1.9.83", + "file_name":"gradle-plugin-htmlcompiler-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/gradle-plugin-htmlcompiler@1.9.83?classifier=sources", + "file_name":"gradle-plugin-htmlcompiler-1.9.83-sources.jar", + "size":6068, + "date":"2017-07-02T03:20:10+00:00", + "md5":null, + "sha1":"3ba9698bf406038872359fdb2a84bbea72acd86c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"gradle-plugin-htmlcompiler", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:20:10+00:00", + "size":6068, + "sha1":"3ba9698bf406038872359fdb2a84bbea72acd86c", + "name":"gradle-plugin-htmlcompiler", + "description":"Gradle plugin to compile html files to java Class files for production use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/gradle-plugin-htmlcompiler/1.9.83/gradle-plugin-htmlcompiler-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/gradle-plugin-htmlcompiler@1.9.83", + "file_name":"gradle-plugin-htmlcompiler-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:20:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-util/1.9.83/core-util-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-util@1.9.83", + "file_name":"core-util-1.9.83.jar", + "size":54648, + "date":"2017-07-02T03:17:56+00:00", + "md5":null, + "sha1":"acc4f58c575e255c4544a2a5e2c275589c8b622f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:56+00:00", + "size":54648, + "sha1":"acc4f58c575e255c4544a2a5e2c275589c8b622f", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-util/1.9.83/core-util-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-util/1.9.83/core-util-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-util@1.9.83", + "file_name":"core-util-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-util/1.9.83/core-util-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-util@1.9.83?classifier=sources", + "file_name":"core-util-1.9.83-sources.jar", + "size":25749, + "date":"2017-07-02T03:17:59+00:00", + "md5":null, + "sha1":"568ea56496d57db24b053954150d5faf82fc0fa0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-util", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:59+00:00", + "size":25749, + "sha1":"568ea56496d57db24b053954150d5faf82fc0fa0", + "name":"core-util", + "description":"A simple utilitiy library with special executor but rather small amount of code in here", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-util/1.9.83/core-util-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-util/1.9.83/core-util-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-util@1.9.83", + "file_name":"core-util-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-statemachine@1.9.83", + "file_name":"core-statemachine-1.9.83.jar", + "size":10848, + "date":"2017-07-02T03:17:48+00:00", + "md5":null, + "sha1":"bf424872df3f09d498a61e0782a8f348e3307671", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:48+00:00", + "size":10848, + "sha1":"bf424872df3f09d498a61e0782a8f348e3307671", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-statemachine@1.9.83", + "file_name":"core-statemachine-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-statemachine@1.9.83?classifier=sources", + "file_name":"core-statemachine-1.9.83-sources.jar", + "size":7314, + "date":"2017-07-02T03:17:50+00:00", + "md5":null, + "sha1":"d50517a11c934d5a3306bb048003dfe367555daa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-statemachine", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:50+00:00", + "size":7314, + "sha1":"d50517a11c934d5a3306bb048003dfe367555daa", + "name":"core-statemachine", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-statemachine/1.9.83/core-statemachine-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-statemachine@1.9.83", + "file_name":"core-statemachine-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ssl@1.9.83", + "file_name":"core-ssl-1.9.83.jar", + "size":14341, + "date":"2017-07-02T03:17:40+00:00", + "md5":null, + "sha1":"28813b0131366be24796f79b72dbc6eb7ac5f0b1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:40+00:00", + "size":14341, + "sha1":"28813b0131366be24796f79b72dbc6eb7ac5f0b1", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ssl@1.9.83", + "file_name":"core-ssl-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ssl@1.9.83?classifier=sources", + "file_name":"core-ssl-1.9.83-sources.jar", + "size":8972, + "date":"2017-07-02T03:17:43+00:00", + "md5":null, + "sha1":"d84c4c07889c2161e0887fb8e1694ae4a6bd802d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-ssl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:43+00:00", + "size":8972, + "sha1":"d84c4c07889c2161e0887fb8e1694ae4a6bd802d", + "name":"core-ssl", + "description":"a wrapper around SSLEngine in java to make it easier to use", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-ssl/1.9.83/core-ssl-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ssl@1.9.83", + "file_name":"core-ssl-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-mock/1.9.83/core-mock-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-mock@1.9.83", + "file_name":"core-mock-1.9.83.jar", + "size":11318, + "date":"2017-07-02T03:17:33+00:00", + "md5":null, + "sha1":"d9d49b29902b6245b02cebc107f6ef2d9da1c9ab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:33+00:00", + "size":11318, + "sha1":"d9d49b29902b6245b02cebc107f6ef2d9da1c9ab", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-mock/1.9.83/core-mock-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-mock/1.9.83/core-mock-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-mock@1.9.83", + "file_name":"core-mock-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-mock/1.9.83/core-mock-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-mock@1.9.83?classifier=sources", + "file_name":"core-mock-1.9.83-sources.jar", + "size":5194, + "date":"2017-07-02T03:17:34+00:00", + "md5":null, + "sha1":"3d7208c4eeabb4bafb0533a272f0918ec47b404b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-mock", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:34+00:00", + "size":5194, + "sha1":"3d7208c4eeabb4bafb0533a272f0918ec47b404b", + "name":"core-mock", + "description":"a simple mock superclass that mock objects can use to have less code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-mock/1.9.83/core-mock-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-mock/1.9.83/core-mock-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-mock@1.9.83", + "file_name":"core-mock-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ddl@1.9.83", + "file_name":"core-ddl-1.9.83.jar", + "size":4270, + "date":"2017-07-02T03:17:24+00:00", + "md5":null, + "sha1":"61f3e155e138475e25766871102781ca2794d6e0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:24+00:00", + "size":4270, + "sha1":"61f3e155e138475e25766871102781ca2794d6e0", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ddl@1.9.83", + "file_name":"core-ddl-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ddl@1.9.83?classifier=sources", + "file_name":"core-ddl-1.9.83-sources.jar", + "size":2744, + "date":"2017-07-02T03:17:27+00:00", + "md5":null, + "sha1":"568dc20f4c62f3de6af168911f19b62654f0dedb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-ddl", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:27+00:00", + "size":2744, + "sha1":"568dc20f4c62f3de6af168911f19b62654f0dedb", + "name":"core-ddl", + "description":"an api to run DDL commands from java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-ddl/1.9.83/core-ddl-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-ddl@1.9.83", + "file_name":"core-ddl-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-datawrapper@1.9.83", + "file_name":"core-datawrapper-1.9.83.jar", + "size":21400, + "date":"2017-07-02T03:17:15+00:00", + "md5":null, + "sha1":"9768cb3758212f7acfa3dd04d95900ffd2d7e545", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:15+00:00", + "size":21400, + "sha1":"9768cb3758212f7acfa3dd04d95900ffd2d7e545", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-datawrapper@1.9.83", + "file_name":"core-datawrapper-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-datawrapper@1.9.83?classifier=sources", + "file_name":"core-datawrapper-1.9.83-sources.jar", + "size":14292, + "date":"2017-07-02T03:17:18+00:00", + "md5":null, + "sha1":"88ecae2fd21c434be55497107fc91f86706664db", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-datawrapper", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:18+00:00", + "size":14292, + "sha1":"88ecae2fd21c434be55497107fc91f86706664db", + "name":"core-datawrapper", + "description":"DataWrapper makes it easy to chain ByteBuffers together without copying them such that they just look like one entity avoiding constantly copying the data", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-datawrapper/1.9.83/core-datawrapper-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-datawrapper@1.9.83", + "file_name":"core-datawrapper-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-channelmanager2@1.9.83", + "file_name":"core-channelmanager2-1.9.83.jar", + "size":116879, + "date":"2017-07-02T03:17:07+00:00", + "md5":null, + "sha1":"82748abd173cb13b2f3a3464fe4fa4ca7d42f385", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:07+00:00", + "size":116879, + "sha1":"82748abd173cb13b2f3a3464fe4fa4ca7d42f385", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-channelmanager2@1.9.83", + "file_name":"core-channelmanager2-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-channelmanager2@1.9.83?classifier=sources", + "file_name":"core-channelmanager2-1.9.83-sources.jar", + "size":69670, + "date":"2017-07-02T03:17:11+00:00", + "md5":null, + "sha1":"e6a2ca933752332891b6f6a044d6251c3d3a853b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-channelmanager2", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:11+00:00", + "size":69670, + "sha1":"e6a2ca933752332891b6f6a044d6251c3d3a853b", + "name":"core-channelmanager2", + "description":"NIO library that is very lightweight and very mockable/testable so you can write higher level tests for your system", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-channelmanager2/1.9.83/core-channelmanager2-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-channelmanager2@1.9.83", + "file_name":"core-channelmanager2-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-asyncserver@1.9.83", + "file_name":"core-asyncserver-1.9.83.jar", + "size":13087, + "date":"2017-07-02T03:17:00+00:00", + "md5":null, + "sha1":"fc0470af4a1ffe8924af8d0ed725d4015dbdc6dc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:17:00+00:00", + "size":13087, + "sha1":"fc0470af4a1ffe8924af8d0ed725d4015dbdc6dc", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-asyncserver@1.9.83", + "file_name":"core-asyncserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-asyncserver@1.9.83?classifier=sources", + "file_name":"core-asyncserver-1.9.83-sources.jar", + "size":8951, + "date":"2017-07-02T03:17:02+00:00", + "md5":null, + "sha1":"bc354a3cb46bbae92a3a75e191d1203b2fdcdfed", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core-asyncserver", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:17:02+00:00", + "size":8951, + "sha1":"bc354a3cb46bbae92a3a75e191d1203b2fdcdfed", + "name":"core-asyncserver", + "description":"NIO wrapper on top of core-channelmanager2 making creating a tcp server just 3 lines of code", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core-asyncserver/1.9.83/core-asyncserver-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core-asyncserver@1.9.83", + "file_name":"core-asyncserver-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:17:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core/1.9.83/core-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core@1.9.83", + "file_name":"core-1.9.83.jar", + "size":345, + "date":"2017-07-02T03:16:23+00:00", + "md5":null, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:16:23+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core/1.9.83/core-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core/1.9.83/core-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core@1.9.83", + "file_name":"core-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/core/1.9.83/core-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core@1.9.83?classifier=sources", + "file_name":"core-1.9.83-sources.jar", + "size":345, + "date":"2017-07-02T03:16:28+00:00", + "md5":null, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"core", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:16:28+00:00", + "size":345, + "sha1":"35d1622c3bb3e7c1ba8e4975ad97b873113c566d", + "name":"core", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/core/1.9.83/core-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/core/1.9.83/core-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/core@1.9.83", + "file_name":"core-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:16:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME-dev@1.9.83", + "file_name":"WEBPIECESxAPPNAME-dev-1.9.83.jar", + "size":6996, + "date":"2017-07-02T03:21:48+00:00", + "md5":null, + "sha1":"90e4dad9f9df849a44c2e53571da9b8873c6bd08", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:48+00:00", + "size":6996, + "sha1":"90e4dad9f9df849a44c2e53571da9b8873c6bd08", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME-dev@1.9.83", + "file_name":"WEBPIECESxAPPNAME-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME-dev@1.9.83?classifier=sources", + "file_name":"WEBPIECESxAPPNAME-dev-1.9.83-sources.jar", + "size":6271, + "date":"2017-07-02T03:21:50+00:00", + "md5":null, + "sha1":"5de9e7e24cab00e744099787ee224d5303f90adf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME-dev", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:50+00:00", + "size":6271, + "sha1":"5de9e7e24cab00e744099787ee224d5303f90adf", + "name":"WEBPIECESxAPPNAME-dev", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME-dev/1.9.83/WEBPIECESxAPPNAME-dev-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME-dev@1.9.83", + "file_name":"WEBPIECESxAPPNAME-dev-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME@1.9.83", + "file_name":"WEBPIECESxAPPNAME-1.9.83.jar", + "size":101725, + "date":"2017-07-02T03:21:40+00:00", + "md5":null, + "sha1":"0a479539970ece32636a6262f5030ef111fa03ee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:21:40+00:00", + "size":101725, + "sha1":"0a479539970ece32636a6262f5030ef111fa03ee", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME@1.9.83", + "file_name":"WEBPIECESxAPPNAME-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME@1.9.83?classifier=sources", + "file_name":"WEBPIECESxAPPNAME-1.9.83-sources.jar", + "size":52771, + "date":"2017-07-02T03:21:42+00:00", + "md5":null, + "sha1":"e7ad84bfad4136161af245c65054f8f1362cae6e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webpieces", + "artifact_id":"WEBPIECESxAPPNAME", + "version":"1.9.83", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:21:42+00:00", + "size":52771, + "sha1":"e7ad84bfad4136161af245c65054f8f1362cae6e", + "name":"WEBPIECESxAPPNAME", + "description":"Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webpieces/WEBPIECESxAPPNAME/1.9.83/WEBPIECESxAPPNAME-1.9.83.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webpieces/WEBPIECESxAPPNAME@1.9.83", + "file_name":"WEBPIECESxAPPNAME-1.9.83.pom", + "size":0, + "date":"2017-07-02T03:21:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/zone.js@0.8.12", + "file_name":"zone.js-0.8.12.jar", + "size":189216, + "date":"2017-07-02T04:49:29+00:00", + "md5":null, + "sha1":"1b25f4c6adfe1d2d3bea9a483c67fcc100030a47", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:49:29+00:00", + "size":189216, + "sha1":"1b25f4c6adfe1d2d3bea9a483c67fcc100030a47", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/zone.js@0.8.12", + "file_name":"zone.js-0.8.12.pom", + "size":0, + "date":"2017-07-02T04:49:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/zone.js@0.8.12?classifier=sources", + "file_name":"zone.js-0.8.12-sources.jar", + "size":22, + "date":"2017-07-02T04:49:30+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"zone.js", + "version":"0.8.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:49:30+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"zone.js", + "description":"WebJar for zone.js", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/zone.js/0.8.12/zone.js-0.8.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/zone.js@0.8.12", + "file_name":"zone.js-0.8.12.pom", + "size":0, + "date":"2017-07-02T04:49:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/typescript/2.4.1/typescript-2.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/typescript@2.4.1", + "file_name":"typescript-2.4.1.jar", + "size":4329686, + "date":"2017-07-02T04:51:52+00:00", + "md5":null, + "sha1":"74704cf2089ad239d8571505dae1aa156d5c7fde", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:51:52+00:00", + "size":4329686, + "sha1":"74704cf2089ad239d8571505dae1aa156d5c7fde", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/typescript/2.4.1/typescript-2.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/typescript/2.4.1/typescript-2.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/typescript@2.4.1", + "file_name":"typescript-2.4.1.pom", + "size":0, + "date":"2017-07-02T04:51:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/typescript/2.4.1/typescript-2.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/typescript@2.4.1?classifier=sources", + "file_name":"typescript-2.4.1-sources.jar", + "size":22, + "date":"2017-07-02T04:51:53+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"typescript", + "version":"2.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:51:53+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"typescript", + "description":"WebJar for typescript", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/typescript/2.4.1/typescript-2.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/typescript/2.4.1/typescript-2.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/typescript@2.4.1", + "file_name":"typescript-2.4.1.pom", + "size":0, + "date":"2017-07-02T04:51:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-redux@4.4.45", + "file_name":"types__react-redux-4.4.45.jar", + "size":6195, + "date":"2017-07-02T11:02:27+00:00", + "md5":null, + "sha1":"3b75592cba0e809388bcb3c7c7bd23718a1be2ae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":6195, + "sha1":"3b75592cba0e809388bcb3c7c7bd23718a1be2ae", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-redux@4.4.45", + "file_name":"types__react-redux-4.4.45.pom", + "size":0, + "date":"2017-07-02T11:02:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-redux@4.4.45?classifier=sources", + "file_name":"types__react-redux-4.4.45-sources.jar", + "size":22, + "date":"2017-07-02T11:02:27+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react-redux", + "version":"4.4.45", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:27+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-redux", + "description":"WebJar for @types/react-redux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-redux/4.4.45/types__react-redux-4.4.45.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-redux@4.4.45", + "file_name":"types__react-redux-4.4.45.pom", + "size":0, + "date":"2017-07-02T11:02:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-dom@15.5.1", + "file_name":"types__react-dom-15.5.1.jar", + "size":8772, + "date":"2017-07-02T11:07:22+00:00", + "md5":null, + "sha1":"5a5d599e7b047478fbc86f57861875f9e786c214", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:07:22+00:00", + "size":8772, + "sha1":"5a5d599e7b047478fbc86f57861875f9e786c214", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-dom@15.5.1", + "file_name":"types__react-dom-15.5.1.pom", + "size":0, + "date":"2017-07-02T11:07:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-dom@15.5.1?classifier=sources", + "file_name":"types__react-dom-15.5.1-sources.jar", + "size":22, + "date":"2017-07-02T11:07:26+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react-dom", + "version":"15.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:26+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react-dom", + "description":"WebJar for @types/react-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react-dom/15.5.1/types__react-dom-15.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react-dom@15.5.1", + "file_name":"types__react-dom-15.5.1.pom", + "size":0, + "date":"2017-07-02T11:07:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react/15.0.34/types__react-15.0.34.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react@15.0.34", + "file_name":"types__react-15.0.34.jar", + "size":31041, + "date":"2017-07-02T10:58:42+00:00", + "md5":null, + "sha1":"005d438b982a3b515741322aadb83d217861d2cc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":31041, + "sha1":"005d438b982a3b515741322aadb83d217861d2cc", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react/15.0.34/types__react-15.0.34.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react/15.0.34/types__react-15.0.34.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react@15.0.34", + "file_name":"types__react-15.0.34.pom", + "size":0, + "date":"2017-07-02T10:58:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__react/15.0.34/types__react-15.0.34-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react@15.0.34?classifier=sources", + "file_name":"types__react-15.0.34-sources.jar", + "size":22, + "date":"2017-07-02T10:58:42+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__react", + "version":"15.0.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:58:42+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/react", + "description":"WebJar for @types/react", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__react/15.0.34/types__react-15.0.34-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__react/15.0.34/types__react-15.0.34.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__react@15.0.34", + "file_name":"types__react-15.0.34.pom", + "size":0, + "date":"2017-07-02T10:58:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__jasmine@2.5.53", + "file_name":"types__jasmine-2.5.53.jar", + "size":10535, + "date":"2017-07-02T04:59:35+00:00", + "md5":null, + "sha1":"5e131b5fecc133171a862349e935561bf684d777", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":10535, + "sha1":"5e131b5fecc133171a862349e935561bf684d777", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__jasmine@2.5.53", + "file_name":"types__jasmine-2.5.53.pom", + "size":0, + "date":"2017-07-02T04:59:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__jasmine@2.5.53?classifier=sources", + "file_name":"types__jasmine-2.5.53-sources.jar", + "size":22, + "date":"2017-07-02T04:59:35+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"types__jasmine", + "version":"2.5.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:59:35+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@types/jasmine", + "description":"WebJar for @types/jasmine", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/types__jasmine/2.5.53/types__jasmine-2.5.53.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/types__jasmine@2.5.53", + "file_name":"types__jasmine-2.5.53.pom", + "size":0, + "date":"2017-07-02T04:59:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-microsoft-contrib@5.0.1", + "file_name":"tslint-microsoft-contrib-5.0.1.jar", + "size":206262, + "date":"2017-07-02T04:55:33+00:00", + "md5":null, + "sha1":"52092d98ef99ed32028f3aa5b8e5988bbf856e28", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":206262, + "sha1":"52092d98ef99ed32028f3aa5b8e5988bbf856e28", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-microsoft-contrib@5.0.1", + "file_name":"tslint-microsoft-contrib-5.0.1.pom", + "size":0, + "date":"2017-07-02T04:55:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-microsoft-contrib@5.0.1?classifier=sources", + "file_name":"tslint-microsoft-contrib-5.0.1-sources.jar", + "size":22, + "date":"2017-07-02T04:55:33+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"tslint-microsoft-contrib", + "version":"5.0.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:33+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-microsoft-contrib", + "description":"WebJar for tslint-microsoft-contrib", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-microsoft-contrib/5.0.1/tslint-microsoft-contrib-5.0.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-microsoft-contrib@5.0.1", + "file_name":"tslint-microsoft-contrib-5.0.1.pom", + "size":0, + "date":"2017-07-02T04:55:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-eslint-rules@4.1.1", + "file_name":"tslint-eslint-rules-4.1.1.jar", + "size":136426, + "date":"2017-07-02T04:53:58+00:00", + "md5":null, + "sha1":"f4e51d30d5a9c803fed183230ccce77b58a01cc8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":136426, + "sha1":"f4e51d30d5a9c803fed183230ccce77b58a01cc8", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-eslint-rules@4.1.1", + "file_name":"tslint-eslint-rules-4.1.1.pom", + "size":0, + "date":"2017-07-02T04:53:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-eslint-rules@4.1.1?classifier=sources", + "file_name":"tslint-eslint-rules-4.1.1-sources.jar", + "size":22, + "date":"2017-07-02T04:53:58+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"tslint-eslint-rules", + "version":"4.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:58+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"tslint-eslint-rules", + "description":"WebJar for tslint-eslint-rules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/tslint-eslint-rules/4.1.1/tslint-eslint-rules-4.1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/tslint-eslint-rules@4.1.1", + "file_name":"tslint-eslint-rules-4.1.1.pom", + "size":0, + "date":"2017-07-02T04:53:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/systemjs@0.20.14", + "file_name":"systemjs-0.20.14.jar", + "size":231752, + "date":"2017-07-02T04:45:11+00:00", + "md5":null, + "sha1":"63efec9923beb99517a585c9b581f2071b1a4309", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":231752, + "sha1":"63efec9923beb99517a585c9b581f2071b1a4309", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/systemjs@0.20.14", + "file_name":"systemjs-0.20.14.pom", + "size":0, + "date":"2017-07-02T04:45:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/systemjs@0.20.14?classifier=sources", + "file_name":"systemjs-0.20.14-sources.jar", + "size":22, + "date":"2017-07-02T04:45:11+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"systemjs", + "version":"0.20.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:45:11+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"systemjs", + "description":"WebJar for systemjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/systemjs/0.20.14/systemjs-0.20.14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/systemjs@0.20.14", + "file_name":"systemjs-0.20.14.pom", + "size":0, + "date":"2017-07-02T04:45:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reflux/6.4.1/reflux-6.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflux@6.4.1", + "file_name":"reflux-6.4.1.jar", + "size":78932, + "date":"2017-07-01T22:38:58+00:00", + "md5":null, + "sha1":"5eec2669896e2c6723638319c8901d0074482adf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:38:58+00:00", + "size":78932, + "sha1":"5eec2669896e2c6723638319c8901d0074482adf", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reflux/6.4.1/reflux-6.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reflux/6.4.1/reflux-6.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflux@6.4.1", + "file_name":"reflux-6.4.1.pom", + "size":0, + "date":"2017-07-01T22:38:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reflux/6.4.1/reflux-6.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflux@6.4.1?classifier=sources", + "file_name":"reflux-6.4.1-sources.jar", + "size":22, + "date":"2017-07-01T22:38:57+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:38:57+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reflux/6.4.1/reflux-6.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reflux/6.4.1/reflux-6.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflux@6.4.1", + "file_name":"reflux-6.4.1.pom", + "size":0, + "date":"2017-07-01T22:38:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflect-metadata@0.1.10", + "file_name":"reflect-metadata-0.1.10.jar", + "size":106704, + "date":"2017-07-02T04:47:21+00:00", + "md5":null, + "sha1":"e47f0aba0d98e5265813c98b3c935ddeabcdc24f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":106704, + "sha1":"e47f0aba0d98e5265813c98b3c935ddeabcdc24f", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflect-metadata@0.1.10", + "file_name":"reflect-metadata-0.1.10.pom", + "size":0, + "date":"2017-07-02T04:47:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflect-metadata@0.1.10?classifier=sources", + "file_name":"reflect-metadata-0.1.10-sources.jar", + "size":22, + "date":"2017-07-02T04:47:21+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reflect-metadata", + "version":"0.1.10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:47:21+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflect-metadata", + "description":"WebJar for reflect-metadata", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reflect-metadata/0.1.10/reflect-metadata-0.1.10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reflect-metadata@0.1.10", + "file_name":"reflect-metadata-0.1.10.pom", + "size":0, + "date":"2017-07-02T04:47:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reactivex__rxjs@5.4.1", + "file_name":"reactivex__rxjs-5.4.1.jar", + "size":2135239, + "date":"2017-07-02T06:41:31+00:00", + "md5":null, + "sha1":"00dc1a7c9f6deb2be25c745962164764ae53c99c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:41:31+00:00", + "size":2135239, + "sha1":"00dc1a7c9f6deb2be25c745962164764ae53c99c", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reactivex__rxjs@5.4.1", + "file_name":"reactivex__rxjs-5.4.1.pom", + "size":0, + "date":"2017-07-02T06:41:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reactivex__rxjs@5.4.1?classifier=sources", + "file_name":"reactivex__rxjs-5.4.1-sources.jar", + "size":22, + "date":"2017-07-02T06:41:32+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"reactivex__rxjs", + "version":"5.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:41:32+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@reactivex/rxjs", + "description":"WebJar for @reactivex/rxjs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/reactivex__rxjs/5.4.1/reactivex__rxjs-5.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/reactivex__rxjs@5.4.1", + "file_name":"reactivex__rxjs-5.4.1.pom", + "size":0, + "date":"2017-07-02T06:41:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/jasmine-core@2.6.4", + "file_name":"jasmine-core-2.6.4.jar", + "size":80567, + "date":"2017-07-02T05:02:35+00:00", + "md5":null, + "sha1":"33fa9ca83747b80fdf0f59db9ace5f58cc05391c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T05:02:35+00:00", + "size":80567, + "sha1":"33fa9ca83747b80fdf0f59db9ace5f58cc05391c", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/jasmine-core@2.6.4", + "file_name":"jasmine-core-2.6.4.pom", + "size":0, + "date":"2017-07-02T05:02:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/jasmine-core@2.6.4?classifier=sources", + "file_name":"jasmine-core-2.6.4-sources.jar", + "size":22, + "date":"2017-07-02T05:02:36+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"jasmine-core", + "version":"2.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T05:02:36+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"jasmine-core", + "description":"WebJar for jasmine-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/jasmine-core/2.6.4/jasmine-core-2.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/jasmine-core@2.6.4", + "file_name":"jasmine-core-2.6.4.pom", + "size":0, + "date":"2017-07-02T05:02:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/codelyzer@3.1.1", + "file_name":"codelyzer-3.1.1.jar", + "size":126029, + "date":"2017-07-02T04:57:23+00:00", + "md5":null, + "sha1":"56915ea67ec810dba0b90fa674f7ea3715c64246", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":126029, + "sha1":"56915ea67ec810dba0b90fa674f7ea3715c64246", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/codelyzer@3.1.1", + "file_name":"codelyzer-3.1.1.pom", + "size":0, + "date":"2017-07-02T04:57:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/codelyzer@3.1.1?classifier=sources", + "file_name":"codelyzer-3.1.1-sources.jar", + "size":22, + "date":"2017-07-02T04:57:23+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"codelyzer", + "version":"3.1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:23+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"codelyzer", + "description":"WebJar for codelyzer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/codelyzer/3.1.1/codelyzer-3.1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/codelyzer@3.1.1", + "file_name":"codelyzer-3.1.1.pom", + "size":0, + "date":"2017-07-02T04:57:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__upgrade@4.2.5", + "file_name":"angular__upgrade-4.2.5.jar", + "size":333555, + "date":"2017-07-02T04:06:34+00:00", + "md5":null, + "sha1":"78decf84e8b47054ee91fa64111338970c62f7f9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":333555, + "sha1":"78decf84e8b47054ee91fa64111338970c62f7f9", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__upgrade@4.2.5", + "file_name":"angular__upgrade-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:06:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__upgrade@4.2.5?classifier=sources", + "file_name":"angular__upgrade-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:06:34+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__upgrade", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:06:34+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/upgrade", + "description":"WebJar for @angular/upgrade", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__upgrade/4.2.5/angular__upgrade-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__upgrade@4.2.5", + "file_name":"angular__upgrade-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:06:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__tsc-wrapped@4.2.5", + "file_name":"angular__tsc-wrapped-4.2.5.jar", + "size":162386, + "date":"2017-07-02T04:38:28+00:00", + "md5":null, + "sha1":"0150841deb5d4bdab5b2bc037e517d604d494086", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":162386, + "sha1":"0150841deb5d4bdab5b2bc037e517d604d494086", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__tsc-wrapped@4.2.5", + "file_name":"angular__tsc-wrapped-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:38:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__tsc-wrapped@4.2.5?classifier=sources", + "file_name":"angular__tsc-wrapped-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:38:28+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__tsc-wrapped", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:38:28+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/tsc-wrapped", + "description":"WebJar for @angular/tsc-wrapped", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__tsc-wrapped/4.2.5/angular__tsc-wrapped-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__tsc-wrapped@4.2.5", + "file_name":"angular__tsc-wrapped-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:38:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__router@4.2.5", + "file_name":"angular__router-4.2.5.jar", + "size":494235, + "date":"2017-07-02T04:04:19+00:00", + "md5":null, + "sha1":"1e1a5d20dbd2b1b454c25ccd8a6abaa73596caa4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":494235, + "sha1":"1e1a5d20dbd2b1b454c25ccd8a6abaa73596caa4", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__router@4.2.5", + "file_name":"angular__router-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:04:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__router@4.2.5?classifier=sources", + "file_name":"angular__router-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:04:19+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__router", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:04:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/router", + "description":"WebJar for @angular/router", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__router/4.2.5/angular__router-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__router@4.2.5", + "file_name":"angular__router-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:04:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker-dynamic@4.2.5", + "file_name":"angular__platform-webworker-dynamic-4.2.5.jar", + "size":14930, + "date":"2017-07-02T04:33:44+00:00", + "md5":null, + "sha1":"fc0e7cb40dbe37590a170fc027c33dd0a6a9cc01", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":14930, + "sha1":"fc0e7cb40dbe37590a170fc027c33dd0a6a9cc01", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker-dynamic@4.2.5", + "file_name":"angular__platform-webworker-dynamic-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:33:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker-dynamic@4.2.5?classifier=sources", + "file_name":"angular__platform-webworker-dynamic-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:33:44+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:33:44+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker-dynamic", + "description":"WebJar for @angular/platform-webworker-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker-dynamic/4.2.5/angular__platform-webworker-dynamic-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker-dynamic@4.2.5", + "file_name":"angular__platform-webworker-dynamic-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:33:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker@4.2.5", + "file_name":"angular__platform-webworker-4.2.5.jar", + "size":189856, + "date":"2017-07-02T04:35:03+00:00", + "md5":null, + "sha1":"f1256442c75e64565ccdf69e5bf7ea13d0d0e3ee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":189856, + "sha1":"f1256442c75e64565ccdf69e5bf7ea13d0d0e3ee", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker@4.2.5", + "file_name":"angular__platform-webworker-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:35:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker@4.2.5?classifier=sources", + "file_name":"angular__platform-webworker-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:35:03+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-webworker", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:35:03+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-webworker", + "description":"WebJar for @angular/platform-webworker", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-webworker/4.2.5/angular__platform-webworker-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-webworker@4.2.5", + "file_name":"angular__platform-webworker-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:35:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-server@4.2.5", + "file_name":"angular__platform-server-4.2.5.jar", + "size":176836, + "date":"2017-07-02T04:32:22+00:00", + "md5":null, + "sha1":"df97170363666f4d2280a7a175d961b90157c91e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":176836, + "sha1":"df97170363666f4d2280a7a175d961b90157c91e", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-server@4.2.5", + "file_name":"angular__platform-server-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:32:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-server@4.2.5?classifier=sources", + "file_name":"angular__platform-server-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:32:22+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-server", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:32:22+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-server", + "description":"WebJar for @angular/platform-server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-server/4.2.5/angular__platform-server-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-server@4.2.5", + "file_name":"angular__platform-server-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:32:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser-dynamic@4.2.5", + "file_name":"angular__platform-browser-dynamic-4.2.5.jar", + "size":60224, + "date":"2017-07-02T03:51:13+00:00", + "md5":null, + "sha1":"91f2483d8fc617a1c9edbb39e44b70f45556544a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":60224, + "sha1":"91f2483d8fc617a1c9edbb39e44b70f45556544a", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser-dynamic@4.2.5", + "file_name":"angular__platform-browser-dynamic-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:51:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser-dynamic@4.2.5?classifier=sources", + "file_name":"angular__platform-browser-dynamic-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:51:13+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser-dynamic", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:51:13+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser-dynamic", + "description":"WebJar for @angular/platform-browser-dynamic", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser-dynamic/4.2.5/angular__platform-browser-dynamic-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser-dynamic@4.2.5", + "file_name":"angular__platform-browser-dynamic-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:51:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser@4.2.5", + "file_name":"angular__platform-browser-4.2.5.jar", + "size":373467, + "date":"2017-07-02T03:48:29+00:00", + "md5":null, + "sha1":"8d1f1658a7a0b806839dcd98cc896641be660b3c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":373467, + "sha1":"8d1f1658a7a0b806839dcd98cc896641be660b3c", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser@4.2.5", + "file_name":"angular__platform-browser-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:48:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser@4.2.5?classifier=sources", + "file_name":"angular__platform-browser-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:48:29+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__platform-browser", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:48:29+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/platform-browser", + "description":"WebJar for @angular/platform-browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__platform-browser/4.2.5/angular__platform-browser-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__platform-browser@4.2.5", + "file_name":"angular__platform-browser-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:48:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__http@4.2.5", + "file_name":"angular__http-4.2.5.jar", + "size":213937, + "date":"2017-07-02T03:57:19+00:00", + "md5":null, + "sha1":"a455b48ecfa77d2a3b3b04a28f5f09a9a38458f7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":213937, + "sha1":"a455b48ecfa77d2a3b3b04a28f5f09a9a38458f7", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__http@4.2.5", + "file_name":"angular__http-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:57:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__http@4.2.5?classifier=sources", + "file_name":"angular__http-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:57:19+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__http", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:57:19+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/http", + "description":"WebJar for @angular/http", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__http/4.2.5/angular__http-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__http@4.2.5", + "file_name":"angular__http-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:57:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__forms@4.2.5", + "file_name":"angular__forms-4.2.5.jar", + "size":348660, + "date":"2017-07-02T03:55:59+00:00", + "md5":null, + "sha1":"4298b500f87d0024873900825ecfd9af6be67905", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":348660, + "sha1":"4298b500f87d0024873900825ecfd9af6be67905", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__forms@4.2.5", + "file_name":"angular__forms-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:55:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__forms@4.2.5?classifier=sources", + "file_name":"angular__forms-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:55:59+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__forms", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:55:59+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/forms", + "description":"WebJar for @angular/forms", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__forms/4.2.5/angular__forms-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__forms@4.2.5", + "file_name":"angular__forms-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:55:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__core@4.2.5", + "file_name":"angular__core-4.2.5.jar", + "size":1112124, + "date":"2017-07-02T03:38:41+00:00", + "md5":null, + "sha1":"23a646487addc0f3aaa963c4a4a33ae85696b6f1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":1112124, + "sha1":"23a646487addc0f3aaa963c4a4a33ae85696b6f1", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__core@4.2.5", + "file_name":"angular__core-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:38:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__core@4.2.5?classifier=sources", + "file_name":"angular__core-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:38:41+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__core", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:38:41+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/core", + "description":"WebJar for @angular/core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__core/4.2.5/angular__core-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__core@4.2.5", + "file_name":"angular__core-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:38:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler-cli@4.2.5", + "file_name":"angular__compiler-cli-4.2.5.jar", + "size":104872, + "date":"2017-07-02T04:29:49+00:00", + "md5":null, + "sha1":"e4372886dbb35e1f3194979d9bc3fb75b9d0463e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":104872, + "sha1":"e4372886dbb35e1f3194979d9bc3fb75b9d0463e", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler-cli@4.2.5", + "file_name":"angular__compiler-cli-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:29:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler-cli@4.2.5?classifier=sources", + "file_name":"angular__compiler-cli-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:29:49+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler-cli", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:29:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler-cli", + "description":"WebJar for @angular/compiler-cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler-cli/4.2.5/angular__compiler-cli-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler-cli@4.2.5", + "file_name":"angular__compiler-cli-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:29:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler@4.2.5", + "file_name":"angular__compiler-4.2.5.jar", + "size":1828312, + "date":"2017-07-02T03:44:18+00:00", + "md5":null, + "sha1":"6a17503da7d6e3ef91e044dac2b7ff1a54588ade", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":1828312, + "sha1":"6a17503da7d6e3ef91e044dac2b7ff1a54588ade", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler@4.2.5", + "file_name":"angular__compiler-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:44:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler@4.2.5?classifier=sources", + "file_name":"angular__compiler-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:44:18+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__compiler", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:44:18+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/compiler", + "description":"WebJar for @angular/compiler", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__compiler/4.2.5/angular__compiler-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__compiler@4.2.5", + "file_name":"angular__compiler-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:44:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__common@4.2.5", + "file_name":"angular__common-4.2.5.jar", + "size":318114, + "date":"2017-07-02T03:42:08+00:00", + "md5":null, + "sha1":"58d89c2812580ec7d089b2a4fa5298a0dd3ee0ab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":318114, + "sha1":"58d89c2812580ec7d089b2a4fa5298a0dd3ee0ab", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__common@4.2.5", + "file_name":"angular__common-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:42:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__common@4.2.5?classifier=sources", + "file_name":"angular__common-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T03:42:08+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__common", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T03:42:08+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/common", + "description":"WebJar for @angular/common", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__common/4.2.5/angular__common-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__common@4.2.5", + "file_name":"angular__common-4.2.5.pom", + "size":0, + "date":"2017-07-02T03:42:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__animations@4.2.5", + "file_name":"angular__animations-4.2.5.jar", + "size":508560, + "date":"2017-07-02T04:36:31+00:00", + "md5":null, + "sha1":"df071fa8c26cef423ac6a9cae666b49a1c88d197", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":508560, + "sha1":"df071fa8c26cef423ac6a9cae666b49a1c88d197", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__animations@4.2.5", + "file_name":"angular__animations-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:36:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__animations@4.2.5?classifier=sources", + "file_name":"angular__animations-4.2.5-sources.jar", + "size":22, + "date":"2017-07-02T04:36:31+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.npm", + "artifact_id":"angular__animations", + "version":"4.2.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:36:31+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"@angular/animations", + "description":"WebJar for @angular/animations", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/npm/angular__animations/4.2.5/angular__animations-4.2.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.npm/angular__animations@4.2.5", + "file_name":"angular__animations-4.2.5.pom", + "size":0, + "date":"2017-07-02T04:36:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/bower/reflux/6.4.1/reflux-6.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.bower/reflux@6.4.1", + "file_name":"reflux-6.4.1.jar", + "size":65121, + "date":"2017-07-01T22:44:48+00:00", + "md5":null, + "sha1":"bf291b5122b74afd02155ea41456ae1b0595c46d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:44:48+00:00", + "size":65121, + "sha1":"bf291b5122b74afd02155ea41456ae1b0595c46d", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/bower/reflux/6.4.1/reflux-6.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/bower/reflux/6.4.1/reflux-6.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.bower/reflux@6.4.1", + "file_name":"reflux-6.4.1.pom", + "size":0, + "date":"2017-07-01T22:44:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/webjars/bower/reflux/6.4.1/reflux-6.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.bower/reflux@6.4.1?classifier=sources", + "file_name":"reflux-6.4.1-sources.jar", + "size":22, + "date":"2017-07-01T22:44:49+00:00", + "md5":null, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.webjars.bower", + "artifact_id":"reflux", + "version":"6.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:44:49+00:00", + "size":22, + "sha1":"b04f3ee8f5e43fa3b162981b50bb72fe1acabb33", + "name":"reflux", + "description":"WebJar for reflux", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/webjars/bower/reflux/6.4.1/reflux-6.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/webjars/bower/reflux/6.4.1/reflux-6.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.webjars.bower/reflux@6.4.1", + "file_name":"reflux-6.4.1.pom", + "size":0, + "date":"2017-07-01T22:44:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.12@0.2.0", + "file_name":"tuco-wimpi_2.12-0.2.0.jar", + "size":104696, + "date":"2017-07-02T07:04:30+00:00", + "md5":null, + "sha1":"141f29a88cbef62c589f5d7eea9430a0aa6f0e92", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:30+00:00", + "size":104696, + "sha1":"141f29a88cbef62c589f5d7eea9430a0aa6f0e92", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.12@0.2.0", + "file_name":"tuco-wimpi_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.12@0.2.0?classifier=sources", + "file_name":"tuco-wimpi_2.12-0.2.0-sources.jar", + "size":125795, + "date":"2017-07-02T07:04:27+00:00", + "md5":null, + "sha1":"9e474f8f1c8f2b3174b02e9bdd9d368e6e0d82e9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:27+00:00", + "size":125795, + "sha1":"9e474f8f1c8f2b3174b02e9bdd9d368e6e0d82e9", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.12/0.2.0/tuco-wimpi_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.12@0.2.0", + "file_name":"tuco-wimpi_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.11@0.2.0", + "file_name":"tuco-wimpi_2.11-0.2.0.jar", + "size":128436, + "date":"2017-07-02T07:04:05+00:00", + "md5":null, + "sha1":"7e1469bd45cc919d03c6f14a61c24708271f5a8e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:05+00:00", + "size":128436, + "sha1":"7e1469bd45cc919d03c6f14a61c24708271f5a8e", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.11@0.2.0", + "file_name":"tuco-wimpi_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.11@0.2.0?classifier=sources", + "file_name":"tuco-wimpi_2.11-0.2.0-sources.jar", + "size":125795, + "date":"2017-07-02T07:03:54+00:00", + "md5":null, + "sha1":"9eac4f5ffb3a58fececdd02bc4bc7e25ba9a42a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-wimpi_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:54+00:00", + "size":125795, + "sha1":"9eac4f5ffb3a58fececdd02bc4bc7e25ba9a42a7", + "name":"tuco-wimpi", + "description":"tuco-wimpi", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-wimpi_2.11/0.2.0/tuco-wimpi_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-wimpi_2.11@0.2.0", + "file_name":"tuco-wimpi_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:03:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.12@0.2.0", + "file_name":"tuco-shell_2.12-0.2.0.jar", + "size":60153, + "date":"2017-07-02T07:04:26+00:00", + "md5":null, + "sha1":"3df1d2e5d7a0b19280c7364e9dbe55256a907cbb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:26+00:00", + "size":60153, + "sha1":"3df1d2e5d7a0b19280c7364e9dbe55256a907cbb", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.12@0.2.0", + "file_name":"tuco-shell_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.12@0.2.0?classifier=sources", + "file_name":"tuco-shell_2.12-0.2.0-sources.jar", + "size":6730, + "date":"2017-07-02T07:04:25+00:00", + "md5":null, + "sha1":"56efe4e6bfeb17e31bdaf50d0d9f523951fd4273", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:25+00:00", + "size":6730, + "sha1":"56efe4e6bfeb17e31bdaf50d0d9f523951fd4273", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.12/0.2.0/tuco-shell_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.12@0.2.0", + "file_name":"tuco-shell_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.11@0.2.0", + "file_name":"tuco-shell_2.11-0.2.0.jar", + "size":105576, + "date":"2017-07-02T07:03:34+00:00", + "md5":null, + "sha1":"f60f5cdd8071d45f6610b20050223685ffb40d7b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:34+00:00", + "size":105576, + "sha1":"f60f5cdd8071d45f6610b20050223685ffb40d7b", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.11@0.2.0", + "file_name":"tuco-shell_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:03:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.11@0.2.0?classifier=sources", + "file_name":"tuco-shell_2.11-0.2.0-sources.jar", + "size":6730, + "date":"2017-07-02T07:03:33+00:00", + "md5":null, + "sha1":"ea81c5ecbc66b6ddc966bdc8f6440d8b62b3cac1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-shell_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:33+00:00", + "size":6730, + "sha1":"ea81c5ecbc66b6ddc966bdc8f6440d8b62b3cac1", + "name":"tuco-shell", + "description":"tuco-shell", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-shell_2.11/0.2.0/tuco-shell_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-shell_2.11@0.2.0", + "file_name":"tuco-shell_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:03:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.12@0.2.0", + "file_name":"tuco-core_2.12-0.2.0.jar", + "size":488079, + "date":"2017-07-02T07:04:32+00:00", + "md5":null, + "sha1":"ae8778ab7e7c8760e635248b76b74c0dff9ebbe4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:04:32+00:00", + "size":488079, + "sha1":"ae8778ab7e7c8760e635248b76b74c0dff9ebbe4", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.12@0.2.0", + "file_name":"tuco-core_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.12@0.2.0?classifier=sources", + "file_name":"tuco-core_2.12-0.2.0-sources.jar", + "size":20342, + "date":"2017-07-02T07:04:31+00:00", + "md5":null, + "sha1":"3069011122f5a86a8ec3bd55c89fbb821aed40c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:04:31+00:00", + "size":20342, + "sha1":"3069011122f5a86a8ec3bd55c89fbb821aed40c3", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.12/0.2.0/tuco-core_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.12@0.2.0", + "file_name":"tuco-core_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:04:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.11@0.2.0", + "file_name":"tuco-core_2.11-0.2.0.jar", + "size":610329, + "date":"2017-07-02T07:03:42+00:00", + "md5":null, + "sha1":"99464ef3df393ce218b10360c6cb1b09d301f3aa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:03:42+00:00", + "size":610329, + "sha1":"99464ef3df393ce218b10360c6cb1b09d301f3aa", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.11@0.2.0", + "file_name":"tuco-core_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:03:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.11@0.2.0?classifier=sources", + "file_name":"tuco-core_2.11-0.2.0-sources.jar", + "size":20342, + "date":"2017-07-02T07:03:37+00:00", + "md5":null, + "sha1":"95ed499cf53332cefab40a0fc56581d8a54c327c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.tpolecat", + "artifact_id":"tuco-core_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:03:37+00:00", + "size":20342, + "sha1":"95ed499cf53332cefab40a0fc56581d8a54c327c", + "name":"tuco-core", + "description":"tuco-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/tpolecat/tuco-core_2.11/0.2.0/tuco-core_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.tpolecat/tuco-core_2.11@0.2.0", + "file_name":"tuco-core_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T07:03:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/threadly/threadly/5.1/threadly-5.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.threadly/threadly@5.1", + "file_name":"threadly-5.1.jar", + "size":326356, + "date":"2017-07-02T02:42:15+00:00", + "md5":null, + "sha1":"fdbf5a0dbe4e65eec2a870d077864836d1f13df6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T02:42:15+00:00", + "size":326356, + "sha1":"fdbf5a0dbe4e65eec2a870d077864836d1f13df6", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/threadly/threadly/5.1/threadly-5.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/threadly/threadly/5.1/threadly-5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.threadly/threadly@5.1", + "file_name":"threadly-5.1.pom", + "size":0, + "date":"2017-07-02T02:42:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/threadly/threadly/5.1/threadly-5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.threadly/threadly@5.1?classifier=sources", + "file_name":"threadly-5.1-sources.jar", + "size":242102, + "date":"2017-07-02T02:42:17+00:00", + "md5":null, + "sha1":"736b6a283c201e130b01c4453de0133ae2a3efdc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.threadly", + "artifact_id":"threadly", + "version":"5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T02:42:17+00:00", + "size":242102, + "sha1":"736b6a283c201e130b01c4453de0133ae2a3efdc", + "name":"Threadly", + "description":"A library of tools to assist with safe concurrent java development. Providing a unique priority based thread pool, and ways to distrbute threaded work.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/threadly/threadly/5.1/threadly-5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/threadly/threadly/5.1/threadly-5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.threadly/threadly@5.1", + "file_name":"threadly-5.1.pom", + "size":0, + "date":"2017-07-02T02:42:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.8.jar", + "size":21626, + "date":"2017-07-02T12:19:39+00:00", + "md5":null, + "sha1":"557782ebe8fc9a580b08bac9ef77d5e8c64d7177", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:39+00:00", + "size":21626, + "sha1":"557782ebe8fc9a580b08bac9ef77d5e8c64d7177", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.8.pom", + "size":0, + "date":"2017-07-02T12:19:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.8?classifier=sources", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.8-sources.jar", + "size":19036, + "date":"2017-07-02T12:19:36+00:00", + "md5":null, + "sha1":"46c1523e3a9702761a6323676e72693bc75b4c71", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:36+00:00", + "size":19036, + "sha1":"46c1523e3a9702761a6323676e72693bc75b4c71", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.8/magnolia-thymeleaf-renderer-module-0.9.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.8.pom", + "size":0, + "date":"2017-07-02T12:19:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.7.jar", + "size":21180, + "date":"2017-07-01T22:59:18+00:00", + "md5":null, + "sha1":"23120f881916d33ae046fd1a584966aec91e475e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:18+00:00", + "size":21180, + "sha1":"23120f881916d33ae046fd1a584966aec91e475e", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.7.pom", + "size":0, + "date":"2017-07-01T22:59:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.7?classifier=sources", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.7-sources.jar", + "size":19655, + "date":"2017-07-01T22:59:16+00:00", + "md5":null, + "sha1":"d539d5fda574c040f15d194bd82ea7922cbaec1c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:16+00:00", + "size":19655, + "sha1":"d539d5fda574c040f15d194bd82ea7922cbaec1c", + "name":"Magnolia Thymeleaf Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-module/0.9.7/magnolia-thymeleaf-renderer-module-0.9.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-module-0.9.7.pom", + "size":0, + "date":"2017-07-01T22:59:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.8.jar", + "size":10640, + "date":"2017-07-02T12:19:30+00:00", + "md5":null, + "sha1":"925266c7922a06888b1344bba6283c452aaac9bb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:19:30+00:00", + "size":10640, + "sha1":"925266c7922a06888b1344bba6283c452aaac9bb", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.8.pom", + "size":0, + "date":"2017-07-02T12:19:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.8?classifier=sources", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.8-sources.jar", + "size":10857, + "date":"2017-07-02T12:19:38+00:00", + "md5":null, + "sha1":"4c6f98d5cae895276da5073a6524bc7c2ff4dcde", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:19:38+00:00", + "size":10857, + "sha1":"4c6f98d5cae895276da5073a6524bc7c2ff4dcde", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.8/magnolia-thymeleaf-renderer-blossom-module-0.9.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.8", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.8.pom", + "size":0, + "date":"2017-07-02T12:19:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.7.jar", + "size":7647, + "date":"2017-07-01T22:59:20+00:00", + "md5":null, + "sha1":"477d714c863ac7629f10816a2d40ec57abdf7578", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T22:59:20+00:00", + "size":7647, + "sha1":"477d714c863ac7629f10816a2d40ec57abdf7578", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.7.pom", + "size":0, + "date":"2017-07-01T22:59:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.7?classifier=sources", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.7-sources.jar", + "size":8687, + "date":"2017-07-01T22:59:21+00:00", + "md5":null, + "sha1":"a15ed9c67a00362936e9fad33e6f6ed3d2cae541", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.sevensource.magnolia", + "artifact_id":"magnolia-thymeleaf-renderer-blossom-module", + "version":"0.9.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T22:59:21+00:00", + "size":8687, + "sha1":"a15ed9c67a00362936e9fad33e6f6ed3d2cae541", + "name":"Magnolia Thymeleaf Blossom Renderer", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/sevensource/magnolia/magnolia-thymeleaf-renderer-blossom-module/0.9.7/magnolia-thymeleaf-renderer-blossom-module-0.9.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.sevensource.magnolia/magnolia-thymeleaf-renderer-blossom-module@0.9.7", + "file_name":"magnolia-thymeleaf-renderer-blossom-module-0.9.7.pom", + "size":0, + "date":"2017-07-01T22:59:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.12@1.0.0-M25", + "file_name":"util-tracking_2.12-1.0.0-M25.jar", + "size":32327, + "date":"2017-07-01T23:05:44+00:00", + "md5":null, + "sha1":"229d4d9e7d5ed96f0e787a7ed49529fa8db4dc7d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":32327, + "sha1":"229d4d9e7d5ed96f0e787a7ed49529fa8db4dc7d", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.12@1.0.0-M25", + "file_name":"util-tracking_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-tracking_2.12-1.0.0-M25-sources.jar", + "size":4770, + "date":"2017-07-01T23:05:44+00:00", + "md5":null, + "sha1":"9eb248edc6977d398c06bab9b831e9901c5f2f93", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:44+00:00", + "size":4770, + "sha1":"9eb248edc6977d398c06bab9b831e9901c5f2f93", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.12/1.0.0-M25/util-tracking_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.12@1.0.0-M25", + "file_name":"util-tracking_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.11@1.0.0-M25", + "file_name":"util-tracking_2.11-1.0.0-M25.jar", + "size":43100, + "date":"2017-07-01T23:05:35+00:00", + "md5":null, + "sha1":"059afa5c68e0ef979033df98ec91107b1454c4c1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:35+00:00", + "size":43100, + "sha1":"059afa5c68e0ef979033df98ec91107b1454c4c1", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.11@1.0.0-M25", + "file_name":"util-tracking_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-tracking_2.11-1.0.0-M25-sources.jar", + "size":4770, + "date":"2017-07-01T23:05:34+00:00", + "md5":null, + "sha1":"7da055f885b0a5ebe9b604b0df2461b67925c44c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-tracking_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:34+00:00", + "size":4770, + "sha1":"7da055f885b0a5ebe9b604b0df2461b67925c44c", + "name":"Util Tracking", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-tracking_2.11/1.0.0-M25/util-tracking_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-tracking_2.11@1.0.0-M25", + "file_name":"util-tracking_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.12@1.0.0-M25", + "file_name":"util-testing_2.12-1.0.0-M25.jar", + "size":8712, + "date":"2017-07-01T23:05:41+00:00", + "md5":null, + "sha1":"18b14e931134e0ddf785ddcc279d84a461e4c7d2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":8712, + "sha1":"18b14e931134e0ddf785ddcc279d84a461e4c7d2", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.12@1.0.0-M25", + "file_name":"util-testing_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-testing_2.12-1.0.0-M25-sources.jar", + "size":799, + "date":"2017-07-01T23:05:40+00:00", + "md5":null, + "sha1":"3e7674389f685c30a7a4d9833ba077ab6c61fa1a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:40+00:00", + "size":799, + "sha1":"3e7674389f685c30a7a4d9833ba077ab6c61fa1a", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.12/1.0.0-M25/util-testing_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.12@1.0.0-M25", + "file_name":"util-testing_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.11@1.0.0-M25", + "file_name":"util-testing_2.11-1.0.0-M25.jar", + "size":8495, + "date":"2017-07-01T23:05:25+00:00", + "md5":null, + "sha1":"2604a24ab822110d0025f5cc4ed752011d0a6ae8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":8495, + "sha1":"2604a24ab822110d0025f5cc4ed752011d0a6ae8", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.11@1.0.0-M25", + "file_name":"util-testing_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-testing_2.11-1.0.0-M25-sources.jar", + "size":799, + "date":"2017-07-01T23:05:25+00:00", + "md5":null, + "sha1":"a1c414f85c583608583beb843dafdcbdf080a7a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:25+00:00", + "size":799, + "sha1":"a1c414f85c583608583beb843dafdcbdf080a7a7", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.11/1.0.0-M25/util-testing_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.11@1.0.0-M25", + "file_name":"util-testing_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.10@1.0.0-M25", + "file_name":"util-testing_2.10-1.0.0-M25.jar", + "size":8124, + "date":"2017-07-01T23:05:16+00:00", + "md5":null, + "sha1":"ade86c9bd61ffd41aeed5e78aa7b32037a61b310", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:16+00:00", + "size":8124, + "sha1":"ade86c9bd61ffd41aeed5e78aa7b32037a61b310", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.10@1.0.0-M25", + "file_name":"util-testing_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.10@1.0.0-M25?classifier=sources", + "file_name":"util-testing_2.10-1.0.0-M25-sources.jar", + "size":799, + "date":"2017-07-01T23:05:15+00:00", + "md5":null, + "sha1":"88d57dcb1b4dbd06ff897577bb8dcf0fb287767d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-testing_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":799, + "sha1":"88d57dcb1b4dbd06ff897577bb8dcf0fb287767d", + "name":"Util Testing", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-testing_2.10/1.0.0-M25/util-testing_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-testing_2.10@1.0.0-M25", + "file_name":"util-testing_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.12@1.0.0-M25", + "file_name":"util-scripted_2.12-1.0.0-M25.jar", + "size":65772, + "date":"2017-07-01T23:05:58+00:00", + "md5":null, + "sha1":"ad2f590dc1382c99d809a4b98bc9c32689055fa4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":65772, + "sha1":"ad2f590dc1382c99d809a4b98bc9c32689055fa4", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.12@1.0.0-M25", + "file_name":"util-scripted_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-scripted_2.12-1.0.0-M25-sources.jar", + "size":8976, + "date":"2017-07-01T23:05:58+00:00", + "md5":null, + "sha1":"164c599039abb9180b22a863e32d084248485e16", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:58+00:00", + "size":8976, + "sha1":"164c599039abb9180b22a863e32d084248485e16", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.12/1.0.0-M25/util-scripted_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.12@1.0.0-M25", + "file_name":"util-scripted_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.11@1.0.0-M25", + "file_name":"util-scripted_2.11-1.0.0-M25.jar", + "size":141373, + "date":"2017-07-01T23:05:11+00:00", + "md5":null, + "sha1":"ebe8e9cb531fe117afe6a93f198dca30827d594b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:11+00:00", + "size":141373, + "sha1":"ebe8e9cb531fe117afe6a93f198dca30827d594b", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.11@1.0.0-M25", + "file_name":"util-scripted_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-scripted_2.11-1.0.0-M25-sources.jar", + "size":8976, + "date":"2017-07-01T23:05:12+00:00", + "md5":null, + "sha1":"7a91583b6db13543494efe1260df006149e56968", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-scripted_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:12+00:00", + "size":8976, + "sha1":"7a91583b6db13543494efe1260df006149e56968", + "name":"Util Scripted", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-scripted_2.11/1.0.0-M25/util-scripted_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-scripted_2.11@1.0.0-M25", + "file_name":"util-scripted_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.12@1.0.0-M25", + "file_name":"util-relation_2.12-1.0.0-M25.jar", + "size":14385, + "date":"2017-07-01T23:05:39+00:00", + "md5":null, + "sha1":"e20a71b440c3dfeb656be8ddc1d0709cad3476c2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:39+00:00", + "size":14385, + "sha1":"e20a71b440c3dfeb656be8ddc1d0709cad3476c2", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.12@1.0.0-M25", + "file_name":"util-relation_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-relation_2.12-1.0.0-M25-sources.jar", + "size":2939, + "date":"2017-07-01T23:05:38+00:00", + "md5":null, + "sha1":"25d37292455e95c8885a23a62e3c0d8b63906255", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:38+00:00", + "size":2939, + "sha1":"25d37292455e95c8885a23a62e3c0d8b63906255", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.12/1.0.0-M25/util-relation_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.12@1.0.0-M25", + "file_name":"util-relation_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.11@1.0.0-M25", + "file_name":"util-relation_2.11-1.0.0-M25.jar", + "size":30696, + "date":"2017-07-01T23:05:23+00:00", + "md5":null, + "sha1":"a9aafd5ecac05683a9945b1da8b6a0159b429f49", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":30696, + "sha1":"a9aafd5ecac05683a9945b1da8b6a0159b429f49", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.11@1.0.0-M25", + "file_name":"util-relation_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-relation_2.11-1.0.0-M25-sources.jar", + "size":2939, + "date":"2017-07-01T23:05:23+00:00", + "md5":null, + "sha1":"46fb4cc10287c199c5dd962af3a4bf792a3913fa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-relation_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:23+00:00", + "size":2939, + "sha1":"46fb4cc10287c199c5dd962af3a4bf792a3913fa", + "name":"Util Relation", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-relation_2.11/1.0.0-M25/util-relation_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-relation_2.11@1.0.0-M25", + "file_name":"util-relation_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.12@1.0.0-M25", + "file_name":"util-logic_2.12-1.0.0-M25.jar", + "size":49623, + "date":"2017-07-01T23:05:49+00:00", + "md5":null, + "sha1":"f334aea787214558a15a58e2d2250856a19218c8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":49623, + "sha1":"f334aea787214558a15a58e2d2250856a19218c8", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.12@1.0.0-M25", + "file_name":"util-logic_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-logic_2.12-1.0.0-M25-sources.jar", + "size":5320, + "date":"2017-07-01T23:05:51+00:00", + "md5":null, + "sha1":"be3b5ea23dbdb3e90cbac9ae584a2a03508d095d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:51+00:00", + "size":5320, + "sha1":"be3b5ea23dbdb3e90cbac9ae584a2a03508d095d", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.12/1.0.0-M25/util-logic_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.12@1.0.0-M25", + "file_name":"util-logic_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.11@1.0.0-M25", + "file_name":"util-logic_2.11-1.0.0-M25.jar", + "size":68235, + "date":"2017-07-01T23:05:32+00:00", + "md5":null, + "sha1":"b649d74c6184c3706351a34867c163ea542a3d9b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":68235, + "sha1":"b649d74c6184c3706351a34867c163ea542a3d9b", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.11@1.0.0-M25", + "file_name":"util-logic_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-logic_2.11-1.0.0-M25-sources.jar", + "size":5320, + "date":"2017-07-01T23:05:33+00:00", + "md5":null, + "sha1":"de74a6b013f58bc4f714c8fd951ad8ba1f86c48f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logic_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:33+00:00", + "size":5320, + "sha1":"de74a6b013f58bc4f714c8fd951ad8ba1f86c48f", + "name":"Util Logic", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logic_2.11/1.0.0-M25/util-logic_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logic_2.11@1.0.0-M25", + "file_name":"util-logic_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.12@1.0.0-M25", + "file_name":"util-logging_2.12-1.0.0-M25.jar", + "size":227544, + "date":"2017-07-01T23:05:49+00:00", + "md5":null, + "sha1":"ca71893c6b9308c606ea5b028c1895411ffab8bb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:49+00:00", + "size":227544, + "sha1":"ca71893c6b9308c606ea5b028c1895411ffab8bb", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.12@1.0.0-M25", + "file_name":"util-logging_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-logging_2.12-1.0.0-M25-sources.jar", + "size":25196, + "date":"2017-07-01T23:05:48+00:00", + "md5":null, + "sha1":"e1bd336714d85739b44c48612bb7c7ed8f4693bd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:48+00:00", + "size":25196, + "sha1":"e1bd336714d85739b44c48612bb7c7ed8f4693bd", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.12/1.0.0-M25/util-logging_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.12@1.0.0-M25", + "file_name":"util-logging_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.11@1.0.0-M25", + "file_name":"util-logging_2.11-1.0.0-M25.jar", + "size":266622, + "date":"2017-07-01T23:05:30+00:00", + "md5":null, + "sha1":"1690a0a6e9ccca4acc485f48a0a4e365f9e8bfe4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:30+00:00", + "size":266622, + "sha1":"1690a0a6e9ccca4acc485f48a0a4e365f9e8bfe4", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.11@1.0.0-M25", + "file_name":"util-logging_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-logging_2.11-1.0.0-M25-sources.jar", + "size":25196, + "date":"2017-07-01T23:05:29+00:00", + "md5":null, + "sha1":"1cd9bd09f5bc9dbecb65947bcc049051a7e0f309", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:29+00:00", + "size":25196, + "sha1":"1cd9bd09f5bc9dbecb65947bcc049051a7e0f309", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.11/1.0.0-M25/util-logging_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.11@1.0.0-M25", + "file_name":"util-logging_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.10@1.0.0-M25", + "file_name":"util-logging_2.10-1.0.0-M25.jar", + "size":261963, + "date":"2017-07-01T23:05:18+00:00", + "md5":null, + "sha1":"1ea16fe244dfcf0c06e07166234a1183f1011001", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:18+00:00", + "size":261963, + "sha1":"1ea16fe244dfcf0c06e07166234a1183f1011001", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.10@1.0.0-M25", + "file_name":"util-logging_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.10@1.0.0-M25?classifier=sources", + "file_name":"util-logging_2.10-1.0.0-M25-sources.jar", + "size":25196, + "date":"2017-07-01T23:05:17+00:00", + "md5":null, + "sha1":"749cf5d9bc6fd03a2c660fc7d4c9a93ab9f76d34", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-logging_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:17+00:00", + "size":25196, + "sha1":"749cf5d9bc6fd03a2c660fc7d4c9a93ab9f76d34", + "name":"Util Logging", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-logging_2.10/1.0.0-M25/util-logging_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-logging_2.10@1.0.0-M25", + "file_name":"util-logging_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-interface@1.0.0-M25", + "file_name":"util-interface-1.0.0-M25.jar", + "size":5280, + "date":"2017-07-01T23:05:21+00:00", + "md5":null, + "sha1":"934cf307fde68441222115da5afedc993b2afceb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":5280, + "sha1":"934cf307fde68441222115da5afedc993b2afceb", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-interface@1.0.0-M25", + "file_name":"util-interface-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-interface@1.0.0-M25?classifier=sources", + "file_name":"util-interface-1.0.0-M25-sources.jar", + "size":2944, + "date":"2017-07-01T23:05:21+00:00", + "md5":null, + "sha1":"d19833670326945369b833349134871cd61cef6d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-interface", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:21+00:00", + "size":2944, + "sha1":"d19833670326945369b833349134871cd61cef6d", + "name":"Util Interface", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.0.0-M25/util-interface-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-interface@1.0.0-M25", + "file_name":"util-interface-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.12@1.0.0-M25", + "file_name":"util-control_2.12-1.0.0-M25.jar", + "size":12453, + "date":"2017-07-01T23:05:43+00:00", + "md5":null, + "sha1":"1bf831a6ae45de7856a25521a4561a82fc94d150", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:43+00:00", + "size":12453, + "sha1":"1bf831a6ae45de7856a25521a4561a82fc94d150", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.12@1.0.0-M25", + "file_name":"util-control_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-control_2.12-1.0.0-M25-sources.jar", + "size":2387, + "date":"2017-07-01T23:05:41+00:00", + "md5":null, + "sha1":"a8d403ac2a80fc98ff8f2b563831a87d63115a19", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:41+00:00", + "size":2387, + "sha1":"a8d403ac2a80fc98ff8f2b563831a87d63115a19", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.12/1.0.0-M25/util-control_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.12@1.0.0-M25", + "file_name":"util-control_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.11@1.0.0-M25", + "file_name":"util-control_2.11-1.0.0-M25.jar", + "size":13343, + "date":"2017-07-01T23:05:28+00:00", + "md5":null, + "sha1":"3b92c4421dd7858915cacb7b5b01dcfa05bbe250", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:28+00:00", + "size":13343, + "sha1":"3b92c4421dd7858915cacb7b5b01dcfa05bbe250", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.11@1.0.0-M25", + "file_name":"util-control_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-control_2.11-1.0.0-M25-sources.jar", + "size":2387, + "date":"2017-07-01T23:05:26+00:00", + "md5":null, + "sha1":"080a5e194ff6a17f4b3af65d94a97540eb3294ab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-control_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:26+00:00", + "size":2387, + "sha1":"080a5e194ff6a17f4b3af65d94a97540eb3294ab", + "name":"Util Control", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-control_2.11/1.0.0-M25/util-control_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-control_2.11@1.0.0-M25", + "file_name":"util-control_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.12@1.0.0-M25", + "file_name":"util-completion_2.12-1.0.0-M25.jar", + "size":256315, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":"e6d176ae6b8ca90c2fc9e3420552d0c1419d778b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":256315, + "sha1":"e6d176ae6b8ca90c2fc9e3420552d0c1419d778b", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.12@1.0.0-M25", + "file_name":"util-completion_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-completion_2.12-1.0.0-M25-sources.jar", + "size":27554, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":"9018372a6622be92621b5cc47a53d3f11a5cf2ff", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":27554, + "sha1":"9018372a6622be92621b5cc47a53d3f11a5cf2ff", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.12/1.0.0-M25/util-completion_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.12@1.0.0-M25", + "file_name":"util-completion_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.11@1.0.0-M25", + "file_name":"util-completion_2.11-1.0.0-M25.jar", + "size":406072, + "date":"2017-07-01T23:05:32+00:00", + "md5":null, + "sha1":"e61dff7f8eefcdefd3c53e61af672d791e9ed62c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:32+00:00", + "size":406072, + "sha1":"e61dff7f8eefcdefd3c53e61af672d791e9ed62c", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.11@1.0.0-M25", + "file_name":"util-completion_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-completion_2.11-1.0.0-M25-sources.jar", + "size":27554, + "date":"2017-07-01T23:05:31+00:00", + "md5":null, + "sha1":"e2252a534b12a02f5b882c1e011a446046f316be", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-completion_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:31+00:00", + "size":27554, + "sha1":"e2252a534b12a02f5b882c1e011a446046f316be", + "name":"Util Completion", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-completion_2.11/1.0.0-M25/util-completion_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-completion_2.11@1.0.0-M25", + "file_name":"util-completion_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.12@1.0.0-M25", + "file_name":"util-collection_2.12-1.0.0-M25.jar", + "size":336211, + "date":"2017-07-01T23:05:54+00:00", + "md5":null, + "sha1":"7b37933db563310a7f1019639c5cb32ab7229c74", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:54+00:00", + "size":336211, + "sha1":"7b37933db563310a7f1019639c5cb32ab7229c74", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.12@1.0.0-M25", + "file_name":"util-collection_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-collection_2.12-1.0.0-M25-sources.jar", + "size":28280, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":"6941942ab4462f4518bdad36d72ec4f1c2e8d6ee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:53+00:00", + "size":28280, + "sha1":"6941942ab4462f4518bdad36d72ec4f1c2e8d6ee", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.12/1.0.0-M25/util-collection_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.12@1.0.0-M25", + "file_name":"util-collection_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.11@1.0.0-M25", + "file_name":"util-collection_2.11-1.0.0-M25.jar", + "size":454304, + "date":"2017-07-01T23:05:36+00:00", + "md5":null, + "sha1":"68bff39198e053db1ea0d040ef89a2f451308627", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":454304, + "sha1":"68bff39198e053db1ea0d040ef89a2f451308627", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.11@1.0.0-M25", + "file_name":"util-collection_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-collection_2.11-1.0.0-M25-sources.jar", + "size":28280, + "date":"2017-07-01T23:05:36+00:00", + "md5":null, + "sha1":"809f96abba52b67aebfd02068d64722868aa8f21", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:36+00:00", + "size":28280, + "sha1":"809f96abba52b67aebfd02068d64722868aa8f21", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.11/1.0.0-M25/util-collection_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.11@1.0.0-M25", + "file_name":"util-collection_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.10@1.0.0-M25", + "file_name":"util-collection_2.10-1.0.0-M25.jar", + "size":449387, + "date":"2017-07-01T23:05:19+00:00", + "md5":null, + "sha1":"1f7a3792759cf94a30ffe54d3d3b945b8ed6cf8c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":449387, + "sha1":"1f7a3792759cf94a30ffe54d3d3b945b8ed6cf8c", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.10@1.0.0-M25", + "file_name":"util-collection_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.10@1.0.0-M25?classifier=sources", + "file_name":"util-collection_2.10-1.0.0-M25-sources.jar", + "size":28280, + "date":"2017-07-01T23:05:19+00:00", + "md5":null, + "sha1":"bf59d15f1955b018dbcd3fc50f40cce08d2aea63", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-collection_2.10", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:19+00:00", + "size":28280, + "sha1":"bf59d15f1955b018dbcd3fc50f40cce08d2aea63", + "name":"Util Collection", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-collection_2.10/1.0.0-M25/util-collection_2.10-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-collection_2.10@1.0.0-M25", + "file_name":"util-collection_2.10-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.12@1.0.0-M25", + "file_name":"util-cache_2.12-1.0.0-M25.jar", + "size":207172, + "date":"2017-07-01T23:05:56+00:00", + "md5":null, + "sha1":"6ab749cae6bd9d814c5a8d5e185657b0e6aafabc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":207172, + "sha1":"6ab749cae6bd9d814c5a8d5e185657b0e6aafabc", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.12@1.0.0-M25", + "file_name":"util-cache_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-cache_2.12-1.0.0-M25-sources.jar", + "size":8567, + "date":"2017-07-01T23:05:56+00:00", + "md5":null, + "sha1":"7aff4ad5634eff6066fced5b840a6a7e8e1c6aab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:56+00:00", + "size":8567, + "sha1":"7aff4ad5634eff6066fced5b840a6a7e8e1c6aab", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.12/1.0.0-M25/util-cache_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.12@1.0.0-M25", + "file_name":"util-cache_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.11@1.0.0-M25", + "file_name":"util-cache_2.11-1.0.0-M25.jar", + "size":208431, + "date":"2017-07-01T23:05:10+00:00", + "md5":null, + "sha1":"26b1c180ea8fcf9197a096708f46c7ac7ed89357", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:10+00:00", + "size":208431, + "sha1":"26b1c180ea8fcf9197a096708f46c7ac7ed89357", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.11@1.0.0-M25", + "file_name":"util-cache_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-cache_2.11-1.0.0-M25-sources.jar", + "size":8567, + "date":"2017-07-01T23:05:13+00:00", + "md5":null, + "sha1":"2641f3693fe788ad0ab16d84bf64a43ff80a9440", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-cache_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:13+00:00", + "size":8567, + "sha1":"2641f3693fe788ad0ab16d84bf64a43ff80a9440", + "name":"Util Cache", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-cache_2.11/1.0.0-M25/util-cache_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-cache_2.11@1.0.0-M25", + "file_name":"util-cache_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.12@1.0.0-M25", + "file_name":"util-apply-macro_2.12-1.0.0-M25.jar", + "size":77166, + "date":"2017-07-01T23:05:45+00:00", + "md5":null, + "sha1":"374fe0c6c3871afdaab07fca204aa58cd5b64944", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:45+00:00", + "size":77166, + "sha1":"374fe0c6c3871afdaab07fca204aa58cd5b64944", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.12@1.0.0-M25", + "file_name":"util-apply-macro_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.12@1.0.0-M25?classifier=sources", + "file_name":"util-apply-macro_2.12-1.0.0-M25-sources.jar", + "size":13696, + "date":"2017-07-01T23:05:46+00:00", + "md5":null, + "sha1":"693542bddc15e9fc061d80427bab8073db152d49", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.12", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:46+00:00", + "size":13696, + "sha1":"693542bddc15e9fc061d80427bab8073db152d49", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.12/1.0.0-M25/util-apply-macro_2.12-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.12@1.0.0-M25", + "file_name":"util-apply-macro_2.12-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.11@1.0.0-M25", + "file_name":"util-apply-macro_2.11-1.0.0-M25.jar", + "size":88765, + "date":"2017-07-01T23:05:15+00:00", + "md5":null, + "sha1":"6c47f8d341596aef388321489c05fb6826de36f5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T23:05:15+00:00", + "size":88765, + "sha1":"6c47f8d341596aef388321489c05fb6826de36f5", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.11@1.0.0-M25", + "file_name":"util-apply-macro_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.11@1.0.0-M25?classifier=sources", + "file_name":"util-apply-macro_2.11-1.0.0-M25-sources.jar", + "size":13696, + "date":"2017-07-01T23:05:14+00:00", + "md5":null, + "sha1":"1820cc267dfe2adbf3691643d72313b53fb268cb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"util-apply-macro_2.11", + "version":"1.0.0-M25", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T23:05:14+00:00", + "size":13696, + "sha1":"1820cc267dfe2adbf3691643d72313b53fb268cb", + "name":"Util Apply Macro", + "description":"Util module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/util-apply-macro_2.11/1.0.0-M25/util-apply-macro_2.11-1.0.0-M25.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/util-apply-macro_2.11@1.0.0-M25", + "file_name":"util-apply-macro_2.11-1.0.0-M25.pom", + "size":0, + "date":"2017-07-01T23:05:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.12@1.0.0-X16", + "file_name":"librarymanagement_2.12-1.0.0-X16.jar", + "size":1203208, + "date":"2017-07-02T00:38:19+00:00", + "md5":null, + "sha1":"242a43f9770069de3ad467a5d17a43a132b1f5a8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:19+00:00", + "size":1203208, + "sha1":"242a43f9770069de3ad467a5d17a43a132b1f5a8", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.12@1.0.0-X16", + "file_name":"librarymanagement_2.12-1.0.0-X16.pom", + "size":0, + "date":"2017-07-02T00:38:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.12@1.0.0-X16?classifier=sources", + "file_name":"librarymanagement_2.12-1.0.0-X16-sources.jar", + "size":209251, + "date":"2017-07-02T00:38:16+00:00", + "md5":null, + "sha1":"d272d973972911435ed73ce245eefac4b77c1caa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.12", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":209251, + "sha1":"d272d973972911435ed73ce245eefac4b77c1caa", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.12/1.0.0-X16/librarymanagement_2.12-1.0.0-X16.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.12@1.0.0-X16", + "file_name":"librarymanagement_2.12-1.0.0-X16.pom", + "size":0, + "date":"2017-07-02T00:38:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.11@1.0.0-X16", + "file_name":"librarymanagement_2.11-1.0.0-X16.jar", + "size":1805859, + "date":"2017-07-02T00:38:16+00:00", + "md5":null, + "sha1":"232dacfba271a872d18493f047ea7546dd4d4dd7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T00:38:16+00:00", + "size":1805859, + "sha1":"232dacfba271a872d18493f047ea7546dd4d4dd7", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.11@1.0.0-X16", + "file_name":"librarymanagement_2.11-1.0.0-X16.pom", + "size":0, + "date":"2017-07-02T00:38:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.11@1.0.0-X16?classifier=sources", + "file_name":"librarymanagement_2.11-1.0.0-X16-sources.jar", + "size":209251, + "date":"2017-07-02T00:38:13+00:00", + "md5":null, + "sha1":"ac0f46616dd2766cccf11593e494a1054c7b44c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-sbt", + "artifact_id":"librarymanagement_2.11", + "version":"1.0.0-X16", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T00:38:13+00:00", + "size":209251, + "sha1":"ac0f46616dd2766cccf11593e494a1054c7b44c3", + "name":"librarymanagement", + "description":"Library management module for sbt", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-sbt/librarymanagement_2.11/1.0.0-X16/librarymanagement_2.11-1.0.0-X16.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-sbt/librarymanagement_2.11@1.0.0-X16", + "file_name":"librarymanagement_2.11-1.0.0-X16.pom", + "size":0, + "date":"2017-07-02T00:38:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.12@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.12-1.0.0-M3.jar", + "size":120091, + "date":"2017-07-02T04:57:07+00:00", + "md5":null, + "sha1":"0c20de2eddaa17256239012bfdd5a38cbfdd2c6d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":120091, + "sha1":"0c20de2eddaa17256239012bfdd5a38cbfdd2c6d", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.12@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.12-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:57:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.12@1.0.0-M3?classifier=sources", + "file_name":"scalajson_sjs0.6_2.12-1.0.0-M3-sources.jar", + "size":6897, + "date":"2017-07-02T04:57:07+00:00", + "md5":null, + "sha1":"bedf80d72822022a20f8395c433a176a7814fa9b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:57:07+00:00", + "size":6897, + "sha1":"bedf80d72822022a20f8395c433a176a7814fa9b", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.12/1.0.0-M3/scalajson_sjs0.6_2.12-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.12@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.12-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:57:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.11@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.11-1.0.0-M3.jar", + "size":119731, + "date":"2017-07-02T04:53:44+00:00", + "md5":null, + "sha1":"f9fbdae28d8cfcffa02483c956027c3b4a068182", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:53:44+00:00", + "size":119731, + "sha1":"f9fbdae28d8cfcffa02483c956027c3b4a068182", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.11@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.11-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:53:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.11@1.0.0-M3?classifier=sources", + "file_name":"scalajson_sjs0.6_2.11-1.0.0-M3-sources.jar", + "size":6897, + "date":"2017-07-02T04:53:45+00:00", + "md5":null, + "sha1":"00fc4beb821e1d1228b4c63222a82d0598bd540a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:53:45+00:00", + "size":6897, + "sha1":"00fc4beb821e1d1228b4c63222a82d0598bd540a", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.11/1.0.0-M3/scalajson_sjs0.6_2.11-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.11@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.11-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:53:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.10@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.10-1.0.0-M3.jar", + "size":117966, + "date":"2017-07-02T04:55:44+00:00", + "md5":null, + "sha1":"691041e81ec1206af9426df670bdc8253015a0b0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:55:44+00:00", + "size":117966, + "sha1":"691041e81ec1206af9426df670bdc8253015a0b0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.10@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.10-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:55:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.10@1.0.0-M3?classifier=sources", + "file_name":"scalajson_sjs0.6_2.10-1.0.0-M3-sources.jar", + "size":6897, + "date":"2017-07-02T04:55:49+00:00", + "md5":null, + "sha1":"89146848fc9ad433d6418df880ba64437c776498", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_sjs0.6_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:55:49+00:00", + "size":6897, + "sha1":"89146848fc9ad433d6418df880ba64437c776498", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_sjs0.6_2.10/1.0.0-M3/scalajson_sjs0.6_2.10-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_sjs0.6_2.10@1.0.0-M3", + "file_name":"scalajson_sjs0.6_2.10-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:55:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.12@1.0.0-M3", + "file_name":"scalajson_2.12-1.0.0-M3.jar", + "size":62658, + "date":"2017-07-02T04:56:45+00:00", + "md5":null, + "sha1":"58ec8b0c927a3e0b5bbb38d8bee4c0a30fb6ff48", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:56:45+00:00", + "size":62658, + "sha1":"58ec8b0c927a3e0b5bbb38d8bee4c0a30fb6ff48", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.12@1.0.0-M3", + "file_name":"scalajson_2.12-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:56:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.12@1.0.0-M3?classifier=sources", + "file_name":"scalajson_2.12-1.0.0-M3-sources.jar", + "size":6109, + "date":"2017-07-02T04:56:46+00:00", + "md5":null, + "sha1":"dc6f16508a2222f09438b6d4c47cc00db3da6c4c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.12", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:56:46+00:00", + "size":6109, + "sha1":"dc6f16508a2222f09438b6d4c47cc00db3da6c4c", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.12/1.0.0-M3/scalajson_2.12-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.12@1.0.0-M3", + "file_name":"scalajson_2.12-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:56:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.11@1.0.0-M3", + "file_name":"scalajson_2.11-1.0.0-M3.jar", + "size":62638, + "date":"2017-07-02T04:52:10+00:00", + "md5":null, + "sha1":"18d7ce01c236ea084bdb1e170b727f5ab554d69f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:52:10+00:00", + "size":62638, + "sha1":"18d7ce01c236ea084bdb1e170b727f5ab554d69f", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.11@1.0.0-M3", + "file_name":"scalajson_2.11-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:52:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.11@1.0.0-M3?classifier=sources", + "file_name":"scalajson_2.11-1.0.0-M3-sources.jar", + "size":6109, + "date":"2017-07-02T04:52:12+00:00", + "md5":null, + "sha1":"f4b4a84b8f7f357d6d0192d642bb013e1ff7b6c1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.11", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:52:12+00:00", + "size":6109, + "sha1":"f4b4a84b8f7f357d6d0192d642bb013e1ff7b6c1", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.11/1.0.0-M3/scalajson_2.11-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.11@1.0.0-M3", + "file_name":"scalajson_2.11-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:52:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.10@1.0.0-M3", + "file_name":"scalajson_2.10-1.0.0-M3.jar", + "size":60883, + "date":"2017-07-02T04:54:28+00:00", + "md5":null, + "sha1":"fa6688c6ebcc07aa09d26fc328e66553eef9a8d0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T04:54:28+00:00", + "size":60883, + "sha1":"fa6688c6ebcc07aa09d26fc328e66553eef9a8d0", + "name":"scalajson", + "description":"scalajson", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.10@1.0.0-M3", + "file_name":"scalajson_2.10-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:54:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.10@1.0.0-M3?classifier=sources", + "file_name":"scalajson_2.10-1.0.0-M3-sources.jar", + "size":6109, + "date":"2017-07-02T04:54:32+00:00", + "md5":null, + "sha1":"2ff8e8adfd85235d9bb911ac3b98af108e1c5216", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-lang.platform", + "artifact_id":"scalajson_2.10", + "version":"1.0.0-M3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T04:54:32+00:00", + "size":6109, + "sha1":"2ff8e8adfd85235d9bb911ac3b98af108e1c5216", + "name":"scalajson", + "description":"scalajson", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-lang/platform/scalajson_2.10/1.0.0-M3/scalajson_2.10-1.0.0-M3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-lang.platform/scalajson_2.10@1.0.0-M3", + "file_name":"scalajson_2.10-1.0.0-M3.pom", + "size":0, + "date":"2017-07-02T04:54:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.jar", + "size":158840, + "date":"2017-07-02T11:41:08+00:00", + "md5":null, + "sha1":"06c1f92fa6cacfe50c0e9973ffe956da25aed089", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:41:08+00:00", + "size":158840, + "sha1":"06c1f92fa6cacfe50c0e9973ffe956da25aed089", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:41:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:41:10+00:00", + "md5":null, + "sha1":"061240194d73a352a49c0cac1fec2e0ec72cd885", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:41:10+00:00", + "size":35184, + "sha1":"061240194d73a352a49c0cac1fec2e0ec72cd885", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.13.0-M1-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:41:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.jar", + "size":158840, + "date":"2017-07-02T11:40:55+00:00", + "md5":null, + "sha1":"0383e87287979591689f0803d40e062e34350810", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:55+00:00", + "size":158840, + "sha1":"0383e87287979591689f0803d40e062e34350810", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.12@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:40:57+00:00", + "md5":null, + "sha1":"7eaf8694295f4c9e9b6d0d9f872c154915ed1c89", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:57+00:00", + "size":35184, + "sha1":"7eaf8694295f4c9e9b6d0d9f872c154915ed1c89", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.12/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.12-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.jar", + "size":155918, + "date":"2017-07-02T11:40:32+00:00", + "md5":null, + "sha1":"a924c7b0eb6a0ec1d667de3316d1acec25ad9c13", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:32+00:00", + "size":155918, + "sha1":"a924c7b0eb6a0ec1d667de3316d1acec25ad9c13", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.11@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:40:34+00:00", + "md5":null, + "sha1":"f2ac22b9045082adee8a6a357d8ae805a2815106", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:34+00:00", + "size":35184, + "sha1":"f2ac22b9045082adee8a6a357d8ae805a2815106", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.11/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.11-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.jar", + "size":155901, + "date":"2017-07-02T11:40:43+00:00", + "md5":null, + "sha1":"ee04cbd7a11f4fcd3f3937c963bd499e7d0138e9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:40:43+00:00", + "size":155901, + "sha1":"ee04cbd7a11f4fcd3f3937c963bd499e7d0138e9", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.10@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:40:44+00:00", + "md5":null, + "sha1":"80ccea87d3235404a8f615b724c79540ecbedfee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs1.0.0-M1_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:40:44+00:00", + "size":35184, + "sha1":"80ccea87d3235404a8f615b724c79540ecbedfee", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs1.0.0-M1_2.10/0.2.2/scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs1.0.0-M1_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs1.0.0-M1_2.10-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:40:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.jar", + "size":158991, + "date":"2017-07-02T11:39:52+00:00", + "md5":null, + "sha1":"b260e5f316698ea9bc8ba851088a0a136fe97393", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:52+00:00", + "size":158991, + "sha1":"b260e5f316698ea9bc8ba851088a0a136fe97393", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.13.0-M1@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:39:54+00:00", + "md5":null, + "sha1":"ad15b75b40eb7868baced39fcf5fc270f70cdcd5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.13.0-M1", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:54+00:00", + "size":35184, + "sha1":"ad15b75b40eb7868baced39fcf5fc270f70cdcd5", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.13.0-M1/0.2.2/scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.13.0-M1@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.13.0-M1-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.12-0.2.2.jar", + "size":158991, + "date":"2017-07-02T11:39:39+00:00", + "md5":null, + "sha1":"a61d50fa23ce0c99c6b6c4b9940ed576dc26c756", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:39+00:00", + "size":158991, + "sha1":"a61d50fa23ce0c99c6b6c4b9940ed576dc26c756", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.12-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.12@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs0.6_2.12-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:39:40+00:00", + "md5":null, + "sha1":"a2f22047739ca655d4a3a3074e8b3af359ac623a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.12", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:40+00:00", + "size":35184, + "sha1":"a2f22047739ca655d4a3a3074e8b3af359ac623a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.12/0.2.2/scalajs-java-time_sjs0.6_2.12-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.12@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.12-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.11-0.2.2.jar", + "size":156026, + "date":"2017-07-02T11:39:15+00:00", + "md5":null, + "sha1":"6bf0c490df5fb4993c1016c5ae1e89cf3ae9a1f2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:15+00:00", + "size":156026, + "sha1":"6bf0c490df5fb4993c1016c5ae1e89cf3ae9a1f2", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.11-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.11@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs0.6_2.11-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:39:17+00:00", + "md5":null, + "sha1":"eeb49cd960c007d1f741e2a4a4de569f5e2a2e2a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.11", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:17+00:00", + "size":35184, + "sha1":"eeb49cd960c007d1f741e2a4a4de569f5e2a2e2a", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.11/0.2.2/scalajs-java-time_sjs0.6_2.11-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.11@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.11-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.10-0.2.2.jar", + "size":155975, + "date":"2017-07-02T11:39:25+00:00", + "md5":null, + "sha1":"fb7fa16e78986de15b0246af23b952292eda25b4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:39:25+00:00", + "size":155975, + "sha1":"fb7fa16e78986de15b0246af23b952292eda25b4", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.10-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.10@0.2.2?classifier=sources", + "file_name":"scalajs-java-time_sjs0.6_2.10-0.2.2-sources.jar", + "size":35184, + "date":"2017-07-02T11:39:27+00:00", + "md5":null, + "sha1":"2b040c4c698cb702afe5e213508d71491a76d4aa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-time_sjs0.6_2.10", + "version":"0.2.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:39:27+00:00", + "size":35184, + "sha1":"2b040c4c698cb702afe5e213508d71491a76d4aa", + "name":"scalajs-java-time", + "description":"scalajs-java-time", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-time_sjs0.6_2.10/0.2.2/scalajs-java-time_sjs0.6_2.10-0.2.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-time_sjs0.6_2.10@0.2.2", + "file_name":"scalajs-java-time_sjs0.6_2.10-0.2.2.pom", + "size":0, + "date":"2017-07-02T11:39:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.jar", + "size":30039, + "date":"2017-07-02T11:38:10+00:00", + "md5":null, + "sha1":"66428aef0fbf4d12f5034a5aed1cabeffb83d98d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":30039, + "sha1":"66428aef0fbf4d12f5034a5aed1cabeffb83d98d", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:38:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:38:10+00:00", + "md5":null, + "sha1":"378f7530aee4eb94987aa8eab8128ad0d8819896", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:10+00:00", + "size":8574, + "sha1":"378f7530aee4eb94987aa8eab8128ad0d8819896", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.13.0-M1-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:38:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.jar", + "size":30039, + "date":"2017-07-02T11:38:01+00:00", + "md5":null, + "sha1":"4efb3890ebb6c90fb9ab6c2459b63fc21ca36507", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:38:01+00:00", + "size":30039, + "sha1":"4efb3890ebb6c90fb9ab6c2459b63fc21ca36507", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:38:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:38:02+00:00", + "md5":null, + "sha1":"98e345eee6471d4bb62337f63c1a187df332e159", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:38:02+00:00", + "size":8574, + "sha1":"98e345eee6471d4bb62337f63c1a187df332e159", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.12-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:38:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.jar", + "size":28643, + "date":"2017-07-02T11:37:44+00:00", + "md5":null, + "sha1":"7174a20172d5cb1392904aa0b7e3536ec98a6fba", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":28643, + "sha1":"7174a20172d5cb1392904aa0b7e3536ec98a6fba", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:37:44+00:00", + "md5":null, + "sha1":"b30a9f3b8f8f808a80bdde5ee1791c43c53bceb8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:44+00:00", + "size":8574, + "sha1":"b30a9f3b8f8f808a80bdde5ee1791c43c53bceb8", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.11-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.jar", + "size":28606, + "date":"2017-07-02T11:37:52+00:00", + "md5":null, + "sha1":"f76ade7a1b5a651331a73f69849e23660dd4383f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":28606, + "sha1":"f76ade7a1b5a651331a73f69849e23660dd4383f", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:37:52+00:00", + "md5":null, + "sha1":"a4fdd4aa1d8d7d44ca65c453c178b620083f8c48", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs1.0.0-M1_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:52+00:00", + "size":8574, + "sha1":"a4fdd4aa1d8d7d44ca65c453c178b620083f8c48", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10/0.1.2/scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs1.0.0-M1_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs1.0.0-M1_2.10-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.jar", + "size":30178, + "date":"2017-07-02T11:37:04+00:00", + "md5":null, + "sha1":"b45a5ea1aaf81e3aa31aa1808388dc2f4cd0f37a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:37:04+00:00", + "size":30178, + "sha1":"b45a5ea1aaf81e3aa31aa1808388dc2f4cd0f37a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:37:05+00:00", + "md5":null, + "sha1":"71077646045586357df01e798ac8abf8823afcb0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.13.0-M1", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:37:05+00:00", + "size":8574, + "sha1":"71077646045586357df01e798ac8abf8823afcb0", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1/0.1.2/scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.13.0-M1@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.13.0-M1-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:37:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.12-0.1.2.jar", + "size":30178, + "date":"2017-07-02T11:36:55+00:00", + "md5":null, + "sha1":"f73fdf9648e9f851a01c7c72dd200f707f20c331", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":30178, + "sha1":"f73fdf9648e9f851a01c7c72dd200f707f20c331", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.12-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.12@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs0.6_2.12-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:36:55+00:00", + "md5":null, + "sha1":"b7320587fb90013a7795beef74cb6d30e5340b7a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.12", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:55+00:00", + "size":8574, + "sha1":"b7320587fb90013a7795beef74cb6d30e5340b7a", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.12/0.1.2/scalajs-java-logging_sjs0.6_2.12-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.12@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.12-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.11-0.1.2.jar", + "size":28787, + "date":"2017-07-02T11:36:37+00:00", + "md5":null, + "sha1":"004b322964680e27cd296d81806ec645e29abbd9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:37+00:00", + "size":28787, + "sha1":"004b322964680e27cd296d81806ec645e29abbd9", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.11-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.11@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs0.6_2.11-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:36:38+00:00", + "md5":null, + "sha1":"186e2ba7f8130d12e446d1bc31c8fd023b6c5114", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.11", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:38+00:00", + "size":8574, + "sha1":"186e2ba7f8130d12e446d1bc31c8fd023b6c5114", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.11/0.1.2/scalajs-java-logging_sjs0.6_2.11-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.11@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.11-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.10-0.1.2.jar", + "size":28766, + "date":"2017-07-02T11:36:45+00:00", + "md5":null, + "sha1":"88416033e9f111f3348d672a0d1cb5c694dd4719", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":28766, + "sha1":"88416033e9f111f3348d672a0d1cb5c694dd4719", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.10-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.10@0.1.2?classifier=sources", + "file_name":"scalajs-java-logging_sjs0.6_2.10-0.1.2-sources.jar", + "size":8574, + "date":"2017-07-02T11:36:45+00:00", + "md5":null, + "sha1":"d24d9dbcbef99d9172e833f59e902bba2ba602cb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.scala-js", + "artifact_id":"scalajs-java-logging_sjs0.6_2.10", + "version":"0.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:36:45+00:00", + "size":8574, + "sha1":"d24d9dbcbef99d9172e833f59e902bba2ba602cb", + "name":"scalajs-java-logging", + "description":"scalajs-java-logging", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/scala-js/scalajs-java-logging_sjs0.6_2.10/0.1.2/scalajs-java-logging_sjs0.6_2.10-0.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.scala-js/scalajs-java-logging_sjs0.6_2.10@0.1.2", + "file_name":"scalajs-java-logging_sjs0.6_2.10-0.1.2.pom", + "size":0, + "date":"2017-07-02T11:36:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reaktivity/nukleus-ws@0.17", + "file_name":"nukleus-ws-0.17.jar", + "size":158057, + "date":"2017-07-02T06:43:25+00:00", + "md5":null, + "sha1":"87bde3fc4c682cd811cd74a30c2bfb1242b47114", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T06:43:25+00:00", + "size":158057, + "sha1":"87bde3fc4c682cd811cd74a30c2bfb1242b47114", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reaktivity/nukleus-ws@0.17", + "file_name":"nukleus-ws-0.17.pom", + "size":0, + "date":"2017-07-02T06:43:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reaktivity/nukleus-ws@0.17?classifier=sources", + "file_name":"nukleus-ws-0.17-sources.jar", + "size":76250, + "date":"2017-07-02T06:43:27+00:00", + "md5":null, + "sha1":"13eb4325f0f8f3f9f2a1b1cfcdb555a9d9482033", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reaktivity", + "artifact_id":"nukleus-ws", + "version":"0.17", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T06:43:27+00:00", + "size":76250, + "sha1":"13eb4325f0f8f3f9f2a1b1cfcdb555a9d9482033", + "name":"WebSocket Nukleus Implementation", + "description":"WebSocket Nukleus Implementation", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reaktivity/nukleus-ws/0.17/nukleus-ws-0.17.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reaktivity/nukleus-ws@0.17", + "file_name":"nukleus-ws-0.17.pom", + "size":0, + "date":"2017-07-02T06:43:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.12@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.12-0.12.4-play26.jar", + "size":345746, + "date":"2017-07-02T13:19:37+00:00", + "md5":null, + "sha1":"a16fd53851ea8be0f10fb234c8989e52fd26487b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:37+00:00", + "size":345746, + "sha1":"a16fd53851ea8be0f10fb234c8989e52fd26487b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.12@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.12-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T13:19:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.12@0.12.4-play26?classifier=sources", + "file_name":"reactivemongo-play-json_2.12-0.12.4-play26-sources.jar", + "size":15075, + "date":"2017-07-02T13:19:59+00:00", + "md5":null, + "sha1":"03a58ad19ef2023777deddd8bbf087e567a1d986", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:59+00:00", + "size":15075, + "sha1":"03a58ad19ef2023777deddd8bbf087e567a1d986", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.12/0.12.4-play26/reactivemongo-play-json_2.12-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.12@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.12-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T13:19:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.11@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.11-0.12.4-play26.jar", + "size":489643, + "date":"2017-07-02T13:19:09+00:00", + "md5":null, + "sha1":"088196ef6bfca9ce19ba8f1ea12f25fcd25c740b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:19:09+00:00", + "size":489643, + "sha1":"088196ef6bfca9ce19ba8f1ea12f25fcd25c740b", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.11@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.11-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T13:19:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.11@0.12.4-play26?classifier=sources", + "file_name":"reactivemongo-play-json_2.11-0.12.4-play26-sources.jar", + "size":15075, + "date":"2017-07-02T13:19:29+00:00", + "md5":null, + "sha1":"229ea95a8e7c2116457fdfbadaafb4ec54db7568", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"reactivemongo-play-json_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:19:29+00:00", + "size":15075, + "sha1":"229ea95a8e7c2116457fdfbadaafb4ec54db7568", + "name":"reactivemongo-play-json", + "description":"reactivemongo-play-json", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/reactivemongo-play-json_2.11/0.12.4-play26/reactivemongo-play-json_2.11-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/reactivemongo-play-json_2.11@0.12.4-play26", + "file_name":"reactivemongo-play-json_2.11-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T13:19:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.12@0.12.4-play26", + "file_name":"play2-reactivemongo_2.12-0.12.4-play26.jar", + "size":303339, + "date":"2017-07-02T12:42:04+00:00", + "md5":null, + "sha1":"ecfb825624c896922122a74bf79cbf14b7adfbf5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:04+00:00", + "size":303339, + "sha1":"ecfb825624c896922122a74bf79cbf14b7adfbf5", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.12@0.12.4-play26", + "file_name":"play2-reactivemongo_2.12-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T12:42:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.12@0.12.4-play26?classifier=sources", + "file_name":"play2-reactivemongo_2.12-0.12.4-play26-sources.jar", + "size":24250, + "date":"2017-07-02T12:42:37+00:00", + "md5":null, + "sha1":"75b39e08508689c9f65465c366f86a1fa9925351", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.12", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:37+00:00", + "size":24250, + "sha1":"75b39e08508689c9f65465c366f86a1fa9925351", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.12/0.12.4-play26/play2-reactivemongo_2.12-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.12@0.12.4-play26", + "file_name":"play2-reactivemongo_2.12-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T12:42:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.11@0.12.4-play26", + "file_name":"play2-reactivemongo_2.11-0.12.4-play26.jar", + "size":504969, + "date":"2017-07-02T12:41:32+00:00", + "md5":null, + "sha1":"0ec876b6f0b5e5f891b8cd25f97c2745a9d73de9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":504969, + "sha1":"0ec876b6f0b5e5f891b8cd25f97c2745a9d73de9", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.11@0.12.4-play26", + "file_name":"play2-reactivemongo_2.11-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T12:41:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.11@0.12.4-play26?classifier=sources", + "file_name":"play2-reactivemongo_2.11-0.12.4-play26-sources.jar", + "size":24204, + "date":"2017-07-02T12:41:54+00:00", + "md5":null, + "sha1":"5d69e1e6b5bb0b3a890aae18accf4772b24195af", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.reactivemongo", + "artifact_id":"play2-reactivemongo_2.11", + "version":"0.12.4-play26", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:54+00:00", + "size":24204, + "sha1":"5d69e1e6b5bb0b3a890aae18accf4772b24195af", + "name":"Play2-ReactiveMongo", + "description":"Play2-ReactiveMongo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/reactivemongo/play2-reactivemongo_2.11/0.12.4-play26/play2-reactivemongo_2.11-0.12.4-play26.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.reactivemongo/play2-reactivemongo_2.11@0.12.4-play26", + "file_name":"play2-reactivemongo_2.11-0.12.4-play26.pom", + "size":0, + "date":"2017-07-02T12:41:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-utils@2.0.0", + "file_name":"dependency-check-utils-2.0.0.jar", + "size":33727, + "date":"2017-07-02T11:02:04+00:00", + "md5":null, + "sha1":"4dfd80701bc77d494e588dfe06284f2bfa5d3652", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:04+00:00", + "size":33727, + "sha1":"4dfd80701bc77d494e588dfe06284f2bfa5d3652", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-utils@2.0.0", + "file_name":"dependency-check-utils-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-utils@2.0.0?classifier=sources", + "file_name":"dependency-check-utils-2.0.0-sources.jar", + "size":30351, + "date":"2017-07-02T11:02:03+00:00", + "md5":null, + "sha1":"d97d01216a0cd9216259f8a06fd57433b7772137", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-utils", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:03+00:00", + "size":30351, + "sha1":"d97d01216a0cd9216259f8a06fd57433b7772137", + "name":"Dependency-Check Utils", + "description":"dependency-check-utils is a collection of common utility classes used within dependency-check that might be useful in other projects.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-utils/2.0.0/dependency-check-utils-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-utils@2.0.0", + "file_name":"dependency-check-utils-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-plugin@2.0.0", + "file_name":"dependency-check-plugin-2.0.0.jar", + "size":8778, + "date":"2017-07-02T11:02:26+00:00", + "md5":null, + "sha1":"f5b7d1811b8d9947f4963e96e9c1b02106762f72", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:26+00:00", + "size":8778, + "sha1":"f5b7d1811b8d9947f4963e96e9c1b02106762f72", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-plugin@2.0.0", + "file_name":"dependency-check-plugin-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-plugin@2.0.0?classifier=sources", + "file_name":"dependency-check-plugin-2.0.0-sources.jar", + "size":8650, + "date":"2017-07-02T11:02:25+00:00", + "md5":null, + "sha1":"1eaff3869bf2bf930e4eac8ac06a2428cd433825", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-plugin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:25+00:00", + "size":8650, + "sha1":"1eaff3869bf2bf930e4eac8ac06a2428cd433825", + "name":"Dependency-Check Plugin Archetype", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-plugin/2.0.0/dependency-check-plugin-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-plugin@2.0.0", + "file_name":"dependency-check-plugin-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-maven@2.0.0", + "file_name":"dependency-check-maven-2.0.0.jar", + "size":50360, + "date":"2017-07-02T11:02:52+00:00", + "md5":null, + "sha1":"78209bc4a08b57ce726602cb879904f5890e7558", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":50360, + "sha1":"78209bc4a08b57ce726602cb879904f5890e7558", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-maven@2.0.0", + "file_name":"dependency-check-maven-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-maven@2.0.0?classifier=sources", + "file_name":"dependency-check-maven-2.0.0-sources.jar", + "size":34245, + "date":"2017-07-02T11:02:52+00:00", + "md5":null, + "sha1":"c2dff4cc614f86da774843e03d1df6a445ccfc2b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-maven", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:02:52+00:00", + "size":34245, + "sha1":"c2dff4cc614f86da774843e03d1df6a445ccfc2b", + "name":"Dependency-Check Maven Plugin", + "description":"dependency-check-maven is a Maven Plugin that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The plugin will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-maven/2.0.0/dependency-check-maven-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-maven@2.0.0", + "file_name":"dependency-check-maven-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:02:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-core@2.0.0", + "file_name":"dependency-check-core-2.0.0.jar", + "size":557408, + "date":"2017-07-02T11:03:26+00:00", + "md5":null, + "sha1":"3db691aac7c33cf6680d36d8263017e69ecc8f80", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:26+00:00", + "size":557408, + "sha1":"3db691aac7c33cf6680d36d8263017e69ecc8f80", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-core@2.0.0", + "file_name":"dependency-check-core-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:03:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-core@2.0.0?classifier=sources", + "file_name":"dependency-check-core-2.0.0-sources.jar", + "size":512732, + "date":"2017-07-02T11:03:22+00:00", + "md5":null, + "sha1":"b06c956af4d7bd04030babdf2e1b5cab8a018e79", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-core", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:22+00:00", + "size":512732, + "sha1":"b06c956af4d7bd04030babdf2e1b5cab8a018e79", + "name":"Dependency-Check Core", + "description":"dependency-check-core is the engine and reporting tool used to identify and report if there are any known, publicly disclosed vulnerabilities in the scanned project's dependencies. The engine extracts meta-data from the dependencies and uses this to do fuzzy key-word matching against the Common Platfrom Enumeration (CPE), if any CPE identifiers are found the associated Common Vulnerability and Exposure (CVE) entries are added to the generated report.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-core/2.0.0/dependency-check-core-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-core@2.0.0", + "file_name":"dependency-check-core-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:03:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-ant@2.0.0", + "file_name":"dependency-check-ant-2.0.0.jar", + "size":26633, + "date":"2017-07-02T11:03:53+00:00", + "md5":null, + "sha1":"7ee00ef781a60cddcecc3e46d9c81de8df77b2f7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:03:53+00:00", + "size":26633, + "sha1":"7ee00ef781a60cddcecc3e46d9c81de8df77b2f7", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-ant@2.0.0", + "file_name":"dependency-check-ant-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:03:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-ant@2.0.0?classifier=sources", + "file_name":"dependency-check-ant-2.0.0-sources.jar", + "size":27162, + "date":"2017-07-02T11:03:50+00:00", + "md5":null, + "sha1":"9e681d3fc9180c40fc2dfc43d580c138f291459a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.owasp", + "artifact_id":"dependency-check-ant", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:03:50+00:00", + "size":27162, + "sha1":"9e681d3fc9180c40fc2dfc43d580c138f291459a", + "name":"Dependency-Check Ant Task", + "description":"dependency-check-ant is an Ant Task that uses dependency-check-core to detect publicly disclosed vulnerabilities associated with the project's dependencies. The task will generate a report listing the dependency, any identified Common Platform Enumeration (CPE) identifiers, and the associated Common Vulnerability and Exposure (CVE) entries.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/owasp/dependency-check-ant/2.0.0/dependency-check-ant-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.owasp/dependency-check-ant@2.0.0", + "file_name":"dependency-check-ant-2.0.0.pom", + "size":0, + "date":"2017-07-02T11:03:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/komamitsu/fluency/1.4.0/fluency-1.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.komamitsu/fluency@1.4.0", + "file_name":"fluency-1.4.0.jar", + "size":91825, + "date":"2017-07-02T14:40:51+00:00", + "md5":null, + "sha1":"bfd17957c72e18d221d3e17e4a0b7835447674ea", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:40:51+00:00", + "size":91825, + "sha1":"bfd17957c72e18d221d3e17e4a0b7835447674ea", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/komamitsu/fluency/1.4.0/fluency-1.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/komamitsu/fluency/1.4.0/fluency-1.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.komamitsu/fluency@1.4.0", + "file_name":"fluency-1.4.0.pom", + "size":0, + "date":"2017-07-02T14:40:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/komamitsu/fluency/1.4.0/fluency-1.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.komamitsu/fluency@1.4.0?classifier=sources", + "file_name":"fluency-1.4.0-sources.jar", + "size":33744, + "date":"2017-07-02T14:41:01+00:00", + "md5":null, + "sha1":"bac25d40389f333cbb5f6c786fa521e4d1d647fc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.komamitsu", + "artifact_id":"fluency", + "version":"1.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:41:01+00:00", + "size":33744, + "sha1":"bac25d40389f333cbb5f6c786fa521e4d1d647fc", + "name":"fluency", + "description":"Yet another fluent logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/komamitsu/fluency/1.4.0/fluency-1.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/komamitsu/fluency/1.4.0/fluency-1.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.komamitsu/fluency@1.4.0", + "file_name":"fluency-1.4.0.pom", + "size":0, + "date":"2017-07-02T14:41:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-examples@0.4.0", + "file_name":"vavr-examples-0.4.0.jar", + "size":69564, + "date":"2017-07-02T12:59:16+00:00", + "md5":null, + "sha1":"e968b488e8aa5d7f24f476873aad97d054f479b0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:16+00:00", + "size":69564, + "sha1":"e968b488e8aa5d7f24f476873aad97d054f479b0", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-examples@0.4.0", + "file_name":"vavr-examples-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:59:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-examples@0.4.0?classifier=sources", + "file_name":"vavr-examples-0.4.0-sources.jar", + "size":46690, + "date":"2017-07-02T12:59:21+00:00", + "md5":null, + "sha1":"4027c7ff0374b003fbbaeea3c438c0b7330ff975", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-examples", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:21+00:00", + "size":46690, + "sha1":"4027c7ff0374b003fbbaeea3c438c0b7330ff975", + "name":"vavr-examples", + "description":"Immutables.org examples for Vavr (Examples)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-examples/0.4.0/vavr-examples-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-examples@0.4.0", + "file_name":"vavr-examples-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:59:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-encodings@0.4.0", + "file_name":"vavr-encodings-0.4.0.jar", + "size":62583, + "date":"2017-07-02T12:59:01+00:00", + "md5":null, + "sha1":"005bf1930701ef9a16daaf528e01fd83ebd00b6a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:59:01+00:00", + "size":62583, + "sha1":"005bf1930701ef9a16daaf528e01fd83ebd00b6a", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-encodings@0.4.0", + "file_name":"vavr-encodings-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:59:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-encodings@0.4.0?classifier=sources", + "file_name":"vavr-encodings-0.4.0-sources.jar", + "size":42293, + "date":"2017-07-02T12:59:04+00:00", + "md5":null, + "sha1":"449e86e56f082d1f595b34d442359f32ca5b9b11", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-encodings", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:59:04+00:00", + "size":42293, + "sha1":"449e86e56f082d1f595b34d442359f32ca5b9b11", + "name":"vavr-encodings", + "description":"Immutables.org encodings for Vavr (Encodings)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-encodings/0.4.0/vavr-encodings-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-encodings@0.4.0", + "file_name":"vavr-encodings-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:59:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-checkstyle@0.4.0", + "file_name":"vavr-checkstyle-0.4.0.jar", + "size":4726, + "date":"2017-07-02T12:58:29+00:00", + "md5":null, + "sha1":"cda761c0224e6e2f9e80a07d232115b2cf9df48d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:29+00:00", + "size":4726, + "sha1":"cda761c0224e6e2f9e80a07d232115b2cf9df48d", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-checkstyle@0.4.0", + "file_name":"vavr-checkstyle-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:58:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-checkstyle@0.4.0?classifier=sources", + "file_name":"vavr-checkstyle-0.4.0-sources.jar", + "size":5543, + "date":"2017-07-02T12:58:46+00:00", + "md5":null, + "sha1":"5188ea0db96741fcbb94122cabd63f00bec267cc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.immutables.vavr", + "artifact_id":"vavr-checkstyle", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:46+00:00", + "size":5543, + "sha1":"5188ea0db96741fcbb94122cabd63f00bec267cc", + "name":"vavr-checkstyle", + "description":"Immutables.org encodings for Vavr (Checkstyle policy)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/immutables/vavr/vavr-checkstyle/0.4.0/vavr-checkstyle-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.immutables.vavr/vavr-checkstyle@0.4.0", + "file_name":"vavr-checkstyle-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:58:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-tcp@4.2.1-beta1", + "file_name":"smack-tcp-4.2.1-beta1.jar", + "size":59652, + "date":"2017-07-02T17:08:42+00:00", + "md5":null, + "sha1":"515d084cb65cee07ed1fd33877713cff3ac6ef3b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":59652, + "sha1":"515d084cb65cee07ed1fd33877713cff3ac6ef3b", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-tcp@4.2.1-beta1", + "file_name":"smack-tcp-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:08:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-tcp@4.2.1-beta1?classifier=sources", + "file_name":"smack-tcp-4.2.1-beta1-sources.jar", + "size":41116, + "date":"2017-07-02T17:08:57+00:00", + "md5":null, + "sha1":"b61f04a1e4de6fae395658b6827912be9341d705", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-tcp", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:57+00:00", + "size":41116, + "sha1":"b61f04a1e4de6fae395658b6827912be9341d705", + "name":"Smack", + "description":"Smack for standard XMPP connections over TCP.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-tcp/4.2.1-beta1/smack-tcp-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-tcp@4.2.1-beta1", + "file_name":"smack-tcp-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:08:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-provided@4.2.1-beta1", + "file_name":"smack-sasl-provided-4.2.1-beta1.jar", + "size":10586, + "date":"2017-07-02T17:08:18+00:00", + "md5":null, + "sha1":"c052d47511fcdff1f9fafa9026bf600c75f48690", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:08:18+00:00", + "size":10586, + "sha1":"c052d47511fcdff1f9fafa9026bf600c75f48690", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-provided@4.2.1-beta1", + "file_name":"smack-sasl-provided-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:08:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-provided@4.2.1-beta1?classifier=sources", + "file_name":"smack-sasl-provided-4.2.1-beta1-sources.jar", + "size":7544, + "date":"2017-07-02T17:08:29+00:00", + "md5":null, + "sha1":"ddeba3b91abff513ba57efc4760405ca597d92e5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-provided", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:29+00:00", + "size":7544, + "sha1":"ddeba3b91abff513ba57efc4760405ca597d92e5", + "name":"Smack", + "description":"SASL with Smack provided code\nUse Smack provided code for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-provided/4.2.1-beta1/smack-sasl-provided-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-provided@4.2.1-beta1", + "file_name":"smack-sasl-provided-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:08:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-javax@4.2.1-beta1", + "file_name":"smack-sasl-javax-4.2.1-beta1.jar", + "size":8648, + "date":"2017-07-02T17:07:57+00:00", + "md5":null, + "sha1":"3afb4f0cf6c3199cf41fbfbe3f7c6aca9034dd4e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:57+00:00", + "size":8648, + "sha1":"3afb4f0cf6c3199cf41fbfbe3f7c6aca9034dd4e", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-javax@4.2.1-beta1", + "file_name":"smack-sasl-javax-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-javax@4.2.1-beta1?classifier=sources", + "file_name":"smack-sasl-javax-4.2.1-beta1-sources.jar", + "size":8690, + "date":"2017-07-02T17:08:06+00:00", + "md5":null, + "sha1":"7eb83a51af49646c8b2b006830140a41047a3500", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-sasl-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:06+00:00", + "size":8690, + "sha1":"7eb83a51af49646c8b2b006830140a41047a3500", + "name":"Smack", + "description":"SASL with javax.security.sasl\nUse javax.security.sasl for SASL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-sasl-javax/4.2.1-beta1/smack-sasl-javax-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-sasl-javax@4.2.1-beta1", + "file_name":"smack-sasl-javax-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:08:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-minidns@4.2.1-beta1", + "file_name":"smack-resolver-minidns-4.2.1-beta1.jar", + "size":7912, + "date":"2017-07-02T17:07:37+00:00", + "md5":null, + "sha1":"a4b72c50e2c78b961971bf354d668479e26eb282", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:37+00:00", + "size":7912, + "sha1":"a4b72c50e2c78b961971bf354d668479e26eb282", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-minidns@4.2.1-beta1", + "file_name":"smack-resolver-minidns-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-minidns@4.2.1-beta1?classifier=sources", + "file_name":"smack-resolver-minidns-4.2.1-beta1-sources.jar", + "size":7149, + "date":"2017-07-02T17:07:48+00:00", + "md5":null, + "sha1":"ed5b289b00658e958ea465dcf646c312f29f1418", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-minidns", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:48+00:00", + "size":7149, + "sha1":"ed5b289b00658e958ea465dcf646c312f29f1418", + "name":"Smack", + "description":"DNS SRV with minidns\nUse minidns for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-minidns/4.2.1-beta1/smack-resolver-minidns-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-minidns@4.2.1-beta1", + "file_name":"smack-resolver-minidns-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-javax@4.2.1-beta1", + "file_name":"smack-resolver-javax-4.2.1-beta1.jar", + "size":3914, + "date":"2017-07-02T17:07:19+00:00", + "md5":null, + "sha1":"9f24bf28ebc79c12d62f149a2c9eed846724681a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:19+00:00", + "size":3914, + "sha1":"9f24bf28ebc79c12d62f149a2c9eed846724681a", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-javax@4.2.1-beta1", + "file_name":"smack-resolver-javax-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-javax@4.2.1-beta1?classifier=sources", + "file_name":"smack-resolver-javax-4.2.1-beta1-sources.jar", + "size":4535, + "date":"2017-07-02T17:07:31+00:00", + "md5":null, + "sha1":"cb851300d67ad0fe1e455275148df8bfd963e783", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-javax", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:31+00:00", + "size":4535, + "sha1":"cb851300d67ad0fe1e455275148df8bfd963e783", + "name":"Smack", + "description":"DNS SRV with Java7\nUse javax.naming for DNS SRV lookups. The javax.naming API is availabe in JavaSE\nsince Java7.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-javax/4.2.1-beta1/smack-resolver-javax-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-javax@4.2.1-beta1", + "file_name":"smack-resolver-javax-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-dnsjava@4.2.1-beta1", + "file_name":"smack-resolver-dnsjava-4.2.1-beta1.jar", + "size":3183, + "date":"2017-07-02T17:07:01+00:00", + "md5":null, + "sha1":"333b514cfc9ed90e7a2c544bad1d4c7337b11fcb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:07:01+00:00", + "size":3183, + "sha1":"333b514cfc9ed90e7a2c544bad1d4c7337b11fcb", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-dnsjava@4.2.1-beta1", + "file_name":"smack-resolver-dnsjava-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-dnsjava@4.2.1-beta1?classifier=sources", + "file_name":"smack-resolver-dnsjava-4.2.1-beta1-sources.jar", + "size":4128, + "date":"2017-07-02T17:07:11+00:00", + "md5":null, + "sha1":"6584dfe86fb3e46e0116e086cb6e547621e87f84", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-resolver-dnsjava", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:07:11+00:00", + "size":4128, + "sha1":"6584dfe86fb3e46e0116e086cb6e547621e87f84", + "name":"Smack", + "description":"DNS SRV with dnsjava\nUse dnsjava for DNS SRV lookups. For platforms that don't provide the\njavax.naming API (e.g. Android).", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-resolver-dnsjava/4.2.1-beta1/smack-resolver-dnsjava-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-resolver-dnsjava@4.2.1-beta1", + "file_name":"smack-resolver-dnsjava-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:07:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-repl@4.2.1-beta1", + "file_name":"smack-repl-4.2.1-beta1.jar", + "size":16557, + "date":"2017-07-02T17:06:39+00:00", + "md5":null, + "sha1":"e8d2c9e24b6fd23d162e7e0664284b1c3966ae1e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:06:39+00:00", + "size":16557, + "sha1":"e8d2c9e24b6fd23d162e7e0664284b1c3966ae1e", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-repl@4.2.1-beta1", + "file_name":"smack-repl-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:06:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-repl@4.2.1-beta1?classifier=sources", + "file_name":"smack-repl-4.2.1-beta1-sources.jar", + "size":8037, + "date":"2017-07-02T17:06:48+00:00", + "md5":null, + "sha1":"1ac43f472cf2db16f56926e8c4c5254c6b92c990", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-repl", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:48+00:00", + "size":8037, + "sha1":"1ac43f472cf2db16f56926e8c4c5254c6b92c990", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-repl/4.2.1-beta1/smack-repl-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-repl@4.2.1-beta1", + "file_name":"smack-repl-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:06:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-omemo-signal-integration-test/4.2.1-beta1/smack-omemo-signal-integration-test-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal-integration-test@4.2.1-beta1?classifier=sources", + "file_name":"smack-omemo-signal-integration-test-4.2.1-beta1-sources.jar", + "size":2836, + "date":"2017-07-02T17:06:22+00:00", + "md5":null, + "sha1":"2f93a67f9cb8c71d33143608b2efe210bb6ff06b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:06:22+00:00", + "size":2836, + "sha1":"2f93a67f9cb8c71d33143608b2efe210bb6ff06b", + "name":"Smack", + "description":"Smack integration tests for OMEMO using libsignal.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal-integration-test/4.2.1-beta1/smack-omemo-signal-integration-test-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal-integration-test/4.2.1-beta1/smack-omemo-signal-integration-test-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal-integration-test@4.2.1-beta1", + "file_name":"smack-omemo-signal-integration-test-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:06:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal@4.2.1-beta1", + "file_name":"smack-omemo-signal-4.2.1-beta1.jar", + "size":15418, + "date":"2017-07-02T17:05:32+00:00", + "md5":null, + "sha1":"9cb8a0bc1bbf7ba47e2dcb3b6a15a955118a522c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:32+00:00", + "size":15418, + "sha1":"9cb8a0bc1bbf7ba47e2dcb3b6a15a955118a522c", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal@4.2.1-beta1", + "file_name":"smack-omemo-signal-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:05:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal@4.2.1-beta1?classifier=sources", + "file_name":"smack-omemo-signal-4.2.1-beta1-sources.jar", + "size":11734, + "date":"2017-07-02T17:05:44+00:00", + "md5":null, + "sha1":"483edede9edcda5466691efa861ba9ba2a97223c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo-signal", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:44+00:00", + "size":11734, + "sha1":"483edede9edcda5466691efa861ba9ba2a97223c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo-signal/4.2.1-beta1/smack-omemo-signal-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo-signal@4.2.1-beta1", + "file_name":"smack-omemo-signal-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:05:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo@4.2.1-beta1", + "file_name":"smack-omemo-4.2.1-beta1.jar", + "size":99758, + "date":"2017-07-02T17:05:01+00:00", + "md5":null, + "sha1":"c79e5844707653301c876369f03fff680a84f24d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:05:01+00:00", + "size":99758, + "sha1":"c79e5844707653301c876369f03fff680a84f24d", + "name":"Smack", + "description":"null", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo@4.2.1-beta1", + "file_name":"smack-omemo-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:05:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo@4.2.1-beta1?classifier=sources", + "file_name":"smack-omemo-4.2.1-beta1-sources.jar", + "size":80462, + "date":"2017-07-02T17:05:05+00:00", + "md5":null, + "sha1":"ea53c6128d501ec24f6d44c5339194584b50ac4c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-omemo", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:05+00:00", + "size":80462, + "sha1":"ea53c6128d501ec24f6d44c5339194584b50ac4c", + "name":"Smack", + "description":"null", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-omemo/4.2.1-beta1/smack-omemo-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-omemo@4.2.1-beta1", + "file_name":"smack-omemo-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:05:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-legacy@4.2.1-beta1", + "file_name":"smack-legacy-4.2.1-beta1.jar", + "size":174227, + "date":"2017-07-02T17:04:33+00:00", + "md5":null, + "sha1":"e975b6053783ec6f06a369010558ce78cb85e633", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:04:33+00:00", + "size":174227, + "sha1":"e975b6053783ec6f06a369010558ce78cb85e633", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-legacy@4.2.1-beta1", + "file_name":"smack-legacy-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:04:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-legacy@4.2.1-beta1?classifier=sources", + "file_name":"smack-legacy-4.2.1-beta1-sources.jar", + "size":138389, + "date":"2017-07-02T17:04:38+00:00", + "md5":null, + "sha1":"02c64befa094c152eaf8fd6c6aea41c583ec815f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-legacy", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:38+00:00", + "size":138389, + "sha1":"02c64befa094c152eaf8fd6c6aea41c583ec815f", + "name":"Smack", + "description":"Smack legacy extensions.\nUsually XEPs in the state 'retracted', 'rejected', 'deprecated',\n'obsolete' or in a long standing 'deferred' state.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-legacy/4.2.1-beta1/smack-legacy-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-legacy@4.2.1-beta1", + "file_name":"smack-legacy-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:04:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-jingle-old@4.2.1-beta1", + "file_name":"smack-jingle-old-4.2.1-beta1.jar", + "size":255215, + "date":"2017-07-02T17:03:56+00:00", + "md5":null, + "sha1":"1729bc03478ce6234bb082dfbcb67ef94c8bf873", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:56+00:00", + "size":255215, + "sha1":"1729bc03478ce6234bb082dfbcb67ef94c8bf873", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-jingle-old@4.2.1-beta1", + "file_name":"smack-jingle-old-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:03:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-jingle-old@4.2.1-beta1?classifier=sources", + "file_name":"smack-jingle-old-4.2.1-beta1-sources.jar", + "size":178500, + "date":"2017-07-02T17:04:15+00:00", + "md5":null, + "sha1":"bc7c655aeb1d8e0d485e9353ea7ef82bd7b7382a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-jingle-old", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:04:15+00:00", + "size":178500, + "sha1":"bc7c655aeb1d8e0d485e9353ea7ef82bd7b7382a", + "name":"Smack", + "description":"Smack Jingle API.\nWarning: This API is beta, outdated and currenlty unmaintained.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-jingle-old/4.2.1-beta1/smack-jingle-old-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-jingle-old@4.2.1-beta1", + "file_name":"smack-jingle-old-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:04:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-java7@4.2.1-beta1", + "file_name":"smack-java7-4.2.1-beta1.jar", + "size":21604, + "date":"2017-07-02T17:03:26+00:00", + "md5":null, + "sha1":"53f3600400697927fc1a1555589333e4e3d21da2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:03:26+00:00", + "size":21604, + "sha1":"53f3600400697927fc1a1555589333e4e3d21da2", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-java7@4.2.1-beta1", + "file_name":"smack-java7-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:03:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-java7@4.2.1-beta1?classifier=sources", + "file_name":"smack-java7-4.2.1-beta1-sources.jar", + "size":21533, + "date":"2017-07-02T17:03:31+00:00", + "md5":null, + "sha1":"7d4d39109e51126b373602cb25a0cd36292d16b4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-java7", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:31+00:00", + "size":21533, + "sha1":"7d4d39109e51126b373602cb25a0cd36292d16b4", + "name":"Smack", + "description":"Smack for Java7 (or higher).\nThis is a pseudo-artifact that pulls all the required dependencies to\nrun Smack on Java 7 (or higher) JVMs. Usually you want to add additional\ndependencies to smack-tcp, smack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-java7/4.2.1-beta1/smack-java7-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-java7@4.2.1-beta1", + "file_name":"smack-java7-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:03:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-integration-test/4.2.1-beta1/smack-integration-test-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-integration-test@4.2.1-beta1?classifier=sources", + "file_name":"smack-integration-test-4.2.1-beta1-sources.jar", + "size":74963, + "date":"2017-07-02T17:03:05+00:00", + "md5":null, + "sha1":"75c55e8808e42cb66646de5fcbd606ec037c53b1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-integration-test", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:03:05+00:00", + "size":74963, + "sha1":"75c55e8808e42cb66646de5fcbd606ec037c53b1", + "name":"Smack", + "description":"Smack integration tests.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-integration-test/4.2.1-beta1/smack-integration-test-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-integration-test/4.2.1-beta1/smack-integration-test-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-integration-test@4.2.1-beta1", + "file_name":"smack-integration-test-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:03:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-im@4.2.1-beta1", + "file_name":"smack-im-4.2.1-beta1.jar", + "size":71456, + "date":"2017-07-02T17:01:54+00:00", + "md5":null, + "sha1":"c6a2d02bcb7fa7ec659a064d7ae0a3a96b531a86", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:54+00:00", + "size":71456, + "sha1":"c6a2d02bcb7fa7ec659a064d7ae0a3a96b531a86", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-im@4.2.1-beta1", + "file_name":"smack-im-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:01:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-im@4.2.1-beta1?classifier=sources", + "file_name":"smack-im-4.2.1-beta1-sources.jar", + "size":54173, + "date":"2017-07-02T17:02:04+00:00", + "md5":null, + "sha1":"f292efdac3aa1a300022ff6c6d8c956b657067da", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-im", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:02:04+00:00", + "size":54173, + "sha1":"f292efdac3aa1a300022ff6c6d8c956b657067da", + "name":"Smack", + "description":"Smack IM.\nClasses and methods for XMPP-IM (RFC 6121):\nRoster, Chat and other functionality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-im/4.2.1-beta1/smack-im-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-im@4.2.1-beta1", + "file_name":"smack-im-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:02:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-extensions@4.2.1-beta1", + "file_name":"smack-extensions-4.2.1-beta1.jar", + "size":703800, + "date":"2017-07-02T17:01:09+00:00", + "md5":null, + "sha1":"cb9bfcfcf7fb8df2667d274c2ed87c3149600067", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:01:09+00:00", + "size":703800, + "sha1":"cb9bfcfcf7fb8df2667d274c2ed87c3149600067", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-extensions@4.2.1-beta1", + "file_name":"smack-extensions-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:01:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-extensions@4.2.1-beta1?classifier=sources", + "file_name":"smack-extensions-4.2.1-beta1-sources.jar", + "size":608627, + "date":"2017-07-02T17:01:45+00:00", + "md5":null, + "sha1":"6f2420b8076be9d712df84fc600795132db734ef", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:01:45+00:00", + "size":608627, + "sha1":"6f2420b8076be9d712df84fc600795132db734ef", + "name":"Smack", + "description":"Smack extensions.\nClasses and methods that implement support for the various XMPP XEPs\n(Multi-User Chat, PubSub, \u2026) and other XMPP extensions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-extensions/4.2.1-beta1/smack-extensions-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-extensions@4.2.1-beta1", + "file_name":"smack-extensions-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:01:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-experimental@4.2.1-beta1", + "file_name":"smack-experimental-4.2.1-beta1.jar", + "size":279592, + "date":"2017-07-02T17:00:34+00:00", + "md5":null, + "sha1":"1c085e68d00e814961675c434740b8c93137b1d8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:34+00:00", + "size":279592, + "sha1":"1c085e68d00e814961675c434740b8c93137b1d8", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-experimental@4.2.1-beta1", + "file_name":"smack-experimental-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:00:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-experimental@4.2.1-beta1?classifier=sources", + "file_name":"smack-experimental-4.2.1-beta1-sources.jar", + "size":235884, + "date":"2017-07-02T17:00:55+00:00", + "md5":null, + "sha1":"9a8e4182878943d4705becbcef31e00818b1872b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-experimental", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:55+00:00", + "size":235884, + "sha1":"9a8e4182878943d4705becbcef31e00818b1872b", + "name":"Smack", + "description":"Smack experimental extensions.\nClasses and methods for XEPs that are in status 'experimental' or that should\notherwise carefully considered for deployment. The API may change even\nbetween patch versions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-experimental/4.2.1-beta1/smack-experimental-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-experimental@4.2.1-beta1", + "file_name":"smack-experimental-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:00:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug-slf4j@4.2.1-beta1", + "file_name":"smack-debug-slf4j-4.2.1-beta1.jar", + "size":7397, + "date":"2017-07-02T17:00:06+00:00", + "md5":null, + "sha1":"3267d930a5b9c452b3400bafdb274d766e199a4b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:00:06+00:00", + "size":7397, + "sha1":"3267d930a5b9c452b3400bafdb274d766e199a4b", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug-slf4j@4.2.1-beta1", + "file_name":"smack-debug-slf4j-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:00:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug-slf4j@4.2.1-beta1?classifier=sources", + "file_name":"smack-debug-slf4j-4.2.1-beta1-sources.jar", + "size":8494, + "date":"2017-07-02T17:00:15+00:00", + "md5":null, + "sha1":"0912bc8ea12e4a9b6b8a2f84f9e8435324b54d6f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug-slf4j", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:00:15+00:00", + "size":8494, + "sha1":"0912bc8ea12e4a9b6b8a2f84f9e8435324b54d6f", + "name":"Smack", + "description":"Smack slf4j debugger.\nInspect the exchanged XMPP stanzas.\nConnect your favourite slf4j backend of choice to get output inside of it", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug-slf4j/4.2.1-beta1/smack-debug-slf4j-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug-slf4j@4.2.1-beta1", + "file_name":"smack-debug-slf4j-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T17:00:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug@4.2.1-beta1", + "file_name":"smack-debug-4.2.1-beta1.jar", + "size":69419, + "date":"2017-07-02T16:59:27+00:00", + "md5":null, + "sha1":"bdb3c540e8cd64af2723b0ee9b873f68463d81e5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:27+00:00", + "size":69419, + "sha1":"bdb3c540e8cd64af2723b0ee9b873f68463d81e5", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug@4.2.1-beta1", + "file_name":"smack-debug-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:59:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug@4.2.1-beta1?classifier=sources", + "file_name":"smack-debug-4.2.1-beta1-sources.jar", + "size":25386, + "date":"2017-07-02T16:59:40+00:00", + "md5":null, + "sha1":"b2887ef9d898d8d343a0a766ecab70a7ff6d6eb0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-debug", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":25386, + "sha1":"b2887ef9d898d8d343a0a766ecab70a7ff6d6eb0", + "name":"Smack", + "description":"Smack GUI debugger.\nInspect the exchanged XMPP stanzas.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-debug/4.2.1-beta1/smack-debug-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-debug@4.2.1-beta1", + "file_name":"smack-debug-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:59:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-core@4.2.1-beta1", + "file_name":"smack-core-4.2.1-beta1.jar", + "size":356114, + "date":"2017-07-02T16:58:47+00:00", + "md5":null, + "sha1":"7ed4430fb1da78a57d11e6e43e3a71d7c86ddb49", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:47+00:00", + "size":356114, + "sha1":"7ed4430fb1da78a57d11e6e43e3a71d7c86ddb49", + "name":"Smack", + "description":"Smack core components.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-core@4.2.1-beta1", + "file_name":"smack-core-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:58:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-core@4.2.1-beta1?classifier=sources", + "file_name":"smack-core-4.2.1-beta1-sources.jar", + "size":291791, + "date":"2017-07-02T16:59:13+00:00", + "md5":null, + "sha1":"7d22d2e168859c667bd87c2d73760a689f335cc4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-core", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:13+00:00", + "size":291791, + "sha1":"7d22d2e168859c667bd87c2d73760a689f335cc4", + "name":"Smack", + "description":"Smack core components.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-core/4.2.1-beta1/smack-core-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-core@4.2.1-beta1", + "file_name":"smack-core-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:59:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-compression-jzlib@4.2.1-beta1", + "file_name":"smack-compression-jzlib-4.2.1-beta1.jar", + "size":2274, + "date":"2017-07-02T16:58:21+00:00", + "md5":null, + "sha1":"eeb189a95f81905508b9d00b508a5d4fe51b4745", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:21+00:00", + "size":2274, + "sha1":"eeb189a95f81905508b9d00b508a5d4fe51b4745", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-compression-jzlib@4.2.1-beta1", + "file_name":"smack-compression-jzlib-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:58:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-compression-jzlib@4.2.1-beta1?classifier=sources", + "file_name":"smack-compression-jzlib-4.2.1-beta1-sources.jar", + "size":3172, + "date":"2017-07-02T16:58:33+00:00", + "md5":null, + "sha1":"d4c4cffd2694389ba8ebe448e77a1ab5de2a0554", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-compression-jzlib", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:33+00:00", + "size":3172, + "sha1":"d4c4cffd2694389ba8ebe448e77a1ab5de2a0554", + "name":"Smack", + "description":"Compression with jzlib\nAllow to compress the XMPP stream with help of jzlib.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-compression-jzlib/4.2.1-beta1/smack-compression-jzlib-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-compression-jzlib@4.2.1-beta1", + "file_name":"smack-compression-jzlib-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:58:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-bosh@4.2.1-beta1", + "file_name":"smack-bosh-4.2.1-beta1.jar", + "size":16739, + "date":"2017-07-02T16:58:01+00:00", + "md5":null, + "sha1":"be39578579e85be976293248f1b1f94b899c58af", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:01+00:00", + "size":16739, + "sha1":"be39578579e85be976293248f1b1f94b899c58af", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-bosh@4.2.1-beta1", + "file_name":"smack-bosh-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:58:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-bosh@4.2.1-beta1?classifier=sources", + "file_name":"smack-bosh-4.2.1-beta1-sources.jar", + "size":7839, + "date":"2017-07-02T16:58:04+00:00", + "md5":null, + "sha1":"bfc6ab6703871c034b4c76732bfb72eaa79e318d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-bosh", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:04+00:00", + "size":7839, + "sha1":"bfc6ab6703871c034b4c76732bfb72eaa79e318d", + "name":"Smack", + "description":"Smack BOSH API.\nThis API is considered beta quality.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-bosh/4.2.1-beta1/smack-bosh-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-bosh@4.2.1-beta1", + "file_name":"smack-bosh-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:58:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android-extensions@4.2.1-beta1", + "file_name":"smack-android-extensions-4.2.1-beta1.jar", + "size":6124, + "date":"2017-07-02T16:57:05+00:00", + "md5":null, + "sha1":"c79d959758e9eac4b54ef3c27941a693083f5d8d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:57:05+00:00", + "size":6124, + "sha1":"c79d959758e9eac4b54ef3c27941a693083f5d8d", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android-extensions@4.2.1-beta1", + "file_name":"smack-android-extensions-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:57:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android-extensions@4.2.1-beta1?classifier=sources", + "file_name":"smack-android-extensions-4.2.1-beta1-sources.jar", + "size":5403, + "date":"2017-07-02T16:57:31+00:00", + "md5":null, + "sha1":"5f79674105972df233c03c3817fb61f7b585a3c5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android-extensions", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:31+00:00", + "size":5403, + "sha1":"5f79674105972df233c03c3817fb61f7b585a3c5", + "name":"Smack", + "description":"Extra Smack extensions for Android.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android-extensions/4.2.1-beta1/smack-android-extensions-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android-extensions@4.2.1-beta1", + "file_name":"smack-android-extensions-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:57:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android@4.2.1-beta1", + "file_name":"smack-android-4.2.1-beta1.jar", + "size":5559, + "date":"2017-07-02T16:56:31+00:00", + "md5":null, + "sha1":"30097f463b9315dc1c05b313cc775082e5915822", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:56:31+00:00", + "size":5559, + "sha1":"30097f463b9315dc1c05b313cc775082e5915822", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android@4.2.1-beta1", + "file_name":"smack-android-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:56:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android@4.2.1-beta1?classifier=sources", + "file_name":"smack-android-4.2.1-beta1-sources.jar", + "size":10239, + "date":"2017-07-02T16:56:36+00:00", + "md5":null, + "sha1":"ef489c02386f2070dc1f5077f80b8f93cc48b573", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.igniterealtime.smack", + "artifact_id":"smack-android", + "version":"4.2.1-beta1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:56:36+00:00", + "size":10239, + "sha1":"ef489c02386f2070dc1f5077f80b8f93cc48b573", + "name":"Smack", + "description":"Smack for Android.\nAll the required dependencies to run Smack on Android.\nUsually you want to add additional dependencies like smack-tcp,\nsmack-extensions and smack-experimental.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/igniterealtime/smack/smack-android/4.2.1-beta1/smack-android-4.2.1-beta1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.igniterealtime.smack/smack-android@4.2.1-beta1", + "file_name":"smack-android-4.2.1-beta1.pom", + "size":0, + "date":"2017-07-02T16:56:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/xadatasource-war@1.6.4?type=war", + "file_name":"xadatasource-war-1.6.4.war", + "size":4976, + "date":"2017-07-02T11:05:42+00:00", + "md5":null, + "sha1":"f03bc820bfa99089f19afa30b49dbdc55b8e8f51", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:42+00:00", + "size":4976, + "sha1":"f03bc820bfa99089f19afa30b49dbdc55b8e8f51", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/xadatasource-war@1.6.4", + "file_name":"xadatasource-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/xadatasource-war@1.6.4?classifier=sources", + "file_name":"xadatasource-war-1.6.4-sources.jar", + "size":2190, + "date":"2017-07-02T11:05:50+00:00", + "md5":null, + "sha1":"e23d6a6d9dfc994786684aeb1ace190fc285430f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"xadatasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:50+00:00", + "size":2190, + "sha1":"e23d6a6d9dfc994786684aeb1ace190fc285430f", + "name":"Cargo XADataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/xadatasource-war/1.6.4/xadatasource-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/xadatasource-war@1.6.4", + "file_name":"xadatasource-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/two-datasources-war@1.6.4?type=war", + "file_name":"two-datasources-war-1.6.4.war", + "size":5146, + "date":"2017-07-02T11:05:33+00:00", + "md5":null, + "sha1":"cf58e1ee45ea9b9fc4eda00f54630e43c8460233", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:33+00:00", + "size":5146, + "sha1":"cf58e1ee45ea9b9fc4eda00f54630e43c8460233", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/two-datasources-war@1.6.4", + "file_name":"two-datasources-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/two-datasources-war@1.6.4?classifier=sources", + "file_name":"two-datasources-war-1.6.4-sources.jar", + "size":2172, + "date":"2017-07-02T11:05:37+00:00", + "md5":null, + "sha1":"d920f7091fea1d5bf4497c683bbd55dd44f2874f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"two-datasources-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:37+00:00", + "size":2172, + "sha1":"d920f7091fea1d5bf4497c683bbd55dd44f2874f", + "name":"Cargo Multiple DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/two-datasources-war/1.6.4/two-datasources-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/two-datasources-war@1.6.4", + "file_name":"two-datasources-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/tomcatcontext-war@1.6.4?type=war", + "file_name":"tomcatcontext-war-1.6.4.war", + "size":4268, + "date":"2017-07-02T11:09:19+00:00", + "md5":null, + "sha1":"5313d374a8733f28ee083ff5db4047c437ba22a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:19+00:00", + "size":4268, + "sha1":"5313d374a8733f28ee083ff5db4047c437ba22a7", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/tomcatcontext-war@1.6.4", + "file_name":"tomcatcontext-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/tomcatcontext-war@1.6.4?classifier=sources", + "file_name":"tomcatcontext-war-1.6.4-sources.jar", + "size":2071, + "date":"2017-07-02T11:09:20+00:00", + "md5":null, + "sha1":"8e65bcbd992e4ae1c4b73fb6cc80a0ad7d6897eb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"tomcatcontext-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:20+00:00", + "size":2071, + "sha1":"8e65bcbd992e4ae1c4b73fb6cc80a0ad7d6897eb", + "name":"Cargo Tomcat context WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/tomcatcontext-war/1.6.4/tomcatcontext-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/tomcatcontext-war@1.6.4", + "file_name":"tomcatcontext-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/systemproperty-war@1.6.4?type=war", + "file_name":"systemproperty-war-1.6.4.war", + "size":4342, + "date":"2017-07-02T11:09:37+00:00", + "md5":null, + "sha1":"644f0764a97458b46cf3ab726fa1a2cbc2039ece", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:37+00:00", + "size":4342, + "sha1":"644f0764a97458b46cf3ab726fa1a2cbc2039ece", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/systemproperty-war@1.6.4", + "file_name":"systemproperty-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/systemproperty-war@1.6.4?classifier=sources", + "file_name":"systemproperty-war-1.6.4-sources.jar", + "size":2257, + "date":"2017-07-02T11:09:39+00:00", + "md5":null, + "sha1":"1007ea42630c9c3d28375d99a929a5f728e7737c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"systemproperty-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:39+00:00", + "size":2257, + "sha1":"1007ea42630c9c3d28375d99a929a5f728e7737c", + "name":"Cargo System Property test WAR data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/systemproperty-war/1.6.4/systemproperty-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/systemproperty-war@1.6.4", + "file_name":"systemproperty-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-war/1.6.4/simple-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-war@1.6.4?type=war", + "file_name":"simple-war-1.6.4.war", + "size":2343, + "date":"2017-07-02T11:05:23+00:00", + "md5":null, + "sha1":"97fb29f946b8c6c67b6061a3ffd935c92248a0c4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:23+00:00", + "size":2343, + "sha1":"97fb29f946b8c6c67b6061a3ffd935c92248a0c4", + "name":"Cargo Simple WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-war/1.6.4/simple-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-war/1.6.4/simple-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-war@1.6.4", + "file_name":"simple-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-jar@1.6.4", + "file_name":"simple-jar-1.6.4.jar", + "size":2831, + "date":"2017-07-02T11:05:19+00:00", + "md5":null, + "sha1":"99e0eba1afbf860f5b7e600bdf3dd43110a8cd37", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:19+00:00", + "size":2831, + "sha1":"99e0eba1afbf860f5b7e600bdf3dd43110a8cd37", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-jar@1.6.4", + "file_name":"simple-jar-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-jar@1.6.4?classifier=sources", + "file_name":"simple-jar-1.6.4-sources.jar", + "size":1454, + "date":"2017-07-02T11:05:21+00:00", + "md5":null, + "sha1":"8e2fe853ed0cb53ba728166ace4f70b69b94f838", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:21+00:00", + "size":1454, + "sha1":"8e2fe853ed0cb53ba728166ace4f70b69b94f838", + "name":"Cargo Simple JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-jar/1.6.4/simple-jar-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-jar@1.6.4", + "file_name":"simple-jar-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-har/1.6.4/simple-har-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-har@1.6.4?classifier=sources", + "file_name":"simple-har-1.6.4-sources.jar", + "size":705, + "date":"2017-07-02T11:09:31+00:00", + "md5":null, + "sha1":"636682c3acfa687c406b9e556ba9b245b5811a03", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-har", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:31+00:00", + "size":705, + "sha1":"636682c3acfa687c406b9e556ba9b245b5811a03", + "name":"Cargo Simple HAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-har/1.6.4/simple-har-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-har/1.6.4/simple-har-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-har@1.6.4", + "file_name":"simple-har-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-ejb/1.6.4/simple-ejb-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-ejb@1.6.4?classifier=sources", + "file_name":"simple-ejb-1.6.4-sources.jar", + "size":3937, + "date":"2017-07-02T11:08:24+00:00", + "md5":null, + "sha1":"218e9e51aa7b975413e43d20e5c09dbf89be7fcd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-ejb", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:24+00:00", + "size":3937, + "sha1":"218e9e51aa7b975413e43d20e5c09dbf89be7fcd", + "name":"Cargo Simple EJB test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-ejb/1.6.4/simple-ejb-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-ejb/1.6.4/simple-ejb-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-ejb@1.6.4", + "file_name":"simple-ejb-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:08:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-bundle@1.6.4", + "file_name":"simple-bundle-1.6.4.jar", + "size":4257, + "date":"2017-07-02T11:09:25+00:00", + "md5":null, + "sha1":"57d6675c8ff906733a03066295a449f0d25e3c82", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:09:25+00:00", + "size":4257, + "sha1":"57d6675c8ff906733a03066295a449f0d25e3c82", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-bundle@1.6.4", + "file_name":"simple-bundle-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-bundle@1.6.4?classifier=sources", + "file_name":"simple-bundle-1.6.4-sources.jar", + "size":1995, + "date":"2017-07-02T11:09:27+00:00", + "md5":null, + "sha1":"6d8761a79194aa66ef27cc715db83ee193f3d39f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-bundle", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:27+00:00", + "size":1995, + "sha1":"6d8761a79194aa66ef27cc715db83ee193f3d39f", + "name":"Cargo Simple OSGi bundle test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-bundle/1.6.4/simple-bundle-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-bundle@1.6.4", + "file_name":"simple-bundle-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/simple-aop/1.6.4/simple-aop-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-aop@1.6.4?classifier=sources", + "file_name":"simple-aop-1.6.4-sources.jar", + "size":602, + "date":"2017-07-02T11:09:34+00:00", + "md5":null, + "sha1":"da92a6c0bb4818f503fa0d4eddd234cac6457419", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"simple-aop", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:34+00:00", + "size":602, + "sha1":"da92a6c0bb4818f503fa0d4eddd234cac6457419", + "name":"Cargo Simple AOP test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-aop/1.6.4/simple-aop-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/simple-aop/1.6.4/simple-aop-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/simple-aop@1.6.4", + "file_name":"simple-aop-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/mailsession-war@1.6.4?type=war", + "file_name":"mailsession-war-1.6.4.war", + "size":5025, + "date":"2017-07-02T11:05:57+00:00", + "md5":null, + "sha1":"725824e7efab28e1c865421e200b0eb36a3dbb0b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:57+00:00", + "size":5025, + "sha1":"725824e7efab28e1c865421e200b0eb36a3dbb0b", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/mailsession-war@1.6.4", + "file_name":"mailsession-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/mailsession-war@1.6.4?classifier=sources", + "file_name":"mailsession-war-1.6.4-sources.jar", + "size":2101, + "date":"2017-07-02T11:05:59+00:00", + "md5":null, + "sha1":"902fb017d9e69949d427b351490a57ac2f354e1d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"mailsession-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:59+00:00", + "size":2101, + "sha1":"902fb017d9e69949d427b351490a57ac2f354e1d", + "name":"Cargo Mail Session WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/mailsession-war/1.6.4/mailsession-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/mailsession-war@1.6.4", + "file_name":"mailsession-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-war@1.6.4?type=war", + "file_name":"jms-war-1.6.4.war", + "size":5013, + "date":"2017-07-02T11:06:44+00:00", + "md5":null, + "sha1":"f15e6fff88538345f2fb78d0a006363bdd8c1aea", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:44+00:00", + "size":5013, + "sha1":"f15e6fff88538345f2fb78d0a006363bdd8c1aea", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-war@1.6.4", + "file_name":"jms-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:06:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-war@1.6.4?classifier=sources", + "file_name":"jms-war-1.6.4-sources.jar", + "size":2111, + "date":"2017-07-02T11:07:00+00:00", + "md5":null, + "sha1":"8d8713dcf22fb6cdbf43898c921a558e5884b331", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:00+00:00", + "size":2111, + "sha1":"8d8713dcf22fb6cdbf43898c921a558e5884b331", + "name":"Cargo JMS Queue WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-war/1.6.4/jms-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-war@1.6.4", + "file_name":"jms-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:07:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-topic-war@1.6.4?type=war", + "file_name":"jms-topic-war-1.6.4.war", + "size":4687, + "date":"2017-07-02T11:06:12+00:00", + "md5":null, + "sha1":"a0fb71545e9ba1fa55aa5008721c9642510b2c86", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:06:12+00:00", + "size":4687, + "sha1":"a0fb71545e9ba1fa55aa5008721c9642510b2c86", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-topic-war@1.6.4", + "file_name":"jms-topic-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:06:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-topic-war@1.6.4?classifier=sources", + "file_name":"jms-topic-war-1.6.4-sources.jar", + "size":2107, + "date":"2017-07-02T11:06:25+00:00", + "md5":null, + "sha1":"3de4f3551309b88986239af16735cf721e829456", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"jms-topic-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:06:25+00:00", + "size":2107, + "sha1":"3de4f3551309b88986239af16735cf721e829456", + "name":"Cargo JMS Topic WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/jms-topic-war/1.6.4/jms-topic-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/jms-topic-war@1.6.4", + "file_name":"jms-topic-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:06:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/expanded-war/1.6.4/expanded-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/expanded-war@1.6.4?type=war", + "file_name":"expanded-war-1.6.4.war", + "size":2203, + "date":"2017-07-02T11:09:15+00:00", + "md5":null, + "sha1":"92c7a62f10e4ee5c52bc1e6ff069a342153ecb72", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"expanded-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:15+00:00", + "size":2203, + "sha1":"92c7a62f10e4ee5c52bc1e6ff069a342153ecb72", + "name":"Cargo Expanded WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/expanded-war/1.6.4/expanded-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/expanded-war/1.6.4/expanded-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/expanded-war@1.6.4", + "file_name":"expanded-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/empty-jar/1.6.4/empty-jar-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/empty-jar@1.6.4", + "file_name":"empty-jar-1.6.4.jar", + "size":1911, + "date":"2017-07-02T11:05:13+00:00", + "md5":null, + "sha1":"069efb05cfa986c7bb973ae21381828b80795160", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"empty-jar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:13+00:00", + "size":1911, + "sha1":"069efb05cfa986c7bb973ae21381828b80795160", + "name":"Cargo Empty JAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/empty-jar/1.6.4/empty-jar-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/empty-jar/1.6.4/empty-jar-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/empty-jar@1.6.4", + "file_name":"empty-jar-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-war@1.6.4?type=war", + "file_name":"datasource-war-1.6.4.war", + "size":5309, + "date":"2017-07-02T11:05:26+00:00", + "md5":null, + "sha1":"37e3e485cdd2d44deaadb7359bcbf27716d77313", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:05:26+00:00", + "size":5309, + "sha1":"37e3e485cdd2d44deaadb7359bcbf27716d77313", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-war@1.6.4", + "file_name":"datasource-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-war@1.6.4?classifier=sources", + "file_name":"datasource-war-1.6.4-sources.jar", + "size":2142, + "date":"2017-07-02T11:05:28+00:00", + "md5":null, + "sha1":"76e41ce16e2d65283e93a9ba74d055e7c2cc2723", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:28+00:00", + "size":2142, + "sha1":"76e41ce16e2d65283e93a9ba74d055e7c2cc2723", + "name":"Cargo DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-war/1.6.4/datasource-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-war@1.6.4", + "file_name":"datasource-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-cmt-local-war@1.6.4?type=war", + "file_name":"datasource-cmt-local-war-1.6.4.war", + "size":2648000, + "date":"2017-07-02T11:07:24+00:00", + "md5":null, + "sha1":"a34027b4e8088b8fd6d8bd792af68eb022482f47", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:24+00:00", + "size":2648000, + "sha1":"a34027b4e8088b8fd6d8bd792af68eb022482f47", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-cmt-local-war@1.6.4", + "file_name":"datasource-cmt-local-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:07:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-cmt-local-war@1.6.4?classifier=sources", + "file_name":"datasource-cmt-local-war-1.6.4-sources.jar", + "size":4368, + "date":"2017-07-02T11:07:34+00:00", + "md5":null, + "sha1":"8566c57bc12cbd8c0a7f12578a278a5041ef0ef1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"datasource-cmt-local-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:07:34+00:00", + "size":4368, + "sha1":"8566c57bc12cbd8c0a7f12578a278a5041ef0ef1", + "name":"Cargo Local Transaction DataSource WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/datasource-cmt-local-war/1.6.4/datasource-cmt-local-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/datasource-cmt-local-war@1.6.4", + "file_name":"datasource-cmt-local-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:07:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/classpath-war@1.6.4?type=war", + "file_name":"classpath-war-1.6.4.war", + "size":4014, + "date":"2017-07-02T11:07:54+00:00", + "md5":null, + "sha1":"a4f6b00859ec54628109b02a65efecd4932d364c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:07:54+00:00", + "size":4014, + "sha1":"a4f6b00859ec54628109b02a65efecd4932d364c", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/classpath-war@1.6.4", + "file_name":"classpath-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:07:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/classpath-war@1.6.4?classifier=sources", + "file_name":"classpath-war-1.6.4-sources.jar", + "size":2020, + "date":"2017-07-02T11:08:07+00:00", + "md5":null, + "sha1":"f818c1f4358b3745d1940c4c34d969c956baf914", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"classpath-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:08:07+00:00", + "size":2020, + "sha1":"f818c1f4358b3745d1940c4c34d969c956baf914", + "name":"Cargo Classpath WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/classpath-war/1.6.4/classpath-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/classpath-war@1.6.4", + "file_name":"classpath-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:08:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-websphere-test-artifact/1.6.4/cargo-sample-maven2-websphere-test-artifact-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-websphere-test-artifact@1.6.4", + "file_name":"cargo-sample-maven2-websphere-test-artifact-1.6.4.jar", + "size":3452, + "date":"2017-07-02T11:36:13+00:00", + "md5":null, + "sha1":"3d932d4e634efa13af528711d87ef6872a75b24b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-websphere-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:13+00:00", + "size":3452, + "sha1":"3d932d4e634efa13af528711d87ef6872a75b24b", + "name":"Cargo Samples - Maven 2 - WebSphere test", + "description":"Sample application that will be used to test the WebSphere container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-websphere-test-artifact/1.6.4/cargo-sample-maven2-websphere-test-artifact-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-websphere-test-artifact/1.6.4/cargo-sample-maven2-websphere-test-artifact-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-websphere-test-artifact@1.6.4", + "file_name":"cargo-sample-maven2-websphere-test-artifact-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:36:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-weblogic-test-artifact/1.6.4/cargo-sample-maven2-weblogic-test-artifact-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-weblogic-test-artifact@1.6.4", + "file_name":"cargo-sample-maven2-weblogic-test-artifact-1.6.4.jar", + "size":3178, + "date":"2017-07-02T11:36:11+00:00", + "md5":null, + "sha1":"5383058f941a84a0b791c14172d937a06445da92", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-weblogic-test-artifact", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:11+00:00", + "size":3178, + "sha1":"5383058f941a84a0b791c14172d937a06445da92", + "name":"Cargo Samples - Maven 2 - WebLogic test", + "description":"Sample application that will be used to test the WebLogic container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-weblogic-test-artifact/1.6.4/cargo-sample-maven2-weblogic-test-artifact-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-weblogic-test-artifact/1.6.4/cargo-sample-maven2-weblogic-test-artifact-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-weblogic-test-artifact@1.6.4", + "file_name":"cargo-sample-maven2-weblogic-test-artifact-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:36:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-users-test/1.6.4/cargo-sample-maven2-users-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-users-test@1.6.4", + "file_name":"cargo-sample-maven2-users-test-1.6.4.jar", + "size":2833, + "date":"2017-07-02T11:36:08+00:00", + "md5":null, + "sha1":"d82d5e3861a14a8635d54d1e76837da7f2912dc4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-users-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:36:08+00:00", + "size":2833, + "sha1":"d82d5e3861a14a8635d54d1e76837da7f2912dc4", + "name":"Cargo Samples - Maven 2 - Users test", + "description":"Sample application that will be used to test configuration of users and roles.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-users-test/1.6.4/cargo-sample-maven2-users-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-users-test/1.6.4/cargo-sample-maven2-users-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-users-test@1.6.4", + "file_name":"cargo-sample-maven2-users-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:36:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-uberwar-test@1.6.4", + "file_name":"cargo-sample-maven2-uberwar-test-1.6.4.jar", + "size":3812, + "date":"2017-07-02T11:35:50+00:00", + "md5":null, + "sha1":"f1ef7a69cd3903e7455e12cbc9c27d104e93313f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:50+00:00", + "size":3812, + "sha1":"f1ef7a69cd3903e7455e12cbc9c27d104e93313f", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-uberwar-test@1.6.4", + "file_name":"cargo-sample-maven2-uberwar-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:35:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-uberwar-test@1.6.4?classifier=sources", + "file_name":"cargo-sample-maven2-uberwar-test-1.6.4-sources.jar", + "size":1472, + "date":"2017-07-02T11:35:52+00:00", + "md5":null, + "sha1":"622a3343e0c8c54b48ef130fc0a5fbe08040d730", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-uberwar-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:35:52+00:00", + "size":1472, + "sha1":"622a3343e0c8c54b48ef130fc0a5fbe08040d730", + "name":"Cargo Samples - Maven 2 - Uberwar test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's uberwar feature", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-uberwar-test/1.6.4/cargo-sample-maven2-uberwar-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-uberwar-test@1.6.4", + "file_name":"cargo-sample-maven2-uberwar-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:35:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat9x-embedded-test/1.6.4/cargo-sample-maven2-tomcat9x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat9x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat9x-embedded-test-1.6.4.jar", + "size":3107, + "date":"2017-07-02T11:35:44+00:00", + "md5":null, + "sha1":"5d4f90594c3baf5f0506ff47af5502987801ffe2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:44+00:00", + "size":3107, + "sha1":"5d4f90594c3baf5f0506ff47af5502987801ffe2", + "name":"Cargo Samples - Maven 2 - Tomcat 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat9x-embedded-test/1.6.4/cargo-sample-maven2-tomcat9x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat9x-embedded-test/1.6.4/cargo-sample-maven2-tomcat9x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat9x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat9x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:35:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat8x-embedded-test/1.6.4/cargo-sample-maven2-tomcat8x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat8x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat8x-embedded-test-1.6.4.jar", + "size":3100, + "date":"2017-07-02T11:35:27+00:00", + "md5":null, + "sha1":"affad1083bcbb5b91cd46affaebb40a5424b2876", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:27+00:00", + "size":3100, + "sha1":"affad1083bcbb5b91cd46affaebb40a5424b2876", + "name":"Cargo Samples - Maven 2 - Tomcat 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat8x-embedded-test/1.6.4/cargo-sample-maven2-tomcat8x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat8x-embedded-test/1.6.4/cargo-sample-maven2-tomcat8x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat8x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat8x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:35:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat7x-embedded-test/1.6.4/cargo-sample-maven2-tomcat7x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7x-embedded-test-1.6.4.jar", + "size":3071, + "date":"2017-07-02T11:34:55+00:00", + "md5":null, + "sha1":"4b974046efc889dc4329cb4bd50c856e26e49c7f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:55+00:00", + "size":3071, + "sha1":"4b974046efc889dc4329cb4bd50c856e26e49c7f", + "name":"Cargo Samples - Maven 2 - Tomcat 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7x-embedded-test/1.6.4/cargo-sample-maven2-tomcat7x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7x-embedded-test/1.6.4/cargo-sample-maven2-tomcat7x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:34:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat7-systemProperty-test/1.6.4/cargo-sample-maven2-tomcat7-systemProperty-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7-systemProperty-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7-systemProperty-test-1.6.4.jar", + "size":2931, + "date":"2017-07-02T11:35:11+00:00", + "md5":null, + "sha1":"d5eb53b4a6c7e55679db24a714b324b0747a0d33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-systemProperty-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:35:11+00:00", + "size":2931, + "sha1":"d5eb53b4a6c7e55679db24a714b324b0747a0d33", + "name":"Cargo Samples - Maven 2 - Tomcat 7 system property test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined system properties", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7-systemProperty-test/1.6.4/cargo-sample-maven2-tomcat7-systemProperty-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7-systemProperty-test/1.6.4/cargo-sample-maven2-tomcat7-systemProperty-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7-systemProperty-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7-systemProperty-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:35:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat7-context-test/1.6.4/cargo-sample-maven2-tomcat7-context-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7-context-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7-context-test-1.6.4.jar", + "size":2856, + "date":"2017-07-02T11:34:39+00:00", + "md5":null, + "sha1":"718e614117efc24db72487bb11f648195610dfe0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat7-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:39+00:00", + "size":2856, + "sha1":"718e614117efc24db72487bb11f648195610dfe0", + "name":"Cargo Samples - Maven 2 - Tomcat 7 context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 7.x container and a user-defined context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7-context-test/1.6.4/cargo-sample-maven2-tomcat7-context-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat7-context-test/1.6.4/cargo-sample-maven2-tomcat7-context-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat7-context-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat7-context-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:34:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-tomcat6x-embedded-test/1.6.4/cargo-sample-maven2-tomcat6x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat6x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat6x-embedded-test-1.6.4.jar", + "size":2788, + "date":"2017-07-02T11:34:22+00:00", + "md5":null, + "sha1":"3ef353b4cdf9568256edd91656035bd17da52738", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-tomcat6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:22+00:00", + "size":2788, + "sha1":"3ef353b4cdf9568256edd91656035bd17da52738", + "name":"Cargo Samples - Maven 2 - Tomcat 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Tomcat 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat6x-embedded-test/1.6.4/cargo-sample-maven2-tomcat6x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-tomcat6x-embedded-test/1.6.4/cargo-sample-maven2-tomcat6x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-tomcat6x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-tomcat6x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:34:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-runMojo-test@1.6.4", + "file_name":"cargo-sample-maven2-runMojo-test-1.6.4.jar", + "size":3940, + "date":"2017-07-02T11:34:05+00:00", + "md5":null, + "sha1":"c9cb40138eb64d5973d81489d32917d51704f597", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:34:05+00:00", + "size":3940, + "sha1":"c9cb40138eb64d5973d81489d32917d51704f597", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-runMojo-test@1.6.4", + "file_name":"cargo-sample-maven2-runMojo-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:34:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-runMojo-test@1.6.4?classifier=sources", + "file_name":"cargo-sample-maven2-runMojo-test-1.6.4-sources.jar", + "size":1468, + "date":"2017-07-02T11:34:07+00:00", + "md5":null, + "sha1":"f4d53fc40cb96523dd38fce1fc4c1d01a9cc403b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-runMojo-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:34:07+00:00", + "size":1468, + "sha1":"f4d53fc40cb96523dd38fce1fc4c1d01a9cc403b", + "name":"Cargo Samples - Maven 2 - cargo:run MOJO test", + "description":"Sample application that tries the cargo:run MOJO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-runMojo-test/1.6.4/cargo-sample-maven2-runMojo-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-runMojo-test@1.6.4", + "file_name":"cargo-sample-maven2-runMojo-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:34:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-remoteDeploy-test@1.6.4", + "file_name":"cargo-sample-maven2-remoteDeploy-test-1.6.4.jar", + "size":4073, + "date":"2017-07-02T11:33:45+00:00", + "md5":null, + "sha1":"9f7dce5bcd80004d1d9a1e2e4545f35495d25f7a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:45+00:00", + "size":4073, + "sha1":"9f7dce5bcd80004d1d9a1e2e4545f35495d25f7a", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-remoteDeploy-test@1.6.4", + "file_name":"cargo-sample-maven2-remoteDeploy-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:33:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-remoteDeploy-test@1.6.4?classifier=sources", + "file_name":"cargo-sample-maven2-remoteDeploy-test-1.6.4-sources.jar", + "size":1408, + "date":"2017-07-02T11:33:47+00:00", + "md5":null, + "sha1":"f01f437c6cee0a32aee55bab3d0eee82a302a2c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-remoteDeploy-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:47+00:00", + "size":1408, + "sha1":"f01f437c6cee0a32aee55bab3d0eee82a302a2c3", + "name":"Cargo Samples - Maven 2 - Remote deployment test", + "description":"Sample application that tries remote deployment", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-remoteDeploy-test/1.6.4/cargo-sample-maven2-remoteDeploy-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-remoteDeploy-test@1.6.4", + "file_name":"cargo-sample-maven2-remoteDeploy-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:33:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-ping-test@1.6.4?type=war", + "file_name":"cargo-sample-maven2-ping-test-1.6.4.war", + "size":4980, + "date":"2017-07-02T11:33:03+00:00", + "md5":null, + "sha1":"f117db69179b64b7a1054ca2444f8cbd72b03e10", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:33:03+00:00", + "size":4980, + "sha1":"f117db69179b64b7a1054ca2444f8cbd72b03e10", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-ping-test@1.6.4", + "file_name":"cargo-sample-maven2-ping-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:33:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-ping-test@1.6.4?classifier=sources", + "file_name":"cargo-sample-maven2-ping-test-1.6.4-sources.jar", + "size":2247, + "date":"2017-07-02T11:33:05+00:00", + "md5":null, + "sha1":"20627f0e1d8bcb8196a8d111cf956f82f532bc05", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-ping-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:33:05+00:00", + "size":2247, + "sha1":"20627f0e1d8bcb8196a8d111cf956f82f532bc05", + "name":"Cargo Samples - Maven 2 - Ping test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's deployable pinging capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-ping-test/1.6.4/cargo-sample-maven2-ping-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-ping-test@1.6.4", + "file_name":"cargo-sample-maven2-ping-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:33:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-multi-datasource-test/1.6.4/cargo-sample-maven2-multi-datasource-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-multi-datasource-test@1.6.4", + "file_name":"cargo-sample-maven2-multi-datasource-test-1.6.4.jar", + "size":3167, + "date":"2017-07-02T11:33:24+00:00", + "md5":null, + "sha1":"3d8cfc514768360a3292ad308fecce2d58452e93", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-multi-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:33:24+00:00", + "size":3167, + "sha1":"3d8cfc514768360a3292ad308fecce2d58452e93", + "name":"Cargo Samples - Maven 2 - Multi datasource test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Tomcat 6.x container and multiple datasources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-multi-datasource-test/1.6.4/cargo-sample-maven2-multi-datasource-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-multi-datasource-test/1.6.4/cargo-sample-maven2-multi-datasource-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-multi-datasource-test@1.6.4", + "file_name":"cargo-sample-maven2-multi-datasource-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:33:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty9x-embedded-test/1.6.4/cargo-sample-maven2-jetty9x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty9x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty9x-embedded-test-1.6.4.jar", + "size":2812, + "date":"2017-07-02T11:32:26+00:00", + "md5":null, + "sha1":"8bbfe7b7708c1ab0cae9cb0202ef450ccfeefb27", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty9x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:26+00:00", + "size":2812, + "sha1":"8bbfe7b7708c1ab0cae9cb0202ef450ccfeefb27", + "name":"Cargo Samples - Maven 2 - Jetty 9.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 9.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty9x-embedded-test/1.6.4/cargo-sample-maven2-jetty9x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty9x-embedded-test/1.6.4/cargo-sample-maven2-jetty9x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty9x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty9x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:32:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty8x-embedded-test/1.6.4/cargo-sample-maven2-jetty8x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty8x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty8x-embedded-test-1.6.4.jar", + "size":2782, + "date":"2017-07-02T11:32:14+00:00", + "md5":null, + "sha1":"a3db0e3a9b1114f7a1edcccdc82465bb9a6986ad", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty8x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:14+00:00", + "size":2782, + "sha1":"a3db0e3a9b1114f7a1edcccdc82465bb9a6986ad", + "name":"Cargo Samples - Maven 2 - Jetty 8.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 8.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty8x-embedded-test/1.6.4/cargo-sample-maven2-jetty8x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty8x-embedded-test/1.6.4/cargo-sample-maven2-jetty8x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty8x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty8x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:32:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty7x-root-context-test/1.6.4/cargo-sample-maven2-jetty7x-root-context-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty7x-root-context-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty7x-root-context-test-1.6.4.jar", + "size":2883, + "date":"2017-07-02T11:32:03+00:00", + "md5":null, + "sha1":"a06578ebf3841ee56ee5d7db2737cfc608a6e16e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-root-context-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:32:03+00:00", + "size":2883, + "sha1":"a06578ebf3841ee56ee5d7db2737cfc608a6e16e", + "name":"Cargo Samples - Maven 2 - Jetty 7 root context test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with a Jetty 7.x container and the root context", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty7x-root-context-test/1.6.4/cargo-sample-maven2-jetty7x-root-context-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty7x-root-context-test/1.6.4/cargo-sample-maven2-jetty7x-root-context-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty7x-root-context-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty7x-root-context-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:32:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty7x-embedded-test/1.6.4/cargo-sample-maven2-jetty7x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty7x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty7x-embedded-test-1.6.4.jar", + "size":2979, + "date":"2017-07-02T11:31:38+00:00", + "md5":null, + "sha1":"106285a70a1212ddfef0236da0882527acf9e275", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty7x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:38+00:00", + "size":2979, + "sha1":"106285a70a1212ddfef0236da0882527acf9e275", + "name":"Cargo Samples - Maven 2 - Jetty 7.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 7.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty7x-embedded-test/1.6.4/cargo-sample-maven2-jetty7x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty7x-embedded-test/1.6.4/cargo-sample-maven2-jetty7x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty7x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty7x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:31:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty6x-embedded-test/1.6.4/cargo-sample-maven2-jetty6x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty6x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty6x-embedded-test-1.6.4.jar", + "size":2783, + "date":"2017-07-02T11:31:36+00:00", + "md5":null, + "sha1":"2a5832805d0a6ecd7b4885136dc881aaa2c3ea1a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty6x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:36+00:00", + "size":2783, + "sha1":"2a5832805d0a6ecd7b4885136dc881aaa2c3ea1a", + "name":"Cargo Samples - Maven 2 - Jetty 6.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 6.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty6x-embedded-test/1.6.4/cargo-sample-maven2-jetty6x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty6x-embedded-test/1.6.4/cargo-sample-maven2-jetty6x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty6x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty6x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:31:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty5x-embedded-test/1.6.4/cargo-sample-maven2-jetty5x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty5x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty5x-embedded-test-1.6.4.jar", + "size":2783, + "date":"2017-07-02T11:31:23+00:00", + "md5":null, + "sha1":"29fadd536226d768913ef747a0d8ac6bfe8d609b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty5x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:23+00:00", + "size":2783, + "sha1":"29fadd536226d768913ef747a0d8ac6bfe8d609b", + "name":"Cargo Samples - Maven 2 - Jetty 5.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 5.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty5x-embedded-test/1.6.4/cargo-sample-maven2-jetty5x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty5x-embedded-test/1.6.4/cargo-sample-maven2-jetty5x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty5x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty5x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:31:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-jetty4x-embedded-test/1.6.4/cargo-sample-maven2-jetty4x-embedded-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty4x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty4x-embedded-test-1.6.4.jar", + "size":2785, + "date":"2017-07-02T11:31:11+00:00", + "md5":null, + "sha1":"23471fedfea3843118c73e7852d2783e3de57fa2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-jetty4x-embedded-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:31:11+00:00", + "size":2785, + "sha1":"23471fedfea3843118c73e7852d2783e3de57fa2", + "name":"Cargo Samples - Maven 2 - Jetty 4.x embedded container test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with an embedded Jetty 4.x container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty4x-embedded-test/1.6.4/cargo-sample-maven2-jetty4x-embedded-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-jetty4x-embedded-test/1.6.4/cargo-sample-maven2-jetty4x-embedded-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-jetty4x-embedded-test@1.6.4", + "file_name":"cargo-sample-maven2-jetty4x-embedded-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:31:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-inPlaceDevelopment-test/1.6.4/cargo-sample-maven2-inPlaceDevelopment-test-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-inPlaceDevelopment-test@1.6.4?type=war", + "file_name":"cargo-sample-maven2-inPlaceDevelopment-test-1.6.4.war", + "size":3329, + "date":"2017-07-02T11:30:59+00:00", + "md5":null, + "sha1":"ba1809dfbb7fb2af5bfbdcf795c127c1d50fbe79", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-inPlaceDevelopment-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:59+00:00", + "size":3329, + "sha1":"ba1809dfbb7fb2af5bfbdcf795c127c1d50fbe79", + "name":"Cargo Samples - Maven 2 - In-place Development test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's in-place development capabilities. Note that this sample currently works only for Jetty and Tomcat as it requires that container implementations support deploying an expanded WAR from a directory without copying it to the container deploy directory.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-inPlaceDevelopment-test/1.6.4/cargo-sample-maven2-inPlaceDevelopment-test-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-inPlaceDevelopment-test/1.6.4/cargo-sample-maven2-inPlaceDevelopment-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-inPlaceDevelopment-test@1.6.4", + "file_name":"cargo-sample-maven2-inPlaceDevelopment-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:30:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-implementationClasses-test/1.6.4/cargo-sample-maven2-implementationClasses-test-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-implementationClasses-test@1.6.4?type=war", + "file_name":"cargo-sample-maven2-implementationClasses-test-1.6.4.war", + "size":2982, + "date":"2017-07-02T11:30:35+00:00", + "md5":null, + "sha1":"2d0fb78d0225629b5abb8a9d90fc051ff70e156d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-implementationClasses-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:35+00:00", + "size":2982, + "sha1":"2d0fb78d0225629b5abb8a9d90fc051ff70e156d", + "name":"Cargo Samples - Maven 2 - Implementation classes' personalisation test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin with personalized implementation classes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-implementationClasses-test/1.6.4/cargo-sample-maven2-implementationClasses-test-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-implementationClasses-test/1.6.4/cargo-sample-maven2-implementationClasses-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-implementationClasses-test@1.6.4", + "file_name":"cargo-sample-maven2-implementationClasses-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:30:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-maven2-configurationFiles-xmlReplacements-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-configurationFiles-xmlReplacements-test@1.6.4", + "file_name":"cargo-sample-maven2-configurationFiles-xmlReplacements-test-1.6.4.jar", + "size":2846, + "date":"2017-07-02T11:30:33+00:00", + "md5":null, + "sha1":"49611773b8b55c63d8b9d04e860f7e1f6470e7fb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:30:33+00:00", + "size":2846, + "sha1":"49611773b8b55c63d8b9d04e860f7e1f6470e7fb", + "name":"Cargo Samples - Maven 2 - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-maven2-configurationFiles-xmlReplacements-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-maven2-configurationFiles-xmlReplacements-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-configurationFiles-xmlReplacements-test@1.6.4", + "file_name":"cargo-sample-maven2-configurationFiles-xmlReplacements-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:30:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-autoDeployable-test/1.6.4/cargo-sample-maven2-autoDeployable-test-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-autoDeployable-test@1.6.4?type=war", + "file_name":"cargo-sample-maven2-autoDeployable-test-1.6.4.war", + "size":2819, + "date":"2017-07-02T11:30:12+00:00", + "md5":null, + "sha1":"aa54ddee48a3c9023710b9874b997a9b7f62c87e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-autoDeployable-test", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:30:12+00:00", + "size":2819, + "sha1":"aa54ddee48a3c9023710b9874b997a9b7f62c87e", + "name":"Cargo Samples - Maven 2 - AutoDeployable test", + "description":"Sample application that exercises the Cargo Maven 2 / Maven 3 plugin's AutoDeployable capabilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-autoDeployable-test/1.6.4/cargo-sample-maven2-autoDeployable-test-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-autoDeployable-test/1.6.4/cargo-sample-maven2-autoDeployable-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-autoDeployable-test@1.6.4", + "file_name":"cargo-sample-maven2-autoDeployable-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:30:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-maven2-artifactInstaller-test/1.6.4/cargo-sample-maven2-artifactInstaller-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-artifactInstaller-test@1.6.4", + "file_name":"cargo-sample-maven2-artifactInstaller-test-1.6.4.jar", + "size":2470, + "date":"2017-07-02T11:29:48+00:00", + "md5":null, + "sha1":"0d5d469cc0eb132e1886000a7b73f405145b2bc1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-maven2-artifactInstaller-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:29:48+00:00", + "size":2470, + "sha1":"0d5d469cc0eb132e1886000a7b73f405145b2bc1", + "name":"Cargo Samples - Maven 2 - Artifact installer test", + "description":"Sample application that tests the artifact installer", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-artifactInstaller-test/1.6.4/cargo-sample-maven2-artifactInstaller-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-maven2-artifactInstaller-test/1.6.4/cargo-sample-maven2-artifactInstaller-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-maven2-artifactInstaller-test@1.6.4", + "file_name":"cargo-sample-maven2-artifactInstaller-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:29:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-java@1.6.4", + "file_name":"cargo-sample-java-1.6.4.jar", + "size":33283, + "date":"2017-07-02T11:21:43+00:00", + "md5":null, + "sha1":"d8ad4bba55b18afaa3bb55f279b68d128a47bb52", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:43+00:00", + "size":33283, + "sha1":"d8ad4bba55b18afaa3bb55f279b68d128a47bb52", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-java@1.6.4", + "file_name":"cargo-sample-java-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:21:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-java@1.6.4?classifier=sources", + "file_name":"cargo-sample-java-1.6.4-sources.jar", + "size":36278, + "date":"2017-07-02T11:21:45+00:00", + "md5":null, + "sha1":"9e83c823403bf13c30e271b4a53f4a3ef8b18dde", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-java", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:45+00:00", + "size":36278, + "sha1":"9e83c823403bf13c30e271b4a53f4a3ef8b18dde", + "name":"Cargo Samples for Java", + "description":"Sample application that exercises the Cargo Java API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-java/1.6.4/cargo-sample-java-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-java@1.6.4", + "file_name":"cargo-sample-java-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:21:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-ant-remote-test/1.6.4/cargo-sample-ant-remote-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-remote-test@1.6.4", + "file_name":"cargo-sample-ant-remote-test-1.6.4.jar", + "size":2780, + "date":"2017-07-02T11:24:04+00:00", + "md5":null, + "sha1":"2d679aacd03ac4d47dc257b54931aada2e873de7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-remote-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:04+00:00", + "size":2780, + "sha1":"2d679aacd03ac4d47dc257b54931aada2e873de7", + "name":"Cargo Samples - ANT - Remote container test", + "description":"Sample application that exercises the Cargo ANT tasks with a remote container", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-remote-test/1.6.4/cargo-sample-ant-remote-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-remote-test/1.6.4/cargo-sample-ant-remote-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-remote-test@1.6.4", + "file_name":"cargo-sample-ant-remote-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:24:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-ant-datasource-test/1.6.4/cargo-sample-ant-datasource-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-datasource-test@1.6.4", + "file_name":"cargo-sample-ant-datasource-test-1.6.4.jar", + "size":2579, + "date":"2017-07-02T11:23:45+00:00", + "md5":null, + "sha1":"1fe0525f5544657f122d4ae56405317f0fb2a31f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-datasource-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:45+00:00", + "size":2579, + "sha1":"1fe0525f5544657f122d4ae56405317f0fb2a31f", + "name":"Cargo Samples - ANT - Datasource test", + "description":"Sample application that exercises the Cargo ANT tasks with a container and a datasource", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-datasource-test/1.6.4/cargo-sample-ant-datasource-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-datasource-test/1.6.4/cargo-sample-ant-datasource-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-datasource-test@1.6.4", + "file_name":"cargo-sample-ant-datasource-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:23:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-ant-daemon-test/1.6.4/cargo-sample-ant-daemon-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-daemon-test@1.6.4", + "file_name":"cargo-sample-ant-daemon-test-1.6.4.jar", + "size":3194, + "date":"2017-07-02T11:23:26+00:00", + "md5":null, + "sha1":"7c5f02c5e7c1887599bf94da19a295fdbebc1168", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-daemon-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:23:26+00:00", + "size":3194, + "sha1":"7c5f02c5e7c1887599bf94da19a295fdbebc1168", + "name":"Cargo Samples - ANT - Daemon test", + "description":"Sample application that exercises the Cargo ANT tasks with the daemon", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-daemon-test/1.6.4/cargo-sample-ant-daemon-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-daemon-test/1.6.4/cargo-sample-ant-daemon-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-daemon-test@1.6.4", + "file_name":"cargo-sample-ant-daemon-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:23:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-sample-ant-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-ant-configurationFiles-xmlReplacements-test-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-configurationFiles-xmlReplacements-test@1.6.4", + "file_name":"cargo-sample-ant-configurationFiles-xmlReplacements-test-1.6.4.jar", + "size":2586, + "date":"2017-07-02T11:22:22+00:00", + "md5":null, + "sha1":"5dca351cf72e38fe41c1523f27eb9cd63b555f40", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-sample-ant-configurationFiles-xmlReplacements-test", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:22+00:00", + "size":2586, + "sha1":"5dca351cf72e38fe41c1523f27eb9cd63b555f40", + "name":"Cargo Samples - ANT - Configuration files and XML replacements test", + "description":"Sample application that tests the configuration files and XML replacement options", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-ant-configurationFiles-xmlReplacements-test-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-sample-ant-configurationFiles-xmlReplacements-test/1.6.4/cargo-sample-ant-configurationFiles-xmlReplacements-test-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-sample-ant-configurationFiles-xmlReplacements-test@1.6.4", + "file_name":"cargo-sample-ant-configurationFiles-xmlReplacements-test-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-maven2-plugin@1.6.4", + "file_name":"cargo-maven2-plugin-1.6.4.jar", + "size":122096, + "date":"2017-07-02T11:22:59+00:00", + "md5":null, + "sha1":"14113bc8324dbb23df427969e7773ca6aba32645", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:59+00:00", + "size":122096, + "sha1":"14113bc8324dbb23df427969e7773ca6aba32645", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-maven2-plugin@1.6.4", + "file_name":"cargo-maven2-plugin-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-maven2-plugin@1.6.4?classifier=sources", + "file_name":"cargo-maven2-plugin-1.6.4-sources.jar", + "size":94094, + "date":"2017-07-02T11:23:02+00:00", + "md5":null, + "sha1":"125eec3ccc054a6018c5f5b466771ce7dbb53b67", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-maven2-plugin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:23:02+00:00", + "size":94094, + "sha1":"125eec3ccc054a6018c5f5b466771ce7dbb53b67", + "name":"Cargo Maven 2 Plugin", + "description":"Cargo Maven 2 Plugin", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-maven2-plugin/1.6.4/cargo-maven2-plugin-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-maven2-plugin@1.6.4", + "file_name":"cargo-maven2-plugin-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:23:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-7-and-onwards-deployer@1.6.4?type=war", + "file_name":"cargo-jetty-7-and-onwards-deployer-1.6.4.war", + "size":11102, + "date":"2017-07-02T11:09:48+00:00", + "md5":null, + "sha1":"6bbbc3cf5682b91d218d1d71915d22751b5f4ea8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:48+00:00", + "size":11102, + "sha1":"6bbbc3cf5682b91d218d1d71915d22751b5f4ea8", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-7-and-onwards-deployer@1.6.4", + "file_name":"cargo-jetty-7-and-onwards-deployer-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-7-and-onwards-deployer@1.6.4?classifier=sources", + "file_name":"cargo-jetty-7-and-onwards-deployer-1.6.4-sources.jar", + "size":6157, + "date":"2017-07-02T11:09:49+00:00", + "md5":null, + "sha1":"e959d7d07c5365fbf1bb7c36f008d72806b24bc5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-7-and-onwards-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:49+00:00", + "size":6157, + "sha1":"e959d7d07c5365fbf1bb7c36f008d72806b24bc5", + "name":"Cargo Remote Deployer for Jetty (version 7 and onwards)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty server (versions 7 and onwards)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-7-and-onwards-deployer/1.6.4/cargo-jetty-7-and-onwards-deployer-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-7-and-onwards-deployer@1.6.4", + "file_name":"cargo-jetty-7-and-onwards-deployer-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-6-and-earlier-deployer@1.6.4?type=war", + "file_name":"cargo-jetty-6-and-earlier-deployer-1.6.4.war", + "size":9737, + "date":"2017-07-02T11:09:42+00:00", + "md5":null, + "sha1":"9fa685336fd5cd9259516b6359d8d321ff04feca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:42+00:00", + "size":9737, + "sha1":"9fa685336fd5cd9259516b6359d8d321ff04feca", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-6-and-earlier-deployer@1.6.4", + "file_name":"cargo-jetty-6-and-earlier-deployer-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-6-and-earlier-deployer@1.6.4?classifier=sources", + "file_name":"cargo-jetty-6-and-earlier-deployer-1.6.4-sources.jar", + "size":5225, + "date":"2017-07-02T11:09:44+00:00", + "md5":null, + "sha1":"1d623bb7d50cd4af3750db85b7804dd5ae385c64", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-jetty-6-and-earlier-deployer", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:44+00:00", + "size":5225, + "sha1":"1d623bb7d50cd4af3750db85b7804dd5ae385c64", + "name":"Cargo Remote Deployer for Jetty (version 6 and earlier)", + "description":"Webapp used by Cargo to remotely deploy applications of a Jetty 6.x server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-jetty-6-and-earlier-deployer/1.6.4/cargo-jetty-6-and-earlier-deployer-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-jetty-6-and-earlier-deployer@1.6.4", + "file_name":"cargo-jetty-6-and-earlier-deployer-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-documentation@1.6.4", + "file_name":"cargo-documentation-1.6.4.jar", + "size":133300, + "date":"2017-07-02T11:21:52+00:00", + "md5":null, + "sha1":"31827bdd7a6fb77559803fcabc6169b8fcf5fc45", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:21:52+00:00", + "size":133300, + "sha1":"31827bdd7a6fb77559803fcabc6169b8fcf5fc45", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-documentation@1.6.4", + "file_name":"cargo-documentation-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:21:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-documentation@1.6.4?classifier=sources", + "file_name":"cargo-documentation-1.6.4-sources.jar", + "size":15598, + "date":"2017-07-02T11:21:53+00:00", + "md5":null, + "sha1":"5b9158389912322a8a3a775030bce17548defeac", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-documentation", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:21:53+00:00", + "size":15598, + "sha1":"5b9158389912322a8a3a775030bce17548defeac", + "name":"Cargo Website Resources", + "description":"Cargo Website Resources", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-documentation/1.6.4/cargo-documentation-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-documentation@1.6.4", + "file_name":"cargo-documentation-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:21:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-webapp@1.6.4?type=war", + "file_name":"cargo-daemon-webapp-1.6.4.war", + "size":8436519, + "date":"2017-07-02T11:22:45+00:00", + "md5":null, + "sha1":"a6a2a0a183cea6089759bd213fc550fdfadc6c4d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:22:45+00:00", + "size":8436519, + "sha1":"a6a2a0a183cea6089759bd213fc550fdfadc6c4d", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-webapp@1.6.4", + "file_name":"cargo-daemon-webapp-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-webapp@1.6.4?classifier=sources", + "file_name":"cargo-daemon-webapp-1.6.4-sources.jar", + "size":29920, + "date":"2017-07-02T11:22:47+00:00", + "md5":null, + "sha1":"5f7e929637476cbf9c70204e864a13f15c478ffa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-webapp", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:47+00:00", + "size":29920, + "sha1":"5f7e929637476cbf9c70204e864a13f15c478ffa", + "name":"Cargo Daemon Web Application", + "description":"Cargo Daemon Web Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-webapp/1.6.4/cargo-daemon-webapp-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-webapp@1.6.4", + "file_name":"cargo-daemon-webapp-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-itests-deployable-on-tomcat/1.6.4/cargo-daemon-itests-deployable-on-tomcat-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-deployable-on-tomcat@1.6.4", + "file_name":"cargo-daemon-itests-deployable-on-tomcat-1.6.4.jar", + "size":2773, + "date":"2017-07-02T11:26:07+00:00", + "md5":null, + "sha1":"c8d28ab4cf80f53938b320e1a59ce9ff5c7e8fa0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:07+00:00", + "size":2773, + "sha1":"c8d28ab4cf80f53938b320e1a59ce9ff5c7e8fa0", + "name":"Cargo Daemon Integration Tests - Deployable on Tomcat", + "description":"Cargo Daemon Client - Deployable on Tomcat", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-deployable-on-tomcat/1.6.4/cargo-daemon-itests-deployable-on-tomcat-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-deployable-on-tomcat/1.6.4/cargo-daemon-itests-deployable-on-tomcat-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-deployable-on-tomcat@1.6.4", + "file_name":"cargo-daemon-itests-deployable-on-tomcat-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:26:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-itests-deployable-on-jetty/1.6.4/cargo-daemon-itests-deployable-on-jetty-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-deployable-on-jetty@1.6.4", + "file_name":"cargo-daemon-itests-deployable-on-jetty-1.6.4.jar", + "size":2704, + "date":"2017-07-02T11:25:36+00:00", + "md5":null, + "sha1":"abe8346bc8fe4a23f481f2acf6d276b270723d01", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-deployable-on-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:36+00:00", + "size":2704, + "sha1":"abe8346bc8fe4a23f481f2acf6d276b270723d01", + "name":"Cargo Daemon Integration Tests - Deployable on Jetty", + "description":"Cargo Daemon Client - Deployable on Jetty", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-deployable-on-jetty/1.6.4/cargo-daemon-itests-deployable-on-jetty-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-deployable-on-jetty/1.6.4/cargo-daemon-itests-deployable-on-jetty-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-deployable-on-jetty@1.6.4", + "file_name":"cargo-daemon-itests-deployable-on-jetty-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:25:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-itests-client/1.6.4/cargo-daemon-itests-client-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-client@1.6.4", + "file_name":"cargo-daemon-itests-client-1.6.4.jar", + "size":2068, + "date":"2017-07-02T11:25:01+00:00", + "md5":null, + "sha1":"501c43bfb97a7173416613be53a93258eca464a4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:25:01+00:00", + "size":2068, + "sha1":"501c43bfb97a7173416613be53a93258eca464a4", + "name":"Cargo Daemon Integration Tests - Java client", + "description":"Cargo Daemon Client - Java client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-client/1.6.4/cargo-daemon-itests-client-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-client/1.6.4/cargo-daemon-itests-client-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-client@1.6.4", + "file_name":"cargo-daemon-itests-client-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:25:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-itests-browser/1.6.4/cargo-daemon-itests-browser-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-browser@1.6.4", + "file_name":"cargo-daemon-itests-browser-1.6.4.jar", + "size":2095, + "date":"2017-07-02T11:24:24+00:00", + "md5":null, + "sha1":"691b00a3e5b338a7d5f899a053dd381c9aef2bc0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-itests-browser", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:24:24+00:00", + "size":2095, + "sha1":"691b00a3e5b338a7d5f899a053dd381c9aef2bc0", + "name":"Cargo Daemon Integration Tests - Browser", + "description":"Cargo Daemon Client - Browser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-browser/1.6.4/cargo-daemon-itests-browser-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-itests-browser/1.6.4/cargo-daemon-itests-browser-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-itests-browser@1.6.4", + "file_name":"cargo-daemon-itests-browser-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:24:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-client@1.6.4", + "file_name":"cargo-daemon-client-1.6.4.jar", + "size":19619, + "date":"2017-07-02T11:22:01+00:00", + "md5":null, + "sha1":"42dad631c61aecbd76b2d61434b0aef8593a0f9a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:01+00:00", + "size":19619, + "sha1":"42dad631c61aecbd76b2d61434b0aef8593a0f9a", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-client@1.6.4", + "file_name":"cargo-daemon-client-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-client@1.6.4?classifier=sources", + "file_name":"cargo-daemon-client-1.6.4-sources.jar", + "size":16573, + "date":"2017-07-02T11:22:03+00:00", + "md5":null, + "sha1":"525eaf186b8ab338fdef38f78cb0f80936d47713", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-daemon-client", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:03+00:00", + "size":16573, + "sha1":"525eaf186b8ab338fdef38f78cb0f80936d47713", + "name":"Cargo Daemon Client", + "description":"Cargo Daemon Client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-daemon-client/1.6.4/cargo-daemon-client-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-daemon-client@1.6.4", + "file_name":"cargo-daemon-client-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-uberjar@1.6.4", + "file_name":"cargo-core-uberjar-1.6.4.jar", + "size":2840628, + "date":"2017-07-02T11:13:39+00:00", + "md5":null, + "sha1":"a06625db0728b3f62894a90136647caef37e0be0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:39+00:00", + "size":2840628, + "sha1":"a06625db0728b3f62894a90136647caef37e0be0", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-uberjar@1.6.4", + "file_name":"cargo-core-uberjar-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-uberjar@1.6.4?classifier=sources", + "file_name":"cargo-core-uberjar-1.6.4-sources.jar", + "size":1875, + "date":"2017-07-02T11:13:41+00:00", + "md5":null, + "sha1":"8211a0dd66e1ba93d7736a1d83a6caad639c0e63", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-uberjar", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:41+00:00", + "size":1875, + "sha1":"8211a0dd66e1ba93d7736a1d83a6caad639c0e63", + "name":"Cargo Core Uberjar", + "description":"The Cargo Core Uberjar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-uberjar/1.6.4/cargo-core-uberjar-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-uberjar@1.6.4", + "file_name":"cargo-core-uberjar-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-api@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-api-1.6.4.jar", + "size":6652, + "date":"2017-07-02T11:10:54+00:00", + "md5":null, + "sha1":"98c1de3b102147ffa6ae9d68401e67d8a28d404b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:54+00:00", + "size":6652, + "sha1":"98c1de3b102147ffa6ae9d68401e67d8a28d404b", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-api@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-api-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-api@1.6.4?classifier=sources", + "file_name":"cargo-core-tools-jboss-deployer-api-1.6.4-sources.jar", + "size":6146, + "date":"2017-07-02T11:10:56+00:00", + "md5":null, + "sha1":"b5d218e3548bec0c62b3e3984f2d0fac69e89c92", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-api", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:56+00:00", + "size":6146, + "sha1":"b5d218e3548bec0c62b3e3984f2d0fac69e89c92", + "name":"Cargo Core Tools JBoss deployer API", + "description":"JBoss remote deployer API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-api/1.6.4/cargo-core-tools-jboss-deployer-api-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-api@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-api-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-7@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-7-1.6.4.jar", + "size":7642, + "date":"2017-07-02T11:11:11+00:00", + "md5":null, + "sha1":"6ecc273d5503bc1dd9f65f7e4dcb1a8de9f5101e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:11+00:00", + "size":7642, + "sha1":"6ecc273d5503bc1dd9f65f7e4dcb1a8de9f5101e", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-7@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-7-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-7@1.6.4?classifier=sources", + "file_name":"cargo-core-tools-jboss-deployer-7-1.6.4-sources.jar", + "size":2861, + "date":"2017-07-02T11:11:13+00:00", + "md5":null, + "sha1":"c6b0774fecef1d41bd6f8fa8b8248dad22c4b419", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-7", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:13+00:00", + "size":2861, + "sha1":"c6b0774fecef1d41bd6f8fa8b8248dad22c4b419", + "name":"Cargo Core Tools JBoss 7.x deployer", + "description":"Remote deployer for JBoss 7.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-7/1.6.4/cargo-core-tools-jboss-deployer-7-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-7@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-7-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5.1-and-6@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.jar", + "size":6362, + "date":"2017-07-02T11:11:05+00:00", + "md5":null, + "sha1":"da1bdc0fdb8dae6e33674762b181a8482908d4df", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:05+00:00", + "size":6362, + "sha1":"da1bdc0fdb8dae6e33674762b181a8482908d4df", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5.1-and-6@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5.1-and-6@1.6.4?classifier=sources", + "file_name":"cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4-sources.jar", + "size":3156, + "date":"2017-07-02T11:11:07+00:00", + "md5":null, + "sha1":"c4bfa0c3029b6e50ebc432c296feda1afc120d4e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5.1-and-6", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:07+00:00", + "size":3156, + "sha1":"c4bfa0c3029b6e50ebc432c296feda1afc120d4e", + "name":"Cargo Core Tools JBoss 5.1.x and 6.x deployer", + "description":"Remote deployer for JBoss 5.1.x and 6.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5.1-and-6/1.6.4/cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5.1-and-6@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5.1-and-6-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5-1.6.4.jar", + "size":6355, + "date":"2017-07-02T11:11:00+00:00", + "md5":null, + "sha1":"371051e26e93aa8c7b588ee7e12dcef20665b488", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:00+00:00", + "size":6355, + "sha1":"371051e26e93aa8c7b588ee7e12dcef20665b488", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5@1.6.4?classifier=sources", + "file_name":"cargo-core-tools-jboss-deployer-5-1.6.4-sources.jar", + "size":3167, + "date":"2017-07-02T11:11:02+00:00", + "md5":null, + "sha1":"8592feaae9fd479831b98dc7abfdeb6221f21b28", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-tools-jboss-deployer-5", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:02+00:00", + "size":3167, + "sha1":"8592feaae9fd479831b98dc7abfdeb6221f21b28", + "name":"Cargo Core Tools JBoss 5.0.x deployer", + "description":"Remote deployer for JBoss 5.0.x", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-tools-jboss-deployer-5/1.6.4/cargo-core-tools-jboss-deployer-5-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-tools-jboss-deployer-5@1.6.4", + "file_name":"cargo-core-tools-jboss-deployer-5-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-wildfly@1.6.4", + "file_name":"cargo-core-container-wildfly-1.6.4.jar", + "size":167715, + "date":"2017-07-02T11:13:32+00:00", + "md5":null, + "sha1":"fa61f3b1537f8714c5bd430b81c8b7c5c3441c38", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:32+00:00", + "size":167715, + "sha1":"fa61f3b1537f8714c5bd430b81c8b7c5c3441c38", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-wildfly@1.6.4", + "file_name":"cargo-core-container-wildfly-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-wildfly@1.6.4?classifier=sources", + "file_name":"cargo-core-container-wildfly-1.6.4-sources.jar", + "size":90525, + "date":"2017-07-02T11:13:34+00:00", + "md5":null, + "sha1":"bffc6a728e3e3d1bed6f379e9ab200cd368eba07", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-wildfly", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:34+00:00", + "size":90525, + "sha1":"bffc6a728e3e3d1bed6f379e9ab200cd368eba07", + "name":"Cargo Core WildFly Container", + "description":"Core API implementation for WildFly containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-wildfly/1.6.4/cargo-core-container-wildfly-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-wildfly@1.6.4", + "file_name":"cargo-core-container-wildfly-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-websphere@1.6.4", + "file_name":"cargo-core-container-websphere-1.6.4.jar", + "size":183853, + "date":"2017-07-02T11:13:23+00:00", + "md5":null, + "sha1":"7ec2fbec5602023d9ca74571397dc8d417e0dbfa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:23+00:00", + "size":183853, + "sha1":"7ec2fbec5602023d9ca74571397dc8d417e0dbfa", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-websphere@1.6.4", + "file_name":"cargo-core-container-websphere-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-websphere@1.6.4?classifier=sources", + "file_name":"cargo-core-container-websphere-1.6.4-sources.jar", + "size":179608, + "date":"2017-07-02T11:13:25+00:00", + "md5":null, + "sha1":"7639bcdd9eca05bfecf1ce6774db90b20c599222", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-websphere", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:25+00:00", + "size":179608, + "sha1":"7639bcdd9eca05bfecf1ce6774db90b20c599222", + "name":"Cargo Core WebSphere Container", + "description":"Core API implementation for WebSphere containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-websphere/1.6.4/cargo-core-container-websphere-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-websphere@1.6.4", + "file_name":"cargo-core-container-websphere-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-weblogic@1.6.4", + "file_name":"cargo-core-container-weblogic-1.6.4.jar", + "size":142008, + "date":"2017-07-02T11:13:14+00:00", + "md5":null, + "sha1":"dfc49e716d967202c7f76f0edbe19691a072f358", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:14+00:00", + "size":142008, + "sha1":"dfc49e716d967202c7f76f0edbe19691a072f358", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-weblogic@1.6.4", + "file_name":"cargo-core-container-weblogic-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-weblogic@1.6.4?classifier=sources", + "file_name":"cargo-core-container-weblogic-1.6.4-sources.jar", + "size":145777, + "date":"2017-07-02T11:13:16+00:00", + "md5":null, + "sha1":"919784f4a28b9eaaf4c3084ca16b235e1b17e4c2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-weblogic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:16+00:00", + "size":145777, + "sha1":"919784f4a28b9eaaf4c3084ca16b235e1b17e4c2", + "name":"Cargo Core WebLogic Container", + "description":"Core API implementation for WebLogic containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-weblogic/1.6.4/cargo-core-container-weblogic-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-weblogic@1.6.4", + "file_name":"cargo-core-container-weblogic-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomee@1.6.4", + "file_name":"cargo-core-container-tomee-1.6.4.jar", + "size":99640, + "date":"2017-07-02T11:13:00+00:00", + "md5":null, + "sha1":"505b3c3ac2b78aa3b6011e5f0a38226c86e15b9a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:13:00+00:00", + "size":99640, + "sha1":"505b3c3ac2b78aa3b6011e5f0a38226c86e15b9a", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomee@1.6.4", + "file_name":"cargo-core-container-tomee-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomee@1.6.4?classifier=sources", + "file_name":"cargo-core-container-tomee-1.6.4-sources.jar", + "size":19582, + "date":"2017-07-02T11:13:02+00:00", + "md5":null, + "sha1":"3b918128b28562ad0242ef2953caa3b5161b7a06", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomee", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:13:02+00:00", + "size":19582, + "sha1":"3b918128b28562ad0242ef2953caa3b5161b7a06", + "name":"Cargo Core TomEE Container", + "description":"Core API implementation for TomEE containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomee/1.6.4/cargo-core-container-tomee-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomee@1.6.4", + "file_name":"cargo-core-container-tomee-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:13:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomcat@1.6.4", + "file_name":"cargo-core-container-tomcat-1.6.4.jar", + "size":150155, + "date":"2017-07-02T11:12:53+00:00", + "md5":null, + "sha1":"966b13ca12cb6bf6d1ce788c71480caf15e30804", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:53+00:00", + "size":150155, + "sha1":"966b13ca12cb6bf6d1ce788c71480caf15e30804", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomcat@1.6.4", + "file_name":"cargo-core-container-tomcat-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomcat@1.6.4?classifier=sources", + "file_name":"cargo-core-container-tomcat-1.6.4-sources.jar", + "size":140922, + "date":"2017-07-02T11:12:56+00:00", + "md5":null, + "sha1":"5af9134e87afc2bb9d99e60a5b63a4669dc6f826", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-tomcat", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:56+00:00", + "size":140922, + "sha1":"5af9134e87afc2bb9d99e60a5b63a4669dc6f826", + "name":"Cargo Core Tomcat Container", + "description":"Core API implementation for Tomcat containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-tomcat/1.6.4/cargo-core-container-tomcat-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-tomcat@1.6.4", + "file_name":"cargo-core-container-tomcat-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-resin@1.6.4", + "file_name":"cargo-core-container-resin-1.6.4.jar", + "size":38856, + "date":"2017-07-02T11:12:38+00:00", + "md5":null, + "sha1":"cf59444d3c26635c9403e5efb9c2724adc27fea0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:38+00:00", + "size":38856, + "sha1":"cf59444d3c26635c9403e5efb9c2724adc27fea0", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-resin@1.6.4", + "file_name":"cargo-core-container-resin-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-resin@1.6.4?classifier=sources", + "file_name":"cargo-core-container-resin-1.6.4-sources.jar", + "size":35147, + "date":"2017-07-02T11:12:40+00:00", + "md5":null, + "sha1":"d51c16814d1d69eb6179a194b2cf92136963357e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-resin", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:40+00:00", + "size":35147, + "sha1":"d51c16814d1d69eb6179a194b2cf92136963357e", + "name":"Cargo Core Resin Container", + "description":"Core API implementation for Resin containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-resin/1.6.4/cargo-core-container-resin-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-resin@1.6.4", + "file_name":"cargo-core-container-resin-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-orion@1.6.4", + "file_name":"cargo-core-container-orion-1.6.4.jar", + "size":31146, + "date":"2017-07-02T11:12:28+00:00", + "md5":null, + "sha1":"e34cc5a3c83bb9fa764bc77bdd10e81a795ece1e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:28+00:00", + "size":31146, + "sha1":"e34cc5a3c83bb9fa764bc77bdd10e81a795ece1e", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-orion@1.6.4", + "file_name":"cargo-core-container-orion-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-orion@1.6.4?classifier=sources", + "file_name":"cargo-core-container-orion-1.6.4-sources.jar", + "size":27963, + "date":"2017-07-02T11:12:30+00:00", + "md5":null, + "sha1":"6559a78d70ac78f747a0b60ed28a07a67f372498", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-orion", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:30+00:00", + "size":27963, + "sha1":"6559a78d70ac78f747a0b60ed28a07a67f372498", + "name":"Cargo Core Orion Container", + "description":"Core API implementation for Orion containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-orion/1.6.4/cargo-core-container-orion-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-orion@1.6.4", + "file_name":"cargo-core-container-orion-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-liberty@1.6.4", + "file_name":"cargo-core-container-liberty-1.6.4.jar", + "size":21031, + "date":"2017-07-02T11:12:20+00:00", + "md5":null, + "sha1":"2c2bd418fbce822c6023737cf7edfd7d6dff4749", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:20+00:00", + "size":21031, + "sha1":"2c2bd418fbce822c6023737cf7edfd7d6dff4749", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-liberty@1.6.4", + "file_name":"cargo-core-container-liberty-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-liberty@1.6.4?classifier=sources", + "file_name":"cargo-core-container-liberty-1.6.4-sources.jar", + "size":17049, + "date":"2017-07-02T11:12:22+00:00", + "md5":null, + "sha1":"17eb5c0be6880360aa1b2f8edaab43b3ec764833", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-liberty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:22+00:00", + "size":17049, + "sha1":"17eb5c0be6880360aa1b2f8edaab43b3ec764833", + "name":"Cargo Core WebSphere Liberty Container", + "description":"Core API implementation for WebSphere Liberty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-liberty/1.6.4/cargo-core-container-liberty-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-liberty@1.6.4", + "file_name":"cargo-core-container-liberty-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jrun@1.6.4", + "file_name":"cargo-core-container-jrun-1.6.4.jar", + "size":31709, + "date":"2017-07-02T11:12:14+00:00", + "md5":null, + "sha1":"6d29e45c94a535b9adcfa247bcc8179dbe51a333", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:14+00:00", + "size":31709, + "sha1":"6d29e45c94a535b9adcfa247bcc8179dbe51a333", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jrun@1.6.4", + "file_name":"cargo-core-container-jrun-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jrun@1.6.4?classifier=sources", + "file_name":"cargo-core-container-jrun-1.6.4-sources.jar", + "size":28743, + "date":"2017-07-02T11:12:16+00:00", + "md5":null, + "sha1":"42cafde700bbc0d59048cd4f3ddbeb95e040da88", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jrun", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:16+00:00", + "size":28743, + "sha1":"42cafde700bbc0d59048cd4f3ddbeb95e040da88", + "name":"Cargo Core JRun Container", + "description":"Core API implementation for JRun containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jrun/1.6.4/cargo-core-container-jrun-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jrun@1.6.4", + "file_name":"cargo-core-container-jrun-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jonas@1.6.4", + "file_name":"cargo-core-container-jonas-1.6.4.jar", + "size":62775, + "date":"2017-07-02T11:12:07+00:00", + "md5":null, + "sha1":"84ef7296fa120fb1a353b54bdfc2d44b6172144a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:12:07+00:00", + "size":62775, + "sha1":"84ef7296fa120fb1a353b54bdfc2d44b6172144a", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jonas@1.6.4", + "file_name":"cargo-core-container-jonas-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jonas@1.6.4?classifier=sources", + "file_name":"cargo-core-container-jonas-1.6.4-sources.jar", + "size":57065, + "date":"2017-07-02T11:12:09+00:00", + "md5":null, + "sha1":"d35ffa074868809a0ca70f1e08ab3400ca6b30d3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jonas", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:12:09+00:00", + "size":57065, + "sha1":"d35ffa074868809a0ca70f1e08ab3400ca6b30d3", + "name":"Cargo Core JOnAS Container", + "description":"Core API implementation for JOnAS containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jonas/1.6.4/cargo-core-container-jonas-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jonas@1.6.4", + "file_name":"cargo-core-container-jonas-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:12:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jo@1.6.4", + "file_name":"cargo-core-container-jo-1.6.4.jar", + "size":20133, + "date":"2017-07-02T11:11:57+00:00", + "md5":null, + "sha1":"180df9a99693382ac8cd06b85cf80c5c3d887f3c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:57+00:00", + "size":20133, + "sha1":"180df9a99693382ac8cd06b85cf80c5c3d887f3c", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jo@1.6.4", + "file_name":"cargo-core-container-jo-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jo@1.6.4?classifier=sources", + "file_name":"cargo-core-container-jo-1.6.4-sources.jar", + "size":17626, + "date":"2017-07-02T11:11:59+00:00", + "md5":null, + "sha1":"5d7c6897af123c82b7d7764c08711e20f4b9c866", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:59+00:00", + "size":17626, + "sha1":"5d7c6897af123c82b7d7764c08711e20f4b9c866", + "name":"Cargo Core jo! Container", + "description":"Core API implementation for jo! containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jo/1.6.4/cargo-core-container-jo-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jo@1.6.4", + "file_name":"cargo-core-container-jo-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jetty@1.6.4", + "file_name":"cargo-core-container-jetty-1.6.4.jar", + "size":1116481, + "date":"2017-07-02T11:11:51+00:00", + "md5":null, + "sha1":"df625fc892caf4c0d0993c9131a01219b3f14a34", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:51+00:00", + "size":1116481, + "sha1":"df625fc892caf4c0d0993c9131a01219b3f14a34", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jetty@1.6.4", + "file_name":"cargo-core-container-jetty-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jetty@1.6.4?classifier=sources", + "file_name":"cargo-core-container-jetty-1.6.4-sources.jar", + "size":112776, + "date":"2017-07-02T11:11:53+00:00", + "md5":null, + "sha1":"1be2286480bce7d5dc39809dff45b7c884ca11ce", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jetty", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:53+00:00", + "size":112776, + "sha1":"1be2286480bce7d5dc39809dff45b7c884ca11ce", + "name":"Cargo Core Jetty Container", + "description":"Core API implementation for Jetty containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jetty/1.6.4/cargo-core-container-jetty-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jetty@1.6.4", + "file_name":"cargo-core-container-jetty-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jboss@1.6.4", + "file_name":"cargo-core-container-jboss-1.6.4.jar", + "size":167723, + "date":"2017-07-02T11:11:41+00:00", + "md5":null, + "sha1":"bc5406f67f0e22e3f4c2d827d97b6d9206f20a4b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:41+00:00", + "size":167723, + "sha1":"bc5406f67f0e22e3f4c2d827d97b6d9206f20a4b", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jboss@1.6.4", + "file_name":"cargo-core-container-jboss-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jboss@1.6.4?classifier=sources", + "file_name":"cargo-core-container-jboss-1.6.4-sources.jar", + "size":137901, + "date":"2017-07-02T11:11:43+00:00", + "md5":null, + "sha1":"d3e4f02615d38d29cd436dce3c1453e8dcab4e99", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-jboss", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:43+00:00", + "size":137901, + "sha1":"d3e4f02615d38d29cd436dce3c1453e8dcab4e99", + "name":"Cargo Core JBoss Container", + "description":"Core API implementation for JBoss containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-jboss/1.6.4/cargo-core-container-jboss-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-jboss@1.6.4", + "file_name":"cargo-core-container-jboss-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-glassfish@1.6.4", + "file_name":"cargo-core-container-glassfish-1.6.4.jar", + "size":49031, + "date":"2017-07-02T11:11:29+00:00", + "md5":null, + "sha1":"fcf38290ed5b9193fc19eba6f965671fd6842f05", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:29+00:00", + "size":49031, + "sha1":"fcf38290ed5b9193fc19eba6f965671fd6842f05", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-glassfish@1.6.4", + "file_name":"cargo-core-container-glassfish-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-glassfish@1.6.4?classifier=sources", + "file_name":"cargo-core-container-glassfish-1.6.4-sources.jar", + "size":46891, + "date":"2017-07-02T11:11:31+00:00", + "md5":null, + "sha1":"fd04b9c4f97f695e51eadfe88a0885e4ef227ad7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-glassfish", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:31+00:00", + "size":46891, + "sha1":"fd04b9c4f97f695e51eadfe88a0885e4ef227ad7", + "name":"Cargo Core GlassFish Container", + "description":"Core API implementation for GlassFish containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-glassfish/1.6.4/cargo-core-container-glassfish-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-glassfish@1.6.4", + "file_name":"cargo-core-container-glassfish-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-geronimo@1.6.4", + "file_name":"cargo-core-container-geronimo-1.6.4.jar", + "size":53520, + "date":"2017-07-02T11:11:20+00:00", + "md5":null, + "sha1":"e898c3c7587b942d8dd675b8734e762a30d44793", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:11:20+00:00", + "size":53520, + "sha1":"e898c3c7587b942d8dd675b8734e762a30d44793", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-geronimo@1.6.4", + "file_name":"cargo-core-container-geronimo-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-geronimo@1.6.4?classifier=sources", + "file_name":"cargo-core-container-geronimo-1.6.4-sources.jar", + "size":45639, + "date":"2017-07-02T11:11:22+00:00", + "md5":null, + "sha1":"834b52f3afdda44c9e72338c69791c14beb075a1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-container-geronimo", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:11:22+00:00", + "size":45639, + "sha1":"834b52f3afdda44c9e72338c69791c14beb075a1", + "name":"Cargo Core Geronimo Container", + "description":"Core API implementation for Geronimo containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-container-geronimo/1.6.4/cargo-core-container-geronimo-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-container-geronimo@1.6.4", + "file_name":"cargo-core-container-geronimo-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:11:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-util@1.6.4", + "file_name":"cargo-core-api-util-1.6.4.jar", + "size":39873, + "date":"2017-07-02T11:10:04+00:00", + "md5":null, + "sha1":"cfd827c8b7f19750acb7270c3081d8040b734ae7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:04+00:00", + "size":39873, + "sha1":"cfd827c8b7f19750acb7270c3081d8040b734ae7", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-util@1.6.4", + "file_name":"cargo-core-api-util-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-util@1.6.4?classifier=sources", + "file_name":"cargo-core-api-util-1.6.4-sources.jar", + "size":36348, + "date":"2017-07-02T11:10:06+00:00", + "md5":null, + "sha1":"d9a64d2540fb5224f94d7792c2f87d0800142d24", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-util", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:06+00:00", + "size":36348, + "sha1":"d9a64d2540fb5224f94d7792c2f87d0800142d24", + "name":"Cargo Core Util API", + "description":"Core Utility API (logging, Ant utils, File utils, etc)", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-util/1.6.4/cargo-core-api-util-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-util@1.6.4", + "file_name":"cargo-core-api-util-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-module@1.6.4", + "file_name":"cargo-core-api-module-1.6.4.jar", + "size":314695, + "date":"2017-07-02T11:10:22+00:00", + "md5":null, + "sha1":"1dd8d46adc3a68a8580eeb71f985498670dd41b6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:22+00:00", + "size":314695, + "sha1":"1dd8d46adc3a68a8580eeb71f985498670dd41b6", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-module@1.6.4", + "file_name":"cargo-core-api-module-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-module@1.6.4?classifier=sources", + "file_name":"cargo-core-api-module-1.6.4-sources.jar", + "size":318979, + "date":"2017-07-02T11:10:24+00:00", + "md5":null, + "sha1":"a3da22529c3016d4dc5e05c4224c91934fd6e14b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:24+00:00", + "size":318979, + "sha1":"a3da22529c3016d4dc5e05c4224c91934fd6e14b", + "name":"Cargo Core Module API", + "description":"Core API to parse/create J2EE Modules", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-module/1.6.4/cargo-core-api-module-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-module@1.6.4", + "file_name":"cargo-core-api-module-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-generic@1.6.4", + "file_name":"cargo-core-api-generic-1.6.4.jar", + "size":38042, + "date":"2017-07-02T11:10:46+00:00", + "md5":null, + "sha1":"4a8dba8d4b37cd79480c434850365f2fc3d49674", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:46+00:00", + "size":38042, + "sha1":"4a8dba8d4b37cd79480c434850365f2fc3d49674", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-generic@1.6.4", + "file_name":"cargo-core-api-generic-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-generic@1.6.4?classifier=sources", + "file_name":"cargo-core-api-generic-1.6.4-sources.jar", + "size":32719, + "date":"2017-07-02T11:10:48+00:00", + "md5":null, + "sha1":"51046c9559319256e87ddbc5cceafc1f2b9bfe8c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-generic", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:48+00:00", + "size":32719, + "sha1":"51046c9559319256e87ddbc5cceafc1f2b9bfe8c", + "name":"Cargo Core Generic API", + "description":"Core API to generically access the typed container API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-generic/1.6.4/cargo-core-api-generic-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-generic@1.6.4", + "file_name":"cargo-core-api-generic-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-container@1.6.4", + "file_name":"cargo-core-api-container-1.6.4.jar", + "size":157513, + "date":"2017-07-02T11:10:37+00:00", + "md5":null, + "sha1":"2662013e1e1e3d25c5e491e190dd51d373ef24cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:10:37+00:00", + "size":157513, + "sha1":"2662013e1e1e3d25c5e491e190dd51d373ef24cf", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-container@1.6.4", + "file_name":"cargo-core-api-container-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-container@1.6.4?classifier=sources", + "file_name":"cargo-core-api-container-1.6.4-sources.jar", + "size":173794, + "date":"2017-07-02T11:10:40+00:00", + "md5":null, + "sha1":"1f238461684b938efc68c562c1bfc6fcf16b7b32", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-core-api-container", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:10:40+00:00", + "size":173794, + "sha1":"1f238461684b938efc68c562c1bfc6fcf16b7b32", + "name":"Cargo Core Container API", + "description":"API to start/stop/configure containers", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-core-api-container/1.6.4/cargo-core-api-container-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-core-api-container@1.6.4", + "file_name":"cargo-core-api-container-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:10:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-build-tools@1.6.4", + "file_name":"cargo-build-tools-1.6.4.jar", + "size":6281, + "date":"2017-07-02T11:05:09+00:00", + "md5":null, + "sha1":"e9536ad4afe4bdfb694e276454afcd241535f9b5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:05:09+00:00", + "size":6281, + "sha1":"e9536ad4afe4bdfb694e276454afcd241535f9b5", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-build-tools@1.6.4", + "file_name":"cargo-build-tools-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-build-tools@1.6.4?classifier=sources", + "file_name":"cargo-build-tools-1.6.4-sources.jar", + "size":4656, + "date":"2017-07-02T11:05:10+00:00", + "md5":null, + "sha1":"e1168b547a5c3dbc2bf60353585c33391eb539a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-build-tools", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:05:10+00:00", + "size":4656, + "sha1":"e1168b547a5c3dbc2bf60353585c33391eb539a7", + "name":"Cargo Build Tools", + "description":"Cargo Build Tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-build-tools/1.6.4/cargo-build-tools-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-build-tools@1.6.4", + "file_name":"cargo-build-tools-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:05:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-webapp-with-datasource/1.6.4/cargo-archetype-webapp-with-datasource-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-with-datasource@1.6.4?classifier=sources", + "file_name":"cargo-archetype-webapp-with-datasource-1.6.4-sources.jar", + "size":7161, + "date":"2017-07-02T11:29:07+00:00", + "md5":null, + "sha1":"72f0f845947f9a009de89d19edc5540d47cedfb9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-with-datasource", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:07+00:00", + "size":7161, + "sha1":"72f0f845947f9a009de89d19edc5540d47cedfb9", + "name":"Cargo Maven Archetype Webapp with DataSource", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a webapp with datasource. Cargo will be used to configure the datasource on the container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-with-datasource/1.6.4/cargo-archetype-webapp-with-datasource-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-with-datasource/1.6.4/cargo-archetype-webapp-with-datasource-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-with-datasource@1.6.4", + "file_name":"cargo-archetype-webapp-with-datasource-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:29:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-webapp-single-module/1.6.4/cargo-archetype-webapp-single-module-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-single-module@1.6.4?classifier=sources", + "file_name":"cargo-archetype-webapp-single-module-1.6.4-sources.jar", + "size":5694, + "date":"2017-07-02T11:28:09+00:00", + "md5":null, + "sha1":"f7c583cf4a4f89dab50252447c2282251bd3997e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-single-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:09+00:00", + "size":5694, + "sha1":"f7c583cf4a4f89dab50252447c2282251bd3997e", + "name":"Cargo Maven Archetype Single Webapp Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests directly from a single webapp module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-single-module/1.6.4/cargo-archetype-webapp-single-module-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-single-module/1.6.4/cargo-archetype-webapp-single-module-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-single-module@1.6.4", + "file_name":"cargo-archetype-webapp-single-module-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:28:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-webapp-functional-tests-module/1.6.4/cargo-archetype-webapp-functional-tests-module-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-functional-tests-module@1.6.4?classifier=sources", + "file_name":"cargo-archetype-webapp-functional-tests-module-1.6.4-sources.jar", + "size":8402, + "date":"2017-07-02T11:28:41+00:00", + "md5":null, + "sha1":"accd3ab036b0458eaa4224fbc94a0afe700f0284", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-webapp-functional-tests-module", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:28:41+00:00", + "size":8402, + "sha1":"accd3ab036b0458eaa4224fbc94a0afe700f0284", + "name":"Cargo Maven Archetype Webapp Functional Tests Module", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to run functional tests for a webapp by creating a separate functional-tests module.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-functional-tests-module/1.6.4/cargo-archetype-webapp-functional-tests-module-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-webapp-functional-tests-module/1.6.4/cargo-archetype-webapp-functional-tests-module-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-webapp-functional-tests-module@1.6.4", + "file_name":"cargo-archetype-webapp-functional-tests-module-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:28:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-remote-deployment/1.6.4/cargo-archetype-remote-deployment-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-remote-deployment@1.6.4?classifier=sources", + "file_name":"cargo-archetype-remote-deployment-1.6.4-sources.jar", + "size":5340, + "date":"2017-07-02T11:29:35+00:00", + "md5":null, + "sha1":"579c84f5552f5053e6c63fbe40ba302541c65e41", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-remote-deployment", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:29:35+00:00", + "size":5340, + "sha1":"579c84f5552f5053e6c63fbe40ba302541c65e41", + "name":"Cargo Maven Archetype demonstrating Remote Deployment", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and deploy it to a remote container.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-remote-deployment/1.6.4/cargo-archetype-remote-deployment-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-remote-deployment/1.6.4/cargo-archetype-remote-deployment-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-remote-deployment@1.6.4", + "file_name":"cargo-archetype-remote-deployment-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:29:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-multiple-containers/1.6.4/cargo-archetype-multiple-containers-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-multiple-containers@1.6.4?classifier=sources", + "file_name":"cargo-archetype-multiple-containers-1.6.4-sources.jar", + "size":5648, + "date":"2017-07-02T11:27:36+00:00", + "md5":null, + "sha1":"fcfe6275a125466afc0b18e8e4c97e6b8cb343d1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-multiple-containers", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:27:36+00:00", + "size":5648, + "sha1":"fcfe6275a125466afc0b18e8e4c97e6b8cb343d1", + "name":"Cargo Maven Archetype Starting and Stopping Mulitple Containers", + "description":"Sample Maven archetype showing how to start / stop multiple containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-multiple-containers/1.6.4/cargo-archetype-multiple-containers-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-multiple-containers/1.6.4/cargo-archetype-multiple-containers-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-multiple-containers@1.6.4", + "file_name":"cargo-archetype-multiple-containers-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:27:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-archetype-daemon/1.6.4/cargo-archetype-daemon-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-daemon@1.6.4?classifier=sources", + "file_name":"cargo-archetype-daemon-1.6.4-sources.jar", + "size":5017, + "date":"2017-07-02T11:26:54+00:00", + "md5":null, + "sha1":"e246f549dbc6ceedb87507291daf0b970fae9450", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-archetype-daemon", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:54+00:00", + "size":5017, + "sha1":"e246f549dbc6ceedb87507291daf0b970fae9450", + "name":"Cargo Maven Archetype demonstrating the Cargo Daemon", + "description":"Sample Maven archetype showing how to configure Cargo and Maven to generate a webapp and remotely start and stop a container with the application deployed on it.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-daemon/1.6.4/cargo-archetype-daemon-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-archetype-daemon/1.6.4/cargo-archetype-daemon-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-archetype-daemon@1.6.4", + "file_name":"cargo-archetype-daemon-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:26:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-ant@1.6.4", + "file_name":"cargo-ant-1.6.4.jar", + "size":26267, + "date":"2017-07-02T11:22:11+00:00", + "md5":null, + "sha1":"f947dfc72607f3d56bb035fa64d2ba6fe3108e88", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:22:11+00:00", + "size":26267, + "sha1":"f947dfc72607f3d56bb035fa64d2ba6fe3108e88", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-ant@1.6.4", + "file_name":"cargo-ant-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-ant@1.6.4?classifier=sources", + "file_name":"cargo-ant-1.6.4-sources.jar", + "size":21050, + "date":"2017-07-02T11:22:13+00:00", + "md5":null, + "sha1":"63f20758b0aafb411151bde3ad9250fbdd4c7a50", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"cargo-ant", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:22:13+00:00", + "size":21050, + "sha1":"63f20758b0aafb411151bde3ad9250fbdd4c7a50", + "name":"Cargo Ant tasks", + "description":"Ant tasks for Cargo", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/cargo-ant/1.6.4/cargo-ant-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/cargo-ant@1.6.4", + "file_name":"cargo-ant-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:22:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/authentication-war@1.6.4?type=war", + "file_name":"authentication-war-1.6.4.war", + "size":4766, + "date":"2017-07-02T11:09:00+00:00", + "md5":null, + "sha1":"95638bad750e7fb3e39b74d4b1bd602c344bc56f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T11:09:00+00:00", + "size":4766, + "sha1":"95638bad750e7fb3e39b74d4b1bd602c344bc56f", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/authentication-war@1.6.4", + "file_name":"authentication-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/authentication-war@1.6.4?classifier=sources", + "file_name":"authentication-war-1.6.4-sources.jar", + "size":2067, + "date":"2017-07-02T11:09:08+00:00", + "md5":null, + "sha1":"bf152142f630de9bf47db617add423538f099787", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.codehaus.cargo", + "artifact_id":"authentication-war", + "version":"1.6.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:09:08+00:00", + "size":2067, + "sha1":"bf152142f630de9bf47db617add423538f099787", + "name":"Cargo Authenticated WAR test data for samples", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/codehaus/cargo/authentication-war/1.6.4/authentication-war-1.6.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.codehaus.cargo/authentication-war@1.6.4", + "file_name":"authentication-war-1.6.4.pom", + "size":0, + "date":"2017-07-02T11:09:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.1", + "file_name":"grizzled-scala_2.12-4.4.1.jar", + "size":374422, + "date":"2017-07-02T15:17:35+00:00", + "md5":null, + "sha1":"1a990804787f3e9f5ed4808a286f30b51b18dba9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:35+00:00", + "size":374422, + "sha1":"1a990804787f3e9f5ed4808a286f30b51b18dba9", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.1", + "file_name":"grizzled-scala_2.12-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.1?classifier=sources", + "file_name":"grizzled-scala_2.12-4.4.1-sources.jar", + "size":88323, + "date":"2017-07-02T15:17:34+00:00", + "md5":null, + "sha1":"aca748ff3cb0920fb645cb4fd5293cf7e008ea30", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:34+00:00", + "size":88323, + "sha1":"aca748ff3cb0920fb645cb4fd5293cf7e008ea30", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.1/grizzled-scala_2.12-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.1", + "file_name":"grizzled-scala_2.12-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.0", + "file_name":"grizzled-scala_2.12-4.4.0.jar", + "size":374443, + "date":"2017-07-02T15:05:58+00:00", + "md5":null, + "sha1":"5d05610ab60757b2ea190fbf572547c4ec7fc5a8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:58+00:00", + "size":374443, + "sha1":"5d05610ab60757b2ea190fbf572547c4ec7fc5a8", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.0", + "file_name":"grizzled-scala_2.12-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.0?classifier=sources", + "file_name":"grizzled-scala_2.12-4.4.0-sources.jar", + "size":88323, + "date":"2017-07-02T15:05:56+00:00", + "md5":null, + "sha1":"3a3a52e38e72171aceb118e03a6dd1fb65405157", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.12", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":88323, + "sha1":"3a3a52e38e72171aceb118e03a6dd1fb65405157", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.12/4.4.0/grizzled-scala_2.12-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.12@4.4.0", + "file_name":"grizzled-scala_2.12-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.1", + "file_name":"grizzled-scala_2.11-4.4.1.jar", + "size":649998, + "date":"2017-07-02T15:17:33+00:00", + "md5":null, + "sha1":"742d914f2c32b68b93dd7ad064006ccd83b34b00", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:33+00:00", + "size":649998, + "sha1":"742d914f2c32b68b93dd7ad064006ccd83b34b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.1", + "file_name":"grizzled-scala_2.11-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.1?classifier=sources", + "file_name":"grizzled-scala_2.11-4.4.1-sources.jar", + "size":88323, + "date":"2017-07-02T15:17:32+00:00", + "md5":null, + "sha1":"f04a7b17ff47c4b95342a156cab37cab80d62b00", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:32+00:00", + "size":88323, + "sha1":"f04a7b17ff47c4b95342a156cab37cab80d62b00", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.1/grizzled-scala_2.11-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.1", + "file_name":"grizzled-scala_2.11-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.0", + "file_name":"grizzled-scala_2.11-4.4.0.jar", + "size":650018, + "date":"2017-07-02T15:05:56+00:00", + "md5":null, + "sha1":"5d04bd494fbad16b301a8a6d647be51ceffafd37", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:56+00:00", + "size":650018, + "sha1":"5d04bd494fbad16b301a8a6d647be51ceffafd37", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.0", + "file_name":"grizzled-scala_2.11-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.0?classifier=sources", + "file_name":"grizzled-scala_2.11-4.4.0-sources.jar", + "size":88323, + "date":"2017-07-02T15:05:54+00:00", + "md5":null, + "sha1":"43c815622432c13cef31e5f9a0251a1b8bcad33d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.11", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:54+00:00", + "size":88323, + "sha1":"43c815622432c13cef31e5f9a0251a1b8bcad33d", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.11/4.4.0/grizzled-scala_2.11-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.11@4.4.0", + "file_name":"grizzled-scala_2.11-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.1", + "file_name":"grizzled-scala_2.10-4.4.1.jar", + "size":643342, + "date":"2017-07-02T15:17:31+00:00", + "md5":null, + "sha1":"b59e02c752c629cee677be2fe270db97e605612c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:17:31+00:00", + "size":643342, + "sha1":"b59e02c752c629cee677be2fe270db97e605612c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.1", + "file_name":"grizzled-scala_2.10-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.1?classifier=sources", + "file_name":"grizzled-scala_2.10-4.4.1-sources.jar", + "size":88323, + "date":"2017-07-02T15:17:29+00:00", + "md5":null, + "sha1":"9de0ff627753926feee49a179aae517c954b29de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:17:29+00:00", + "size":88323, + "sha1":"9de0ff627753926feee49a179aae517c954b29de", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.1/grizzled-scala_2.10-4.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.1", + "file_name":"grizzled-scala_2.10-4.4.1.pom", + "size":0, + "date":"2017-07-02T15:17:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.0", + "file_name":"grizzled-scala_2.10-4.4.0.jar", + "size":643320, + "date":"2017-07-02T15:05:53+00:00", + "md5":null, + "sha1":"495df25d654e481beb9ef2fb134eafe57998d091", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:05:53+00:00", + "size":643320, + "sha1":"495df25d654e481beb9ef2fb134eafe57998d091", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.0", + "file_name":"grizzled-scala_2.10-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.0?classifier=sources", + "file_name":"grizzled-scala_2.10-4.4.0-sources.jar", + "size":88323, + "date":"2017-07-02T15:05:51+00:00", + "md5":null, + "sha1":"3a02b980e28345004973878a46cd1d927ffdd60c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"grizzled-scala_2.10", + "version":"4.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:05:51+00:00", + "size":88323, + "sha1":"3a02b980e28345004973878a46cd1d927ffdd60c", + "name":"grizzled-scala", + "description":"A general-purpose Scala utility library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/grizzled-scala_2.10/4.4.0/grizzled-scala_2.10-4.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/grizzled-scala_2.10@4.4.0", + "file_name":"grizzled-scala_2.10-4.4.0.pom", + "size":0, + "date":"2017-07-02T15:05:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.12@1.0.15", + "file_name":"avsl_2.12-1.0.15.jar", + "size":123140, + "date":"2017-07-02T15:33:39+00:00", + "md5":null, + "sha1":"b351c5becb877f760afc87156bf1f7508e7c1804", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:39+00:00", + "size":123140, + "sha1":"b351c5becb877f760afc87156bf1f7508e7c1804", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.12@1.0.15", + "file_name":"avsl_2.12-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.12@1.0.15?classifier=sources", + "file_name":"avsl_2.12-1.0.15-sources.jar", + "size":21407, + "date":"2017-07-02T15:33:38+00:00", + "md5":null, + "sha1":"5e89c6aaf88c273ddfe75869df02d3479639b272", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.12", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:38+00:00", + "size":21407, + "sha1":"5e89c6aaf88c273ddfe75869df02d3479639b272", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.12/1.0.15/avsl_2.12-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.12@1.0.15", + "file_name":"avsl_2.12-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.11@1.0.15", + "file_name":"avsl_2.11-1.0.15.jar", + "size":231808, + "date":"2017-07-02T15:33:36+00:00", + "md5":null, + "sha1":"c6747b47b17192a532281bb11ea16dc507a9de53", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":231808, + "sha1":"c6747b47b17192a532281bb11ea16dc507a9de53", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.11@1.0.15", + "file_name":"avsl_2.11-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.11@1.0.15?classifier=sources", + "file_name":"avsl_2.11-1.0.15-sources.jar", + "size":21407, + "date":"2017-07-02T15:33:36+00:00", + "md5":null, + "sha1":"69cc47bac44b7874406d1837da04190dcd41019b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.11", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:36+00:00", + "size":21407, + "sha1":"69cc47bac44b7874406d1837da04190dcd41019b", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.11/1.0.15/avsl_2.11-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.11@1.0.15", + "file_name":"avsl_2.11-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.10@1.0.15", + "file_name":"avsl_2.10-1.0.15.jar", + "size":229363, + "date":"2017-07-02T15:33:35+00:00", + "md5":null, + "sha1":"cfdc25bcabbbd24e1e001c50583282419124f3d8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:33:35+00:00", + "size":229363, + "sha1":"cfdc25bcabbbd24e1e001c50583282419124f3d8", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.10@1.0.15", + "file_name":"avsl_2.10-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.10@1.0.15?classifier=sources", + "file_name":"avsl_2.10-1.0.15-sources.jar", + "size":21407, + "date":"2017-07-02T15:33:34+00:00", + "md5":null, + "sha1":"859353f87e39b0742f9d44f482ed046aaa1a3db3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"org.clapper", + "artifact_id":"avsl_2.10", + "version":"1.0.15", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:33:34+00:00", + "size":21407, + "sha1":"859353f87e39b0742f9d44f482ed046aaa1a3db3", + "name":"avsl", + "description":"A Very Simple Logger", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/org/clapper/avsl_2.10/1.0.15/avsl_2.10-1.0.15.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/org.clapper/avsl_2.10@1.0.15", + "file_name":"avsl_2.10-1.0.15.pom", + "size":0, + "date":"2017-07-02T15:33:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/nl.topicus/spanner-jdbc@0.7", + "file_name":"spanner-jdbc-0.7.jar", + "size":104206, + "date":"2017-07-02T18:34:49+00:00", + "md5":null, + "sha1":"c0ceb9dae9b84a47d8ad2809db9e62a1fd5d3b0d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:34:49+00:00", + "size":104206, + "sha1":"c0ceb9dae9b84a47d8ad2809db9e62a1fd5d3b0d", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/nl.topicus/spanner-jdbc@0.7", + "file_name":"spanner-jdbc-0.7.pom", + "size":0, + "date":"2017-07-02T18:34:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/nl.topicus/spanner-jdbc@0.7?classifier=sources", + "file_name":"spanner-jdbc-0.7-sources.jar", + "size":32978, + "date":"2017-07-02T18:34:50+00:00", + "md5":null, + "sha1":"28caa56aacb24572cd95f186ecd3770318b8d0a2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"nl.topicus", + "artifact_id":"spanner-jdbc", + "version":"0.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:34:50+00:00", + "size":32978, + "sha1":"28caa56aacb24572cd95f186ecd3770318b8d0a2", + "name":"spanner-jdbc", + "description":"JDBC Driver for Google Cloud Spanner", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/nl/topicus/spanner-jdbc/0.7/spanner-jdbc-0.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/nl.topicus/spanner-jdbc@0.7", + "file_name":"spanner-jdbc-0.7.pom", + "size":0, + "date":"2017-07-02T18:34:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.12@3.1.0", + "file_name":"lift-webkit_2.12-3.1.0.jar", + "size":4095916, + "date":"2017-07-02T19:17:32+00:00", + "md5":null, + "sha1":"b7c6c52850a5e4eeb0c41daaab6445598214902b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:32+00:00", + "size":4095916, + "sha1":"b7c6c52850a5e4eeb0c41daaab6445598214902b", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.12@3.1.0", + "file_name":"lift-webkit_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.12@3.1.0?classifier=sources", + "file_name":"lift-webkit_2.12-3.1.0-sources.jar", + "size":770368, + "date":"2017-07-02T19:17:23+00:00", + "md5":null, + "sha1":"c10df2443f247ad5708e264616e376e95a8dc581", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:23+00:00", + "size":770368, + "sha1":"c10df2443f247ad5708e264616e376e95a8dc581", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.12/3.1.0/lift-webkit_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.12@3.1.0", + "file_name":"lift-webkit_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.11@3.1.0", + "file_name":"lift-webkit_2.11-3.1.0.jar", + "size":6409742, + "date":"2017-07-02T19:20:43+00:00", + "md5":null, + "sha1":"8b9b6cd21fcb7a795fd7218e05348cf857b601cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:43+00:00", + "size":6409742, + "sha1":"8b9b6cd21fcb7a795fd7218e05348cf857b601cf", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.11@3.1.0", + "file_name":"lift-webkit_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.11@3.1.0?classifier=sources", + "file_name":"lift-webkit_2.11-3.1.0-sources.jar", + "size":770330, + "date":"2017-07-02T19:20:31+00:00", + "md5":null, + "sha1":"812ec1960090c8736b0858548bc32cf005b01ae0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-webkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:31+00:00", + "size":770330, + "sha1":"812ec1960090c8736b0858548bc32cf005b01ae0", + "name":"Lift Webkit", + "description":"Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-webkit_2.11/3.1.0/lift-webkit_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-webkit_2.11@3.1.0", + "file_name":"lift-webkit_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.12@3.1.0", + "file_name":"lift-util_2.12-3.1.0.jar", + "size":1003316, + "date":"2017-07-02T19:16:27+00:00", + "md5":null, + "sha1":"5f8946c085454dbb5dbd55e5a53a6c335fc83aa2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:27+00:00", + "size":1003316, + "sha1":"5f8946c085454dbb5dbd55e5a53a6c335fc83aa2", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.12@3.1.0", + "file_name":"lift-util_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.12@3.1.0?classifier=sources", + "file_name":"lift-util_2.12-3.1.0-sources.jar", + "size":136518, + "date":"2017-07-02T19:16:28+00:00", + "md5":null, + "sha1":"059e5fef6172df74934e85406be632cf1a07d343", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:28+00:00", + "size":136518, + "sha1":"059e5fef6172df74934e85406be632cf1a07d343", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.12/3.1.0/lift-util_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.12@3.1.0", + "file_name":"lift-util_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.11@3.1.0", + "file_name":"lift-util_2.11-3.1.0.jar", + "size":1533879, + "date":"2017-07-02T19:19:31+00:00", + "md5":null, + "sha1":"1cf8eea4614ad339e3e768938d59e517a62751a9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":1533879, + "sha1":"1cf8eea4614ad339e3e768938d59e517a62751a9", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.11@3.1.0", + "file_name":"lift-util_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.11@3.1.0?classifier=sources", + "file_name":"lift-util_2.11-3.1.0-sources.jar", + "size":136518, + "date":"2017-07-02T19:19:31+00:00", + "md5":null, + "sha1":"df85009c2927ff2db0856496e2719562c064b4bc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-util_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:31+00:00", + "size":136518, + "sha1":"df85009c2927ff2db0856496e2719562c064b4bc", + "name":"Lift Util", + "description":"Utilities Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-util_2.11/3.1.0/lift-util_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-util_2.11@3.1.0", + "file_name":"lift-util_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.12@3.1.0", + "file_name":"lift-testkit_2.12-3.1.0.jar", + "size":135595, + "date":"2017-07-02T19:16:12+00:00", + "md5":null, + "sha1":"216c830faecb693c790045f8795d187d97b9161d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:12+00:00", + "size":135595, + "sha1":"216c830faecb693c790045f8795d187d97b9161d", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.12@3.1.0", + "file_name":"lift-testkit_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.12@3.1.0?classifier=sources", + "file_name":"lift-testkit_2.12-3.1.0-sources.jar", + "size":19056, + "date":"2017-07-02T19:16:13+00:00", + "md5":null, + "sha1":"b7fc18461daf7ad6699f63953e4119872e31befe", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:13+00:00", + "size":19056, + "sha1":"b7fc18461daf7ad6699f63953e4119872e31befe", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.12/3.1.0/lift-testkit_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.12@3.1.0", + "file_name":"lift-testkit_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.11@3.1.0", + "file_name":"lift-testkit_2.11-3.1.0.jar", + "size":242098, + "date":"2017-07-02T19:19:35+00:00", + "md5":null, + "sha1":"c8d8d31d8475f8f2229ea86b8109641e957f7359", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:35+00:00", + "size":242098, + "sha1":"c8d8d31d8475f8f2229ea86b8109641e957f7359", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.11@3.1.0", + "file_name":"lift-testkit_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.11@3.1.0?classifier=sources", + "file_name":"lift-testkit_2.11-3.1.0-sources.jar", + "size":19056, + "date":"2017-07-02T19:19:36+00:00", + "md5":null, + "sha1":"76ec54a37c6179a10c8e3a3a931bd3ed189153b4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-testkit_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:36+00:00", + "size":19056, + "sha1":"76ec54a37c6179a10c8e3a3a931bd3ed189153b4", + "name":"Lift Testkit", + "description":"Testkit for Webkit Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-testkit_2.11/3.1.0/lift-testkit_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-testkit_2.11@3.1.0", + "file_name":"lift-testkit_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.12@3.1.0", + "file_name":"lift-squeryl-record_2.12-3.1.0.jar", + "size":136158, + "date":"2017-07-02T19:17:02+00:00", + "md5":null, + "sha1":"7fbbbeb0e4f9767f7636a6fbd9ffe7becdadfbc4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":136158, + "sha1":"7fbbbeb0e4f9767f7636a6fbd9ffe7becdadfbc4", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.12@3.1.0", + "file_name":"lift-squeryl-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.12@3.1.0?classifier=sources", + "file_name":"lift-squeryl-record_2.12-3.1.0-sources.jar", + "size":11490, + "date":"2017-07-02T19:16:59+00:00", + "md5":null, + "sha1":"4759d857c28f0d3c637247dda7abee7a098c66ab", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:59+00:00", + "size":11490, + "sha1":"4759d857c28f0d3c637247dda7abee7a098c66ab", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.12/3.1.0/lift-squeryl-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.12@3.1.0", + "file_name":"lift-squeryl-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.11@3.1.0", + "file_name":"lift-squeryl-record_2.11-3.1.0.jar", + "size":141789, + "date":"2017-07-02T19:20:19+00:00", + "md5":null, + "sha1":"c2df12ff06c1be6596385a8dd8269db0fc66136a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:19+00:00", + "size":141789, + "sha1":"c2df12ff06c1be6596385a8dd8269db0fc66136a", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.11@3.1.0", + "file_name":"lift-squeryl-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.11@3.1.0?classifier=sources", + "file_name":"lift-squeryl-record_2.11-3.1.0-sources.jar", + "size":11491, + "date":"2017-07-02T19:20:18+00:00", + "md5":null, + "sha1":"e63ab9acd14324765b766fc97af7acb6350ed9de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-squeryl-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:18+00:00", + "size":11491, + "sha1":"e63ab9acd14324765b766fc97af7acb6350ed9de", + "name":"Lift Squeryl Record", + "description":"Lift Squeryl Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-squeryl-record_2.11/3.1.0/lift-squeryl-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-squeryl-record_2.11@3.1.0", + "file_name":"lift-squeryl-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.12@3.1.0", + "file_name":"lift-record_2.12-3.1.0.jar", + "size":366737, + "date":"2017-07-02T19:17:11+00:00", + "md5":null, + "sha1":"eeb913862e0f901ba2f4a0f0330821ff7922121e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:11+00:00", + "size":366737, + "sha1":"eeb913862e0f901ba2f4a0f0330821ff7922121e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.12@3.1.0", + "file_name":"lift-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.12@3.1.0?classifier=sources", + "file_name":"lift-record_2.12-3.1.0-sources.jar", + "size":42887, + "date":"2017-07-02T19:17:12+00:00", + "md5":null, + "sha1":"6b7b68c40c1acce4922558a590f799770efc6a1e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:12+00:00", + "size":42887, + "sha1":"6b7b68c40c1acce4922558a590f799770efc6a1e", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.12/3.1.0/lift-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.12@3.1.0", + "file_name":"lift-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.11@3.1.0", + "file_name":"lift-record_2.11-3.1.0.jar", + "size":530641, + "date":"2017-07-02T19:20:28+00:00", + "md5":null, + "sha1":"9b71ca0442a5719a7d1196cb8d0b660f195858e4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:28+00:00", + "size":530641, + "sha1":"9b71ca0442a5719a7d1196cb8d0b660f195858e4", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.11@3.1.0", + "file_name":"lift-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.11@3.1.0?classifier=sources", + "file_name":"lift-record_2.11-3.1.0-sources.jar", + "size":42887, + "date":"2017-07-02T19:20:29+00:00", + "md5":null, + "sha1":"e97e7112605f32cfb3b700daba803ff1fd9e5aae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:29+00:00", + "size":42887, + "sha1":"e97e7112605f32cfb3b700daba803ff1fd9e5aae", + "name":"Lift Record", + "description":"Lift Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-record_2.11/3.1.0/lift-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-record_2.11@3.1.0", + "file_name":"lift-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.12@3.1.0", + "file_name":"lift-proto_2.12-3.1.0.jar", + "size":118413, + "date":"2017-07-02T19:16:48+00:00", + "md5":null, + "sha1":"c3717179aab8bae7862eb55e09742ee3f0cd15b5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:48+00:00", + "size":118413, + "sha1":"c3717179aab8bae7862eb55e09742ee3f0cd15b5", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.12@3.1.0", + "file_name":"lift-proto_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.12@3.1.0?classifier=sources", + "file_name":"lift-proto_2.12-3.1.0-sources.jar", + "size":15329, + "date":"2017-07-02T19:16:45+00:00", + "md5":null, + "sha1":"5c8d4f156fc08c72615f2cf47e900f46dd84a546", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":15329, + "sha1":"5c8d4f156fc08c72615f2cf47e900f46dd84a546", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.12/3.1.0/lift-proto_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.12@3.1.0", + "file_name":"lift-proto_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.11@3.1.0", + "file_name":"lift-proto_2.11-3.1.0.jar", + "size":263133, + "date":"2017-07-02T19:20:08+00:00", + "md5":null, + "sha1":"26c0aea3a86d2c2962aa1112f29af7dd0c8a5687", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:08+00:00", + "size":263133, + "sha1":"26c0aea3a86d2c2962aa1112f29af7dd0c8a5687", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.11@3.1.0", + "file_name":"lift-proto_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.11@3.1.0?classifier=sources", + "file_name":"lift-proto_2.11-3.1.0-sources.jar", + "size":15329, + "date":"2017-07-02T19:20:06+00:00", + "md5":null, + "sha1":"3a2038b6111ca8fead18e44b87bc017e4112c871", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-proto_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:06+00:00", + "size":15329, + "sha1":"3a2038b6111ca8fead18e44b87bc017e4112c871", + "name":"Lift Proto", + "description":"Lift Proto", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-proto_2.11/3.1.0/lift-proto_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-proto_2.11@3.1.0", + "file_name":"lift-proto_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.12@3.1.0", + "file_name":"lift-mongodb_2.12-3.1.0.jar", + "size":118372, + "date":"2017-07-02T19:16:08+00:00", + "md5":null, + "sha1":"c140b5b55bd2ab0564e1def22e2e44651784cbb8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:08+00:00", + "size":118372, + "sha1":"c140b5b55bd2ab0564e1def22e2e44651784cbb8", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.12@3.1.0", + "file_name":"lift-mongodb_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.12@3.1.0?classifier=sources", + "file_name":"lift-mongodb_2.12-3.1.0-sources.jar", + "size":17804, + "date":"2017-07-02T19:16:07+00:00", + "md5":null, + "sha1":"cbbb3add8c592f00b430ce48a9fa2f81d268cd2d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:07+00:00", + "size":17804, + "sha1":"cbbb3add8c592f00b430ce48a9fa2f81d268cd2d", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.12/3.1.0/lift-mongodb_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.12@3.1.0", + "file_name":"lift-mongodb_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.11@3.1.0", + "file_name":"lift-mongodb_2.11-3.1.0.jar", + "size":155967, + "date":"2017-07-02T19:19:19+00:00", + "md5":null, + "sha1":"2432656c5a8dfff83ef3d7b0bfa40bd395e6df75", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":155967, + "sha1":"2432656c5a8dfff83ef3d7b0bfa40bd395e6df75", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.11@3.1.0", + "file_name":"lift-mongodb_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.11@3.1.0?classifier=sources", + "file_name":"lift-mongodb_2.11-3.1.0-sources.jar", + "size":17804, + "date":"2017-07-02T19:19:19+00:00", + "md5":null, + "sha1":"0a91bb806104cd5196b66e36b639a8df3a338463", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:19+00:00", + "size":17804, + "sha1":"0a91bb806104cd5196b66e36b639a8df3a338463", + "name":"Lift Mongodb", + "description":"Lift Mongodb", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb_2.11/3.1.0/lift-mongodb_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb_2.11@3.1.0", + "file_name":"lift-mongodb_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.12@3.1.0", + "file_name":"lift-mongodb-record_2.12-3.1.0.jar", + "size":212078, + "date":"2017-07-02T19:17:06+00:00", + "md5":null, + "sha1":"46978faba03b9acddbcc217a13a8d1e61b32544c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:06+00:00", + "size":212078, + "sha1":"46978faba03b9acddbcc217a13a8d1e61b32544c", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.12@3.1.0", + "file_name":"lift-mongodb-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.12@3.1.0?classifier=sources", + "file_name":"lift-mongodb-record_2.12-3.1.0-sources.jar", + "size":32623, + "date":"2017-07-02T19:17:02+00:00", + "md5":null, + "sha1":"5e3cdc0ca8c8f971017b99db94d84dac916a250b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:02+00:00", + "size":32623, + "sha1":"5e3cdc0ca8c8f971017b99db94d84dac916a250b", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.12/3.1.0/lift-mongodb-record_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.12@3.1.0", + "file_name":"lift-mongodb-record_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.11@3.1.0", + "file_name":"lift-mongodb-record_2.11-3.1.0.jar", + "size":358067, + "date":"2017-07-02T19:20:24+00:00", + "md5":null, + "sha1":"9f443827783084a5bb2513f37dfa200ceb33ffe7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:24+00:00", + "size":358067, + "sha1":"9f443827783084a5bb2513f37dfa200ceb33ffe7", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.11@3.1.0", + "file_name":"lift-mongodb-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.11@3.1.0?classifier=sources", + "file_name":"lift-mongodb-record_2.11-3.1.0-sources.jar", + "size":32623, + "date":"2017-07-02T19:20:20+00:00", + "md5":null, + "sha1":"bd7cf834da157805e7cad0d920e25ed186f9dcc6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mongodb-record_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:20+00:00", + "size":32623, + "sha1":"bd7cf834da157805e7cad0d920e25ed186f9dcc6", + "name":"Lift Mongodb Record", + "description":"Lift Mongodb Record", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mongodb-record_2.11/3.1.0/lift-mongodb-record_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mongodb-record_2.11@3.1.0", + "file_name":"lift-mongodb-record_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.12@3.1.0", + "file_name":"lift-markdown_2.12-3.1.0.jar", + "size":212735, + "date":"2017-07-02T19:15:45+00:00", + "md5":null, + "sha1":"66c43da0646258b19a3eaaeae8e646542633bb39", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:45+00:00", + "size":212735, + "sha1":"66c43da0646258b19a3eaaeae8e646542633bb39", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.12@3.1.0", + "file_name":"lift-markdown_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.12@3.1.0?classifier=sources", + "file_name":"lift-markdown_2.12-3.1.0-sources.jar", + "size":27880, + "date":"2017-07-02T19:15:46+00:00", + "md5":null, + "sha1":"c88ed40622b991e5e427b71ac7d7d9668eaf0363", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:46+00:00", + "size":27880, + "sha1":"c88ed40622b991e5e427b71ac7d7d9668eaf0363", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.12/3.1.0/lift-markdown_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.12@3.1.0", + "file_name":"lift-markdown_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.11@3.1.0", + "file_name":"lift-markdown_2.11-3.1.0.jar", + "size":467487, + "date":"2017-07-02T19:19:01+00:00", + "md5":null, + "sha1":"87d5c31c6e9a8b709d67eb1754d1e9993b1a314e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":467487, + "sha1":"87d5c31c6e9a8b709d67eb1754d1e9993b1a314e", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.11@3.1.0", + "file_name":"lift-markdown_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.11@3.1.0?classifier=sources", + "file_name":"lift-markdown_2.11-3.1.0-sources.jar", + "size":27881, + "date":"2017-07-02T19:19:01+00:00", + "md5":null, + "sha1":"4fa456ffefe67c55aa302d56fff2d9cb3461846d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-markdown_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:01+00:00", + "size":27881, + "sha1":"4fa456ffefe67c55aa302d56fff2d9cb3461846d", + "name":"Lift Markdown", + "description":"Markdown Parser", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-markdown_2.11/3.1.0/lift-markdown_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-markdown_2.11@3.1.0", + "file_name":"lift-markdown_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.12@3.1.0", + "file_name":"lift-mapper_2.12-3.1.0.jar", + "size":890682, + "date":"2017-07-02T19:17:16+00:00", + "md5":null, + "sha1":"bf349176a47a5fc625c9dae2975fcb3b42201adc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:17:16+00:00", + "size":890682, + "sha1":"bf349176a47a5fc625c9dae2975fcb3b42201adc", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.12@3.1.0", + "file_name":"lift-mapper_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.12@3.1.0?classifier=sources", + "file_name":"lift-mapper_2.12-3.1.0-sources.jar", + "size":103645, + "date":"2017-07-02T19:17:13+00:00", + "md5":null, + "sha1":"2e6c0670dc20668983b836d6b9e5ced70bbe2196", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:17:13+00:00", + "size":103645, + "sha1":"2e6c0670dc20668983b836d6b9e5ced70bbe2196", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.12/3.1.0/lift-mapper_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.12@3.1.0", + "file_name":"lift-mapper_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:17:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.11@3.1.0", + "file_name":"lift-mapper_2.11-3.1.0.jar", + "size":1501544, + "date":"2017-07-02T19:21:04+00:00", + "md5":null, + "sha1":"f1102f77af793fd39e100ff58d7b66e7ed9d8a91", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:21:04+00:00", + "size":1501544, + "sha1":"f1102f77af793fd39e100ff58d7b66e7ed9d8a91", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.11@3.1.0", + "file_name":"lift-mapper_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:21:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.11@3.1.0?classifier=sources", + "file_name":"lift-mapper_2.11-3.1.0-sources.jar", + "size":103645, + "date":"2017-07-02T19:20:54+00:00", + "md5":null, + "sha1":"d6be7e4ecc13dc649f05c3cc9462101bb5007714", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-mapper_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:54+00:00", + "size":103645, + "sha1":"d6be7e4ecc13dc649f05c3cc9462101bb5007714", + "name":"Lift Mapper", + "description":"Mapper Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-mapper_2.11/3.1.0/lift-mapper_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-mapper_2.11@3.1.0", + "file_name":"lift-mapper_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.12@3.1.0", + "file_name":"lift-json_2.12-3.1.0.jar", + "size":369329, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":"cc7c8b07ce47f825a32b9cc8b1b621d98b177b9c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":369329, + "sha1":"cc7c8b07ce47f825a32b9cc8b1b621d98b177b9c", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.12@3.1.0", + "file_name":"lift-json_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.12@3.1.0?classifier=sources", + "file_name":"lift-json_2.12-3.1.0-sources.jar", + "size":40738, + "date":"2017-07-02T19:15:37+00:00", + "md5":null, + "sha1":"042a2b07cd80af63ae5fd1281c6028b05e454307", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:37+00:00", + "size":40738, + "sha1":"042a2b07cd80af63ae5fd1281c6028b05e454307", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.12/3.1.0/lift-json_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.12@3.1.0", + "file_name":"lift-json_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.11@3.1.0", + "file_name":"lift-json_2.11-3.1.0.jar", + "size":544699, + "date":"2017-07-02T19:18:59+00:00", + "md5":null, + "sha1":"815e258cfc911380df6c1af8fe1239935fc06cae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:59+00:00", + "size":544699, + "sha1":"815e258cfc911380df6c1af8fe1239935fc06cae", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.11@3.1.0", + "file_name":"lift-json_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:18:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.11@3.1.0?classifier=sources", + "file_name":"lift-json_2.11-3.1.0-sources.jar", + "size":40738, + "date":"2017-07-02T19:18:50+00:00", + "md5":null, + "sha1":"4b08c3f5755046d67274fbdc8c2a5eadf3036b77", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:50+00:00", + "size":40738, + "sha1":"4b08c3f5755046d67274fbdc8c2a5eadf3036b77", + "name":"Lift Json", + "description":"JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json_2.11/3.1.0/lift-json_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json_2.11@3.1.0", + "file_name":"lift-json_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:18:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.12@3.1.0", + "file_name":"lift-json-scalaz7_2.12-3.1.0.jar", + "size":87692, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":"6f4527ad94f34c9b02a875c6eed495f54bd82356", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":87692, + "sha1":"6f4527ad94f34c9b02a875c6eed495f54bd82356", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.12@3.1.0", + "file_name":"lift-json-scalaz7_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.12@3.1.0?classifier=sources", + "file_name":"lift-json-scalaz7_2.12-3.1.0-sources.jar", + "size":5537, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":"77303e82197a89d20bd05617f6bf77ad6b8615c8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:41+00:00", + "size":5537, + "sha1":"77303e82197a89d20bd05617f6bf77ad6b8615c8", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.12/3.1.0/lift-json-scalaz7_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.12@3.1.0", + "file_name":"lift-json-scalaz7_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.11@3.1.0", + "file_name":"lift-json-scalaz7_2.11-3.1.0.jar", + "size":109050, + "date":"2017-07-02T19:19:16+00:00", + "md5":null, + "sha1":"6b53a68e151a808120333ae25e1015d67ba847a0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:16+00:00", + "size":109050, + "sha1":"6b53a68e151a808120333ae25e1015d67ba847a0", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.11@3.1.0", + "file_name":"lift-json-scalaz7_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.11@3.1.0?classifier=sources", + "file_name":"lift-json-scalaz7_2.11-3.1.0-sources.jar", + "size":5538, + "date":"2017-07-02T19:19:15+00:00", + "md5":null, + "sha1":"d87524d2e47cb0f5058c4ae325b98563c4fa0215", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-scalaz7_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:15+00:00", + "size":5538, + "sha1":"d87524d2e47cb0f5058c4ae325b98563c4fa0215", + "name":"Lift Json Scalaz7", + "description":"JSON Library based on Scalaz 7", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-scalaz7_2.11/3.1.0/lift-json-scalaz7_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-scalaz7_2.11@3.1.0", + "file_name":"lift-json-scalaz7_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.12@3.1.0", + "file_name":"lift-json-ext_2.12-3.1.0.jar", + "size":88090, + "date":"2017-07-02T19:15:58+00:00", + "md5":null, + "sha1":"5a09911da63262748bb193bfb9a722b011ab5cf8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:58+00:00", + "size":88090, + "sha1":"5a09911da63262748bb193bfb9a722b011ab5cf8", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.12@3.1.0", + "file_name":"lift-json-ext_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.12@3.1.0?classifier=sources", + "file_name":"lift-json-ext_2.12-3.1.0-sources.jar", + "size":4882, + "date":"2017-07-02T19:15:57+00:00", + "md5":null, + "sha1":"bdfa2da248ae3f66979c7970a53b6c0ddee0f42c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:57+00:00", + "size":4882, + "sha1":"bdfa2da248ae3f66979c7970a53b6c0ddee0f42c", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.12/3.1.0/lift-json-ext_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.12@3.1.0", + "file_name":"lift-json-ext_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.11@3.1.0", + "file_name":"lift-json-ext_2.11-3.1.0.jar", + "size":88357, + "date":"2017-07-02T19:19:14+00:00", + "md5":null, + "sha1":"de02459cd1e519ad4c016cdfb3bab646b0282e08", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:14+00:00", + "size":88357, + "sha1":"de02459cd1e519ad4c016cdfb3bab646b0282e08", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.11@3.1.0", + "file_name":"lift-json-ext_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.11@3.1.0?classifier=sources", + "file_name":"lift-json-ext_2.11-3.1.0-sources.jar", + "size":4882, + "date":"2017-07-02T19:19:13+00:00", + "md5":null, + "sha1":"3f74250fffc651cd8d72c3e253306ee9435e7295", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-json-ext_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:13+00:00", + "size":4882, + "sha1":"3f74250fffc651cd8d72c3e253306ee9435e7295", + "name":"Lift Json Ext", + "description":"Extentions to JSON Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-json-ext_2.11/3.1.0/lift-json-ext_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-json-ext_2.11@3.1.0", + "file_name":"lift-json-ext_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.12@3.1.0", + "file_name":"lift-db_2.12-3.1.0.jar", + "size":149517, + "date":"2017-07-02T19:16:42+00:00", + "md5":null, + "sha1":"bdb921e2f8eea358144e706dca2be42aa10d8abc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:16:42+00:00", + "size":149517, + "sha1":"bdb921e2f8eea358144e706dca2be42aa10d8abc", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.12@3.1.0", + "file_name":"lift-db_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.12@3.1.0?classifier=sources", + "file_name":"lift-db_2.12-3.1.0-sources.jar", + "size":20170, + "date":"2017-07-02T19:16:45+00:00", + "md5":null, + "sha1":"a93320ade505b4b36bde1cf434588becb57155de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:16:45+00:00", + "size":20170, + "sha1":"a93320ade505b4b36bde1cf434588becb57155de", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.12/3.1.0/lift-db_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.12@3.1.0", + "file_name":"lift-db_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:16:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.11@3.1.0", + "file_name":"lift-db_2.11-3.1.0.jar", + "size":322929, + "date":"2017-07-02T19:20:03+00:00", + "md5":null, + "sha1":"e6ec1e95aabad445c90d85ba0240eefb9bfddf3f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:03+00:00", + "size":322929, + "sha1":"e6ec1e95aabad445c90d85ba0240eefb9bfddf3f", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.11@3.1.0", + "file_name":"lift-db_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.11@3.1.0?classifier=sources", + "file_name":"lift-db_2.11-3.1.0-sources.jar", + "size":20169, + "date":"2017-07-02T19:20:05+00:00", + "md5":null, + "sha1":"7f86c3925b44473bd5dc4b66e3e59a076f143506", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-db_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:05+00:00", + "size":20169, + "sha1":"7f86c3925b44473bd5dc4b66e3e59a076f143506", + "name":"Lift Db", + "description":"Lift Db", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-db_2.11/3.1.0/lift-db_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-db_2.11@3.1.0", + "file_name":"lift-db_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:20:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.12@3.1.0", + "file_name":"lift-common_2.12-3.1.0.jar", + "size":191911, + "date":"2017-07-02T19:15:50+00:00", + "md5":null, + "sha1":"3cc0c4fb74dcad2784a624f63847d331d6060aa5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:50+00:00", + "size":191911, + "sha1":"3cc0c4fb74dcad2784a624f63847d331d6060aa5", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.12@3.1.0", + "file_name":"lift-common_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.12@3.1.0?classifier=sources", + "file_name":"lift-common_2.12-3.1.0-sources.jar", + "size":36399, + "date":"2017-07-02T19:15:54+00:00", + "md5":null, + "sha1":"5a46a36cacd96cbc87ed5f488c2056b1a57aaccb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:54+00:00", + "size":36399, + "sha1":"5a46a36cacd96cbc87ed5f488c2056b1a57aaccb", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.12/3.1.0/lift-common_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.12@3.1.0", + "file_name":"lift-common_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.11@3.1.0", + "file_name":"lift-common_2.11-3.1.0.jar", + "size":246588, + "date":"2017-07-02T19:19:05+00:00", + "md5":null, + "sha1":"2bd44c585d682664649823e06316dbda2a74295e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:19:05+00:00", + "size":246588, + "sha1":"2bd44c585d682664649823e06316dbda2a74295e", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.11@3.1.0", + "file_name":"lift-common_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.11@3.1.0?classifier=sources", + "file_name":"lift-common_2.11-3.1.0-sources.jar", + "size":36400, + "date":"2017-07-02T19:19:08+00:00", + "md5":null, + "sha1":"43b293427736c87f70a9e0a62f168bc7a74ea887", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-common_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:19:08+00:00", + "size":36400, + "sha1":"43b293427736c87f70a9e0a62f168bc7a74ea887", + "name":"Lift Common", + "description":"Common Libraties and Utilities", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-common_2.11/3.1.0/lift-common_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-common_2.11@3.1.0", + "file_name":"lift-common_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:19:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.12@3.1.0", + "file_name":"lift-actor_2.12-3.1.0.jar", + "size":77026, + "date":"2017-07-02T19:15:35+00:00", + "md5":null, + "sha1":"7f33ab403fc3c488ccb81d2158787466e0e86807", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:15:35+00:00", + "size":77026, + "sha1":"7f33ab403fc3c488ccb81d2158787466e0e86807", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.12@3.1.0", + "file_name":"lift-actor_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.12@3.1.0?classifier=sources", + "file_name":"lift-actor_2.12-3.1.0-sources.jar", + "size":11654, + "date":"2017-07-02T19:15:34+00:00", + "md5":null, + "sha1":"88e123eba5b0397d145dd226f497208329389662", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.12", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:15:34+00:00", + "size":11654, + "sha1":"88e123eba5b0397d145dd226f497208329389662", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.12/3.1.0/lift-actor_2.12-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.12@3.1.0", + "file_name":"lift-actor_2.12-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:15:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.11@3.1.0", + "file_name":"lift-actor_2.11-3.1.0.jar", + "size":133033, + "date":"2017-07-02T19:18:43+00:00", + "md5":null, + "sha1":"f8952a0b30af94d6bf5eec8e022574987e225b4e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:18:43+00:00", + "size":133033, + "sha1":"f8952a0b30af94d6bf5eec8e022574987e225b4e", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.11@3.1.0", + "file_name":"lift-actor_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:18:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.11@3.1.0?classifier=sources", + "file_name":"lift-actor_2.11-3.1.0-sources.jar", + "size":11655, + "date":"2017-07-02T19:18:36+00:00", + "md5":null, + "sha1":"3cd071fb50b832f7064d04b6876f12da50d82009", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.liftweb", + "artifact_id":"lift-actor_2.11", + "version":"3.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:18:36+00:00", + "size":11655, + "sha1":"3cd071fb50b832f7064d04b6876f12da50d82009", + "name":"Lift Actor", + "description":"Simple Actor", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/liftweb/lift-actor_2.11/3.1.0/lift-actor_2.11-3.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.liftweb/lift-actor_2.11@3.1.0", + "file_name":"lift-actor_2.11-3.1.0.pom", + "size":0, + "date":"2017-07-02T19:18:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.cakesolutions/validated-config_2.12@1.0.2", + "file_name":"validated-config_2.12-1.0.2.jar", + "size":41351, + "date":"2017-07-02T21:57:21+00:00", + "md5":null, + "sha1":"8ab307d42b33defbb1639e3c188b13d748581e5a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:57:21+00:00", + "size":41351, + "sha1":"8ab307d42b33defbb1639e3c188b13d748581e5a", + "name":"validated-config", + "description":"validated-config", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.cakesolutions/validated-config_2.12@1.0.2", + "file_name":"validated-config_2.12-1.0.2.pom", + "size":0, + "date":"2017-07-02T21:57:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.cakesolutions/validated-config_2.12@1.0.2?classifier=sources", + "file_name":"validated-config_2.12-1.0.2-sources.jar", + "size":4547, + "date":"2017-07-02T21:57:22+00:00", + "md5":null, + "sha1":"8d7ac2aac6d1b6651c92e2f2396ba1c125dd19e3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.cakesolutions", + "artifact_id":"validated-config_2.12", + "version":"1.0.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:57:22+00:00", + "size":4547, + "sha1":"8d7ac2aac6d1b6651c92e2f2396ba1c125dd19e3", + "name":"validated-config", + "description":"validated-config", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/cakesolutions/validated-config_2.12/1.0.2/validated-config_2.12-1.0.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.cakesolutions/validated-config_2.12@1.0.2", + "file_name":"validated-config_2.12-1.0.2.pom", + "size":0, + "date":"2017-07-02T21:57:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-spring-boot-starter@1.68.0", + "file_name":"javamelody-spring-boot-starter-1.68.0.jar", + "size":7736, + "date":"2017-07-02T15:01:12+00:00", + "md5":null, + "sha1":"fc3cb01dcbe60ff37fdac87e962e6b794e841290", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:01:12+00:00", + "size":7736, + "sha1":"fc3cb01dcbe60ff37fdac87e962e6b794e841290", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-spring-boot-starter@1.68.0", + "file_name":"javamelody-spring-boot-starter-1.68.0.pom", + "size":0, + "date":"2017-07-02T15:01:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-spring-boot-starter@1.68.0?classifier=sources", + "file_name":"javamelody-spring-boot-starter-1.68.0-sources.jar", + "size":7254, + "date":"2017-07-02T15:01:26+00:00", + "md5":null, + "sha1":"46afb630bd636cc6eb2566cc3ebbb298a2593ec8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-spring-boot-starter", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:01:26+00:00", + "size":7254, + "sha1":"46afb630bd636cc6eb2566cc3ebbb298a2593ec8", + "name":"JavaMelody - Spring Boot Starter", + "description":"Spring Boot Starter for JavaMelody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-spring-boot-starter/1.68.0/javamelody-spring-boot-starter-1.68.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-spring-boot-starter@1.68.0", + "file_name":"javamelody-spring-boot-starter-1.68.0.pom", + "size":0, + "date":"2017-07-02T15:01:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-core@1.68.0", + "file_name":"javamelody-core-1.68.0.jar", + "size":1283457, + "date":"2017-07-02T14:57:58+00:00", + "md5":null, + "sha1":"65e4d9a31c4b1d5b3a55401be70a8eb41f05a879", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:57:58+00:00", + "size":1283457, + "sha1":"65e4d9a31c4b1d5b3a55401be70a8eb41f05a879", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-core@1.68.0", + "file_name":"javamelody-core-1.68.0.pom", + "size":0, + "date":"2017-07-02T14:57:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-core@1.68.0?classifier=sources", + "file_name":"javamelody-core-1.68.0-sources.jar", + "size":1052150, + "date":"2017-07-02T14:58:25+00:00", + "md5":null, + "sha1":"99a6c46bb62dc51b323f5bae2039e69e0510e331", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-core", + "version":"1.68.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:58:25+00:00", + "size":1052150, + "sha1":"99a6c46bb62dc51b323f5bae2039e69e0510e331", + "name":"JavaMelody - Core", + "description":"Monitoring of JavaEE applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-core/1.68.0/javamelody-core-1.68.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-core@1.68.0", + "file_name":"javamelody-core-1.68.0.pom", + "size":0, + "date":"2017-07-02T14:58:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/net/bull/javamelody/javamelody-collector-server/1.68.0/javamelody-collector-server-1.68.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-collector-server@1.68.0?type=war", + "file_name":"javamelody-collector-server-1.68.0.war", + "size":10176776, + "date":"2017-07-02T15:00:51+00:00", + "md5":null, + "sha1":"2e670f652b44425b5b85281d9b14663e14ac7664", + "sha256":null, + "priority":0, + "data":{ + "group_id":"net.bull.javamelody", + "artifact_id":"javamelody-collector-server", + "version":"1.68.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T15:00:51+00:00", + "size":10176776, + "sha1":"2e670f652b44425b5b85281d9b14663e14ac7664", + "name":"JavaMelody - Collector server", + "description":"Optional centralized collector server for Java Melody", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-collector-server/1.68.0/javamelody-collector-server-1.68.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/net/bull/javamelody/javamelody-collector-server/1.68.0/javamelody-collector-server-1.68.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/net.bull.javamelody/javamelody-collector-server@1.68.0", + "file_name":"javamelody-collector-server-1.68.0.pom", + "size":0, + "date":"2017-07-02T15:00:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-thunk/0.9/redux-thunk-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-thunk@0.9?classifier=sources", + "file_name":"redux-thunk-0.9-sources.jar", + "size":1108, + "date":"2017-07-02T21:44:36+00:00", + "md5":null, + "sha1":"764b511c1d9dbb5c46ca9e2cfbc32f29de270829", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-thunk", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:36+00:00", + "size":1108, + "sha1":"764b511c1d9dbb5c46ca9e2cfbc32f29de270829", + "name":"redux-thunk", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-thunk/0.9/redux-thunk-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-thunk/0.9/redux-thunk-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-thunk@0.9", + "file_name":"redux-thunk-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-rx2/0.9/redux-rx2-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-rx2@0.9?classifier=sources", + "file_name":"redux-rx2-0.9-sources.jar", + "size":3447, + "date":"2017-07-02T21:44:28+00:00", + "md5":null, + "sha1":"e045358beb5d1b91e34904d4ae7962919f726185", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx2", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:28+00:00", + "size":3447, + "sha1":"e045358beb5d1b91e34904d4ae7962919f726185", + "name":"redux-rx2", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-rx2/0.9/redux-rx2-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-rx2/0.9/redux-rx2-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-rx2@0.9", + "file_name":"redux-rx2-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-rx/0.9/redux-rx-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-rx@0.9?classifier=sources", + "file_name":"redux-rx-0.9-sources.jar", + "size":2479, + "date":"2017-07-02T21:44:22+00:00", + "md5":null, + "sha1":"ae9a1bfe2900901092614b7405847c37a8b8c56b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-rx", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:22+00:00", + "size":2479, + "sha1":"ae9a1bfe2900901092614b7405847c37a8b8c56b", + "name":"redux-rx", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-rx/0.9/redux-rx-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-rx/0.9/redux-rx-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-rx@0.9", + "file_name":"redux-rx-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-replay/0.9/redux-replay-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-replay@0.9?classifier=sources", + "file_name":"redux-replay-0.9-sources.jar", + "size":1295, + "date":"2017-07-02T21:44:15+00:00", + "md5":null, + "sha1":"66560aad0d6a96adbda27bedfd4bd3bf2eb6d396", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-replay", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:15+00:00", + "size":1295, + "sha1":"66560aad0d6a96adbda27bedfd4bd3bf2eb6d396", + "name":"redux-replay", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-replay/0.9/redux-replay-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-replay/0.9/redux-replay-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-replay@0.9", + "file_name":"redux-replay-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-core/0.9/redux-core-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-core@0.9?classifier=sources", + "file_name":"redux-core-0.9-sources.jar", + "size":6588, + "date":"2017-07-02T21:44:13+00:00", + "md5":null, + "sha1":"955948173220f011b95aec13b26585dd9b0fd106", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-core", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:13+00:00", + "size":6588, + "sha1":"955948173220f011b95aec13b26585dd9b0fd106", + "name":"redux-core", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-core/0.9/redux-core-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-core/0.9/redux-core-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-core@0.9", + "file_name":"redux-core-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android-lifecycle@0.9?type=aar", + "file_name":"redux-android-lifecycle-0.9.aar", + "size":5879, + "date":"2017-07-02T21:44:09+00:00", + "md5":null, + "sha1":"b2fa12ed115aa9ebac59d5ff4eeab71864c87f7d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:09+00:00", + "size":5879, + "sha1":"b2fa12ed115aa9ebac59d5ff4eeab71864c87f7d", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android-lifecycle@0.9", + "file_name":"redux-android-lifecycle-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android-lifecycle@0.9?classifier=sources", + "file_name":"redux-android-lifecycle-0.9-sources.jar", + "size":3250, + "date":"2017-07-02T21:44:10+00:00", + "md5":null, + "sha1":"3ea015eb6462ba1a1ef9ff4702474959b3a5f581", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android-lifecycle", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:10+00:00", + "size":3250, + "sha1":"3ea015eb6462ba1a1ef9ff4702474959b3a5f581", + "name":"redux-android-lifecycle", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android-lifecycle/0.9/redux-android-lifecycle-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android-lifecycle@0.9", + "file_name":"redux-android-lifecycle-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-android/0.9/redux-android-0.9.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android@0.9?type=aar", + "file_name":"redux-android-0.9.aar", + "size":5220, + "date":"2017-07-02T21:44:08+00:00", + "md5":null, + "sha1":"1bdc42e1bf582f4b73d06a0844165ae9bafe2224", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":5220, + "sha1":"1bdc42e1bf582f4b73d06a0844165ae9bafe2224", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android/0.9/redux-android-0.9.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android/0.9/redux-android-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android@0.9", + "file_name":"redux-android-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/tatarka/redux/redux-android/0.9/redux-android-0.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android@0.9?classifier=sources", + "file_name":"redux-android-0.9-sources.jar", + "size":2544, + "date":"2017-07-02T21:44:08+00:00", + "md5":null, + "sha1":"5ba60ca98f8659f4e738aef7546b085326cc36ac", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.tatarka.redux", + "artifact_id":"redux-android", + "version":"0.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:44:08+00:00", + "size":2544, + "sha1":"5ba60ca98f8659f4e738aef7546b085326cc36ac", + "name":"redux-android", + "description":"Redux ported to java/android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android/0.9/redux-android-0.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/tatarka/redux/redux-android/0.9/redux-android-0.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.tatarka.redux/redux-android@0.9", + "file_name":"redux-android-0.9.pom", + "size":0, + "date":"2017-07-02T21:44:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.aflak.libraries/fingerprintdialog@1.1?type=aar", + "file_name":"fingerprintdialog-1.1.aar", + "size":39598, + "date":"2017-07-02T21:24:10+00:00", + "md5":null, + "sha1":"d23beac1111080fc04c10b8eb5c84fdaa3053f97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T21:24:10+00:00", + "size":39598, + "sha1":"d23beac1111080fc04c10b8eb5c84fdaa3053f97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.aflak.libraries/fingerprintdialog@1.1", + "file_name":"fingerprintdialog-1.1.pom", + "size":0, + "date":"2017-07-02T21:24:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.aflak.libraries/fingerprintdialog@1.1?classifier=sources", + "file_name":"fingerprintdialog-1.1-sources.jar", + "size":2848, + "date":"2017-07-02T21:24:09+00:00", + "md5":null, + "sha1":"0854c3b12851a19b92a34da86590940ac028fd97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"me.aflak.libraries", + "artifact_id":"fingerprintdialog", + "version":"1.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:24:09+00:00", + "size":2848, + "sha1":"0854c3b12851a19b92a34da86590940ac028fd97", + "name":"FingerprintDialog", + "description":"Short library that allows you to create fingerprint dialogs for authentications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/me/aflak/libraries/fingerprintdialog/1.1/fingerprintdialog-1.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/me.aflak.libraries/fingerprintdialog@1.1", + "file_name":"fingerprintdialog-1.1.pom", + "size":0, + "date":"2017-07-02T21:24:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/ultreia/tabb/mplc/1.4/mplc-1.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/mplc@1.4?classifier=sources", + "file_name":"mplc-1.4-sources.jar", + "size":87528, + "date":"2017-07-02T16:13:22+00:00", + "md5":null, + "sha1":"744b0e5a758fdbe8621fdf53460401270f09a147", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.ultreia.tabb", + "artifact_id":"mplc", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:13:22+00:00", + "size":87528, + "sha1":"744b0e5a758fdbe8621fdf53460401270f09a147", + "name":"TABB :: MPLC", + "description":"TABB :: MPLC", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/ultreia/tabb/mplc/1.4/mplc-1.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/ultreia/tabb/mplc/1.4/mplc-1.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/mplc@1.4", + "file_name":"mplc-1.4.pom", + "size":0, + "date":"2017-07-02T16:13:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/ultreia/tabb/apdp/1.4/apdp-1.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/apdp@1.4", + "file_name":"apdp-1.4.jar", + "size":52438, + "date":"2017-07-02T16:12:53+00:00", + "md5":null, + "sha1":"40c2711c115b7326412f397ca9b840fd834f27c0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":52438, + "sha1":"40c2711c115b7326412f397ca9b840fd834f27c0", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/ultreia/tabb/apdp/1.4/apdp-1.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/ultreia/tabb/apdp/1.4/apdp-1.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/apdp@1.4", + "file_name":"apdp-1.4.pom", + "size":0, + "date":"2017-07-02T16:12:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/ultreia/tabb/apdp/1.4/apdp-1.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/apdp@1.4?classifier=sources", + "file_name":"apdp-1.4-sources.jar", + "size":33658, + "date":"2017-07-02T16:12:53+00:00", + "md5":null, + "sha1":"3935e228f247cdc1d74809283e0836154a7f43d6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.ultreia.tabb", + "artifact_id":"apdp", + "version":"1.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:12:53+00:00", + "size":33658, + "sha1":"3935e228f247cdc1d74809283e0836154a7f43d6", + "name":"TABB :: APDP", + "description":"TABB :: APDP", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/ultreia/tabb/apdp/1.4/apdp-1.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/ultreia/tabb/apdp/1.4/apdp-1.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.ultreia.tabb/apdp@1.4", + "file_name":"apdp-1.4.pom", + "size":0, + "date":"2017-07-02T16:12:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/trane/future-java/0.2.1/future-java-0.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-java@0.2.1", + "file_name":"future-java-0.2.1.jar", + "size":64856, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":"ba1b98a3f9587a095e81dadb14befa423be9be7b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":64856, + "sha1":"ba1b98a3f9587a095e81dadb14befa423be9be7b", + "name":"future-java", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/trane/future-java/0.2.1/future-java-0.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/trane/future-java/0.2.1/future-java-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-java@0.2.1", + "file_name":"future-java-0.2.1.pom", + "size":0, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/trane/future-java/0.2.1/future-java-0.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-java@0.2.1?classifier=sources", + "file_name":"future-java-0.2.1-sources.jar", + "size":24359, + "date":"2017-07-02T07:23:25+00:00", + "md5":null, + "sha1":"96bf76446e0fdd5feb49299d856555bdb4b9f9a6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.trane", + "artifact_id":"future-java", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:25+00:00", + "size":24359, + "sha1":"96bf76446e0fdd5feb49299d856555bdb4b9f9a6", + "name":"future-java", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/trane/future-java/0.2.1/future-java-0.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/trane/future-java/0.2.1/future-java-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-java@0.2.1", + "file_name":"future-java-0.2.1.pom", + "size":0, + "date":"2017-07-02T07:23:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-benchmark@0.2.1", + "file_name":"future-benchmark-0.2.1.jar", + "size":537377, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":"4f8a93afcab79ca1f08299b62bcd51777b9e6b22", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":537377, + "sha1":"4f8a93afcab79ca1f08299b62bcd51777b9e6b22", + "name":"future-benchmark", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-benchmark@0.2.1", + "file_name":"future-benchmark-0.2.1.pom", + "size":0, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-benchmark@0.2.1?classifier=sources", + "file_name":"future-benchmark-0.2.1-sources.jar", + "size":5365, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":"034e02762dac0939fa204ba9b15c496b9e7718de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.trane", + "artifact_id":"future-benchmark", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T07:23:24+00:00", + "size":5365, + "sha1":"034e02762dac0939fa204ba9b15c496b9e7718de", + "name":"future-benchmark", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/trane/future-benchmark/0.2.1/future-benchmark-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.trane/future-benchmark@0.2.1", + "file_name":"future-benchmark-0.2.1.pom", + "size":0, + "date":"2017-07-02T07:23:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.scalecube/docker-utils@1.0.3", + "file_name":"docker-utils-1.0.3.jar", + "size":21818, + "date":"2017-07-02T08:17:59+00:00", + "md5":null, + "sha1":"b10512d23601eaeeff318b2c98005c300e277c17", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:17:59+00:00", + "size":21818, + "sha1":"b10512d23601eaeeff318b2c98005c300e277c17", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.scalecube/docker-utils@1.0.3", + "file_name":"docker-utils-1.0.3.pom", + "size":0, + "date":"2017-07-02T08:17:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.scalecube/docker-utils@1.0.3?classifier=sources", + "file_name":"docker-utils-1.0.3-sources.jar", + "size":7521, + "date":"2017-07-02T08:17:57+00:00", + "md5":null, + "sha1":"eb7ddc73912294d202487324e3e0834bcc5a481b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.scalecube", + "artifact_id":"docker-utils", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:17:57+00:00", + "size":7521, + "sha1":"eb7ddc73912294d202487324e3e0834bcc5a481b", + "name":"Docker Utils", + "description":"Compact library for working programmatically with Docker containers and writing test infrastructure\n for dockerized applications.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/scalecube/docker-utils/1.0.3/docker-utils-1.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.scalecube/docker-utils@1.0.3", + "file_name":"docker-utils-1.0.3.pom", + "size":0, + "date":"2017-07-02T08:17:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-junit5@2.2.1", + "file_name":"qala-datagen-junit5-2.2.1.jar", + "size":33931, + "date":"2017-07-02T20:05:02+00:00", + "md5":null, + "sha1":"e2e6fbc0689fe4ca5a6dc2cb11f52f126742145b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:02+00:00", + "size":33931, + "sha1":"e2e6fbc0689fe4ca5a6dc2cb11f52f126742145b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-junit5@2.2.1", + "file_name":"qala-datagen-junit5-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:05:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-junit5@2.2.1?classifier=sources", + "file_name":"qala-datagen-junit5-2.2.1-sources.jar", + "size":20315, + "date":"2017-07-02T20:05:07+00:00", + "md5":null, + "sha1":"41209e53d9f3acec3e63eb067f09656f4c64bae1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-junit5", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:07+00:00", + "size":20315, + "sha1":"41209e53d9f3acec3e63eb067f09656f4c64bae1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-junit5/2.2.1/qala-datagen-junit5-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-junit5@2.2.1", + "file_name":"qala-datagen-junit5-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:05:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-java8types@2.2.1", + "file_name":"qala-datagen-java8types-2.2.1.jar", + "size":6371, + "date":"2017-07-02T20:04:59+00:00", + "md5":null, + "sha1":"3822f29c626f57c225d616cb8f955f1cae18cb5f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":6371, + "sha1":"3822f29c626f57c225d616cb8f955f1cae18cb5f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-java8types@2.2.1", + "file_name":"qala-datagen-java8types-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:04:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-java8types@2.2.1?classifier=sources", + "file_name":"qala-datagen-java8types-2.2.1-sources.jar", + "size":3156, + "date":"2017-07-02T20:05:06+00:00", + "md5":null, + "sha1":"385c6d2a4bf024050a975764c7100dc2810b9caf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen-java8types", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:06+00:00", + "size":3156, + "sha1":"385c6d2a4bf024050a975764c7100dc2810b9caf", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen-java8types/2.2.1/qala-datagen-java8types-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen-java8types@2.2.1", + "file_name":"qala-datagen-java8types-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:05:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen@2.2.1", + "file_name":"qala-datagen-2.2.1.jar", + "size":28274, + "date":"2017-07-02T20:05:05+00:00", + "md5":null, + "sha1":"43474d9b42b18c36f2b9225493f4ee09ea75c96e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:05:05+00:00", + "size":28274, + "sha1":"43474d9b42b18c36f2b9225493f4ee09ea75c96e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen@2.2.1", + "file_name":"qala-datagen-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:05:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen@2.2.1?classifier=sources", + "file_name":"qala-datagen-2.2.1-sources.jar", + "size":18370, + "date":"2017-07-02T20:04:59+00:00", + "md5":null, + "sha1":"f08a06d6cd11b48efec0ddee8275ace66bfa1889", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.qala.datagen", + "artifact_id":"qala-datagen", + "version":"2.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:04:59+00:00", + "size":18370, + "sha1":"f08a06d6cd11b48efec0ddee8275ace66bfa1889", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/qala/datagen/qala-datagen/2.2.1/qala-datagen-2.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.qala.datagen/qala-datagen@2.2.1", + "file_name":"qala-datagen-2.2.1.pom", + "size":0, + "date":"2017-07-02T20:04:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.12@0.3.1", + "file_name":"freestyle_sjs0.6_2.12-0.3.1.jar", + "size":242837, + "date":"2017-07-02T20:36:36+00:00", + "md5":null, + "sha1":"f907f4c25d98ca13ffb734f41913d4ec2dd55bed", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:36+00:00", + "size":242837, + "sha1":"f907f4c25d98ca13ffb734f41913d4ec2dd55bed", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.12@0.3.1", + "file_name":"freestyle_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle_sjs0.6_2.12-0.3.1-sources.jar", + "size":16669, + "date":"2017-07-02T20:36:37+00:00", + "md5":null, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:37+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.12/0.3.1/freestyle_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.12@0.3.1", + "file_name":"freestyle_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.11@0.3.1", + "file_name":"freestyle_sjs0.6_2.11-0.3.1.jar", + "size":273943, + "date":"2017-07-02T20:34:59+00:00", + "md5":null, + "sha1":"c7fb257b6e1ea75f650b645fe813642d0feb5c3a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:59+00:00", + "size":273943, + "sha1":"c7fb257b6e1ea75f650b645fe813642d0feb5c3a", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.11@0.3.1", + "file_name":"freestyle_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle_sjs0.6_2.11-0.3.1-sources.jar", + "size":16669, + "date":"2017-07-02T20:35:00+00:00", + "md5":null, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:00+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_sjs0.6_2.11/0.3.1/freestyle_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_sjs0.6_2.11@0.3.1", + "file_name":"freestyle_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.12@0.3.1", + "file_name":"freestyle_2.12-0.3.1.jar", + "size":137186, + "date":"2017-07-02T20:36:16+00:00", + "md5":null, + "sha1":"043254098224ecac232438d821453b27e6ca5538", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:16+00:00", + "size":137186, + "sha1":"043254098224ecac232438d821453b27e6ca5538", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.12@0.3.1", + "file_name":"freestyle_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.12@0.3.1?classifier=sources", + "file_name":"freestyle_2.12-0.3.1-sources.jar", + "size":16669, + "date":"2017-07-02T20:36:17+00:00", + "md5":null, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:17+00:00", + "size":16669, + "sha1":"ce72648f0800fe8438fdbdf09e44537f1b42d83c", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_2.12/0.3.1/freestyle_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.12@0.3.1", + "file_name":"freestyle_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.11@0.3.1", + "file_name":"freestyle_2.11-0.3.1.jar", + "size":159837, + "date":"2017-07-02T20:34:46+00:00", + "md5":null, + "sha1":"00c005c604c335f0ecd5d2795c17b370673b964d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:46+00:00", + "size":159837, + "sha1":"00c005c604c335f0ecd5d2795c17b370673b964d", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.11@0.3.1", + "file_name":"freestyle_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.11@0.3.1?classifier=sources", + "file_name":"freestyle_2.11-0.3.1-sources.jar", + "size":16669, + "date":"2017-07-02T20:34:47+00:00", + "md5":null, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:47+00:00", + "size":16669, + "sha1":"bc287a50c62023624c9bf9f88d4b3b9f0e897bcc", + "name":"freestyle", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle_2.11/0.3.1/freestyle_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle_2.11@0.3.1", + "file_name":"freestyle_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.12-0.3.1.jar", + "size":50310, + "date":"2017-07-02T20:37:10+00:00", + "md5":null, + "sha1":"ede0867dbaa1d73c64511d20c3f4cca2c1e5a871", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:10+00:00", + "size":50310, + "sha1":"ede0867dbaa1d73c64511d20c3f4cca2c1e5a871", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-tagless_sjs0.6_2.12-0.3.1-sources.jar", + "size":4686, + "date":"2017-07-02T20:37:12+00:00", + "md5":null, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:12+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.12/0.3.1/freestyle-tagless_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.11-0.3.1.jar", + "size":56569, + "date":"2017-07-02T20:34:29+00:00", + "md5":null, + "sha1":"e177d79f6d12a27d993bbc974590aa543b790367", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:29+00:00", + "size":56569, + "sha1":"e177d79f6d12a27d993bbc974590aa543b790367", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-tagless_sjs0.6_2.11-0.3.1-sources.jar", + "size":4686, + "date":"2017-07-02T20:34:31+00:00", + "md5":null, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:31+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_sjs0.6_2.11/0.3.1/freestyle-tagless_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-tagless_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.12@0.3.1", + "file_name":"freestyle-tagless_2.12-0.3.1.jar", + "size":28680, + "date":"2017-07-02T20:36:22+00:00", + "md5":null, + "sha1":"b29fd2ba93b12830e3d70793cf5b76c1131436d1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:22+00:00", + "size":28680, + "sha1":"b29fd2ba93b12830e3d70793cf5b76c1131436d1", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.12@0.3.1", + "file_name":"freestyle-tagless_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-tagless_2.12-0.3.1-sources.jar", + "size":4686, + "date":"2017-07-02T20:36:24+00:00", + "md5":null, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:24+00:00", + "size":4686, + "sha1":"fc12dae44e5ecb932203c2ff68a3da0362f92360", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.12/0.3.1/freestyle-tagless_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.12@0.3.1", + "file_name":"freestyle-tagless_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.11@0.3.1", + "file_name":"freestyle-tagless_2.11-0.3.1.jar", + "size":36192, + "date":"2017-07-02T20:34:24+00:00", + "md5":null, + "sha1":"44a5aa889be9ce938719b0826505f222cf85eefd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:24+00:00", + "size":36192, + "sha1":"44a5aa889be9ce938719b0826505f222cf85eefd", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.11@0.3.1", + "file_name":"freestyle-tagless_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-tagless_2.11-0.3.1-sources.jar", + "size":4686, + "date":"2017-07-02T20:34:26+00:00", + "md5":null, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-tagless_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:26+00:00", + "size":4686, + "sha1":"942025c455d0600bdd608ef2f24ce938ba865008", + "name":"freestyle-tagless", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-tagless_2.11/0.3.1/freestyle-tagless_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-tagless_2.11@0.3.1", + "file_name":"freestyle-tagless_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.12-0.3.1.jar", + "size":72696, + "date":"2017-07-02T20:36:54+00:00", + "md5":null, + "sha1":"eb2a395f9ff7fc7352923b87115c44a4958dc721", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:54+00:00", + "size":72696, + "sha1":"eb2a395f9ff7fc7352923b87115c44a4958dc721", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-logging_sjs0.6_2.12-0.3.1-sources.jar", + "size":1694, + "date":"2017-07-02T20:36:51+00:00", + "md5":null, + "sha1":"a92779a9d7924e5bb62e59e9de0d7d072b4b981e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:51+00:00", + "size":1694, + "sha1":"a92779a9d7924e5bb62e59e9de0d7d072b4b981e", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.12/0.3.1/freestyle-logging_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.11-0.3.1.jar", + "size":73915, + "date":"2017-07-02T20:34:41+00:00", + "md5":null, + "sha1":"f5b47173e90c2075f606c3b7ff951ec4bb19ee31", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:41+00:00", + "size":73915, + "sha1":"f5b47173e90c2075f606c3b7ff951ec4bb19ee31", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-logging_sjs0.6_2.11-0.3.1-sources.jar", + "size":1694, + "date":"2017-07-02T20:34:38+00:00", + "md5":null, + "sha1":"9cf4eb1cebfdbebe24165d5b28fcb8d62ae42562", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:38+00:00", + "size":1694, + "sha1":"9cf4eb1cebfdbebe24165d5b28fcb8d62ae42562", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_sjs0.6_2.11/0.3.1/freestyle-logging_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-logging_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.12@0.3.1", + "file_name":"freestyle-logging_2.12-0.3.1.jar", + "size":38207, + "date":"2017-07-02T20:36:43+00:00", + "md5":null, + "sha1":"1e43999614468b9c30f481adb3a76a94b0ee0c23", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:43+00:00", + "size":38207, + "sha1":"1e43999614468b9c30f481adb3a76a94b0ee0c23", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.12@0.3.1", + "file_name":"freestyle-logging_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-logging_2.12-0.3.1-sources.jar", + "size":1692, + "date":"2017-07-02T20:36:40+00:00", + "md5":null, + "sha1":"5fc399f6395dd053b1e2d04a2ed5109028a2e1b9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:40+00:00", + "size":1692, + "sha1":"5fc399f6395dd053b1e2d04a2ed5109028a2e1b9", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.12/0.3.1/freestyle-logging_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.12@0.3.1", + "file_name":"freestyle-logging_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.11@0.3.1", + "file_name":"freestyle-logging_2.11-0.3.1.jar", + "size":38165, + "date":"2017-07-02T20:34:36+00:00", + "md5":null, + "sha1":"349613a11fff49a4f63e1002e1d547cc0c8bbd28", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:36+00:00", + "size":38165, + "sha1":"349613a11fff49a4f63e1002e1d547cc0c8bbd28", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.11@0.3.1", + "file_name":"freestyle-logging_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-logging_2.11-0.3.1-sources.jar", + "size":1692, + "date":"2017-07-02T20:34:33+00:00", + "md5":null, + "sha1":"dfc591256471078fbb8d1d4b239dbc4bed7bd5d0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-logging_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:33+00:00", + "size":1692, + "sha1":"dfc591256471078fbb8d1d4b239dbc4bed7bd5d0", + "name":"freestyle-logging", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-logging_2.11/0.3.1/freestyle-logging_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-logging_2.11@0.3.1", + "file_name":"freestyle-logging_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.12-0.3.1.jar", + "size":359962, + "date":"2017-07-02T20:37:18+00:00", + "md5":null, + "sha1":"5be7bec658bd98bd445359326697df46da472a2c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:18+00:00", + "size":359962, + "sha1":"5be7bec658bd98bd445359326697df46da472a2c", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-effects_sjs0.6_2.12-0.3.1-sources.jar", + "size":8188, + "date":"2017-07-02T20:37:20+00:00", + "md5":null, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:20+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.12/0.3.1/freestyle-effects_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.11-0.3.1.jar", + "size":384267, + "date":"2017-07-02T20:35:23+00:00", + "md5":null, + "sha1":"bbc16058e8401bfaeb7b621d0704cc7c7f0c4153", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:23+00:00", + "size":384267, + "sha1":"bbc16058e8401bfaeb7b621d0704cc7c7f0c4153", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-effects_sjs0.6_2.11-0.3.1-sources.jar", + "size":8188, + "date":"2017-07-02T20:35:26+00:00", + "md5":null, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:26+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_sjs0.6_2.11/0.3.1/freestyle-effects_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-effects_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.12@0.3.1", + "file_name":"freestyle-effects_2.12-0.3.1.jar", + "size":194499, + "date":"2017-07-02T20:37:04+00:00", + "md5":null, + "sha1":"4274ecf66ae641a559aded2d5618e3fe4fe010e5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:04+00:00", + "size":194499, + "sha1":"4274ecf66ae641a559aded2d5618e3fe4fe010e5", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.12@0.3.1", + "file_name":"freestyle-effects_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-effects_2.12-0.3.1-sources.jar", + "size":8188, + "date":"2017-07-02T20:37:07+00:00", + "md5":null, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:07+00:00", + "size":8188, + "sha1":"d184cde727b259e4ef180c7ed338516322528fbe", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.12/0.3.1/freestyle-effects_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.12@0.3.1", + "file_name":"freestyle-effects_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.11@0.3.1", + "file_name":"freestyle-effects_2.11-0.3.1.jar", + "size":208893, + "date":"2017-07-02T20:35:30+00:00", + "md5":null, + "sha1":"3eb0d509562dcfa42dd6327f4e5c2e919ff18329", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:30+00:00", + "size":208893, + "sha1":"3eb0d509562dcfa42dd6327f4e5c2e919ff18329", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.11@0.3.1", + "file_name":"freestyle-effects_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-effects_2.11-0.3.1-sources.jar", + "size":8188, + "date":"2017-07-02T20:35:33+00:00", + "md5":null, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-effects_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:33+00:00", + "size":8188, + "sha1":"2417b728011a3a2a08564ac187d887616f2ac335", + "name":"freestyle-effects", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-effects_2.11/0.3.1/freestyle-effects_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-effects_2.11@0.3.1", + "file_name":"freestyle-effects_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.12@0.3.1", + "file_name":"freestyle-config_2.12-0.3.1.jar", + "size":23209, + "date":"2017-07-02T20:36:28+00:00", + "md5":null, + "sha1":"3dfb81b67806e50eedd35bbbc0cb49c6a9bf32b3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:28+00:00", + "size":23209, + "sha1":"3dfb81b67806e50eedd35bbbc0cb49c6a9bf32b3", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.12@0.3.1", + "file_name":"freestyle-config_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-config_2.12-0.3.1-sources.jar", + "size":1404, + "date":"2017-07-02T20:36:26+00:00", + "md5":null, + "sha1":"34b71b4d24f0c7764689e94f9485e3cac66b56da", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:26+00:00", + "size":1404, + "sha1":"34b71b4d24f0c7764689e94f9485e3cac66b56da", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.12/0.3.1/freestyle-config_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.12@0.3.1", + "file_name":"freestyle-config_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.11@0.3.1", + "file_name":"freestyle-config_2.11-0.3.1.jar", + "size":30679, + "date":"2017-07-02T20:34:19+00:00", + "md5":null, + "sha1":"cf1aaa3d59a36613257bbf93ef69d91f0c95aee0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:19+00:00", + "size":30679, + "sha1":"cf1aaa3d59a36613257bbf93ef69d91f0c95aee0", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.11@0.3.1", + "file_name":"freestyle-config_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-config_2.11-0.3.1-sources.jar", + "size":1404, + "date":"2017-07-02T20:34:18+00:00", + "md5":null, + "sha1":"198440eda2c8ed48f127ef7f76bfa450a71c669c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-config_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:18+00:00", + "size":1404, + "sha1":"198440eda2c8ed48f127ef7f76bfa450a71c669c", + "name":"freestyle-config", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-config_2.11/0.3.1/freestyle-config_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-config_2.11@0.3.1", + "file_name":"freestyle-config_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.12-0.3.1.jar", + "size":119281, + "date":"2017-07-02T20:37:25+00:00", + "md5":null, + "sha1":"e690526bb1973f079dabaa06ee6fc1271eabe59a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:25+00:00", + "size":119281, + "sha1":"e690526bb1973f079dabaa06ee6fc1271eabe59a", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-cache_sjs0.6_2.12-0.3.1-sources.jar", + "size":4300, + "date":"2017-07-02T20:37:23+00:00", + "md5":null, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:23+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.12/0.3.1/freestyle-cache_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.11-0.3.1.jar", + "size":132742, + "date":"2017-07-02T20:35:06+00:00", + "md5":null, + "sha1":"f88454581e85b7ed447817febab8124cd9da5c04", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:06+00:00", + "size":132742, + "sha1":"f88454581e85b7ed447817febab8124cd9da5c04", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-cache_sjs0.6_2.11-0.3.1-sources.jar", + "size":4300, + "date":"2017-07-02T20:35:03+00:00", + "md5":null, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:03+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_sjs0.6_2.11/0.3.1/freestyle-cache_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-cache_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.12@0.3.1", + "file_name":"freestyle-cache_2.12-0.3.1.jar", + "size":61928, + "date":"2017-07-02T20:36:48+00:00", + "md5":null, + "sha1":"0babed618b1889e4397acbf6adbc15bc04624bee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:48+00:00", + "size":61928, + "sha1":"0babed618b1889e4397acbf6adbc15bc04624bee", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.12@0.3.1", + "file_name":"freestyle-cache_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-cache_2.12-0.3.1-sources.jar", + "size":4300, + "date":"2017-07-02T20:36:46+00:00", + "md5":null, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:46+00:00", + "size":4300, + "sha1":"eaef7ec2338bd73d39631feca80f5b6bbbd0351c", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.12/0.3.1/freestyle-cache_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.12@0.3.1", + "file_name":"freestyle-cache_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.11@0.3.1", + "file_name":"freestyle-cache_2.11-0.3.1.jar", + "size":72492, + "date":"2017-07-02T20:35:16+00:00", + "md5":null, + "sha1":"410dbd67787fc9b70b98a11d284bbad2f6e44eb0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:16+00:00", + "size":72492, + "sha1":"410dbd67787fc9b70b98a11d284bbad2f6e44eb0", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.11@0.3.1", + "file_name":"freestyle-cache_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-cache_2.11-0.3.1-sources.jar", + "size":4300, + "date":"2017-07-02T20:35:14+00:00", + "md5":null, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-cache_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:14+00:00", + "size":4300, + "sha1":"a3a29a2b9c65d37095ce26c0d0d3d26e88e4129b", + "name":"freestyle-cache", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-cache_2.11/0.3.1/freestyle-cache_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-cache_2.11@0.3.1", + "file_name":"freestyle-cache_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.12-0.3.1.jar", + "size":29445, + "date":"2017-07-02T20:36:57+00:00", + "md5":null, + "sha1":"09fd9075344815fc42d468e7b7ced2d3d7d5457c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:57+00:00", + "size":29445, + "sha1":"09fd9075344815fc42d468e7b7ced2d3d7d5457c", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async_sjs0.6_2.12-0.3.1-sources.jar", + "size":1167, + "date":"2017-07-02T20:36:58+00:00", + "md5":null, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:58+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.12/0.3.1/freestyle-async_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.11-0.3.1.jar", + "size":34115, + "date":"2017-07-02T20:35:09+00:00", + "md5":null, + "sha1":"dfc9100b029f837d8227ad1cff2a1a027fafc60e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:09+00:00", + "size":34115, + "sha1":"dfc9100b029f837d8227ad1cff2a1a027fafc60e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async_sjs0.6_2.11-0.3.1-sources.jar", + "size":1167, + "date":"2017-07-02T20:35:10+00:00", + "md5":null, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:10+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_sjs0.6_2.11/0.3.1/freestyle-async_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.12@0.3.1", + "file_name":"freestyle-async_2.12-0.3.1.jar", + "size":17102, + "date":"2017-07-02T20:36:08+00:00", + "md5":null, + "sha1":"92c1069544cfea459c632e1fcaed27a6a06e704e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:36:08+00:00", + "size":17102, + "sha1":"92c1069544cfea459c632e1fcaed27a6a06e704e", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.12@0.3.1", + "file_name":"freestyle-async_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async_2.12-0.3.1-sources.jar", + "size":1167, + "date":"2017-07-02T20:36:09+00:00", + "md5":null, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:36:09+00:00", + "size":1167, + "sha1":"fa0e4e4331e1da55b7ad9701dd142639e3420286", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.12/0.3.1/freestyle-async_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.12@0.3.1", + "file_name":"freestyle-async_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:36:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.11@0.3.1", + "file_name":"freestyle-async_2.11-0.3.1.jar", + "size":19901, + "date":"2017-07-02T20:34:50+00:00", + "md5":null, + "sha1":"cae7ddd9a9f35d04643e196eeac61c9b77dfb4f1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:34:50+00:00", + "size":19901, + "sha1":"cae7ddd9a9f35d04643e196eeac61c9b77dfb4f1", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.11@0.3.1", + "file_name":"freestyle-async_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async_2.11-0.3.1-sources.jar", + "size":1167, + "date":"2017-07-02T20:34:51+00:00", + "md5":null, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:34:51+00:00", + "size":1167, + "sha1":"a689774a3020bc612ad48376cf5e6040b17070f3", + "name":"freestyle-async", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async_2.11/0.3.1/freestyle-async_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async_2.11@0.3.1", + "file_name":"freestyle-async_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:34:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.12-0.3.1.jar", + "size":8432, + "date":"2017-07-02T20:37:30+00:00", + "md5":null, + "sha1":"2783456039a2fc47736335e573ea26108e1d3441", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:30+00:00", + "size":8432, + "sha1":"2783456039a2fc47736335e573ea26108e1d3441", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async-monix_sjs0.6_2.12-0.3.1-sources.jar", + "size":1098, + "date":"2017-07-02T20:37:31+00:00", + "md5":null, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:31+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.12/0.3.1/freestyle-async-monix_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.11-0.3.1.jar", + "size":13046, + "date":"2017-07-02T20:35:52+00:00", + "md5":null, + "sha1":"90602fc221ac9e842960b06c0e5ad3d60a2fd135", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:52+00:00", + "size":13046, + "sha1":"90602fc221ac9e842960b06c0e5ad3d60a2fd135", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async-monix_sjs0.6_2.11-0.3.1-sources.jar", + "size":1098, + "date":"2017-07-02T20:35:53+00:00", + "md5":null, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:53+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_sjs0.6_2.11/0.3.1/freestyle-async-monix_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-monix_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.12@0.3.1", + "file_name":"freestyle-async-monix_2.12-0.3.1.jar", + "size":4947, + "date":"2017-07-02T20:37:40+00:00", + "md5":null, + "sha1":"bc5d95766456972c0842be89eea7a187262cab23", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:40+00:00", + "size":4947, + "sha1":"bc5d95766456972c0842be89eea7a187262cab23", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.12@0.3.1", + "file_name":"freestyle-async-monix_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async-monix_2.12-0.3.1-sources.jar", + "size":1098, + "date":"2017-07-02T20:37:41+00:00", + "md5":null, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:41+00:00", + "size":1098, + "sha1":"9c2e1cfd5ddd05cb59721c61b3054fbd4c3c1fe0", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.12/0.3.1/freestyle-async-monix_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.12@0.3.1", + "file_name":"freestyle-async-monix_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.11@0.3.1", + "file_name":"freestyle-async-monix_2.11-0.3.1.jar", + "size":8003, + "date":"2017-07-02T20:35:42+00:00", + "md5":null, + "sha1":"02f4a2d94ec061bad021925b796b024b25bf1396", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:42+00:00", + "size":8003, + "sha1":"02f4a2d94ec061bad021925b796b024b25bf1396", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.11@0.3.1", + "file_name":"freestyle-async-monix_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async-monix_2.11-0.3.1-sources.jar", + "size":1098, + "date":"2017-07-02T20:35:44+00:00", + "md5":null, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-monix_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:44+00:00", + "size":1098, + "sha1":"2c722c8ebfcff3d13fca9bf5ec555f8558d54aeb", + "name":"freestyle-async-monix", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-monix_2.11/0.3.1/freestyle-async-monix_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-monix_2.11@0.3.1", + "file_name":"freestyle-async-monix_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.12-0.3.1.jar", + "size":4542, + "date":"2017-07-02T20:37:47+00:00", + "md5":null, + "sha1":"dfa0b55bee93f34798884ff1fba585e2e8fae419", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:47+00:00", + "size":4542, + "sha1":"dfa0b55bee93f34798884ff1fba585e2e8fae419", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async-fs2_sjs0.6_2.12-0.3.1-sources.jar", + "size":1007, + "date":"2017-07-02T20:37:49+00:00", + "md5":null, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:49+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.12/0.3.1/freestyle-async-fs2_sjs0.6_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.12@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.11-0.3.1.jar", + "size":4467, + "date":"2017-07-02T20:35:37+00:00", + "md5":null, + "sha1":"df4d8332a6f644252a4d4a29f4dab43af582a63c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:37+00:00", + "size":4467, + "sha1":"df4d8332a6f644252a4d4a29f4dab43af582a63c", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async-fs2_sjs0.6_2.11-0.3.1-sources.jar", + "size":1007, + "date":"2017-07-02T20:35:39+00:00", + "md5":null, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_sjs0.6_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:39+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_sjs0.6_2.11/0.3.1/freestyle-async-fs2_sjs0.6_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_sjs0.6_2.11@0.3.1", + "file_name":"freestyle-async-fs2_sjs0.6_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.12@0.3.1", + "file_name":"freestyle-async-fs2_2.12-0.3.1.jar", + "size":2892, + "date":"2017-07-02T20:37:35+00:00", + "md5":null, + "sha1":"6a82dab9239a6ed3b8c88c83ef711143800e2338", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:37:35+00:00", + "size":2892, + "sha1":"6a82dab9239a6ed3b8c88c83ef711143800e2338", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.12@0.3.1", + "file_name":"freestyle-async-fs2_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.12@0.3.1?classifier=sources", + "file_name":"freestyle-async-fs2_2.12-0.3.1-sources.jar", + "size":1007, + "date":"2017-07-02T20:37:36+00:00", + "md5":null, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.12", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:37:36+00:00", + "size":1007, + "sha1":"e64008d2637249c52253a37cc0ff72b734eb8026", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.12/0.3.1/freestyle-async-fs2_2.12-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.12@0.3.1", + "file_name":"freestyle-async-fs2_2.12-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:37:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.11@0.3.1", + "file_name":"freestyle-async-fs2_2.11-0.3.1.jar", + "size":2827, + "date":"2017-07-02T20:35:47+00:00", + "md5":null, + "sha1":"5e8011aae41b5838c0196c22420ae28d1e511889", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:35:47+00:00", + "size":2827, + "sha1":"5e8011aae41b5838c0196c22420ae28d1e511889", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.11@0.3.1", + "file_name":"freestyle-async-fs2_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.11@0.3.1?classifier=sources", + "file_name":"freestyle-async-fs2_2.11-0.3.1-sources.jar", + "size":1007, + "date":"2017-07-02T20:35:48+00:00", + "md5":null, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"io.frees", + "artifact_id":"freestyle-async-fs2_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:35:48+00:00", + "size":1007, + "sha1":"90a630a4e5d0fe19b9f1eab0701f810e586c3f1b", + "name":"freestyle-async-fs2", + "description":"A Cohesive & Pragmatic Framework of FP centric Scala libraries", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/io/frees/freestyle-async-fs2_2.11/0.3.1/freestyle-async-fs2_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/io.frees/freestyle-async-fs2_2.11@0.3.1", + "file_name":"freestyle-async-fs2_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T20:35:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.12@0.8.2", + "file_name":"pide-package_2.12-0.8.2.jar", + "size":2541963, + "date":"2017-07-02T09:59:59+00:00", + "md5":null, + "sha1":"58568d4024ff1a04eb49d1af299317afb70e92cd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:59+00:00", + "size":2541963, + "sha1":"58568d4024ff1a04eb49d1af299317afb70e92cd", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.12@0.8.2", + "file_name":"pide-package_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.12@0.8.2?classifier=sources", + "file_name":"pide-package_2.12-0.8.2-sources.jar", + "size":250, + "date":"2017-07-02T10:00:02+00:00", + "md5":null, + "sha1":"6697b7545efe634845f217daa4f423a3c6d56b0e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":250, + "sha1":"6697b7545efe634845f217daa4f423a3c6d56b0e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.12/0.8.2/pide-package_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.12@0.8.2", + "file_name":"pide-package_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.11@0.8.2", + "file_name":"pide-package_2.11-0.8.2.jar", + "size":4121739, + "date":"2017-07-02T09:58:26+00:00", + "md5":null, + "sha1":"21b51abc04e51026679908afef5309fe1d09ae7f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:26+00:00", + "size":4121739, + "sha1":"21b51abc04e51026679908afef5309fe1d09ae7f", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.11@0.8.2", + "file_name":"pide-package_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.11@0.8.2?classifier=sources", + "file_name":"pide-package_2.11-0.8.2-sources.jar", + "size":250, + "date":"2017-07-02T09:58:29+00:00", + "md5":null, + "sha1":"7826e25f8097f3aa1b10ca48b15396391dea2702", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":250, + "sha1":"7826e25f8097f3aa1b10ca48b15396391dea2702", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.11/0.8.2/pide-package_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.11@0.8.2", + "file_name":"pide-package_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.10@0.8.2", + "file_name":"pide-package_2.10-0.8.2.jar", + "size":3779808, + "date":"2017-07-02T09:56:48+00:00", + "md5":null, + "sha1":"20cd76900635eaeb3baef7d7d246dd97b6f99d01", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:48+00:00", + "size":3779808, + "sha1":"20cd76900635eaeb3baef7d7d246dd97b6f99d01", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.10@0.8.2", + "file_name":"pide-package_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:48+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.10@0.8.2?classifier=sources", + "file_name":"pide-package_2.10-0.8.2-sources.jar", + "size":250, + "date":"2017-07-02T09:56:50+00:00", + "md5":null, + "sha1":"622dcf73010084128f19f2beba9bbc292cbe098e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-package_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:50+00:00", + "size":250, + "sha1":"622dcf73010084128f19f2beba9bbc292cbe098e", + "name":"pidePackage", + "description":"pidePackage", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-package_2.10/0.8.2/pide-package_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-package_2.10@0.8.2", + "file_name":"pide-package_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.12@0.8.2", + "file_name":"pide-interface_2.12-0.8.2.jar", + "size":53920, + "date":"2017-07-02T09:59:09+00:00", + "md5":null, + "sha1":"2c6d7b4531e6835289952ddbedaff7bbaff85a13", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:09+00:00", + "size":53920, + "sha1":"2c6d7b4531e6835289952ddbedaff7bbaff85a13", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.12@0.8.2", + "file_name":"pide-interface_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.12@0.8.2?classifier=sources", + "file_name":"pide-interface_2.12-0.8.2-sources.jar", + "size":7218, + "date":"2017-07-02T09:59:06+00:00", + "md5":null, + "sha1":"847d4c63868bc63f351a7224851fcf2834b0a8ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:06+00:00", + "size":7218, + "sha1":"847d4c63868bc63f351a7224851fcf2834b0a8ca", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.12/0.8.2/pide-interface_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.12@0.8.2", + "file_name":"pide-interface_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.11@0.8.2", + "file_name":"pide-interface_2.11-0.8.2.jar", + "size":65878, + "date":"2017-07-02T09:57:37+00:00", + "md5":null, + "sha1":"9a98d55f3abc0953a43071172fe9dec994f45fb4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:37+00:00", + "size":65878, + "sha1":"9a98d55f3abc0953a43071172fe9dec994f45fb4", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.11@0.8.2", + "file_name":"pide-interface_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.11@0.8.2?classifier=sources", + "file_name":"pide-interface_2.11-0.8.2-sources.jar", + "size":7218, + "date":"2017-07-02T09:57:35+00:00", + "md5":null, + "sha1":"4a4681657d8eace5f8f157cee24f4f3da421d614", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:35+00:00", + "size":7218, + "sha1":"4a4681657d8eace5f8f157cee24f4f3da421d614", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.11/0.8.2/pide-interface_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.11@0.8.2", + "file_name":"pide-interface_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.10@0.8.2", + "file_name":"pide-interface_2.10-0.8.2.jar", + "size":65189, + "date":"2017-07-02T09:56:04+00:00", + "md5":null, + "sha1":"4217cc50b55910915b32796c4934819248703aac", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:04+00:00", + "size":65189, + "sha1":"4217cc50b55910915b32796c4934819248703aac", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.10@0.8.2", + "file_name":"pide-interface_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.10@0.8.2?classifier=sources", + "file_name":"pide-interface_2.10-0.8.2-sources.jar", + "size":7218, + "date":"2017-07-02T09:55:56+00:00", + "md5":null, + "sha1":"9094eac7a6d263607461c501177a1512d0b363ef", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-interface_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:55:56+00:00", + "size":7218, + "sha1":"9094eac7a6d263607461c501177a1512d0b363ef", + "name":"pideInterface", + "description":"pideInterface", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-interface_2.10/0.8.2/pide-interface_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-interface_2.10@0.8.2", + "file_name":"pide-interface_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:55:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.12@0.8.2", + "file_name":"pide-2016_2.12-0.8.2.jar", + "size":1712949, + "date":"2017-07-02T09:59:46+00:00", + "md5":null, + "sha1":"489477a72ecc73557d4f03b40f92fd1eb8b2cf61", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:46+00:00", + "size":1712949, + "sha1":"489477a72ecc73557d4f03b40f92fd1eb8b2cf61", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.12@0.8.2", + "file_name":"pide-2016_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.12@0.8.2?classifier=sources", + "file_name":"pide-2016_2.12-0.8.2-sources.jar", + "size":157726, + "date":"2017-07-02T09:59:53+00:00", + "md5":null, + "sha1":"d91a2bab0aadc938cf5d82474ece95eb02e6bce6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:53+00:00", + "size":157726, + "sha1":"d91a2bab0aadc938cf5d82474ece95eb02e6bce6", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.12/0.8.2/pide-2016_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.12@0.8.2", + "file_name":"pide-2016_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.11@0.8.2", + "file_name":"pide-2016_2.11-0.8.2.jar", + "size":3027372, + "date":"2017-07-02T09:58:12+00:00", + "md5":null, + "sha1":"6e53ccb8533d6aa94da56bb0c4ccd02817cd0e5d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:12+00:00", + "size":3027372, + "sha1":"6e53ccb8533d6aa94da56bb0c4ccd02817cd0e5d", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.11@0.8.2", + "file_name":"pide-2016_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.11@0.8.2?classifier=sources", + "file_name":"pide-2016_2.11-0.8.2-sources.jar", + "size":157726, + "date":"2017-07-02T09:58:19+00:00", + "md5":null, + "sha1":"cfc88628adae49b1060afc384b34877c2206d35b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:19+00:00", + "size":157726, + "sha1":"cfc88628adae49b1060afc384b34877c2206d35b", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.11/0.8.2/pide-2016_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.11@0.8.2", + "file_name":"pide-2016_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.10@0.8.2", + "file_name":"pide-2016_2.10-0.8.2.jar", + "size":3012131, + "date":"2017-07-02T09:57:12+00:00", + "md5":null, + "sha1":"9bcda396173b20983884c22d718951aef66d2f36", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:12+00:00", + "size":3012131, + "sha1":"9bcda396173b20983884c22d718951aef66d2f36", + "name":"pide2016", + "description":"pide2016", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.10@0.8.2", + "file_name":"pide-2016_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.10@0.8.2?classifier=sources", + "file_name":"pide-2016_2.10-0.8.2-sources.jar", + "size":157726, + "date":"2017-07-02T09:57:19+00:00", + "md5":null, + "sha1":"4d2d11a77bff38bcbd554a384f9d2b8d481e2faa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:19+00:00", + "size":157726, + "sha1":"4d2d11a77bff38bcbd554a384f9d2b8d481e2faa", + "name":"pide2016", + "description":"pide2016", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016_2.10/0.8.2/pide-2016_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016_2.10@0.8.2", + "file_name":"pide-2016_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.12@0.8.2", + "file_name":"pide-2016-1_2.12-0.8.2.jar", + "size":2117178, + "date":"2017-07-02T10:00:12+00:00", + "md5":null, + "sha1":"8f91a3461df01bf192c3f63c9715444ed68b0e36", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:12+00:00", + "size":2117178, + "sha1":"8f91a3461df01bf192c3f63c9715444ed68b0e36", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.12@0.8.2", + "file_name":"pide-2016-1_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.12@0.8.2?classifier=sources", + "file_name":"pide-2016-1_2.12-0.8.2-sources.jar", + "size":213195, + "date":"2017-07-02T10:00:19+00:00", + "md5":null, + "sha1":"4e09d6853e578b5251b0b27dbc67eb034104d666", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:19+00:00", + "size":213195, + "sha1":"4e09d6853e578b5251b0b27dbc67eb034104d666", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.12/0.8.2/pide-2016-1_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.12@0.8.2", + "file_name":"pide-2016-1_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.11@0.8.2", + "file_name":"pide-2016-1_2.11-0.8.2.jar", + "size":3775477, + "date":"2017-07-02T09:58:40+00:00", + "md5":null, + "sha1":"59231e2e098c1e974b32f9eeccd294f97b4f2535", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:40+00:00", + "size":3775477, + "sha1":"59231e2e098c1e974b32f9eeccd294f97b4f2535", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.11@0.8.2", + "file_name":"pide-2016-1_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.11@0.8.2?classifier=sources", + "file_name":"pide-2016-1_2.11-0.8.2-sources.jar", + "size":213195, + "date":"2017-07-02T09:58:45+00:00", + "md5":null, + "sha1":"f82e3192fe72fff366f905e2a42b7dff175ace50", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:45+00:00", + "size":213195, + "sha1":"f82e3192fe72fff366f905e2a42b7dff175ace50", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.11/0.8.2/pide-2016-1_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.11@0.8.2", + "file_name":"pide-2016-1_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.10@0.8.2", + "file_name":"pide-2016-1_2.10-0.8.2.jar", + "size":3757713, + "date":"2017-07-02T09:57:01+00:00", + "md5":null, + "sha1":"cec02dd7258859ad9f573bfdf1fe375ad46efd23", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:01+00:00", + "size":3757713, + "sha1":"cec02dd7258859ad9f573bfdf1fe375ad46efd23", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.10@0.8.2", + "file_name":"pide-2016-1_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.10@0.8.2?classifier=sources", + "file_name":"pide-2016-1_2.10-0.8.2-sources.jar", + "size":213195, + "date":"2017-07-02T09:57:06+00:00", + "md5":null, + "sha1":"a250906a0303c36c7851de7536f942c73500d2f4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"pide-2016-1_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:06+00:00", + "size":213195, + "sha1":"a250906a0303c36c7851de7536f942c73500d2f4", + "name":"pide2016-1", + "description":"pide2016-1", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/pide-2016-1_2.10/0.8.2/pide-2016-1_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/pide-2016-1_2.10@0.8.2", + "file_name":"pide-2016-1_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.12@0.8.2", + "file_name":"libisabelle_2.12-0.8.2.jar", + "size":379125, + "date":"2017-07-02T09:59:27+00:00", + "md5":null, + "sha1":"62b93fe38b65437c3f9aec9d59847c36df904c2d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:27+00:00", + "size":379125, + "sha1":"62b93fe38b65437c3f9aec9d59847c36df904c2d", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.12@0.8.2", + "file_name":"libisabelle_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.12@0.8.2?classifier=sources", + "file_name":"libisabelle_2.12-0.8.2-sources.jar", + "size":29491, + "date":"2017-07-02T09:59:31+00:00", + "md5":null, + "sha1":"7427a35e75ccc4acc5ea58553d0f3b2f1ba68d21", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:31+00:00", + "size":29491, + "sha1":"7427a35e75ccc4acc5ea58553d0f3b2f1ba68d21", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.12/0.8.2/libisabelle_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.12@0.8.2", + "file_name":"libisabelle_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.11@0.8.2", + "file_name":"libisabelle_2.11-0.8.2.jar", + "size":483973, + "date":"2017-07-02T09:57:53+00:00", + "md5":null, + "sha1":"7c8d20a6102a82031660a6201674c319180b439c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:53+00:00", + "size":483973, + "sha1":"7c8d20a6102a82031660a6201674c319180b439c", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.11@0.8.2", + "file_name":"libisabelle_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.11@0.8.2?classifier=sources", + "file_name":"libisabelle_2.11-0.8.2-sources.jar", + "size":29491, + "date":"2017-07-02T09:57:57+00:00", + "md5":null, + "sha1":"6bf6f71c8066b56a45e2814d8c3bae5bfcd2d391", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:57+00:00", + "size":29491, + "sha1":"6bf6f71c8066b56a45e2814d8c3bae5bfcd2d391", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.11/0.8.2/libisabelle_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.11@0.8.2", + "file_name":"libisabelle_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.10@0.8.2", + "file_name":"libisabelle_2.10-0.8.2.jar", + "size":481943, + "date":"2017-07-02T09:56:14+00:00", + "md5":null, + "sha1":"c5d7663339ddd6d15ea51d4e4eb5f7407b3f9ea0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:14+00:00", + "size":481943, + "sha1":"c5d7663339ddd6d15ea51d4e4eb5f7407b3f9ea0", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.10@0.8.2", + "file_name":"libisabelle_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.10@0.8.2?classifier=sources", + "file_name":"libisabelle_2.10-0.8.2-sources.jar", + "size":29491, + "date":"2017-07-02T09:56:31+00:00", + "md5":null, + "sha1":"c4c5bf0480426fe8d61651f870e7e1ee909fec91", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:31+00:00", + "size":29491, + "sha1":"c4c5bf0480426fe8d61651f870e7e1ee909fec91", + "name":"libisabelle", + "description":"libisabelle", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle_2.10/0.8.2/libisabelle_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle_2.10@0.8.2", + "file_name":"libisabelle_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.12@0.8.2", + "file_name":"libisabelle-setup_2.12-0.8.2.jar", + "size":71692, + "date":"2017-07-02T09:59:36+00:00", + "md5":null, + "sha1":"3793a558598e780232a7fcf052c85befab67d0a2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:59:36+00:00", + "size":71692, + "sha1":"3793a558598e780232a7fcf052c85befab67d0a2", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.12@0.8.2", + "file_name":"libisabelle-setup_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.12@0.8.2?classifier=sources", + "file_name":"libisabelle-setup_2.12-0.8.2-sources.jar", + "size":10700, + "date":"2017-07-02T09:59:34+00:00", + "md5":null, + "sha1":"8fa3e86b991ed9ace2a01095261f39585075be06", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:59:34+00:00", + "size":10700, + "sha1":"8fa3e86b991ed9ace2a01095261f39585075be06", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.12/0.8.2/libisabelle-setup_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.12@0.8.2", + "file_name":"libisabelle-setup_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:59:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.11@0.8.2", + "file_name":"libisabelle-setup_2.11-0.8.2.jar", + "size":99758, + "date":"2017-07-02T09:58:02+00:00", + "md5":null, + "sha1":"6b5a6bb893b01b093daaaa0513540b34754b4d39", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:02+00:00", + "size":99758, + "sha1":"6b5a6bb893b01b093daaaa0513540b34754b4d39", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.11@0.8.2", + "file_name":"libisabelle-setup_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.11@0.8.2?classifier=sources", + "file_name":"libisabelle-setup_2.11-0.8.2-sources.jar", + "size":10700, + "date":"2017-07-02T09:58:00+00:00", + "md5":null, + "sha1":"6fb332740360fa6178ab43facf0e740fa20b8564", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:00+00:00", + "size":10700, + "sha1":"6fb332740360fa6178ab43facf0e740fa20b8564", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.11/0.8.2/libisabelle-setup_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.11@0.8.2", + "file_name":"libisabelle-setup_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.10@0.8.2", + "file_name":"libisabelle-setup_2.10-0.8.2.jar", + "size":98895, + "date":"2017-07-02T09:57:23+00:00", + "md5":null, + "sha1":"aef453a60f5f4e5a0d7cc9deb2a44840921a0cff", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:57:23+00:00", + "size":98895, + "sha1":"aef453a60f5f4e5a0d7cc9deb2a44840921a0cff", + "name":"setup", + "description":"setup", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.10@0.8.2", + "file_name":"libisabelle-setup_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.10@0.8.2?classifier=sources", + "file_name":"libisabelle-setup_2.10-0.8.2-sources.jar", + "size":10700, + "date":"2017-07-02T09:57:21+00:00", + "md5":null, + "sha1":"d097c2b751e01bc1d997088e77214e6de27cb929", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-setup_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:57:21+00:00", + "size":10700, + "sha1":"d097c2b751e01bc1d997088e77214e6de27cb929", + "name":"setup", + "description":"setup", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-setup_2.10/0.8.2/libisabelle-setup_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-setup_2.10@0.8.2", + "file_name":"libisabelle-setup_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:57:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.12@0.8.2", + "file_name":"libisabelle-docs_2.12-0.8.2.jar", + "size":300, + "date":"2017-07-02T10:00:08+00:00", + "md5":null, + "sha1":"80dc446a34abc6142433120e870eb317e8c85f66", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:08+00:00", + "size":300, + "sha1":"80dc446a34abc6142433120e870eb317e8c85f66", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.12@0.8.2", + "file_name":"libisabelle-docs_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.12@0.8.2?classifier=sources", + "file_name":"libisabelle-docs_2.12-0.8.2-sources.jar", + "size":243, + "date":"2017-07-02T10:00:02+00:00", + "md5":null, + "sha1":"6a23a8d74684c4b83f96f7f3175d95d145e0ba79", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:02+00:00", + "size":243, + "sha1":"6a23a8d74684c4b83f96f7f3175d95d145e0ba79", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.12/0.8.2/libisabelle-docs_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.12@0.8.2", + "file_name":"libisabelle-docs_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.11@0.8.2", + "file_name":"libisabelle-docs_2.11-0.8.2.jar", + "size":300, + "date":"2017-07-02T09:58:34+00:00", + "md5":null, + "sha1":"018499fe3acd0846f27488a3cf5027199f87bd4c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:34+00:00", + "size":300, + "sha1":"018499fe3acd0846f27488a3cf5027199f87bd4c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.11@0.8.2", + "file_name":"libisabelle-docs_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.11@0.8.2?classifier=sources", + "file_name":"libisabelle-docs_2.11-0.8.2-sources.jar", + "size":243, + "date":"2017-07-02T09:58:29+00:00", + "md5":null, + "sha1":"da22c42861fb4ec49c2cc677dd894a4a11f5d9ae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:29+00:00", + "size":243, + "sha1":"da22c42861fb4ec49c2cc677dd894a4a11f5d9ae", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.11/0.8.2/libisabelle-docs_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.11@0.8.2", + "file_name":"libisabelle-docs_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.10@0.8.2", + "file_name":"libisabelle-docs_2.10-0.8.2.jar", + "size":300, + "date":"2017-07-02T09:56:55+00:00", + "md5":null, + "sha1":"02e784a8141a71628a9a7692136f56e3124a767c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:55+00:00", + "size":300, + "sha1":"02e784a8141a71628a9a7692136f56e3124a767c", + "name":"docs", + "description":"docs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.10@0.8.2", + "file_name":"libisabelle-docs_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.10@0.8.2?classifier=sources", + "file_name":"libisabelle-docs_2.10-0.8.2-sources.jar", + "size":243, + "date":"2017-07-02T09:56:51+00:00", + "md5":null, + "sha1":"7acd693e69a91d4a8352f9be82c61d13968e8115", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"libisabelle-docs_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:51+00:00", + "size":243, + "sha1":"7acd693e69a91d4a8352f9be82c61d13968e8115", + "name":"docs", + "description":"docs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/libisabelle-docs_2.10/0.8.2/libisabelle-docs_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/libisabelle-docs_2.10@0.8.2", + "file_name":"libisabelle-docs_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.12@0.8.2", + "file_name":"isabellectl_2.12-0.8.2.jar", + "size":148120, + "date":"2017-07-02T10:00:25+00:00", + "md5":null, + "sha1":"8ecb81b95d5ee47413ff2a610f41676e0a299aaa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:00:25+00:00", + "size":148120, + "sha1":"8ecb81b95d5ee47413ff2a610f41676e0a299aaa", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.12@0.8.2", + "file_name":"isabellectl_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.12@0.8.2?classifier=sources", + "file_name":"isabellectl_2.12-0.8.2-sources.jar", + "size":6412, + "date":"2017-07-02T10:00:22+00:00", + "md5":null, + "sha1":"d9deb24dd3b1b95f1c7cb904c31c145fba16c866", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.12", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:00:22+00:00", + "size":6412, + "sha1":"d9deb24dd3b1b95f1c7cb904c31c145fba16c866", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.12/0.8.2/isabellectl_2.12-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.12@0.8.2", + "file_name":"isabellectl_2.12-0.8.2.pom", + "size":0, + "date":"2017-07-02T10:00:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.11@0.8.2", + "file_name":"isabellectl_2.11-0.8.2.jar", + "size":181850, + "date":"2017-07-02T09:58:51+00:00", + "md5":null, + "sha1":"aa237ec4f715d8c03f7513cc44b4599d7381f677", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:58:51+00:00", + "size":181850, + "sha1":"aa237ec4f715d8c03f7513cc44b4599d7381f677", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.11@0.8.2", + "file_name":"isabellectl_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.11@0.8.2?classifier=sources", + "file_name":"isabellectl_2.11-0.8.2-sources.jar", + "size":6412, + "date":"2017-07-02T09:58:49+00:00", + "md5":null, + "sha1":"d05fb9d7ec63423dbf37fb302fbd6ecdcdb3f823", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.11", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:58:49+00:00", + "size":6412, + "sha1":"d05fb9d7ec63423dbf37fb302fbd6ecdcdb3f823", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.11/0.8.2/isabellectl_2.11-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.11@0.8.2", + "file_name":"isabellectl_2.11-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:58:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.10@0.8.2", + "file_name":"isabellectl_2.10-0.8.2.jar", + "size":176486, + "date":"2017-07-02T09:56:41+00:00", + "md5":null, + "sha1":"60d0fb433f962ab08ae84fac897e65fb4b3e9a84", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:56:41+00:00", + "size":176486, + "sha1":"60d0fb433f962ab08ae84fac897e65fb4b3e9a84", + "name":"cli", + "description":"cli", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.10@0.8.2", + "file_name":"isabellectl_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.10@0.8.2?classifier=sources", + "file_name":"isabellectl_2.10-0.8.2-sources.jar", + "size":6412, + "date":"2017-07-02T09:56:39+00:00", + "md5":null, + "sha1":"27f91d2bef2dab080704db7e3739927e7f0c859a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"info.hupel", + "artifact_id":"isabellectl_2.10", + "version":"0.8.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:56:39+00:00", + "size":6412, + "sha1":"27f91d2bef2dab080704db7e3739927e7f0c859a", + "name":"cli", + "description":"cli", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/info/hupel/isabellectl_2.10/0.8.2/isabellectl_2.10-0.8.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/info.hupel/isabellectl_2.10@0.8.2", + "file_name":"isabellectl_2.10-0.8.2.pom", + "size":0, + "date":"2017-07-02T09:56:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.12@1.7.0-M1", + "file_name":"yaidom_2.12-1.7.0-M1.jar", + "size":951074, + "date":"2017-07-02T17:51:56+00:00", + "md5":null, + "sha1":"0feb610600ffea4384d4a656b3f7c1b7a93000ce", + "sha256":null, + "priority":0, + "data":{ + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:51:56+00:00", + "size":951074, + "sha1":"0feb610600ffea4384d4a656b3f7c1b7a93000ce", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.12@1.7.0-M1", + "file_name":"yaidom_2.12-1.7.0-M1.pom", + "size":0, + "date":"2017-07-02T17:51:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.12@1.7.0-M1?classifier=sources", + "file_name":"yaidom_2.12-1.7.0-M1-sources.jar", + "size":269535, + "date":"2017-07-02T17:51:57+00:00", + "md5":null, + "sha1":"96993a71e8f95ee4888f24d71d88c33dc92c1267", + "sha256":null, + "priority":0, + "data":{ + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.12", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:51:57+00:00", + "size":269535, + "sha1":"96993a71e8f95ee4888f24d71d88c33dc92c1267", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.12/1.7.0-M1/yaidom_2.12-1.7.0-M1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.12@1.7.0-M1", + "file_name":"yaidom_2.12-1.7.0-M1.pom", + "size":0, + "date":"2017-07-02T17:51:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.11@1.7.0-M1", + "file_name":"yaidom_2.11-1.7.0-M1.jar", + "size":1613049, + "date":"2017-07-02T17:50:42+00:00", + "md5":null, + "sha1":"48c82ca8f362ae8c8c7507eeac967a6d737f0b35", + "sha256":null, + "priority":0, + "data":{ + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:50:42+00:00", + "size":1613049, + "sha1":"48c82ca8f362ae8c8c7507eeac967a6d737f0b35", + "name":"yaidom", + "description":"yaidom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.11@1.7.0-M1", + "file_name":"yaidom_2.11-1.7.0-M1.pom", + "size":0, + "date":"2017-07-02T17:50:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.11@1.7.0-M1?classifier=sources", + "file_name":"yaidom_2.11-1.7.0-M1-sources.jar", + "size":269535, + "date":"2017-07-02T17:50:53+00:00", + "md5":null, + "sha1":"02ab9d81d2ee87ec54e846ccb8c7fd6e7564a9de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"eu.cdevreeze.yaidom", + "artifact_id":"yaidom_2.11", + "version":"1.7.0-M1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:50:53+00:00", + "size":269535, + "sha1":"02ab9d81d2ee87ec54e846ccb8c7fd6e7564a9de", + "name":"yaidom", + "description":"yaidom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/eu/cdevreeze/yaidom/yaidom_2.11/1.7.0-M1/yaidom_2.11-1.7.0-M1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/eu.cdevreeze.yaidom/yaidom_2.11@1.7.0-M1", + "file_name":"yaidom_2.11-1.7.0-M1.pom", + "size":0, + "date":"2017-07-02T17:50:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.philippkatz.maven.plugins/test-parser-plugin@2.0", + "file_name":"test-parser-plugin-2.0.jar", + "size":7558, + "date":"2017-07-02T17:16:26+00:00", + "md5":null, + "sha1":"d5707e807f09cf4c12a31382e6d5bdc45fa7095f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":7558, + "sha1":"d5707e807f09cf4c12a31382e6d5bdc45fa7095f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.philippkatz.maven.plugins/test-parser-plugin@2.0", + "file_name":"test-parser-plugin-2.0.pom", + "size":0, + "date":"2017-07-02T17:16:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.philippkatz.maven.plugins/test-parser-plugin@2.0?classifier=sources", + "file_name":"test-parser-plugin-2.0-sources.jar", + "size":1993, + "date":"2017-07-02T17:16:26+00:00", + "md5":null, + "sha1":"e49b0ac86ec75671876cbd6aefd947bc1149681f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.philippkatz.maven.plugins", + "artifact_id":"test-parser-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:16:26+00:00", + "size":1993, + "sha1":"e49b0ac86ec75671876cbd6aefd947bc1149681f", + "name":"Test Parser Plugin for Maven", + "description":"Allows parsing JUnit-style XML files generated by arbitrary 3rd party tools", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/philippkatz/maven/plugins/test-parser-plugin/2.0/test-parser-plugin-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.philippkatz.maven.plugins/test-parser-plugin@2.0", + "file_name":"test-parser-plugin-2.0.pom", + "size":0, + "date":"2017-07-02T17:16:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-web@3.12.0?type=war", + "file_name":"user-rest-web-3.12.0.war", + "size":50831771, + "date":"2017-07-02T16:28:59+00:00", + "md5":null, + "sha1":"aebcba1c2103acb23baf5bb6049c029fabeb1389", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:28:59+00:00", + "size":50831771, + "sha1":"aebcba1c2103acb23baf5bb6049c029fabeb1389", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-web@3.12.0", + "file_name":"user-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:28:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-web@3.12.0?classifier=sources", + "file_name":"user-rest-web-3.12.0-sources.jar", + "size":14113, + "date":"2017-07-02T16:29:07+00:00", + "md5":null, + "sha1":"5641aafc9b5e5da713227a0dfda8bdfc55b526fb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:07+00:00", + "size":14113, + "sha1":"5641aafc9b5e5da713227a0dfda8bdfc55b526fb", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-web/3.12.0/user-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-web@3.12.0", + "file_name":"user-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-client@3.12.0", + "file_name":"user-rest-client-3.12.0.jar", + "size":3247, + "date":"2017-07-02T16:27:53+00:00", + "md5":null, + "sha1":"69b374a8278b0ef6cb87d45822b096120916162e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:27:53+00:00", + "size":3247, + "sha1":"69b374a8278b0ef6cb87d45822b096120916162e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-client@3.12.0", + "file_name":"user-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:27:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-client@3.12.0?classifier=sources", + "file_name":"user-rest-client-3.12.0-sources.jar", + "size":3576, + "date":"2017-07-02T16:28:09+00:00", + "md5":null, + "sha1":"cd89bd42f00581a65ca96ccda98916db9c10c5ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:09+00:00", + "size":3576, + "sha1":"cd89bd42f00581a65ca96ccda98916db9c10c5ca", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-client/3.12.0/user-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-client@3.12.0", + "file_name":"user-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:28:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-api@3.12.0", + "file_name":"user-rest-api-3.12.0.jar", + "size":15856, + "date":"2017-07-02T16:28:00+00:00", + "md5":null, + "sha1":"f6c6ae48190c6e44b34c2250f0f5195a5a46b481", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:28:00+00:00", + "size":15856, + "sha1":"f6c6ae48190c6e44b34c2250f0f5195a5a46b481", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-api@3.12.0", + "file_name":"user-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:28:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-api@3.12.0?classifier=sources", + "file_name":"user-rest-api-3.12.0-sources.jar", + "size":22621, + "date":"2017-07-02T16:28:04+00:00", + "md5":null, + "sha1":"57e7f828881904e52b08437f9cbf7d191ba07cf3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:04+00:00", + "size":22621, + "sha1":"57e7f828881904e52b08437f9cbf7d191ba07cf3", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-rest-api/3.12.0/user-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-rest-api@3.12.0", + "file_name":"user-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:28:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-web@3.12.0?type=war", + "file_name":"user-management-rest-web-3.12.0.war", + "size":53545137, + "date":"2017-07-02T17:39:14+00:00", + "md5":null, + "sha1":"5b31ef1422b39b28468378eaf45b991ba2ba84da", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:39:14+00:00", + "size":53545137, + "sha1":"5b31ef1422b39b28468378eaf45b991ba2ba84da", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-web@3.12.0", + "file_name":"user-management-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-web@3.12.0?classifier=sources", + "file_name":"user-management-rest-web-3.12.0-sources.jar", + "size":1380053, + "date":"2017-07-02T17:39:19+00:00", + "md5":null, + "sha1":"ea709c50832877e8b12178a21d29fcef056e2970", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:19+00:00", + "size":1380053, + "sha1":"ea709c50832877e8b12178a21d29fcef056e2970", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-web/3.12.0/user-management-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-web@3.12.0", + "file_name":"user-management-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-client@3.12.0", + "file_name":"user-management-rest-client-3.12.0.jar", + "size":4370, + "date":"2017-07-02T17:39:31+00:00", + "md5":null, + "sha1":"3b537a196a2f1d3d4d48d51b18c735cc4c100610", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:31+00:00", + "size":4370, + "sha1":"3b537a196a2f1d3d4d48d51b18c735cc4c100610", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-client@3.12.0", + "file_name":"user-management-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-client@3.12.0?classifier=sources", + "file_name":"user-management-rest-client-3.12.0-sources.jar", + "size":4277, + "date":"2017-07-02T17:38:04+00:00", + "md5":null, + "sha1":"66b297d2da72813b58609517331ab9e496fb7cd5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:04+00:00", + "size":4277, + "sha1":"66b297d2da72813b58609517331ab9e496fb7cd5", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-client/3.12.0/user-management-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-client@3.12.0", + "file_name":"user-management-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:38:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-api@3.12.0", + "file_name":"user-management-rest-api-3.12.0.jar", + "size":22602, + "date":"2017-07-02T17:39:20+00:00", + "md5":null, + "sha1":"e7383c1510f3c41a09f917880871e1251f53b4b3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":22602, + "sha1":"e7383c1510f3c41a09f917880871e1251f53b4b3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-api@3.12.0", + "file_name":"user-management-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-api@3.12.0?classifier=sources", + "file_name":"user-management-rest-api-3.12.0-sources.jar", + "size":30637, + "date":"2017-07-02T17:39:32+00:00", + "md5":null, + "sha1":"af7c508d709b70edadf978ea5a9cebb20b4451e9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:32+00:00", + "size":30637, + "sha1":"af7c508d709b70edadf978ea5a9cebb20b4451e9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-rest-api/3.12.0/user-management-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-rest-api@3.12.0", + "file_name":"user-management-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-init@3.12.0", + "file_name":"user-management-init-3.12.0.jar", + "size":1421680, + "date":"2017-07-02T17:38:08+00:00", + "md5":null, + "sha1":"f73dde94287df25f8261029d6abcbf87b7069ad3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:08+00:00", + "size":1421680, + "sha1":"f73dde94287df25f8261029d6abcbf87b7069ad3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-init@3.12.0", + "file_name":"user-management-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:38:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-init@3.12.0?classifier=sources", + "file_name":"user-management-init-3.12.0-sources.jar", + "size":1422559, + "date":"2017-07-02T17:38:02+00:00", + "md5":null, + "sha1":"1385c0791ca108035df1213284f9fa59ce28fe62", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:02+00:00", + "size":1422559, + "sha1":"1385c0791ca108035df1213284f9fa59ce28fe62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-init/3.12.0/user-management-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-init@3.12.0", + "file_name":"user-management-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:38:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-entities@3.12.0", + "file_name":"user-management-entities-3.12.0.jar", + "size":21275, + "date":"2017-07-02T17:39:33+00:00", + "md5":null, + "sha1":"b4e7c2212651b8cf2a7c75ec02993948fa25f6dd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:33+00:00", + "size":21275, + "sha1":"b4e7c2212651b8cf2a7c75ec02993948fa25f6dd", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-entities@3.12.0", + "file_name":"user-management-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-entities@3.12.0?classifier=sources", + "file_name":"user-management-entities-3.12.0-sources.jar", + "size":25319, + "date":"2017-07-02T17:39:29+00:00", + "md5":null, + "sha1":"0e8ac2cd41040f57c56e4716c1dab4a35a7ada07", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:29+00:00", + "size":25319, + "sha1":"0e8ac2cd41040f57c56e4716c1dab4a35a7ada07", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-entities/3.12.0/user-management-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-entities@3.12.0", + "file_name":"user-management-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-domain@3.12.0", + "file_name":"user-management-domain-3.12.0.jar", + "size":51736, + "date":"2017-07-02T17:38:11+00:00", + "md5":null, + "sha1":"e8698f4aa7a3e6f2ec837d62986bd9125360018c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:38:11+00:00", + "size":51736, + "sha1":"e8698f4aa7a3e6f2ec837d62986bd9125360018c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-domain@3.12.0", + "file_name":"user-management-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:38:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-domain@3.12.0?classifier=sources", + "file_name":"user-management-domain-3.12.0-sources.jar", + "size":47225, + "date":"2017-07-02T17:38:09+00:00", + "md5":null, + "sha1":"772006fe18cb8f073a34b287e9d1f93f99f380ac", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:38:09+00:00", + "size":47225, + "sha1":"772006fe18cb8f073a34b287e9d1f93f99f380ac", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-domain/3.12.0/user-management-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-domain@3.12.0", + "file_name":"user-management-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:38:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-business@3.12.0", + "file_name":"user-management-business-3.12.0.jar", + "size":50743, + "date":"2017-07-02T17:39:28+00:00", + "md5":null, + "sha1":"bd97402494a00291bcd4f11aa18863147ecae28c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:39:28+00:00", + "size":50743, + "sha1":"bd97402494a00291bcd4f11aa18863147ecae28c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-business@3.12.0", + "file_name":"user-management-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-business@3.12.0?classifier=sources", + "file_name":"user-management-business-3.12.0-sources.jar", + "size":48581, + "date":"2017-07-02T17:39:20+00:00", + "md5":null, + "sha1":"7d29207dc35dda90730b5582d988dc7cc94bdd05", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-management-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:39:20+00:00", + "size":48581, + "sha1":"7d29207dc35dda90730b5582d988dc7cc94bdd05", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-management-business/3.12.0/user-management-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-management-business@3.12.0", + "file_name":"user-management-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:39:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-init/3.12.0/user-init-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-init@3.12.0", + "file_name":"user-init-3.12.0.jar", + "size":47078, + "date":"2017-07-02T16:29:10+00:00", + "md5":null, + "sha1":"1c9e5f0ef290ede2cd950f5d347fc28777edc34a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:10+00:00", + "size":47078, + "sha1":"1c9e5f0ef290ede2cd950f5d347fc28777edc34a", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-init/3.12.0/user-init-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-init/3.12.0/user-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-init@3.12.0", + "file_name":"user-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-init/3.12.0/user-init-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-init@3.12.0?classifier=sources", + "file_name":"user-init-3.12.0-sources.jar", + "size":48015, + "date":"2017-07-02T16:28:02+00:00", + "md5":null, + "sha1":"2ad78b943c4a002f142aa8840a0fb400b952c9b9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:28:02+00:00", + "size":48015, + "sha1":"2ad78b943c4a002f142aa8840a0fb400b952c9b9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-init/3.12.0/user-init-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-init/3.12.0/user-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-init@3.12.0", + "file_name":"user-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:28:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-entities@3.12.0", + "file_name":"user-entities-3.12.0.jar", + "size":17196, + "date":"2017-07-02T16:29:14+00:00", + "md5":null, + "sha1":"8d6bac9dc20cb5cfbff9dd529e7327f73fd0b7ff", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:14+00:00", + "size":17196, + "sha1":"8d6bac9dc20cb5cfbff9dd529e7327f73fd0b7ff", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-entities@3.12.0", + "file_name":"user-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-entities@3.12.0?classifier=sources", + "file_name":"user-entities-3.12.0-sources.jar", + "size":20921, + "date":"2017-07-02T16:29:08+00:00", + "md5":null, + "sha1":"bfb7380b1f9f76c98448b12b19f7257c6c4b01e7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:08+00:00", + "size":20921, + "sha1":"bfb7380b1f9f76c98448b12b19f7257c6c4b01e7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-entities/3.12.0/user-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-entities@3.12.0", + "file_name":"user-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-domain@3.12.0", + "file_name":"user-domain-3.12.0.jar", + "size":36237, + "date":"2017-07-02T16:29:03+00:00", + "md5":null, + "sha1":"671a8b7959fe5da49c3a1a723f728a53b397443d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:03+00:00", + "size":36237, + "sha1":"671a8b7959fe5da49c3a1a723f728a53b397443d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-domain@3.12.0", + "file_name":"user-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-domain@3.12.0?classifier=sources", + "file_name":"user-domain-3.12.0-sources.jar", + "size":35232, + "date":"2017-07-02T16:29:04+00:00", + "md5":null, + "sha1":"84d9a5ca878b941a386d9cde15407b1ab8b59903", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:04+00:00", + "size":35232, + "sha1":"84d9a5ca878b941a386d9cde15407b1ab8b59903", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-domain/3.12.0/user-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-domain@3.12.0", + "file_name":"user-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-business/3.12.0/user-business-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-business@3.12.0", + "file_name":"user-business-3.12.0.jar", + "size":24039, + "date":"2017-07-02T16:29:15+00:00", + "md5":null, + "sha1":"0c41db9bf0ece6d7ac46cc6de47cd7b30a56267e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:29:15+00:00", + "size":24039, + "sha1":"0c41db9bf0ece6d7ac46cc6de47cd7b30a56267e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-business/3.12.0/user-business-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-business/3.12.0/user-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-business@3.12.0", + "file_name":"user-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/user-business/3.12.0/user-business-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-business@3.12.0?classifier=sources", + "file_name":"user-business-3.12.0-sources.jar", + "size":27856, + "date":"2017-07-02T16:29:12+00:00", + "md5":null, + "sha1":"ce35fa79bd7b9c092d53e9f3568eab5c34b974b2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"user-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:29:12+00:00", + "size":27856, + "sha1":"ce35fa79bd7b9c092d53e9f3568eab5c34b974b2", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/user-business/3.12.0/user-business-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/user-business/3.12.0/user-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/user-business@3.12.0", + "file_name":"user-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:29:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-client@3.29.0", + "file_name":"rest-client-3.29.0.jar", + "size":9457, + "date":"2017-07-02T14:50:20+00:00", + "md5":null, + "sha1":"ddf847f74738c88515592147769cd0a3eb55f651", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:20+00:00", + "size":9457, + "sha1":"ddf847f74738c88515592147769cd0a3eb55f651", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-client@3.29.0", + "file_name":"rest-client-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-client@3.29.0?classifier=sources", + "file_name":"rest-client-3.29.0-sources.jar", + "size":7908, + "date":"2017-07-02T14:50:04+00:00", + "md5":null, + "sha1":"25cebd3c9bec23b20f2c5477cf3b0997a27e5fcc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"rest-client", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":7908, + "sha1":"25cebd3c9bec23b20f2c5477cf3b0997a27e5fcc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/rest-client/3.29.0/rest-client-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-client@3.29.0", + "file_name":"rest-client-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-api@3.29.0", + "file_name":"rest-api-3.29.0.jar", + "size":10341, + "date":"2017-07-02T14:50:03+00:00", + "md5":null, + "sha1":"eb1b25bbeea8f43a8c10d02108b21a6192c731e2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:03+00:00", + "size":10341, + "sha1":"eb1b25bbeea8f43a8c10d02108b21a6192c731e2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-api@3.29.0", + "file_name":"rest-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-api@3.29.0?classifier=sources", + "file_name":"rest-api-3.29.0-sources.jar", + "size":10547, + "date":"2017-07-02T14:50:11+00:00", + "md5":null, + "sha1":"09dffef8467b17f5298cf291a9786acb2b07d117", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"rest-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":10547, + "sha1":"09dffef8467b17f5298cf291a9786acb2b07d117", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/rest-api/3.29.0/rest-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/rest-api@3.29.0", + "file_name":"rest-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-web@3.12.0?type=war", + "file_name":"resource-system-rest-web-3.12.0.war", + "size":42834946, + "date":"2017-07-02T17:31:21+00:00", + "md5":null, + "sha1":"64712c35917e84d5e89230e02121e80a9b6981f6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T17:31:21+00:00", + "size":42834946, + "sha1":"64712c35917e84d5e89230e02121e80a9b6981f6", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-web@3.12.0", + "file_name":"resource-system-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-web@3.12.0?classifier=sources", + "file_name":"resource-system-rest-web-3.12.0-sources.jar", + "size":192703, + "date":"2017-07-02T17:31:42+00:00", + "md5":null, + "sha1":"208b2408da37629d602dc3c047b70ad772203a94", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:42+00:00", + "size":192703, + "sha1":"208b2408da37629d602dc3c047b70ad772203a94", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-web/3.12.0/resource-system-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-web@3.12.0", + "file_name":"resource-system-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-client@3.12.0", + "file_name":"resource-system-rest-client-3.12.0.jar", + "size":3215, + "date":"2017-07-02T17:31:32+00:00", + "md5":null, + "sha1":"c5589b99dafcfbea875e03f88869ffb887903902", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:32+00:00", + "size":3215, + "sha1":"c5589b99dafcfbea875e03f88869ffb887903902", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-client@3.12.0", + "file_name":"resource-system-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-client@3.12.0?classifier=sources", + "file_name":"resource-system-rest-client-3.12.0-sources.jar", + "size":3705, + "date":"2017-07-02T17:31:37+00:00", + "md5":null, + "sha1":"843fa7d2555d1de93872a7416498c2bbd9e6e08d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":3705, + "sha1":"843fa7d2555d1de93872a7416498c2bbd9e6e08d", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-client/3.12.0/resource-system-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-client@3.12.0", + "file_name":"resource-system-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-api@3.12.0", + "file_name":"resource-system-rest-api-3.12.0.jar", + "size":8203, + "date":"2017-07-02T17:31:30+00:00", + "md5":null, + "sha1":"fffbb11611bf1c06ddda89235c2ae5f9028a4ef3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:30+00:00", + "size":8203, + "sha1":"fffbb11611bf1c06ddda89235c2ae5f9028a4ef3", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-api@3.12.0", + "file_name":"resource-system-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-api@3.12.0?classifier=sources", + "file_name":"resource-system-rest-api-3.12.0-sources.jar", + "size":8905, + "date":"2017-07-02T17:31:54+00:00", + "md5":null, + "sha1":"f14eb06e8bc75b1cbcdb29fe59ec931994a5b0ea", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:54+00:00", + "size":8905, + "sha1":"f14eb06e8bc75b1cbcdb29fe59ec931994a5b0ea", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-rest-api/3.12.0/resource-system-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-rest-api@3.12.0", + "file_name":"resource-system-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-init@3.12.0", + "file_name":"resource-system-init-3.12.0.jar", + "size":201826, + "date":"2017-07-02T17:31:25+00:00", + "md5":null, + "sha1":"e8792695ad2538a177e6ceba7adf163e379d84ce", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:25+00:00", + "size":201826, + "sha1":"e8792695ad2538a177e6ceba7adf163e379d84ce", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-init@3.12.0", + "file_name":"resource-system-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-init@3.12.0?classifier=sources", + "file_name":"resource-system-init-3.12.0-sources.jar", + "size":202757, + "date":"2017-07-02T17:31:50+00:00", + "md5":null, + "sha1":"a6d4ebd3c2466b5d9298808e748a64dbfab93a63", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:50+00:00", + "size":202757, + "sha1":"a6d4ebd3c2466b5d9298808e748a64dbfab93a63", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-init/3.12.0/resource-system-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-init@3.12.0", + "file_name":"resource-system-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-entities@3.12.0", + "file_name":"resource-system-entities-3.12.0.jar", + "size":5740, + "date":"2017-07-02T17:31:43+00:00", + "md5":null, + "sha1":"0b5f564f28989d9239e470fa8b5b0d3773ec14d8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:43+00:00", + "size":5740, + "sha1":"0b5f564f28989d9239e470fa8b5b0d3773ec14d8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-entities@3.12.0", + "file_name":"resource-system-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-entities@3.12.0?classifier=sources", + "file_name":"resource-system-entities-3.12.0-sources.jar", + "size":6686, + "date":"2017-07-02T17:31:49+00:00", + "md5":null, + "sha1":"4a1648ec94c9948537ef29cbb7b051299b380754", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:49+00:00", + "size":6686, + "sha1":"4a1648ec94c9948537ef29cbb7b051299b380754", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-entities/3.12.0/resource-system-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-entities@3.12.0", + "file_name":"resource-system-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-domain@3.12.0", + "file_name":"resource-system-domain-3.12.0.jar", + "size":9680, + "date":"2017-07-02T17:31:52+00:00", + "md5":null, + "sha1":"eca43be10e27abbb270bb997cf53cbfc329a8929", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:52+00:00", + "size":9680, + "sha1":"eca43be10e27abbb270bb997cf53cbfc329a8929", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-domain@3.12.0", + "file_name":"resource-system-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-domain@3.12.0?classifier=sources", + "file_name":"resource-system-domain-3.12.0-sources.jar", + "size":8140, + "date":"2017-07-02T17:31:51+00:00", + "md5":null, + "sha1":"8d40b2c42c99792d92c83c3e505a44f1458fc450", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:51+00:00", + "size":8140, + "sha1":"8d40b2c42c99792d92c83c3e505a44f1458fc450", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-domain/3.12.0/resource-system-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-domain@3.12.0", + "file_name":"resource-system-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-business@3.12.0", + "file_name":"resource-system-business-3.12.0.jar", + "size":12098, + "date":"2017-07-02T17:31:37+00:00", + "md5":null, + "sha1":"535eb60dc7df6e888416fe10223e451d916f421e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:31:37+00:00", + "size":12098, + "sha1":"535eb60dc7df6e888416fe10223e451d916f421e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-business@3.12.0", + "file_name":"resource-system-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-business@3.12.0?classifier=sources", + "file_name":"resource-system-business-3.12.0-sources.jar", + "size":12909, + "date":"2017-07-02T17:31:45+00:00", + "md5":null, + "sha1":"2de3bb93f283bf73df1d863d026ea109917b1b33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-system-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:31:45+00:00", + "size":12909, + "sha1":"2de3bb93f283bf73df1d863d026ea109917b1b33", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-system-business/3.12.0/resource-system-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-system-business@3.12.0", + "file_name":"resource-system-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T17:31:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-web@3.12.0?type=war", + "file_name":"resource-bundles-rest-web-3.12.0.war", + "size":42059244, + "date":"2017-07-02T16:58:51+00:00", + "md5":null, + "sha1":"bfe0e3ec2a83460cf353248afc00b9fe1827a92e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:58:51+00:00", + "size":42059244, + "sha1":"bfe0e3ec2a83460cf353248afc00b9fe1827a92e", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-web@3.12.0", + "file_name":"resource-bundles-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-web@3.12.0?classifier=sources", + "file_name":"resource-bundles-rest-web-3.12.0-sources.jar", + "size":16166, + "date":"2017-07-02T16:58:55+00:00", + "md5":null, + "sha1":"bfc09d8d03e2120fd4bd19c2d282771c2753ba33", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:55+00:00", + "size":16166, + "sha1":"bfc09d8d03e2120fd4bd19c2d282771c2753ba33", + "name":null, + "description":"Rest web application that provides rest api for access to resource bundles for I18N applications", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-web/3.12.0/resource-bundles-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-web@3.12.0", + "file_name":"resource-bundles-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-client@3.12.0", + "file_name":"resource-bundles-rest-client-3.12.0.jar", + "size":3259, + "date":"2017-07-02T16:59:02+00:00", + "md5":null, + "sha1":"5ff6cbfcc2b0d81d9e67f3af0c2196d5f508e75f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:02+00:00", + "size":3259, + "sha1":"5ff6cbfcc2b0d81d9e67f3af0c2196d5f508e75f", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-client@3.12.0", + "file_name":"resource-bundles-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:59:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-client@3.12.0?classifier=sources", + "file_name":"resource-bundles-rest-client-3.12.0-sources.jar", + "size":3786, + "date":"2017-07-02T16:57:44+00:00", + "md5":null, + "sha1":"24aa031ada8cfcf17fa24125738537ab24274de7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:44+00:00", + "size":3786, + "sha1":"24aa031ada8cfcf17fa24125738537ab24274de7", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-client/3.12.0/resource-bundles-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-client@3.12.0", + "file_name":"resource-bundles-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:57:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-api@3.12.0", + "file_name":"resource-bundles-rest-api-3.12.0.jar", + "size":5020, + "date":"2017-07-02T16:58:02+00:00", + "md5":null, + "sha1":"5a84eb31c35710f3503516fcea4b3a2eacd65f66", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":5020, + "sha1":"5a84eb31c35710f3503516fcea4b3a2eacd65f66", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-api@3.12.0", + "file_name":"resource-bundles-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-api@3.12.0?classifier=sources", + "file_name":"resource-bundles-rest-api-3.12.0-sources.jar", + "size":5669, + "date":"2017-07-02T16:59:04+00:00", + "md5":null, + "sha1":"6f72dfa7993e990da5e4a91a45f707b96e0027e0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:04+00:00", + "size":5669, + "sha1":"6f72dfa7993e990da5e4a91a45f707b96e0027e0", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-rest-api/3.12.0/resource-bundles-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-rest-api@3.12.0", + "file_name":"resource-bundles-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:59:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-init@3.12.0", + "file_name":"resource-bundles-init-3.12.0.jar", + "size":47591, + "date":"2017-07-02T16:58:00+00:00", + "md5":null, + "sha1":"3f965cf68ba5c4addddc49f64219fd6c5ac3bedf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:00+00:00", + "size":47591, + "sha1":"3f965cf68ba5c4addddc49f64219fd6c5ac3bedf", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-init@3.12.0", + "file_name":"resource-bundles-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-init@3.12.0?classifier=sources", + "file_name":"resource-bundles-init-3.12.0-sources.jar", + "size":48596, + "date":"2017-07-02T16:58:57+00:00", + "md5":null, + "sha1":"8ebe996206fa4977291ac2b7c676083116725082", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:57+00:00", + "size":48596, + "sha1":"8ebe996206fa4977291ac2b7c676083116725082", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-init/3.12.0/resource-bundles-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-init@3.12.0", + "file_name":"resource-bundles-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-entities@3.12.0", + "file_name":"resource-bundles-entities-3.12.0.jar", + "size":26131, + "date":"2017-07-02T16:59:08+00:00", + "md5":null, + "sha1":"96c7fade6a0aef5cc08c9c2b71ba3f66b5cf018d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:08+00:00", + "size":26131, + "sha1":"96c7fade6a0aef5cc08c9c2b71ba3f66b5cf018d", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-entities@3.12.0", + "file_name":"resource-bundles-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:59:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-entities@3.12.0?classifier=sources", + "file_name":"resource-bundles-entities-3.12.0-sources.jar", + "size":24620, + "date":"2017-07-02T16:59:05+00:00", + "md5":null, + "sha1":"f111ee185037456d373ff5987308a8166de7b0f1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:05+00:00", + "size":24620, + "sha1":"f111ee185037456d373ff5987308a8166de7b0f1", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-entities/3.12.0/resource-bundles-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-entities@3.12.0", + "file_name":"resource-bundles-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:59:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-domain@3.12.0", + "file_name":"resource-bundles-domain-3.12.0.jar", + "size":28964, + "date":"2017-07-02T16:58:54+00:00", + "md5":null, + "sha1":"01e05aeaa4e64674f4072293e613d1bb68428724", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:54+00:00", + "size":28964, + "sha1":"01e05aeaa4e64674f4072293e613d1bb68428724", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-domain@3.12.0", + "file_name":"resource-bundles-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-domain@3.12.0?classifier=sources", + "file_name":"resource-bundles-domain-3.12.0-sources.jar", + "size":24753, + "date":"2017-07-02T16:58:02+00:00", + "md5":null, + "sha1":"eff9576524c2e9d6ab3f1be6d20028fa18fae256", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:02+00:00", + "size":24753, + "sha1":"eff9576524c2e9d6ab3f1be6d20028fa18fae256", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-domain/3.12.0/resource-bundles-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-domain@3.12.0", + "file_name":"resource-bundles-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-business@3.12.0", + "file_name":"resource-bundles-business-3.12.0.jar", + "size":28383, + "date":"2017-07-02T16:58:56+00:00", + "md5":null, + "sha1":"7d7ce8861441afdb861a3e0331efee3f21e32a7b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":28383, + "sha1":"7d7ce8861441afdb861a3e0331efee3f21e32a7b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-business@3.12.0", + "file_name":"resource-bundles-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-business@3.12.0?classifier=sources", + "file_name":"resource-bundles-business-3.12.0-sources.jar", + "size":34786, + "date":"2017-07-02T16:58:56+00:00", + "md5":null, + "sha1":"045c1dfa673a9666b29c3e97a91c7793dad34f88", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"resource-bundles-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:58:56+00:00", + "size":34786, + "sha1":"045c1dfa673a9666b29c3e97a91c7793dad34f88", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/resource-bundles-business/3.12.0/resource-bundles-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/resource-bundles-business@3.12.0", + "file_name":"resource-bundles-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:58:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/domain-api@3.29.0", + "file_name":"domain-api-3.29.0.jar", + "size":14180, + "date":"2017-07-02T14:50:08+00:00", + "md5":null, + "sha1":"bc5584a8251e7ca760d4382cd6dfecdf30189ac4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:08+00:00", + "size":14180, + "sha1":"bc5584a8251e7ca760d4382cd6dfecdf30189ac4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/domain-api@3.29.0", + "file_name":"domain-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/domain-api@3.29.0?classifier=sources", + "file_name":"domain-api-3.29.0-sources.jar", + "size":12405, + "date":"2017-07-02T14:50:04+00:00", + "md5":null, + "sha1":"945f4974d6d4a9b3bc9e774f0898d0162707ef78", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"domain-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:04+00:00", + "size":12405, + "sha1":"945f4974d6d4a9b3bc9e774f0898d0162707ef78", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/domain-api/3.29.0/domain-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/domain-api@3.29.0", + "file_name":"domain-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-usertype@3.29.0", + "file_name":"data-usertype-3.29.0.jar", + "size":4404, + "date":"2017-07-02T14:50:02+00:00", + "md5":null, + "sha1":"62b198d4ae9b2ce53d3f224643226ab3e738db7e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:02+00:00", + "size":4404, + "sha1":"62b198d4ae9b2ce53d3f224643226ab3e738db7e", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-usertype@3.29.0", + "file_name":"data-usertype-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-usertype@3.29.0?classifier=sources", + "file_name":"data-usertype-3.29.0-sources.jar", + "size":4257, + "date":"2017-07-02T14:49:55+00:00", + "md5":null, + "sha1":"ce6acfd2547ac6e70b42b5d62a8153abd5257fe9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-usertype", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":4257, + "sha1":"ce6acfd2547ac6e70b42b5d62a8153abd5257fe9", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-usertype/3.29.0/data-usertype-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-usertype@3.29.0", + "file_name":"data-usertype-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:49:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-initialization@3.29.0", + "file_name":"data-initialization-3.29.0.jar", + "size":7552, + "date":"2017-07-02T14:50:11+00:00", + "md5":null, + "sha1":"4e8e954f917286b219d2ab5bfe70da75eca59f15", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:11+00:00", + "size":7552, + "sha1":"4e8e954f917286b219d2ab5bfe70da75eca59f15", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-initialization@3.29.0", + "file_name":"data-initialization-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-initialization@3.29.0?classifier=sources", + "file_name":"data-initialization-3.29.0-sources.jar", + "size":5899, + "date":"2017-07-02T14:50:01+00:00", + "md5":null, + "sha1":"d31ea5666965e1553ad39c73bf7e3e8d8d1dc014", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-initialization", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:01+00:00", + "size":5899, + "sha1":"d31ea5666965e1553ad39c73bf7e3e8d8d1dc014", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-initialization/3.29.0/data-initialization-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-initialization@3.29.0", + "file_name":"data-initialization-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-api/3.29.0/data-api-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-api@3.29.0", + "file_name":"data-api-3.29.0.jar", + "size":36865, + "date":"2017-07-02T14:50:15+00:00", + "md5":null, + "sha1":"5881f8fdab27496c937f5f1fe4d48ac2c1bfa059", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:15+00:00", + "size":36865, + "sha1":"5881f8fdab27496c937f5f1fe4d48ac2c1bfa059", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-api/3.29.0/data-api-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-api/3.29.0/data-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-api@3.29.0", + "file_name":"data-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/data-api/3.29.0/data-api-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-api@3.29.0?classifier=sources", + "file_name":"data-api-3.29.0-sources.jar", + "size":36437, + "date":"2017-07-02T14:49:55+00:00", + "md5":null, + "sha1":"4e4be804436fb52d2aab9534ee70f91c5b33fd62", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"data-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:49:55+00:00", + "size":36437, + "sha1":"4e4be804436fb52d2aab9534ee70f91c5b33fd62", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/data-api/3.29.0/data-api-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/data-api/3.29.0/data-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/data-api@3.29.0", + "file_name":"data-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:49:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/business-api/3.29.0/business-api-3.29.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/business-api@3.29.0", + "file_name":"business-api-3.29.0.jar", + "size":8340, + "date":"2017-07-02T14:50:10+00:00", + "md5":null, + "sha1":"236f33f4a275d733385bd01acd3eef06c1e209d2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:50:10+00:00", + "size":8340, + "sha1":"236f33f4a275d733385bd01acd3eef06c1e209d2", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/business-api/3.29.0/business-api-3.29.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/business-api/3.29.0/business-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/business-api@3.29.0", + "file_name":"business-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/business-api/3.29.0/business-api-3.29.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/business-api@3.29.0?classifier=sources", + "file_name":"business-api-3.29.0-sources.jar", + "size":8621, + "date":"2017-07-02T14:50:23+00:00", + "md5":null, + "sha1":"94d5b0852a90927dcaf88e7ccc5ed6d5787ea611", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"business-api", + "version":"3.29.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:50:23+00:00", + "size":8621, + "sha1":"94d5b0852a90927dcaf88e7ccc5ed6d5787ea611", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/business-api/3.29.0/business-api-3.29.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/business-api/3.29.0/business-api-3.29.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/business-api@3.29.0", + "file_name":"business-api-3.29.0.pom", + "size":0, + "date":"2017-07-02T14:50:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-web@3.12.0?type=war", + "file_name":"address-book-rest-web-3.12.0.war", + "size":47183472, + "date":"2017-07-02T16:49:41+00:00", + "md5":null, + "sha1":"9c4fa741527bd97f46bf809edd688f03078e01c8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T16:49:41+00:00", + "size":47183472, + "sha1":"9c4fa741527bd97f46bf809edd688f03078e01c8", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-web@3.12.0", + "file_name":"address-book-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:49:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-web@3.12.0?classifier=sources", + "file_name":"address-book-rest-web-3.12.0-sources.jar", + "size":2746478, + "date":"2017-07-02T16:48:40+00:00", + "md5":null, + "sha1":"5391cb173c6a4727cdf761d8c9e10fe13f1718cc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-web", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:40+00:00", + "size":2746478, + "sha1":"5391cb173c6a4727cdf761d8c9e10fe13f1718cc", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-web/3.12.0/address-book-rest-web-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-web@3.12.0", + "file_name":"address-book-rest-web-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-client@3.12.0", + "file_name":"address-book-rest-client-3.12.0.jar", + "size":3248, + "date":"2017-07-02T16:48:25+00:00", + "md5":null, + "sha1":"e2a52504a40bfb4123fb2c725b210f89a1524523", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:25+00:00", + "size":3248, + "sha1":"e2a52504a40bfb4123fb2c725b210f89a1524523", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-client@3.12.0", + "file_name":"address-book-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-client@3.12.0?classifier=sources", + "file_name":"address-book-rest-client-3.12.0-sources.jar", + "size":3684, + "date":"2017-07-02T16:50:08+00:00", + "md5":null, + "sha1":"3ffa66da8e880ebf41d48e19fa2970abd38ce955", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-client", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:08+00:00", + "size":3684, + "sha1":"3ffa66da8e880ebf41d48e19fa2970abd38ce955", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-client/3.12.0/address-book-rest-client-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-client@3.12.0", + "file_name":"address-book-rest-client-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:50:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-api@3.12.0", + "file_name":"address-book-rest-api-3.12.0.jar", + "size":14157, + "date":"2017-07-02T16:48:34+00:00", + "md5":null, + "sha1":"186700ebe761f16a4b090a62edc856bae08a665b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:34+00:00", + "size":14157, + "sha1":"186700ebe761f16a4b090a62edc856bae08a665b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-api@3.12.0", + "file_name":"address-book-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-api@3.12.0?classifier=sources", + "file_name":"address-book-rest-api-3.12.0-sources.jar", + "size":16222, + "date":"2017-07-02T16:50:00+00:00", + "md5":null, + "sha1":"cd134296c2559193556b37b98a834ebb96cec831", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-rest-api", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:00+00:00", + "size":16222, + "sha1":"cd134296c2559193556b37b98a834ebb96cec831", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-rest-api/3.12.0/address-book-rest-api-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-rest-api@3.12.0", + "file_name":"address-book-rest-api-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:50:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-init@3.12.0", + "file_name":"address-book-init-3.12.0.jar", + "size":2858244, + "date":"2017-07-02T16:50:07+00:00", + "md5":null, + "sha1":"722aed6300e75613375e4e26aa29cc3a41d82341", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:07+00:00", + "size":2858244, + "sha1":"722aed6300e75613375e4e26aa29cc3a41d82341", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-init@3.12.0", + "file_name":"address-book-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:50:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-init@3.12.0?classifier=sources", + "file_name":"address-book-init-3.12.0-sources.jar", + "size":2859154, + "date":"2017-07-02T16:49:47+00:00", + "md5":null, + "sha1":"297be0b55daab34912fcd5b84b039d04e4cdc62e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-init", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:49:47+00:00", + "size":2859154, + "sha1":"297be0b55daab34912fcd5b84b039d04e4cdc62e", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-init/3.12.0/address-book-init-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-init@3.12.0", + "file_name":"address-book-init-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:49:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-entities@3.12.0", + "file_name":"address-book-entities-3.12.0.jar", + "size":372089, + "date":"2017-07-02T16:50:01+00:00", + "md5":null, + "sha1":"abb54d1954d2f545b71652e9f557c02d419205e4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:50:01+00:00", + "size":372089, + "sha1":"abb54d1954d2f545b71652e9f557c02d419205e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-entities@3.12.0", + "file_name":"address-book-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:50:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-entities@3.12.0?classifier=sources", + "file_name":"address-book-entities-3.12.0-sources.jar", + "size":375358, + "date":"2017-07-02T16:48:42+00:00", + "md5":null, + "sha1":"a0f3bb83e79b46da50ac25ecb3dee89c22f12759", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-entities", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:42+00:00", + "size":375358, + "sha1":"a0f3bb83e79b46da50ac25ecb3dee89c22f12759", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-entities/3.12.0/address-book-entities-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-entities@3.12.0", + "file_name":"address-book-entities-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-domain@3.12.0", + "file_name":"address-book-domain-3.12.0.jar", + "size":34743, + "date":"2017-07-02T16:48:29+00:00", + "md5":null, + "sha1":"c6a579e4c4cd415de4f3c5671856dcc0995fb83c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:29+00:00", + "size":34743, + "sha1":"c6a579e4c4cd415de4f3c5671856dcc0995fb83c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-domain@3.12.0", + "file_name":"address-book-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-domain@3.12.0?classifier=sources", + "file_name":"address-book-domain-3.12.0-sources.jar", + "size":28377, + "date":"2017-07-02T16:48:30+00:00", + "md5":null, + "sha1":"2715309fb5f3921c0354446540c2b34393990d30", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-domain", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:48:30+00:00", + "size":28377, + "sha1":"2715309fb5f3921c0354446540c2b34393990d30", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-domain/3.12.0/address-book-domain-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-domain@3.12.0", + "file_name":"address-book-domain-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-business@3.12.0", + "file_name":"address-book-business-3.12.0.jar", + "size":46925, + "date":"2017-07-02T16:48:35+00:00", + "md5":null, + "sha1":"79424b57d1e7f5a239cc070ace119d83f5f5e649", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:48:35+00:00", + "size":46925, + "sha1":"79424b57d1e7f5a239cc070ace119d83f5f5e649", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-business@3.12.0", + "file_name":"address-book-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:48:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-business@3.12.0?classifier=sources", + "file_name":"address-book-business-3.12.0-sources.jar", + "size":37098, + "date":"2017-07-02T16:50:02+00:00", + "md5":null, + "sha1":"a6377c75fd5d44dbad43e0f736fdbe048f90e294", + "sha256":null, + "priority":0, + "data":{ + "group_id":"de.alpharogroup", + "artifact_id":"address-book-business", + "version":"3.12.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:50:02+00:00", + "size":37098, + "sha1":"a6377c75fd5d44dbad43e0f736fdbe048f90e294", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/de/alpharogroup/address-book-business/3.12.0/address-book-business-3.12.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/de.alpharogroup/address-book-business@3.12.0", + "file_name":"address-book-business-3.12.0.pom", + "size":0, + "date":"2017-07-02T16:50:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-twitter@0.5.1?type=aar", + "file_name":"emoji-twitter-0.5.1.aar", + "size":2234323, + "date":"2017-07-02T14:39:31+00:00", + "md5":null, + "sha1":"12a18ca9c7a45c937c1b8d74f7486e8efde3a710", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:39:31+00:00", + "size":2234323, + "sha1":"12a18ca9c7a45c937c1b8d74f7486e8efde3a710", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-twitter@0.5.1", + "file_name":"emoji-twitter-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:39:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-twitter@0.5.1?classifier=sources", + "file_name":"emoji-twitter-0.5.1-sources.jar", + "size":20264, + "date":"2017-07-02T14:39:51+00:00", + "md5":null, + "sha1":"01872003ae17a543a44fae4982ab0af8d1d6e189", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-twitter", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:39:51+00:00", + "size":20264, + "sha1":"01872003ae17a543a44fae4982ab0af8d1d6e189", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-twitter/0.5.1/emoji-twitter-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-twitter@0.5.1", + "file_name":"emoji-twitter-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:39:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.1?type=aar", + "file_name":"emoji-one-0.5.1.aar", + "size":3010384, + "date":"2017-07-02T14:37:44+00:00", + "md5":null, + "sha1":"538ca8598d9e818afca011226c89be80ef1f82e0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:37:44+00:00", + "size":3010384, + "sha1":"538ca8598d9e818afca011226c89be80ef1f82e0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.1", + "file_name":"emoji-one-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:37:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.1?classifier=sources", + "file_name":"emoji-one-0.5.1-sources.jar", + "size":20003, + "date":"2017-07-02T14:38:03+00:00", + "md5":null, + "sha1":"b222ff796e010f0fa2801804d4cc66b5872ebf5a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:03+00:00", + "size":20003, + "sha1":"b222ff796e010f0fa2801804d4cc66b5872ebf5a", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.1/emoji-one-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.1", + "file_name":"emoji-one-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:38:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.0?type=aar", + "file_name":"emoji-one-0.5.0.aar", + "size":1906344, + "date":"2017-07-02T13:49:38+00:00", + "md5":null, + "sha1":"afe5bcbff5b2a5fd789a50a30e069464793ea3b8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:38+00:00", + "size":1906344, + "sha1":"afe5bcbff5b2a5fd789a50a30e069464793ea3b8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.0", + "file_name":"emoji-one-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:49:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.0?classifier=sources", + "file_name":"emoji-one-0.5.0-sources.jar", + "size":16701, + "date":"2017-07-02T13:49:44+00:00", + "md5":null, + "sha1":"826a3da4947eec1d6305464bc0564f711fdd697b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-one", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:44+00:00", + "size":16701, + "sha1":"826a3da4947eec1d6305464bc0564f711fdd697b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-one/0.5.0/emoji-one-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-one@0.5.0", + "file_name":"emoji-one-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:49:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.1?type=aar", + "file_name":"emoji-ios-0.5.1.aar", + "size":4961132, + "date":"2017-07-02T14:38:42+00:00", + "md5":null, + "sha1":"f30fcb1be4210cd5eb9e25a5c7b01d40c385025d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:42+00:00", + "size":4961132, + "sha1":"f30fcb1be4210cd5eb9e25a5c7b01d40c385025d", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.1", + "file_name":"emoji-ios-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:38:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.1?classifier=sources", + "file_name":"emoji-ios-0.5.1-sources.jar", + "size":19917, + "date":"2017-07-02T14:38:51+00:00", + "md5":null, + "sha1":"e8b8aa2d8dab43da2084c02ea679caf83c47dfde", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:51+00:00", + "size":19917, + "sha1":"e8b8aa2d8dab43da2084c02ea679caf83c47dfde", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.1/emoji-ios-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.1", + "file_name":"emoji-ios-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:38:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.0?type=aar", + "file_name":"emoji-ios-0.5.0.aar", + "size":4961730, + "date":"2017-07-02T13:49:19+00:00", + "md5":null, + "sha1":"c4d710cc00d69ed6fe87092df277fcbdab7ba134", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:49:19+00:00", + "size":4961730, + "sha1":"c4d710cc00d69ed6fe87092df277fcbdab7ba134", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.0", + "file_name":"emoji-ios-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:49:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.0?classifier=sources", + "file_name":"emoji-ios-0.5.0-sources.jar", + "size":19937, + "date":"2017-07-02T13:49:23+00:00", + "md5":null, + "sha1":"24259cb69a11d621a2240079175bf87150071ed8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-ios", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:23+00:00", + "size":19937, + "sha1":"24259cb69a11d621a2240079175bf87150071ed8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-ios/0.5.0/emoji-ios-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-ios@0.5.0", + "file_name":"emoji-ios-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:49:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-google@0.5.1?type=aar", + "file_name":"emoji-google-0.5.1.aar", + "size":3308434, + "date":"2017-07-02T14:25:51+00:00", + "md5":null, + "sha1":"13ff88806146d5b6afc1deafd8f05ec45a3e85d0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:51+00:00", + "size":3308434, + "sha1":"13ff88806146d5b6afc1deafd8f05ec45a3e85d0", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-google@0.5.1", + "file_name":"emoji-google-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:25:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-google@0.5.1?classifier=sources", + "file_name":"emoji-google-0.5.1-sources.jar", + "size":20011, + "date":"2017-07-02T14:26:15+00:00", + "md5":null, + "sha1":"1a3adc7a0b19c01f40988ff613e2e0f6f9d8a9a8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji-google", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:26:15+00:00", + "size":20011, + "sha1":"1a3adc7a0b19c01f40988ff613e2e0f6f9d8a9a8", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji-google/0.5.1/emoji-google-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji-google@0.5.1", + "file_name":"emoji-google-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:26:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji/0.5.1/emoji-0.5.1.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.1?type=aar", + "file_name":"emoji-0.5.1.aar", + "size":74348, + "date":"2017-07-02T14:25:23+00:00", + "md5":null, + "sha1":"46d1ef2e5f3a09b852560b8845ef2f30e47a8b2b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:25:23+00:00", + "size":74348, + "sha1":"46d1ef2e5f3a09b852560b8845ef2f30e47a8b2b", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.1/emoji-0.5.1.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.1/emoji-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.1", + "file_name":"emoji-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:25:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji/0.5.1/emoji-0.5.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.1?classifier=sources", + "file_name":"emoji-0.5.1-sources.jar", + "size":29227, + "date":"2017-07-02T14:25:30+00:00", + "md5":null, + "sha1":"52a6d8f21e60b8e1eefa99ce726159c1f28d6df9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:25:30+00:00", + "size":29227, + "sha1":"52a6d8f21e60b8e1eefa99ce726159c1f28d6df9", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.1/emoji-0.5.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.1/emoji-0.5.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.1", + "file_name":"emoji-0.5.1.pom", + "size":0, + "date":"2017-07-02T14:25:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji/0.5.0/emoji-0.5.0.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.0?type=aar", + "file_name":"emoji-0.5.0.aar", + "size":56329, + "date":"2017-07-02T13:48:34+00:00", + "md5":null, + "sha1":"4b91c9ceb4ead9258ab3916ccfd516e1f2e3d204", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:48:34+00:00", + "size":56329, + "sha1":"4b91c9ceb4ead9258ab3916ccfd516e1f2e3d204", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.0/emoji-0.5.0.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.0/emoji-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.0", + "file_name":"emoji-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:48:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/vanniktech/emoji/0.5.0/emoji-0.5.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.0?classifier=sources", + "file_name":"emoji-0.5.0-sources.jar", + "size":20334, + "date":"2017-07-02T13:48:41+00:00", + "md5":null, + "sha1":"4bec2ab1443afc239d4c3a853bc3cfc987e67942", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.vanniktech", + "artifact_id":"emoji", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:48:41+00:00", + "size":20334, + "sha1":"4bec2ab1443afc239d4c3a853bc3cfc987e67942", + "name":"Emoji", + "description":"A simple library to add Emoji support to your Android Application", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.0/emoji-0.5.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/vanniktech/emoji/0.5.0/emoji-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.vanniktech/emoji@0.5.0", + "file_name":"emoji-0.5.0.pom", + "size":0, + "date":"2017-07-02T13:48:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/udojava/EvalEx/1.7/EvalEx-1.7.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.udojava/EvalEx@1.7", + "file_name":"EvalEx-1.7.jar", + "size":56514, + "date":"2017-07-02T12:57:28+00:00", + "md5":null, + "sha1":"a97e9ee632a1f25fc6ea9b044be14bd766d1c84e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:57:28+00:00", + "size":56514, + "sha1":"a97e9ee632a1f25fc6ea9b044be14bd766d1c84e", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/udojava/EvalEx/1.7/EvalEx-1.7.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/udojava/EvalEx/1.7/EvalEx-1.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.udojava/EvalEx@1.7", + "file_name":"EvalEx-1.7.pom", + "size":0, + "date":"2017-07-02T12:57:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/udojava/EvalEx/1.7/EvalEx-1.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.udojava/EvalEx@1.7?classifier=sources", + "file_name":"EvalEx-1.7-sources.jar", + "size":11834, + "date":"2017-07-02T12:57:29+00:00", + "md5":null, + "sha1":"c9d45644a76d79c40aac0cc3d8a10284e1f19c5b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.udojava", + "artifact_id":"EvalEx", + "version":"1.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:57:29+00:00", + "size":11834, + "sha1":"c9d45644a76d79c40aac0cc3d8a10284e1f19c5b", + "name":"EvalEx", + "description":"EvalEx is a handy expression evaluator for Java, that allows to evaluate simple mathematical and boolean expressions.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/udojava/EvalEx/1.7/EvalEx-1.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/udojava/EvalEx/1.7/EvalEx-1.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.udojava/EvalEx@1.7", + "file_name":"EvalEx-1.7.pom", + "size":0, + "date":"2017-07-02T12:57:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy-dropwizard-metrics-listener@0.10.1", + "file_name":"pushy-dropwizard-metrics-listener-0.10.1.jar", + "size":6064, + "date":"2017-07-02T16:32:29+00:00", + "md5":null, + "sha1":"564734c77ec889bb42a9ab5c6a703a8236adfe09", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:29+00:00", + "size":6064, + "sha1":"564734c77ec889bb42a9ab5c6a703a8236adfe09", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy-dropwizard-metrics-listener@0.10.1", + "file_name":"pushy-dropwizard-metrics-listener-0.10.1.pom", + "size":0, + "date":"2017-07-02T16:32:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy-dropwizard-metrics-listener@0.10.1?classifier=sources", + "file_name":"pushy-dropwizard-metrics-listener-0.10.1-sources.jar", + "size":6010, + "date":"2017-07-02T16:32:31+00:00", + "md5":null, + "sha1":"e3d33f5b0b40ec3a113213763b304199591a4335", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.turo", + "artifact_id":"pushy-dropwizard-metrics-listener", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:31+00:00", + "size":6010, + "sha1":"e3d33f5b0b40ec3a113213763b304199591a4335", + "name":"Dropwizard Metrics listener for Pushy", + "description":"A metrics listener for Pushy that uses the Dropwizard Metrics library for gathering and reporting metrics.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/turo/pushy-dropwizard-metrics-listener/0.10.1/pushy-dropwizard-metrics-listener-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy-dropwizard-metrics-listener@0.10.1", + "file_name":"pushy-dropwizard-metrics-listener-0.10.1.pom", + "size":0, + "date":"2017-07-02T16:32:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/turo/pushy/0.10.1/pushy-0.10.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy@0.10.1", + "file_name":"pushy-0.10.1.jar", + "size":102002, + "date":"2017-07-02T16:32:16+00:00", + "md5":null, + "sha1":"0638539fe9dea85881b98ebd71aa9709ab7295b8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:32:16+00:00", + "size":102002, + "sha1":"0638539fe9dea85881b98ebd71aa9709ab7295b8", + "name":"Pushy", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/turo/pushy/0.10.1/pushy-0.10.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/turo/pushy/0.10.1/pushy-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy@0.10.1", + "file_name":"pushy-0.10.1.pom", + "size":0, + "date":"2017-07-02T16:32:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/turo/pushy/0.10.1/pushy-0.10.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy@0.10.1?classifier=sources", + "file_name":"pushy-0.10.1-sources.jar", + "size":88362, + "date":"2017-07-02T16:32:18+00:00", + "md5":null, + "sha1":"94498e475f442ab1fd054818a6cd1fbc8339a677", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.turo", + "artifact_id":"pushy", + "version":"0.10.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:32:18+00:00", + "size":88362, + "sha1":"94498e475f442ab1fd054818a6cd1fbc8339a677", + "name":"Pushy", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/turo/pushy/0.10.1/pushy-0.10.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/turo/pushy/0.10.1/pushy-0.10.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.turo/pushy@0.10.1", + "file_name":"pushy-0.10.1.pom", + "size":0, + "date":"2017-07-02T16:32:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/thejholmes/russound/mock/1.2.0/mock-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/mock@1.2.0", + "file_name":"mock-1.2.0.jar", + "size":26081, + "date":"2017-06-30T23:55:27+00:00", + "md5":null, + "sha1":"e49013e192379968fe07f14d945c3842e0ae6b4e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:27+00:00", + "size":26081, + "sha1":"e49013e192379968fe07f14d945c3842e0ae6b4e", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/thejholmes/russound/mock/1.2.0/mock-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/thejholmes/russound/mock/1.2.0/mock-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/mock@1.2.0", + "file_name":"mock-1.2.0.pom", + "size":0, + "date":"2017-06-30T23:55:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/thejholmes/russound/mock/1.2.0/mock-1.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/mock@1.2.0?classifier=sources", + "file_name":"mock-1.2.0-sources.jar", + "size":3808, + "date":"2017-06-30T23:55:43+00:00", + "md5":null, + "sha1":"43ebd93251857d20a81b05d3d43333fa824593d5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.thejholmes.russound", + "artifact_id":"mock", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:43+00:00", + "size":3808, + "sha1":"43ebd93251857d20a81b05d3d43333fa824593d5", + "name":"Russound Matrix Mock Receiver", + "description":"An API that lets create a mock receiver to test your instance against.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/thejholmes/russound/mock/1.2.0/mock-1.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/thejholmes/russound/mock/1.2.0/mock-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/mock@1.2.0", + "file_name":"mock-1.2.0.pom", + "size":0, + "date":"2017-06-30T23:55:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/thejholmes/russound/api/1.2.0/api-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/api@1.2.0", + "file_name":"api-1.2.0.jar", + "size":59559, + "date":"2017-06-30T23:55:28+00:00", + "md5":null, + "sha1":"ccf97b601be7c7a0ea6fe39f375bf34890a8868d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-06-30T23:55:28+00:00", + "size":59559, + "sha1":"ccf97b601be7c7a0ea6fe39f375bf34890a8868d", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/thejholmes/russound/api/1.2.0/api-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/thejholmes/russound/api/1.2.0/api-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/api@1.2.0", + "file_name":"api-1.2.0.pom", + "size":0, + "date":"2017-06-30T23:55:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/thejholmes/russound/api/1.2.0/api-1.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/api@1.2.0?classifier=sources", + "file_name":"api-1.2.0-sources.jar", + "size":10321, + "date":"2017-06-30T23:55:47+00:00", + "md5":null, + "sha1":"8030cdf46d3e99f9408229cafd92c64ca4998352", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.thejholmes.russound", + "artifact_id":"api", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-06-30T23:55:47+00:00", + "size":10321, + "sha1":"8030cdf46d3e99f9408229cafd92c64ca4998352", + "name":"Russound Matrix API", + "description":"An API that lets you control a Russound CAA Matrix over a serial connection.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/thejholmes/russound/api/1.2.0/api-1.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/thejholmes/russound/api/1.2.0/api-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.thejholmes.russound/api@1.2.0", + "file_name":"api-1.2.0.pom", + "size":0, + "date":"2017-06-30T23:55:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/spotify/docker-client/8.8.0/docker-client-8.8.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.spotify/docker-client@8.8.0", + "file_name":"docker-client-8.8.0.jar", + "size":677475, + "date":"2017-07-02T20:04:38+00:00", + "md5":null, + "sha1":"d173d3b3e1375e3ff7a639248187b42482401265", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:04:38+00:00", + "size":677475, + "sha1":"d173d3b3e1375e3ff7a639248187b42482401265", + "name":"docker-client", + "description":"A docker client", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/spotify/docker-client/8.8.0/docker-client-8.8.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/spotify/docker-client/8.8.0/docker-client-8.8.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.spotify/docker-client@8.8.0", + "file_name":"docker-client-8.8.0.pom", + "size":0, + "date":"2017-07-02T20:04:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/spotify/docker-client/8.8.0/docker-client-8.8.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.spotify/docker-client@8.8.0?classifier=sources", + "file_name":"docker-client-8.8.0-sources.jar", + "size":380304, + "date":"2017-07-02T20:05:00+00:00", + "md5":null, + "sha1":"0eaf853246fac2538ffa3e059b9e3ebef3be8e2c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.spotify", + "artifact_id":"docker-client", + "version":"8.8.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:05:00+00:00", + "size":380304, + "sha1":"0eaf853246fac2538ffa3e059b9e3ebef3be8e2c", + "name":"docker-client", + "description":"A docker client", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/spotify/docker-client/8.8.0/docker-client-8.8.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/spotify/docker-client/8.8.0/docker-client-8.8.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.spotify/docker-client@8.8.0", + "file_name":"docker-client-8.8.0.pom", + "size":0, + "date":"2017-07-02T20:05:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.9?type=aar", + "file_name":"shinebutton-0.1.9.aar", + "size":44473, + "date":"2017-07-02T17:49:28+00:00", + "md5":null, + "sha1":"26111ebe89bf0e71068e3ade534015de90035907", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:49:28+00:00", + "size":44473, + "sha1":"26111ebe89bf0e71068e3ade534015de90035907", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.9", + "file_name":"shinebutton-0.1.9.pom", + "size":0, + "date":"2017-07-02T17:49:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.9?classifier=sources", + "file_name":"shinebutton-0.1.9-sources.jar", + "size":9423, + "date":"2017-07-02T17:49:41+00:00", + "md5":null, + "sha1":"3c1e7d805e2a64194e5f3ec3ef8b6929e0610238", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:49:41+00:00", + "size":9423, + "sha1":"3c1e7d805e2a64194e5f3ec3ef8b6929e0610238", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.9/shinebutton-0.1.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.9", + "file_name":"shinebutton-0.1.9.pom", + "size":0, + "date":"2017-07-02T17:49:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.8?type=aar", + "file_name":"shinebutton-0.1.8.aar", + "size":43937, + "date":"2017-07-02T16:25:00+00:00", + "md5":null, + "sha1":"4cbdd29f40cee0fc156f1b74f3b204a3ea599679", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:25:00+00:00", + "size":43937, + "sha1":"4cbdd29f40cee0fc156f1b74f3b204a3ea599679", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.8", + "file_name":"shinebutton-0.1.8.pom", + "size":0, + "date":"2017-07-02T16:25:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.8?classifier=sources", + "file_name":"shinebutton-0.1.8-sources.jar", + "size":9025, + "date":"2017-07-02T16:25:17+00:00", + "md5":null, + "sha1":"534787127d6a90d0852c1f171f97be6ab993ce59", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.sackcentury", + "artifact_id":"shinebutton", + "version":"0.1.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:25:17+00:00", + "size":9025, + "sha1":"534787127d6a90d0852c1f171f97be6ab993ce59", + "name":"ShineButton", + "description":"This is a UI lib for Android. Effects like shining.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/sackcentury/shinebutton/0.1.8/shinebutton-0.1.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.sackcentury/shinebutton@0.1.8", + "file_name":"shinebutton-0.1.8.pom", + "size":0, + "date":"2017-07-02T16:25:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/restfb/restfb/1.43.0/restfb-1.43.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.restfb/restfb@1.43.0", + "file_name":"restfb-1.43.0.jar", + "size":520418, + "date":"2017-07-02T10:42:39+00:00", + "md5":null, + "sha1":"8689d1e66a4800f5945c4d4874996d22f4fe9a25", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:42:39+00:00", + "size":520418, + "sha1":"8689d1e66a4800f5945c4d4874996d22f4fe9a25", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/restfb/restfb/1.43.0/restfb-1.43.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/restfb/restfb/1.43.0/restfb-1.43.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.restfb/restfb@1.43.0", + "file_name":"restfb-1.43.0.pom", + "size":0, + "date":"2017-07-02T10:42:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/restfb/restfb/1.43.0/restfb-1.43.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.restfb/restfb@1.43.0?classifier=sources", + "file_name":"restfb-1.43.0-sources.jar", + "size":598288, + "date":"2017-07-02T10:42:49+00:00", + "md5":null, + "sha1":"e334bc0026db1f4a7c45e5b361fbe03230280c85", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.restfb", + "artifact_id":"restfb", + "version":"1.43.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:42:49+00:00", + "size":598288, + "sha1":"e334bc0026db1f4a7c45e5b361fbe03230280c85", + "name":"RestFB", + "description":"RestFB is a simple and flexible Facebook Graph API client written in Java.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/restfb/restfb/1.43.0/restfb-1.43.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/restfb/restfb/1.43.0/restfb-1.43.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.restfb/restfb@1.43.0", + "file_name":"restfb-1.43.0.pom", + "size":0, + "date":"2017-07-02T10:42:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.12@0.1-M10", + "file_name":"konfig_2.12-0.1-M10.jar", + "size":47144, + "date":"2017-07-02T23:54:22+00:00", + "md5":null, + "sha1":"c6302e04ba5eca4aac68d43213d0d01012170483", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":47144, + "sha1":"c6302e04ba5eca4aac68d43213d0d01012170483", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.12@0.1-M10", + "file_name":"konfig_2.12-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:54:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.12@0.1-M10?classifier=sources", + "file_name":"konfig_2.12-0.1-M10-sources.jar", + "size":2677, + "date":"2017-07-02T23:54:20+00:00", + "md5":null, + "sha1":"a20bbb64ebadd74efe032e99513405dbd5b2fe5f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:20+00:00", + "size":2677, + "sha1":"a20bbb64ebadd74efe032e99513405dbd5b2fe5f", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig_2.12/0.1-M10/konfig_2.12-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.12@0.1-M10", + "file_name":"konfig_2.12-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:54:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.11@0.1-M10", + "file_name":"konfig_2.11-0.1-M10.jar", + "size":61678, + "date":"2017-07-02T23:54:21+00:00", + "md5":null, + "sha1":"9d1070129be73cdbde893e4b92268dedd33da330", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:54:21+00:00", + "size":61678, + "sha1":"9d1070129be73cdbde893e4b92268dedd33da330", + "name":"konfig", + "description":"konfig", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.11@0.1-M10", + "file_name":"konfig_2.11-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:54:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.11@0.1-M10?classifier=sources", + "file_name":"konfig_2.11-0.1-M10-sources.jar", + "size":2677, + "date":"2017-07-02T23:54:22+00:00", + "md5":null, + "sha1":"79e8555e472d3c1e56138fb7f2021cd15fd3a9fb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:54:22+00:00", + "size":2677, + "sha1":"79e8555e472d3c1e56138fb7f2021cd15fd3a9fb", + "name":"konfig", + "description":"konfig", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig_2.11/0.1-M10/konfig_2.11-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig_2.11@0.1-M10", + "file_name":"konfig_2.11-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:54:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.12@0.1-M10", + "file_name":"konfig-twitter-util_2.12-0.1-M10.jar", + "size":5121, + "date":"2017-07-02T23:52:57+00:00", + "md5":null, + "sha1":"72968435a6eb2280e86a2c0c0f0e5b77485bfd56", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:57+00:00", + "size":5121, + "sha1":"72968435a6eb2280e86a2c0c0f0e5b77485bfd56", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.12@0.1-M10", + "file_name":"konfig-twitter-util_2.12-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:52:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.12@0.1-M10?classifier=sources", + "file_name":"konfig-twitter-util_2.12-0.1-M10-sources.jar", + "size":971, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":"13bb85616cdc0b8fa0bc62e39a093804ac796936", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.12", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"13bb85616cdc0b8fa0bc62e39a093804ac796936", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.12/0.1-M10/konfig-twitter-util_2.12-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.12@0.1-M10", + "file_name":"konfig-twitter-util_2.12-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.11@0.1-M10", + "file_name":"konfig-twitter-util_2.11-0.1-M10.jar", + "size":5494, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":"e46e2eb21bc47a85edb9ae309c2837d4310f4ec4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":5494, + "sha1":"e46e2eb21bc47a85edb9ae309c2837d4310f4ec4", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.11@0.1-M10", + "file_name":"konfig-twitter-util_2.11-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.11@0.1-M10?classifier=sources", + "file_name":"konfig-twitter-util_2.11-0.1-M10-sources.jar", + "size":971, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":"4bb834d495501f89c3cd870cb4d6f055ec729afb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.quadas", + "artifact_id":"konfig-twitter-util_2.11", + "version":"0.1-M10", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:52:56+00:00", + "size":971, + "sha1":"4bb834d495501f89c3cd870cb4d6f055ec729afb", + "name":"konfig-twitter-util", + "description":"konfig-twitter-util", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/quadas/konfig-twitter-util_2.11/0.1-M10/konfig-twitter-util_2.11-0.1-M10.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.quadas/konfig-twitter-util_2.11@0.1-M10", + "file_name":"konfig-twitter-util_2.11-0.1-M10.pom", + "size":0, + "date":"2017-07-02T23:52:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.orbitz.consul/consul-client@0.16.1", + "file_name":"consul-client-0.16.1.jar", + "size":439051, + "date":"2017-07-02T19:36:06+00:00", + "md5":null, + "sha1":"63241080552f41d9c1bc2c3e3e7e58f91aa91be4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:36:06+00:00", + "size":439051, + "sha1":"63241080552f41d9c1bc2c3e3e7e58f91aa91be4", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.orbitz.consul/consul-client@0.16.1", + "file_name":"consul-client-0.16.1.pom", + "size":0, + "date":"2017-07-02T19:36:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.orbitz.consul/consul-client@0.16.1?classifier=sources", + "file_name":"consul-client-0.16.1-sources.jar", + "size":235653, + "date":"2017-07-02T19:36:14+00:00", + "md5":null, + "sha1":"07f327cba772f6857384b507a34cbbf7f89918c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.orbitz.consul", + "artifact_id":"consul-client", + "version":"0.16.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:36:14+00:00", + "size":235653, + "sha1":"07f327cba772f6857384b507a34cbbf7f89918c3", + "name":"consul-client", + "description":"Consul Client for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/orbitz/consul/consul-client/0.16.1/consul-client-0.16.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.orbitz.consul/consul-client@0.16.1", + "file_name":"consul-client-0.16.1.pom", + "size":0, + "date":"2017-07-02T19:36:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.12@5.0.0-RC1", + "file_name":"play-silhouette_2.12-5.0.0-RC1.jar", + "size":900455, + "date":"2017-07-02T09:37:57+00:00", + "md5":null, + "sha1":"551f04394c8819f07ce7fe4fecbd5d580e0c99da", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:57+00:00", + "size":900455, + "sha1":"551f04394c8819f07ce7fe4fecbd5d580e0c99da", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.12@5.0.0-RC1", + "file_name":"play-silhouette_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:37:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette_2.12-5.0.0-RC1-sources.jar", + "size":164524, + "date":"2017-07-02T09:37:25+00:00", + "md5":null, + "sha1":"aedc463329c93634c769295a65b562d9bf48b5a2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:25+00:00", + "size":164524, + "sha1":"aedc463329c93634c769295a65b562d9bf48b5a2", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.12/5.0.0-RC1/play-silhouette_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.12@5.0.0-RC1", + "file_name":"play-silhouette_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:37:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.11@5.0.0-RC1", + "file_name":"play-silhouette_2.11-5.0.0-RC1.jar", + "size":1208914, + "date":"2017-07-02T09:39:47+00:00", + "md5":null, + "sha1":"557332267baead582d9f3b7e3c01b3a1373896d7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:47+00:00", + "size":1208914, + "sha1":"557332267baead582d9f3b7e3c01b3a1373896d7", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.11@5.0.0-RC1", + "file_name":"play-silhouette_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette_2.11-5.0.0-RC1-sources.jar", + "size":164524, + "date":"2017-07-02T09:39:19+00:00", + "md5":null, + "sha1":"71c980d583100f712defc62d50c972ccd4b1bd6d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:19+00:00", + "size":164524, + "sha1":"71c980d583100f712defc62d50c972ccd4b1bd6d", + "name":"play-silhouette", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette_2.11/5.0.0-RC1/play-silhouette_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette_2.11@5.0.0-RC1", + "file_name":"play-silhouette_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.12@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.12-5.0.0-RC1.jar", + "size":51461, + "date":"2017-07-02T09:38:15+00:00", + "md5":null, + "sha1":"04494b708650ca89058927ac0bf475fbc1196431", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:15+00:00", + "size":51461, + "sha1":"04494b708650ca89058927ac0bf475fbc1196431", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.12@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-testkit_2.12-5.0.0-RC1-sources.jar", + "size":4450, + "date":"2017-07-02T09:38:17+00:00", + "md5":null, + "sha1":"1e3494bd0ebaf96b952df54f49a16c900ed8c890", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:17+00:00", + "size":4450, + "sha1":"1e3494bd0ebaf96b952df54f49a16c900ed8c890", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.12/5.0.0-RC1/play-silhouette-testkit_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.12@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.11@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.11-5.0.0-RC1.jar", + "size":52856, + "date":"2017-07-02T09:39:52+00:00", + "md5":null, + "sha1":"9e82349f10425a7b32b7f9b67e408d0f808e89f9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:52+00:00", + "size":52856, + "sha1":"9e82349f10425a7b32b7f9b67e408d0f808e89f9", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.11@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-testkit_2.11-5.0.0-RC1-sources.jar", + "size":4450, + "date":"2017-07-02T09:39:54+00:00", + "md5":null, + "sha1":"48805f9b33bfbeeef2be44028125021ebfe6d388", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-testkit_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:54+00:00", + "size":4450, + "sha1":"48805f9b33bfbeeef2be44028125021ebfe6d388", + "name":"play-silhouette-testkit", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-testkit_2.11/5.0.0-RC1/play-silhouette-testkit_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-testkit_2.11@5.0.0-RC1", + "file_name":"play-silhouette-testkit_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.12@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.12-5.0.0-RC1.jar", + "size":16231, + "date":"2017-07-02T09:38:21+00:00", + "md5":null, + "sha1":"afe13c85c5a45abcc7a9a8332d7e3438076c5dc0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:21+00:00", + "size":16231, + "sha1":"afe13c85c5a45abcc7a9a8332d7e3438076c5dc0", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.12@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-persistence_2.12-5.0.0-RC1-sources.jar", + "size":8930, + "date":"2017-07-02T09:38:19+00:00", + "md5":null, + "sha1":"0062678e5d026f12a8d875d1f5769f1147b422cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:19+00:00", + "size":8930, + "sha1":"0062678e5d026f12a8d875d1f5769f1147b422cf", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.12/5.0.0-RC1/play-silhouette-persistence_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.12@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.11@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.11-5.0.0-RC1.jar", + "size":23539, + "date":"2017-07-02T09:40:06+00:00", + "md5":null, + "sha1":"9a7e8911542afaca420ded579396e4d499387572", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:06+00:00", + "size":23539, + "sha1":"9a7e8911542afaca420ded579396e4d499387572", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.11@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:06+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-persistence_2.11-5.0.0-RC1-sources.jar", + "size":8930, + "date":"2017-07-02T09:40:04+00:00", + "md5":null, + "sha1":"99f9c9c1e5dd9637f4368d4ddc633c28518a641e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:04+00:00", + "size":8930, + "sha1":"99f9c9c1e5dd9637f4368d4ddc633c28518a641e", + "name":"play-silhouette-persistence", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence_2.11/5.0.0-RC1/play-silhouette-persistence_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence_2.11@5.0.0-RC1", + "file_name":"play-silhouette-persistence_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence-reactivemongo_2.11@4.0.3", + "file_name":"play-silhouette-persistence-reactivemongo_2.11-4.0.3.jar", + "size":25398, + "date":"2017-07-02T09:45:56+00:00", + "md5":null, + "sha1":"a9d742a167aa93ccaf035dac253686ad2ac47c78", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:45:56+00:00", + "size":25398, + "sha1":"a9d742a167aa93ccaf035dac253686ad2ac47c78", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence-reactivemongo_2.11@4.0.3", + "file_name":"play-silhouette-persistence-reactivemongo_2.11-4.0.3.pom", + "size":0, + "date":"2017-07-02T09:45:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence-reactivemongo_2.11@4.0.3?classifier=sources", + "file_name":"play-silhouette-persistence-reactivemongo_2.11-4.0.3-sources.jar", + "size":4125, + "date":"2017-07-02T09:45:55+00:00", + "md5":null, + "sha1":"085e71d23dd0e241abca14f28e70a11b61c03ad2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-persistence-reactivemongo_2.11", + "version":"4.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:45:55+00:00", + "size":4125, + "sha1":"085e71d23dd0e241abca14f28e70a11b61c03ad2", + "name":"play-silhouette-persistence-reactivemongo", + "description":"ReactiveMongo persistence module for Silhouette", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-persistence-reactivemongo_2.11/4.0.3/play-silhouette-persistence-reactivemongo_2.11-4.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-persistence-reactivemongo_2.11@4.0.3", + "file_name":"play-silhouette-persistence-reactivemongo_2.11-4.0.3.pom", + "size":0, + "date":"2017-07-02T09:45:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.12@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.12-5.0.0-RC1.jar", + "size":8612, + "date":"2017-07-02T09:38:29+00:00", + "md5":null, + "sha1":"999e43d1072cab7c4e30a2310d32adb8a6a83e43", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":8612, + "sha1":"999e43d1072cab7c4e30a2310d32adb8a6a83e43", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.12@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-password-bcrypt_2.12-5.0.0-RC1-sources.jar", + "size":4337, + "date":"2017-07-02T09:38:29+00:00", + "md5":null, + "sha1":"da9fcdfc4c836d7aa0a52a8da80dd8151260ff72", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:29+00:00", + "size":4337, + "sha1":"da9fcdfc4c836d7aa0a52a8da80dd8151260ff72", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.12/5.0.0-RC1/play-silhouette-password-bcrypt_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.12@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.11@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.11-5.0.0-RC1.jar", + "size":8436, + "date":"2017-07-02T09:39:09+00:00", + "md5":null, + "sha1":"0aa25da4394873262db2fb452c75296fccdb18ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:39:09+00:00", + "size":8436, + "sha1":"0aa25da4394873262db2fb452c75296fccdb18ca", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.11@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-password-bcrypt_2.11-5.0.0-RC1-sources.jar", + "size":4337, + "date":"2017-07-02T09:39:12+00:00", + "md5":null, + "sha1":"d57dc7dea6c6d0c9132ac2ff8a83cc82a8da0442", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-password-bcrypt_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:39:12+00:00", + "size":4337, + "sha1":"d57dc7dea6c6d0c9132ac2ff8a83cc82a8da0442", + "name":"play-silhouette-password-bcrypt", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-password-bcrypt_2.11/5.0.0-RC1/play-silhouette-password-bcrypt_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-password-bcrypt_2.11@5.0.0-RC1", + "file_name":"play-silhouette-password-bcrypt_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:39:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.12@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.12-5.0.0-RC1.jar", + "size":19185, + "date":"2017-07-02T09:37:13+00:00", + "md5":null, + "sha1":"34ee106e4c20dafc91e8547997e9a082410ad3d4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:37:13+00:00", + "size":19185, + "sha1":"34ee106e4c20dafc91e8547997e9a082410ad3d4", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.12@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:37:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-crypto-jca_2.12-5.0.0-RC1-sources.jar", + "size":4634, + "date":"2017-07-02T09:37:12+00:00", + "md5":null, + "sha1":"555cfacb2f74005ac1fce70b4bbe1ace9fb3eb5d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:37:12+00:00", + "size":4634, + "sha1":"555cfacb2f74005ac1fce70b4bbe1ace9fb3eb5d", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.12/5.0.0-RC1/play-silhouette-crypto-jca_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.12@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:37:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.11@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.11-5.0.0-RC1.jar", + "size":23562, + "date":"2017-07-02T09:40:11+00:00", + "md5":null, + "sha1":"36b1f63a6cc7c78c14729203386a061875a39349", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":23562, + "sha1":"36b1f63a6cc7c78c14729203386a061875a39349", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.11@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-crypto-jca_2.11-5.0.0-RC1-sources.jar", + "size":4634, + "date":"2017-07-02T09:40:11+00:00", + "md5":null, + "sha1":"751a3a9bdb76bd4b523d48ba3c1ee022f4a8015e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-crypto-jca_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:11+00:00", + "size":4634, + "sha1":"751a3a9bdb76bd4b523d48ba3c1ee022f4a8015e", + "name":"play-silhouette-crypto-jca", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-crypto-jca_2.11/5.0.0-RC1/play-silhouette-crypto-jca_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-crypto-jca_2.11@5.0.0-RC1", + "file_name":"play-silhouette-crypto-jca_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.12@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.12-5.0.0-RC1.jar", + "size":36894, + "date":"2017-07-02T09:38:07+00:00", + "md5":null, + "sha1":"4df4fc2eae1827871c55703bc04c7dc26bf6033c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":36894, + "sha1":"4df4fc2eae1827871c55703bc04c7dc26bf6033c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.12@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.12@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-cas_2.12-5.0.0-RC1-sources.jar", + "size":4745, + "date":"2017-07-02T09:38:07+00:00", + "md5":null, + "sha1":"2765e09e117c7278c0e5560e24ea31e491d7856d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.12", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:38:07+00:00", + "size":4745, + "sha1":"2765e09e117c7278c0e5560e24ea31e491d7856d", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.12/5.0.0-RC1/play-silhouette-cas_2.12-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.12@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.12-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:38:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.11@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.11-5.0.0-RC1.jar", + "size":49500, + "date":"2017-07-02T09:40:02+00:00", + "md5":null, + "sha1":"a951f81b543ade07d9cdc65cb327f430c313d07c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":49500, + "sha1":"a951f81b543ade07d9cdc65cb327f430c313d07c", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.11@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.11@5.0.0-RC1?classifier=sources", + "file_name":"play-silhouette-cas_2.11-5.0.0-RC1-sources.jar", + "size":4745, + "date":"2017-07-02T09:40:02+00:00", + "md5":null, + "sha1":"05d1976f405d9e0b5626a34663edc0c872c62a54", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-silhouette-cas_2.11", + "version":"5.0.0-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:40:02+00:00", + "size":4745, + "sha1":"05d1976f405d9e0b5626a34663edc0c872c62a54", + "name":"play-silhouette-cas", + "description":"Authentication library for Play Framework applications that supports several authentication methods, including OAuth1, OAuth2, OpenID, CAS, Credentials, Basic Authentication, Two Factor Authentication or custom authentication schemes", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-silhouette-cas_2.11/5.0.0-RC1/play-silhouette-cas_2.11-5.0.0-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-silhouette-cas_2.11@5.0.0-RC1", + "file_name":"play-silhouette-cas_2.11-5.0.0-RC1.pom", + "size":0, + "date":"2017-07-02T09:40:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.12@0.7.0", + "file_name":"play-html-compressor_2.12-0.7.0.jar", + "size":19978, + "date":"2017-07-02T09:21:18+00:00", + "md5":null, + "sha1":"2ef26083588d69a9284dd71a460a7b5462d69fd9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:18+00:00", + "size":19978, + "sha1":"2ef26083588d69a9284dd71a460a7b5462d69fd9", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.12@0.7.0", + "file_name":"play-html-compressor_2.12-0.7.0.pom", + "size":0, + "date":"2017-07-02T09:21:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.12@0.7.0?classifier=sources", + "file_name":"play-html-compressor_2.12-0.7.0-sources.jar", + "size":5327, + "date":"2017-07-02T09:21:16+00:00", + "md5":null, + "sha1":"57e7b6e7d469989cf87cb22a72cb9b281230c504", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.12", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:16+00:00", + "size":5327, + "sha1":"57e7b6e7d469989cf87cb22a72cb9b281230c504", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.12/0.7.0/play-html-compressor_2.12-0.7.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.12@0.7.0", + "file_name":"play-html-compressor_2.12-0.7.0.pom", + "size":0, + "date":"2017-07-02T09:21:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.11@0.7.0", + "file_name":"play-html-compressor_2.11-0.7.0.jar", + "size":30583, + "date":"2017-07-02T09:21:47+00:00", + "md5":null, + "sha1":"9120a87905cbfd224b26a92478a4a9709d8871fc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T09:21:47+00:00", + "size":30583, + "sha1":"9120a87905cbfd224b26a92478a4a9709d8871fc", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.11@0.7.0", + "file_name":"play-html-compressor_2.11-0.7.0.pom", + "size":0, + "date":"2017-07-02T09:21:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.11@0.7.0?classifier=sources", + "file_name":"play-html-compressor_2.11-0.7.0-sources.jar", + "size":5327, + "date":"2017-07-02T09:21:45+00:00", + "md5":null, + "sha1":"da1b849b61c9deb1b28a9f9bc65d2786c267d344", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mohiva", + "artifact_id":"play-html-compressor_2.11", + "version":"0.7.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T09:21:45+00:00", + "size":5327, + "sha1":"da1b849b61c9deb1b28a9f9bc65d2786c267d344", + "name":"play-html-compressor", + "description":"Google's HTML Compressor for Play Framework 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mohiva/play-html-compressor_2.11/0.7.0/play-html-compressor_2.11-0.7.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mohiva/play-html-compressor_2.11@0.7.0", + "file_name":"play-html-compressor_2.11-0.7.0.pom", + "size":0, + "date":"2017-07-02T09:21:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/materialdrawer@5.9.4?type=aar", + "file_name":"materialdrawer-5.9.4.aar", + "size":196431, + "date":"2017-07-02T13:17:15+00:00", + "md5":null, + "sha1":"f4d8856e98bc05fcc93e75a1dc0fb59b73ee7f8c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:17:15+00:00", + "size":196431, + "sha1":"f4d8856e98bc05fcc93e75a1dc0fb59b73ee7f8c", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/materialdrawer@5.9.4", + "file_name":"materialdrawer-5.9.4.pom", + "size":0, + "date":"2017-07-02T13:17:15+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/materialdrawer@5.9.4?classifier=sources", + "file_name":"materialdrawer-5.9.4-sources.jar", + "size":219637, + "date":"2017-07-02T13:17:24+00:00", + "md5":null, + "sha1":"a21b421682d3062c80dfaeb5ca2081b933b8f2ba", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"materialdrawer", + "version":"5.9.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:17:24+00:00", + "size":219637, + "sha1":"a21b421682d3062c80dfaeb5ca2081b933b8f2ba", + "name":"MaterialDrawer Library", + "description":"MaterialDrawer Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/materialdrawer/5.9.4/materialdrawer-5.9.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/materialdrawer@5.9.4", + "file_name":"materialdrawer-5.9.4.pom", + "size":0, + "date":"2017-07-02T13:17:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/itemanimators@1.0.0?type=aar", + "file_name":"itemanimators-1.0.0.aar", + "size":33683, + "date":"2017-07-02T12:54:50+00:00", + "md5":null, + "sha1":"c32338bcf123194142578818aaccab9688272766", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:54:50+00:00", + "size":33683, + "sha1":"c32338bcf123194142578818aaccab9688272766", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/itemanimators@1.0.0", + "file_name":"itemanimators-1.0.0.pom", + "size":0, + "date":"2017-07-02T12:54:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/itemanimators@1.0.0?classifier=sources", + "file_name":"itemanimators-1.0.0-sources.jar", + "size":19444, + "date":"2017-07-02T12:54:56+00:00", + "md5":null, + "sha1":"675df81c0f14ccb5dc4fb82df9ab52d514e793eb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"itemanimators", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:54:56+00:00", + "size":19444, + "sha1":"675df81c0f14ccb5dc4fb82df9ab52d514e793eb", + "name":"itemanimators Library", + "description":"ItemAnimators Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/itemanimators/1.0.0/itemanimators-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/itemanimators@1.0.0", + "file_name":"itemanimators-1.0.0.pom", + "size":0, + "date":"2017-07-02T12:54:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/iconics-core@2.8.8?type=aar", + "file_name":"iconics-core-2.8.8.aar", + "size":67119, + "date":"2017-07-02T12:32:38+00:00", + "md5":null, + "sha1":"2a6908e6b182deec99ff76d0eacc6a806db546c3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T12:32:38+00:00", + "size":67119, + "sha1":"2a6908e6b182deec99ff76d0eacc6a806db546c3", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/iconics-core@2.8.8", + "file_name":"iconics-core-2.8.8.pom", + "size":0, + "date":"2017-07-02T12:32:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/iconics-core@2.8.8?classifier=sources", + "file_name":"iconics-core-2.8.8-sources.jar", + "size":84942, + "date":"2017-07-02T12:32:43+00:00", + "md5":null, + "sha1":"1c999a27d3ef2a49b61f6727dd5e5c5ac45b8931", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.mikepenz", + "artifact_id":"iconics-core", + "version":"2.8.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:32:43+00:00", + "size":84942, + "sha1":"1c999a27d3ef2a49b61f6727dd5e5c5ac45b8931", + "name":"Android-Iconics Library", + "description":"Android-Iconics Library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/mikepenz/iconics-core/2.8.8/iconics-core-2.8.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.mikepenz/iconics-core@2.8.8", + "file_name":"iconics-core-2.8.8.pom", + "size":0, + "date":"2017-07-02T12:32:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/sshsftp@1.0.3", + "file_name":"sshsftp-1.0.3.jar", + "size":37648, + "date":"2017-07-02T17:36:52+00:00", + "md5":null, + "sha1":"177cbe74b3501ae78e305d12bb91e875d0c87d51", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":37648, + "sha1":"177cbe74b3501ae78e305d12bb91e875d0c87d51", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/sshsftp@1.0.3", + "file_name":"sshsftp-1.0.3.pom", + "size":0, + "date":"2017-07-02T17:36:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/sshsftp@1.0.3?classifier=sources", + "file_name":"sshsftp-1.0.3-sources.jar", + "size":19005, + "date":"2017-07-02T17:36:52+00:00", + "md5":null, + "sha1":"75955e9cc2f07d381e9b1a03cb17abc17a5c59d1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.marcarndt.morse", + "artifact_id":"sshsftp", + "version":"1.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:36:52+00:00", + "size":19005, + "sha1":"75955e9cc2f07d381e9b1a03cb17abc17a5c59d1", + "name":"Morse SSH SFTP Plugin", + "description":"A plugin for the Morse CDI Telegram bot to allow a user to configure ssh / sftp\n credentials, files and commands", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/marcarndt/morse/sshsftp/1.0.3/sshsftp-1.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/sshsftp@1.0.3", + "file_name":"sshsftp-1.0.3.pom", + "size":0, + "date":"2017-07-02T17:36:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/alerts@1.1.2", + "file_name":"alerts-1.1.2.jar", + "size":9896, + "date":"2017-07-02T17:15:08+00:00", + "md5":null, + "sha1":"8f5009531cd52108560aaf56131164cb87745c2f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":9896, + "sha1":"8f5009531cd52108560aaf56131164cb87745c2f", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/alerts@1.1.2", + "file_name":"alerts-1.1.2.pom", + "size":0, + "date":"2017-07-02T17:15:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/alerts@1.1.2?classifier=sources", + "file_name":"alerts-1.1.2-sources.jar", + "size":4729, + "date":"2017-07-02T17:15:08+00:00", + "md5":null, + "sha1":"45fea2fc8daa58aeb7749fd16047a11eeaa430ec", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.marcarndt.morse", + "artifact_id":"alerts", + "version":"1.1.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:15:08+00:00", + "size":4729, + "sha1":"45fea2fc8daa58aeb7749fd16047a11eeaa430ec", + "name":"Morse CDI Alert Service", + "description":"Alert Service plugin for Morse Bot", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/marcarndt/morse/alerts/1.1.2/alerts-1.1.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.marcarndt.morse/alerts@1.1.2", + "file_name":"alerts-1.1.2.pom", + "size":0, + "date":"2017-07-02T17:15:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-springsecurity@2.0", + "file_name":"cibet-springsecurity-2.0.jar", + "size":41395, + "date":"2017-07-02T08:50:47+00:00", + "md5":null, + "sha1":"efd2fe86c52099dcd158a7a6531012928179796c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:47+00:00", + "size":41395, + "sha1":"efd2fe86c52099dcd158a7a6531012928179796c", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-springsecurity@2.0", + "file_name":"cibet-springsecurity-2.0.pom", + "size":0, + "date":"2017-07-02T08:50:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-springsecurity@2.0?classifier=sources", + "file_name":"cibet-springsecurity-2.0-sources.jar", + "size":26794, + "date":"2017-07-02T08:51:24+00:00", + "md5":null, + "sha1":"18e8e553b7257a65784ca7510e721c5e8f10112c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-springsecurity", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:24+00:00", + "size":26794, + "sha1":"18e8e553b7257a65784ca7510e721c5e8f10112c", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-springsecurity/2.0/cibet-springsecurity-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-springsecurity@2.0", + "file_name":"cibet-springsecurity-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-shiro@2.0", + "file_name":"cibet-shiro-2.0.jar", + "size":10719, + "date":"2017-07-02T08:50:21+00:00", + "md5":null, + "sha1":"043e55bffc5d1fbf657a58465aa5abdef49e15e4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:21+00:00", + "size":10719, + "sha1":"043e55bffc5d1fbf657a58465aa5abdef49e15e4", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-shiro@2.0", + "file_name":"cibet-shiro-2.0.pom", + "size":0, + "date":"2017-07-02T08:50:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-shiro@2.0?classifier=sources", + "file_name":"cibet-shiro-2.0-sources.jar", + "size":8729, + "date":"2017-07-02T08:51:26+00:00", + "md5":null, + "sha1":"9b12839cac0eb8e5f38e45704160390f62280196", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-shiro", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":8729, + "sha1":"9b12839cac0eb8e5f38e45704160390f62280196", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-shiro/2.0/cibet-shiro-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-shiro@2.0", + "file_name":"cibet-shiro-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-jpa@2.0", + "file_name":"cibet-jpa-2.0.jar", + "size":102033, + "date":"2017-07-02T08:51:12+00:00", + "md5":null, + "sha1":"76442295bd911c77acd42487d73a3ab1f20e3428", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:12+00:00", + "size":102033, + "sha1":"76442295bd911c77acd42487d73a3ab1f20e3428", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-jpa@2.0", + "file_name":"cibet-jpa-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-jpa@2.0?classifier=sources", + "file_name":"cibet-jpa-2.0-sources.jar", + "size":59836, + "date":"2017-07-02T08:50:45+00:00", + "md5":null, + "sha1":"2564460f46cad8abea2101ee7f2e4c9a50ecfa5f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-jpa", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:45+00:00", + "size":59836, + "sha1":"2564460f46cad8abea2101ee7f2e4c9a50ecfa5f", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-jpa/2.0/cibet-jpa-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-jpa@2.0", + "file_name":"cibet-jpa-2.0.pom", + "size":0, + "date":"2017-07-02T08:50:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-integrationtest/2.0/cibet-integrationtest-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-integrationtest@2.0", + "file_name":"cibet-integrationtest-2.0.jar", + "size":5194, + "date":"2017-07-02T08:51:10+00:00", + "md5":null, + "sha1":"430daf26d709d8664b59c7fe08340c506c6af627", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-integrationtest", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:10+00:00", + "size":5194, + "sha1":"430daf26d709d8664b59c7fe08340c506c6af627", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-integrationtest/2.0/cibet-integrationtest-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-integrationtest/2.0/cibet-integrationtest-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-integrationtest@2.0", + "file_name":"cibet-integrationtest-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-envers/2.0/cibet-envers-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-envers@2.0", + "file_name":"cibet-envers-2.0.jar", + "size":12851, + "date":"2017-07-02T08:51:26+00:00", + "md5":null, + "sha1":"ca8f214718a22c77eca5dfcfcc937f937676b740", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:51:26+00:00", + "size":12851, + "sha1":"ca8f214718a22c77eca5dfcfcc937f937676b740", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-envers/2.0/cibet-envers-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-envers/2.0/cibet-envers-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-envers@2.0", + "file_name":"cibet-envers-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-envers/2.0/cibet-envers-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-envers@2.0?classifier=sources", + "file_name":"cibet-envers-2.0-sources.jar", + "size":12478, + "date":"2017-07-02T08:51:09+00:00", + "md5":null, + "sha1":"e2942078a273287381acc1275866a7a68b655f83", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-envers", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:09+00:00", + "size":12478, + "sha1":"e2942078a273287381acc1275866a7a68b655f83", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-envers/2.0/cibet-envers-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-envers/2.0/cibet-envers-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-envers@2.0", + "file_name":"cibet-envers-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-core/2.0/cibet-core-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-core@2.0", + "file_name":"cibet-core-2.0.jar", + "size":515486, + "date":"2017-07-02T08:50:01+00:00", + "md5":null, + "sha1":"e17e03c7cfd010e7cee43c68ec6639ddd5006d88", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T08:50:01+00:00", + "size":515486, + "sha1":"e17e03c7cfd010e7cee43c68ec6639ddd5006d88", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-core/2.0/cibet-core-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-core/2.0/cibet-core-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-core@2.0", + "file_name":"cibet-core-2.0.pom", + "size":0, + "date":"2017-07-02T08:50:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet-core/2.0/cibet-core-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-core@2.0?classifier=sources", + "file_name":"cibet-core-2.0-sources.jar", + "size":359827, + "date":"2017-07-02T08:51:17+00:00", + "md5":null, + "sha1":"ed6efb8ab79f5bdbcfee2a69e9799116c98b3546", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet-core", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:51:17+00:00", + "size":359827, + "sha1":"ed6efb8ab79f5bdbcfee2a69e9799116c98b3546", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet-core/2.0/cibet-core-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet-core/2.0/cibet-core-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet-core@2.0", + "file_name":"cibet-core-2.0.pom", + "size":0, + "date":"2017-07-02T08:51:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/logitags/cibet/2.0/cibet-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet@2.0?classifier=sources", + "file_name":"cibet-2.0-sources.jar", + "size":459389, + "date":"2017-07-02T08:50:54+00:00", + "md5":null, + "sha1":"eb05a5671e40571e8389d68688e6aec7b34aad1e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.logitags", + "artifact_id":"cibet", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T08:50:54+00:00", + "size":459389, + "sha1":"eb05a5671e40571e8389d68688e6aec7b34aad1e", + "name":"Better control with cibet", + "description":"The cibet framework uses principles of control theory to integrate\n control mechanisms on events on database actions, method calls or http requests.\n With Cibet it is possible to implement in a non-intrusive way functionality for\n audit-proof logging, archiving, dual control mechanisms (4-eyes principle), \n authorization, locking etc.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/logitags/cibet/2.0/cibet-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/logitags/cibet/2.0/cibet-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.logitags/cibet@2.0", + "file_name":"cibet-2.0.pom", + "size":0, + "date":"2017-07-02T08:50:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/twirl-maven-plugin@1.1.0", + "file_name":"twirl-maven-plugin-1.1.0.jar", + "size":9763, + "date":"2017-07-02T18:55:24+00:00", + "md5":null, + "sha1":"dceb77315269adbbf1231f039c4db0b6a9fd40b8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:24+00:00", + "size":9763, + "sha1":"dceb77315269adbbf1231f039c4db0b6a9fd40b8", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/twirl-maven-plugin@1.1.0", + "file_name":"twirl-maven-plugin-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/twirl-maven-plugin@1.1.0?classifier=sources", + "file_name":"twirl-maven-plugin-1.1.0-sources.jar", + "size":3240, + "date":"2017-07-02T18:55:26+00:00", + "md5":null, + "sha1":"e597cccd73a65c9d8711d329391036754b2e1ac5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"twirl-maven-plugin", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:26+00:00", + "size":3240, + "sha1":"e597cccd73a65c9d8711d329391036754b2e1ac5", + "name":"Twirl Maven Plugin", + "description":"Maven plugin for compiling Twirl templates.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/twirl-maven-plugin/1.1.0/twirl-maven-plugin-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/twirl-maven-plugin@1.1.0", + "file_name":"twirl-maven-plugin-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-templates@1.1.0", + "file_name":"sample-templates-1.1.0.jar", + "size":18482, + "date":"2017-07-02T18:55:39+00:00", + "md5":null, + "sha1":"e3cb786de2759b00956e170e3f8c5e46cb92be95", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:39+00:00", + "size":18482, + "sha1":"e3cb786de2759b00956e170e3f8c5e46cb92be95", + "name":"Sample Templates", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-templates@1.1.0", + "file_name":"sample-templates-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-templates@1.1.0?classifier=sources", + "file_name":"sample-templates-1.1.0-sources.jar", + "size":4052, + "date":"2017-07-02T18:55:40+00:00", + "md5":null, + "sha1":"e9cef2fe17f79d051fc1b46787a5649c88f5ea09", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-templates", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:40+00:00", + "size":4052, + "sha1":"e9cef2fe17f79d051fc1b46787a5649c88f5ea09", + "name":"Sample Templates", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-templates/1.1.0/sample-templates-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-templates@1.1.0", + "file_name":"sample-templates-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-runtime@1.1.0", + "file_name":"sample-runtime-1.1.0.jar", + "size":2344, + "date":"2017-07-02T18:55:44+00:00", + "md5":null, + "sha1":"8a86873a1ffcde1bb21ea86b9d777a4ce6a6d3d0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:55:44+00:00", + "size":2344, + "sha1":"8a86873a1ffcde1bb21ea86b9d777a4ce6a6d3d0", + "name":"Sample Runtime", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-runtime@1.1.0", + "file_name":"sample-runtime-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-runtime@1.1.0?classifier=sources", + "file_name":"sample-runtime-1.1.0-sources.jar", + "size":783, + "date":"2017-07-02T18:55:45+00:00", + "md5":null, + "sha1":"0339eb68b809460304ebcdf7ac11eb0ae6644c97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.twirl", + "artifact_id":"sample-runtime", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:55:45+00:00", + "size":783, + "sha1":"0339eb68b809460304ebcdf7ac11eb0ae6644c97", + "name":"Sample Runtime", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/twirl/sample-runtime/1.1.0/sample-runtime-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.twirl/sample-runtime@1.1.0", + "file_name":"sample-runtime-1.1.0.pom", + "size":0, + "date":"2017-07-02T18:55:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share-kotlin@2.0.0", + "file_name":"replaying-share-kotlin-2.0.0.jar", + "size":3265, + "date":"2017-07-02T19:56:22+00:00", + "md5":null, + "sha1":"0aa2f3750e9c61a554a06b818b841d77130423a0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:56:22+00:00", + "size":3265, + "sha1":"0aa2f3750e9c61a554a06b818b841d77130423a0", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share-kotlin@2.0.0", + "file_name":"replaying-share-kotlin-2.0.0.pom", + "size":0, + "date":"2017-07-02T19:56:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share-kotlin@2.0.0?classifier=sources", + "file_name":"replaying-share-kotlin-2.0.0-sources.jar", + "size":1502, + "date":"2017-07-02T19:56:34+00:00", + "md5":null, + "sha1":"68977afff8cfce2ee4d7e1c51d2c31e73b4f956e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share-kotlin", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:56:34+00:00", + "size":1502, + "sha1":"68977afff8cfce2ee4d7e1c51d2c31e73b4f956e", + "name":"RxJava Replaying Share (Kotlin Extensions)", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share-kotlin/2.0.0/replaying-share-kotlin-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share-kotlin@2.0.0", + "file_name":"replaying-share-kotlin-2.0.0.pom", + "size":0, + "date":"2017-07-02T19:56:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share@2.0.0", + "file_name":"replaying-share-2.0.0.jar", + "size":7568, + "date":"2017-07-02T19:55:12+00:00", + "md5":null, + "sha1":"42f0c738e1954699e26511fcd471849427612221", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:12+00:00", + "size":7568, + "sha1":"42f0c738e1954699e26511fcd471849427612221", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share@2.0.0", + "file_name":"replaying-share-2.0.0.pom", + "size":0, + "date":"2017-07-02T19:55:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share@2.0.0?classifier=sources", + "file_name":"replaying-share-2.0.0-sources.jar", + "size":2318, + "date":"2017-07-02T19:55:32+00:00", + "md5":null, + "sha1":"6ebd35a8bad75d099097ce8a4b5a5f8fcd4d9da6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.jakewharton.rx2", + "artifact_id":"replaying-share", + "version":"2.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:32+00:00", + "size":2318, + "sha1":"6ebd35a8bad75d099097ce8a4b5a5f8fcd4d9da6", + "name":"RxJava Replaying Share", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/jakewharton/rx2/replaying-share/2.0.0/replaying-share-2.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.jakewharton.rx2/replaying-share@2.0.0", + "file_name":"replaying-share-2.0.0.pom", + "size":0, + "date":"2017-07-02T19:55:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/itranswarp/warpdb/2.7/warpdb-2.7.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.itranswarp/warpdb@2.7", + "file_name":"warpdb-2.7.jar", + "size":57255, + "date":"2017-07-02T10:32:19+00:00", + "md5":null, + "sha1":"dfc181597410df308f5a0f58d01ce87beabfef66", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:32:19+00:00", + "size":57255, + "sha1":"dfc181597410df308f5a0f58d01ce87beabfef66", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/itranswarp/warpdb/2.7/warpdb-2.7.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/itranswarp/warpdb/2.7/warpdb-2.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.itranswarp/warpdb@2.7", + "file_name":"warpdb-2.7.pom", + "size":0, + "date":"2017-07-02T10:32:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/itranswarp/warpdb/2.7/warpdb-2.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.itranswarp/warpdb@2.7?classifier=sources", + "file_name":"warpdb-2.7-sources.jar", + "size":27455, + "date":"2017-07-02T10:32:20+00:00", + "md5":null, + "sha1":"a9b43ee36a71764fa13792dddc25e0e4d410f4c5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.itranswarp", + "artifact_id":"warpdb", + "version":"2.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:32:20+00:00", + "size":27455, + "sha1":"a9b43ee36a71764fa13792dddc25e0e4d410f4c5", + "name":"warpdb", + "description":"Simple, DSL-driven RDBMS interface for Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/itranswarp/warpdb/2.7/warpdb-2.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/itranswarp/warpdb/2.7/warpdb-2.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.itranswarp/warpdb@2.7", + "file_name":"warpdb-2.7.pom", + "size":0, + "date":"2017-07-02T10:32:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/isupatches/wisefy/1.0.8/wisefy-1.0.8.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.isupatches/wisefy@1.0.8?type=aar", + "file_name":"wisefy-1.0.8.aar", + "size":55362, + "date":"2017-07-02T20:47:31+00:00", + "md5":null, + "sha1":"f8ca48120de19f4a637bfe5c750df512951e1a12", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":55362, + "sha1":"f8ca48120de19f4a637bfe5c750df512951e1a12", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/isupatches/wisefy/1.0.8/wisefy-1.0.8.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/isupatches/wisefy/1.0.8/wisefy-1.0.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.isupatches/wisefy@1.0.8", + "file_name":"wisefy-1.0.8.pom", + "size":0, + "date":"2017-07-02T20:47:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/isupatches/wisefy/1.0.8/wisefy-1.0.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.isupatches/wisefy@1.0.8?classifier=sources", + "file_name":"wisefy-1.0.8-sources.jar", + "size":9356, + "date":"2017-07-02T20:47:31+00:00", + "md5":null, + "sha1":"dc2941c7e2894af0939012eab278f5a58532eab6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.isupatches", + "artifact_id":"wisefy", + "version":"1.0.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:47:31+00:00", + "size":9356, + "sha1":"dc2941c7e2894af0939012eab278f5a58532eab6", + "name":"wisefy", + "description":"Wrapper around WifiManager and ConfigurationManager for Android", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/isupatches/wisefy/1.0.8/wisefy-1.0.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/isupatches/wisefy/1.0.8/wisefy-1.0.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.isupatches/wisefy@1.0.8", + "file_name":"wisefy-1.0.8.pom", + "size":0, + "date":"2017-07-02T20:47:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.insightml/insight-ml-core@1.1.0", + "file_name":"insight-ml-core-1.1.0.jar", + "size":354880, + "date":"2017-07-02T15:32:36+00:00", + "md5":null, + "sha1":"a64cd3ce4250487c2ede6bf5c1e6c0f31cfb642b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:32:36+00:00", + "size":354880, + "sha1":"a64cd3ce4250487c2ede6bf5c1e6c0f31cfb642b", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.insightml/insight-ml-core@1.1.0", + "file_name":"insight-ml-core-1.1.0.pom", + "size":0, + "date":"2017-07-02T15:32:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.insightml/insight-ml-core@1.1.0?classifier=sources", + "file_name":"insight-ml-core-1.1.0-sources.jar", + "size":246398, + "date":"2017-07-02T15:32:28+00:00", + "md5":null, + "sha1":"ef28e4ff6fbed90c9afeafda14b2d16bf044dc80", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.insightml", + "artifact_id":"insight-ml-core", + "version":"1.1.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:32:28+00:00", + "size":246398, + "sha1":"ef28e4ff6fbed90c9afeafda14b2d16bf044dc80", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/insightml/insight-ml-core/1.1.0/insight-ml-core-1.1.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.insightml/insight-ml-core@1.1.0", + "file_name":"insight-ml-core-1.1.0.pom", + "size":0, + "date":"2017-07-02T15:32:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.maps/google-maps-services@0.1.21", + "file_name":"google-maps-services-0.1.21.jar", + "size":149545, + "date":"2017-07-03T00:48:19+00:00", + "md5":null, + "sha1":"2cc001a6b7588daf5b4d5d12c3fd949b1cb9e6e1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:48:19+00:00", + "size":149545, + "sha1":"2cc001a6b7588daf5b4d5d12c3fd949b1cb9e6e1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.maps/google-maps-services@0.1.21", + "file_name":"google-maps-services-0.1.21.pom", + "size":0, + "date":"2017-07-03T00:48:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.maps/google-maps-services@0.1.21?classifier=sources", + "file_name":"google-maps-services-0.1.21-sources.jar", + "size":141664, + "date":"2017-07-03T00:48:41+00:00", + "md5":null, + "sha1":"45329ae4aed0298fcfddcc02396afd687d6798b1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.maps", + "artifact_id":"google-maps-services", + "version":"0.1.21", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:48:41+00:00", + "size":141664, + "sha1":"45329ae4aed0298fcfddcc02396afd687d6798b1", + "name":"Java Client for Google Maps Services", + "description":"Use the Google Maps API Web Services in Java! https://developers.google.com/maps/documentation/webservices/", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/maps/google-maps-services/0.1.21/google-maps-services-0.1.21.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.maps/google-maps-services@0.1.21", + "file_name":"google-maps-services-0.1.21.pom", + "size":0, + "date":"2017-07-03T00:48:41+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-war/2.13.9/gerrit-war-2.13.9.war", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-war@2.13.9?type=war", + "file_name":"gerrit-war-2.13.9.war", + "size":51278489, + "date":"2017-07-02T23:44:25+00:00", + "md5":null, + "sha1":"769bc441e42089a9d052a7be1bb1a0954ca176ce", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-war", + "version":"2.13.9", + "packaging":"war", + "classifier":null, + "extension":"war", + "last_modified":"2017-07-02T23:44:25+00:00", + "size":51278489, + "sha1":"769bc441e42089a9d052a7be1bb1a0954ca176ce", + "name":"Gerrit Code Review - WAR", + "description":"Gerrit WAR", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-war/2.13.9/gerrit-war-2.13.9.war" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-war/2.13.9/gerrit-war-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-war@2.13.9", + "file_name":"gerrit-war-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:44:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-js-archetype/2.13.9/gerrit-plugin-js-archetype-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-js-archetype@2.13.9", + "file_name":"gerrit-plugin-js-archetype-2.13.9.jar", + "size":15524, + "date":"2017-07-02T23:56:58+00:00", + "md5":null, + "sha1":"0b87cb6c36b848071fffe43902117cc59b77c53a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-js-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:58+00:00", + "size":15524, + "sha1":"0b87cb6c36b848071fffe43902117cc59b77c53a", + "name":"Gerrit Code Review - Web UI JavaScript Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI JavaScript Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-js-archetype/2.13.9/gerrit-plugin-js-archetype-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-js-archetype/2.13.9/gerrit-plugin-js-archetype-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-js-archetype@2.13.9", + "file_name":"gerrit-plugin-js-archetype-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:56:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwtui@2.13.9", + "file_name":"gerrit-plugin-gwtui-2.13.9.jar", + "size":7051241, + "date":"2017-07-02T23:46:08+00:00", + "md5":null, + "sha1":"e63e18db9fcc72b262bd71bcafb948b8c3858714", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:46:08+00:00", + "size":7051241, + "sha1":"e63e18db9fcc72b262bd71bcafb948b8c3858714", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwtui@2.13.9", + "file_name":"gerrit-plugin-gwtui-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:46:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwtui@2.13.9?classifier=sources", + "file_name":"gerrit-plugin-gwtui-2.13.9-sources.jar", + "size":141110, + "date":"2017-07-02T23:46:55+00:00", + "md5":null, + "sha1":"05822cac9819697ffd8d83bcdac49ca06b41ef7c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwtui", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:55+00:00", + "size":141110, + "sha1":"05822cac9819697ffd8d83bcdac49ca06b41ef7c", + "name":"Gerrit Code Review - Plugin GWT UI", + "description":"Common Classes for Gerrit GWT UI Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwtui/2.13.9/gerrit-plugin-gwtui-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwtui@2.13.9", + "file_name":"gerrit-plugin-gwtui-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:46:55+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-gwt-archetype/2.13.9/gerrit-plugin-gwt-archetype-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwt-archetype@2.13.9", + "file_name":"gerrit-plugin-gwt-archetype-2.13.9.jar", + "size":23019, + "date":"2017-07-02T23:57:09+00:00", + "md5":null, + "sha1":"e8ac5315956ba633b82c90e835ded1e497d15373", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-gwt-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:57:09+00:00", + "size":23019, + "sha1":"e8ac5315956ba633b82c90e835ded1e497d15373", + "name":"Gerrit Code Review - Web UI GWT Plugin Archetype", + "description":"Maven Archetype for Gerrit Web UI GWT Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwt-archetype/2.13.9/gerrit-plugin-gwt-archetype-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-gwt-archetype/2.13.9/gerrit-plugin-gwt-archetype-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-gwt-archetype@2.13.9", + "file_name":"gerrit-plugin-gwt-archetype-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:57:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-archetype/2.13.9/gerrit-plugin-archetype-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-archetype@2.13.9", + "file_name":"gerrit-plugin-archetype-2.13.9.jar", + "size":19516, + "date":"2017-07-02T23:56:46+00:00", + "md5":null, + "sha1":"6e3da5aaea8442161f92c94097780761eaac2299", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-archetype", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:56:46+00:00", + "size":19516, + "sha1":"6e3da5aaea8442161f92c94097780761eaac2299", + "name":"Gerrit Code Review - Plugin Archetype", + "description":"Maven Archetype for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-archetype/2.13.9/gerrit-plugin-archetype-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-archetype/2.13.9/gerrit-plugin-archetype-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-archetype@2.13.9", + "file_name":"gerrit-plugin-archetype-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:56:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-api@2.13.9", + "file_name":"gerrit-plugin-api-2.13.9.jar", + "size":32872670, + "date":"2017-07-02T23:45:53+00:00", + "md5":null, + "sha1":"a9b00025900f68c1f86036ea07591a2876b10c37", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:53+00:00", + "size":32872670, + "sha1":"a9b00025900f68c1f86036ea07591a2876b10c37", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-api@2.13.9", + "file_name":"gerrit-plugin-api-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:45:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-api@2.13.9?classifier=sources", + "file_name":"gerrit-plugin-api-2.13.9-sources.jar", + "size":2419934, + "date":"2017-07-02T23:46:44+00:00", + "md5":null, + "sha1":"6f07372e482e6b1e99bd5bc57ee1ba6b534d8439", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-plugin-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:44+00:00", + "size":2419934, + "sha1":"6f07372e482e6b1e99bd5bc57ee1ba6b534d8439", + "name":"Gerrit Code Review - Plugin API", + "description":"API for Gerrit Plugins", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-plugin-api/2.13.9/gerrit-plugin-api-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-plugin-api@2.13.9", + "file_name":"gerrit-plugin-api-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:46:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-extension-api@2.13.9", + "file_name":"gerrit-extension-api-2.13.9.jar", + "size":3592866, + "date":"2017-07-02T23:45:34+00:00", + "md5":null, + "sha1":"166819680c2dc501fa7f8bd13b4d6846297777de", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:34+00:00", + "size":3592866, + "sha1":"166819680c2dc501fa7f8bd13b4d6846297777de", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-extension-api@2.13.9", + "file_name":"gerrit-extension-api-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:45:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-extension-api@2.13.9?classifier=sources", + "file_name":"gerrit-extension-api-2.13.9-sources.jar", + "size":215508, + "date":"2017-07-02T23:46:31+00:00", + "md5":null, + "sha1":"8018e0def6a84fd1ec51533c2a3250479afc3e53", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-extension-api", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:31+00:00", + "size":215508, + "sha1":"8018e0def6a84fd1ec51533c2a3250479afc3e53", + "name":"Gerrit Code Review - Extension API", + "description":"API for Gerrit Extensions", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-extension-api/2.13.9/gerrit-extension-api-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-extension-api@2.13.9", + "file_name":"gerrit-extension-api-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:46:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-acceptance-framework@2.13.9", + "file_name":"gerrit-acceptance-framework-2.13.9.jar", + "size":14229198, + "date":"2017-07-02T23:45:20+00:00", + "md5":null, + "sha1":"53a6e2baca19303bbf3967b861cf9814323c31f6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:45:20+00:00", + "size":14229198, + "sha1":"53a6e2baca19303bbf3967b861cf9814323c31f6", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-acceptance-framework@2.13.9", + "file_name":"gerrit-acceptance-framework-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:45:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-acceptance-framework@2.13.9?classifier=sources", + "file_name":"gerrit-acceptance-framework-2.13.9-sources.jar", + "size":47482, + "date":"2017-07-02T23:46:19+00:00", + "md5":null, + "sha1":"f75ba862b02156a0ca24e9220a712dbf3dcc582e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.google.gerrit", + "artifact_id":"gerrit-acceptance-framework", + "version":"2.13.9", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:46:19+00:00", + "size":47482, + "sha1":"f75ba862b02156a0ca24e9220a712dbf3dcc582e", + "name":"Gerrit Code Review - Acceptance Test Framework", + "description":"Framework for Gerrit's acceptance tests", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/google/gerrit/gerrit-acceptance-framework/2.13.9/gerrit-acceptance-framework-2.13.9.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.google.gerrit/gerrit-acceptance-framework@2.13.9", + "file_name":"gerrit-acceptance-framework-2.13.9.pom", + "size":0, + "date":"2017-07-02T23:46:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.vincentrussell/sql-to-mongo-db-query-converter@1.3.2", + "file_name":"sql-to-mongo-db-query-converter-1.3.2.jar", + "size":50059, + "date":"2017-07-03T00:45:28+00:00", + "md5":null, + "sha1":"741d19644f5b5ce125f4a8dec3c1aee4be426e5a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T00:45:28+00:00", + "size":50059, + "sha1":"741d19644f5b5ce125f4a8dec3c1aee4be426e5a", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.vincentrussell/sql-to-mongo-db-query-converter@1.3.2", + "file_name":"sql-to-mongo-db-query-converter-1.3.2.pom", + "size":0, + "date":"2017-07-03T00:45:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.vincentrussell/sql-to-mongo-db-query-converter@1.3.2?classifier=sources", + "file_name":"sql-to-mongo-db-query-converter-1.3.2-sources.jar", + "size":20757, + "date":"2017-07-03T00:45:33+00:00", + "md5":null, + "sha1":"57ac9eff03b2eb9aa52f581aeb22e734923e375b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.vincentrussell", + "artifact_id":"sql-to-mongo-db-query-converter", + "version":"1.3.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T00:45:33+00:00", + "size":20757, + "sha1":"57ac9eff03b2eb9aa52f581aeb22e734923e375b", + "name":"sql-to-mongo-db-query-converter", + "description":"sql-to-mongo-db-query-converter helps you build quieres for\n MongoDb based on Queries provided in SQL.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/vincentrussell/sql-to-mongo-db-query-converter/1.3.2/sql-to-mongo-db-query-converter-1.3.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.vincentrussell/sql-to-mongo-db-query-converter@1.3.2", + "file_name":"sql-to-mongo-db-query-converter-1.3.2.pom", + "size":0, + "date":"2017-07-03T00:45:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.1", + "file_name":"spark-nkp_2.11-0.3.1.jar", + "size":42125, + "date":"2017-07-02T11:49:52+00:00", + "md5":null, + "sha1":"cc737471028fff9c866fba75cef52db6d07e473f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:49:52+00:00", + "size":42125, + "sha1":"cc737471028fff9c866fba75cef52db6d07e473f", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.1", + "file_name":"spark-nkp_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T11:49:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.1?classifier=sources", + "file_name":"spark-nkp_2.11-0.3.1-sources.jar", + "size":4153, + "date":"2017-07-02T11:49:30+00:00", + "md5":null, + "sha1":"c481ae945627bafa519b1a703974e4e18148e0b4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:49:30+00:00", + "size":4153, + "sha1":"c481ae945627bafa519b1a703974e4e18148e0b4", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.1/spark-nkp_2.11-0.3.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.1", + "file_name":"spark-nkp_2.11-0.3.1.pom", + "size":0, + "date":"2017-07-02T11:49:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.0", + "file_name":"spark-nkp_2.11-0.3.0.jar", + "size":42169, + "date":"2017-07-02T10:27:49+00:00", + "md5":null, + "sha1":"afa08cd5648ff86b13b70c23bba532204dd07183", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:27:49+00:00", + "size":42169, + "sha1":"afa08cd5648ff86b13b70c23bba532204dd07183", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.0", + "file_name":"spark-nkp_2.11-0.3.0.pom", + "size":0, + "date":"2017-07-02T10:27:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.0?classifier=sources", + "file_name":"spark-nkp_2.11-0.3.0-sources.jar", + "size":4153, + "date":"2017-07-02T10:27:42+00:00", + "md5":null, + "sha1":"7fad43ad2dbcea936842f73b950c9eca4844aca8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.uosdmlab", + "artifact_id":"spark-nkp_2.11", + "version":"0.3.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:27:42+00:00", + "size":4153, + "sha1":"7fad43ad2dbcea936842f73b950c9eca4844aca8", + "name":"spark-nkp", + "description":"spark-nkp", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/uosdmlab/spark-nkp_2.11/0.3.0/spark-nkp_2.11-0.3.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.uosdmlab/spark-nkp_2.11@0.3.0", + "file_name":"spark-nkp_2.11-0.3.0.pom", + "size":0, + "date":"2017-07-02T10:27:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.12@0.2.0", + "file_name":"reverse-router-extension_2.12-0.2.0.jar", + "size":4565, + "date":"2017-07-02T12:58:54+00:00", + "md5":null, + "sha1":"e8404c4da7a998baee790e618cf8956496726c22", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:54+00:00", + "size":4565, + "sha1":"e8404c4da7a998baee790e618cf8956496726c22", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.12@0.2.0", + "file_name":"reverse-router-extension_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:58:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.12@0.2.0?classifier=sources", + "file_name":"reverse-router-extension_2.12-0.2.0-sources.jar", + "size":1372, + "date":"2017-07-02T12:58:57+00:00", + "md5":null, + "sha1":"88d38bde4fcec255c22cf67740265fc8759d3190", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.12", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:57+00:00", + "size":1372, + "sha1":"88d38bde4fcec255c22cf67740265fc8759d3190", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.12/0.2.0/reverse-router-extension_2.12-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.12@0.2.0", + "file_name":"reverse-router-extension_2.12-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:58:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.11@0.2.0", + "file_name":"reverse-router-extension_2.11-0.2.0.jar", + "size":5185, + "date":"2017-07-02T12:58:10+00:00", + "md5":null, + "sha1":"7d738f29d68e3975af6a86ff46c123d40d3f0971", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:58:10+00:00", + "size":5185, + "sha1":"7d738f29d68e3975af6a86ff46c123d40d3f0971", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.11@0.2.0", + "file_name":"reverse-router-extension_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:58:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.11@0.2.0?classifier=sources", + "file_name":"reverse-router-extension_2.11-0.2.0-sources.jar", + "size":1372, + "date":"2017-07-02T12:58:36+00:00", + "md5":null, + "sha1":"648dd53dc7894555db3b1ff2b21abdba09494365", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"reverse-router-extension_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:58:36+00:00", + "size":1372, + "sha1":"648dd53dc7894555db3b1ff2b21abdba09494365", + "name":"reverse-router-extension", + "description":"reverse-router-extension", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/reverse-router-extension_2.11/0.2.0/reverse-router-extension_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/reverse-router-extension_2.11@0.2.0", + "file_name":"reverse-router-extension_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:58:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.12@1.2.0", + "file_name":"play-joda-routes-binder_2.12-1.2.0.jar", + "size":52579, + "date":"2017-07-02T13:30:46+00:00", + "md5":null, + "sha1":"6dff070f50f2f8a3e7ecc1e644ac7c02f1b03a2e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:30:46+00:00", + "size":52579, + "sha1":"6dff070f50f2f8a3e7ecc1e644ac7c02f1b03a2e", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.12@1.2.0", + "file_name":"play-joda-routes-binder_2.12-1.2.0.pom", + "size":0, + "date":"2017-07-02T13:30:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.12@1.2.0?classifier=sources", + "file_name":"play-joda-routes-binder_2.12-1.2.0-sources.jar", + "size":5782, + "date":"2017-07-02T13:30:43+00:00", + "md5":null, + "sha1":"268d64e25439460ed90ceafdc85ff1c1bbc76a4c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.12", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:30:43+00:00", + "size":5782, + "sha1":"268d64e25439460ed90ceafdc85ff1c1bbc76a4c", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.12/1.2.0/play-joda-routes-binder_2.12-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.12@1.2.0", + "file_name":"play-joda-routes-binder_2.12-1.2.0.pom", + "size":0, + "date":"2017-07-02T13:30:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.11@1.2.0", + "file_name":"play-joda-routes-binder_2.11-1.2.0.jar", + "size":54893, + "date":"2017-07-02T13:31:02+00:00", + "md5":null, + "sha1":"89b25b2dfab6bd3faf8ee1ce5c78f7bc5a709bfa", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:31:02+00:00", + "size":54893, + "sha1":"89b25b2dfab6bd3faf8ee1ce5c78f7bc5a709bfa", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.11@1.2.0", + "file_name":"play-joda-routes-binder_2.11-1.2.0.pom", + "size":0, + "date":"2017-07-02T13:31:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.11@1.2.0?classifier=sources", + "file_name":"play-joda-routes-binder_2.11-1.2.0-sources.jar", + "size":5782, + "date":"2017-07-02T13:31:00+00:00", + "md5":null, + "sha1":"b7dd00dcfceceed7dfd5b5043fb8f67fd2b55a73", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tototoshi", + "artifact_id":"play-joda-routes-binder_2.11", + "version":"1.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:31:00+00:00", + "size":5782, + "sha1":"b7dd00dcfceceed7dfd5b5043fb8f67fd2b55a73", + "name":"play-joda-routes-binder", + "description":"play-joda-routes-binder", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tototoshi/play-joda-routes-binder_2.11/1.2.0/play-joda-routes-binder_2.11-1.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tototoshi/play-joda-routes-binder_2.11@1.2.0", + "file_name":"play-joda-routes-binder_2.11-1.2.0.pom", + "size":0, + "date":"2017-07-02T13:31:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.12@0.2.1", + "file_name":"latex2unicode_2.12-0.2.1.jar", + "size":55353, + "date":"2017-07-02T18:20:56+00:00", + "md5":null, + "sha1":"8d545e08beb91470e3bda795cbe80699feaa2faf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:56+00:00", + "size":55353, + "sha1":"8d545e08beb91470e3bda795cbe80699feaa2faf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.12@0.2.1", + "file_name":"latex2unicode_2.12-0.2.1.pom", + "size":0, + "date":"2017-07-02T18:20:56+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.12@0.2.1?classifier=sources", + "file_name":"latex2unicode_2.12-0.2.1-sources.jar", + "size":11984, + "date":"2017-07-02T18:20:57+00:00", + "md5":null, + "sha1":"3cb663582e21232daea2c7e619d90ba45c66debd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.12", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:57+00:00", + "size":11984, + "sha1":"3cb663582e21232daea2c7e619d90ba45c66debd", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.12/0.2.1/latex2unicode_2.12-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.12@0.2.1", + "file_name":"latex2unicode_2.12-0.2.1.pom", + "size":0, + "date":"2017-07-02T18:20:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.11@0.2.1", + "file_name":"latex2unicode_2.11-0.2.1.jar", + "size":113913, + "date":"2017-07-02T18:20:13+00:00", + "md5":null, + "sha1":"ecb77013ade117f16d5800d4d6d2f732af8821cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:20:13+00:00", + "size":113913, + "sha1":"ecb77013ade117f16d5800d4d6d2f732af8821cf", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.11@0.2.1", + "file_name":"latex2unicode_2.11-0.2.1.pom", + "size":0, + "date":"2017-07-02T18:20:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.11@0.2.1?classifier=sources", + "file_name":"latex2unicode_2.11-0.2.1-sources.jar", + "size":11984, + "date":"2017-07-02T18:20:14+00:00", + "md5":null, + "sha1":"f63f0203093c1987859f71c90c22ff39b58b7387", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.tomtung", + "artifact_id":"latex2unicode_2.11", + "version":"0.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:20:14+00:00", + "size":11984, + "sha1":"f63f0203093c1987859f71c90c22ff39b58b7387", + "name":"latex2unicode", + "description":"latex2unicode", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/tomtung/latex2unicode_2.11/0.2.1/latex2unicode_2.11-0.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.tomtung/latex2unicode_2.11@0.2.1", + "file_name":"latex2unicode_2.11-0.2.1.pom", + "size":0, + "date":"2017-07-02T18:20:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.stijndehaes/play-prometheus-filters_2.11@0.2.0", + "file_name":"play-prometheus-filters_2.11-0.2.0.jar", + "size":34048, + "date":"2017-07-02T12:48:30+00:00", + "md5":null, + "sha1":"03a73352c733d8ee56a1c7a62c1e2645d7c30fad", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:30+00:00", + "size":34048, + "sha1":"03a73352c733d8ee56a1c7a62c1e2645d7c30fad", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.stijndehaes/play-prometheus-filters_2.11@0.2.0", + "file_name":"play-prometheus-filters_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:48:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.stijndehaes/play-prometheus-filters_2.11@0.2.0?classifier=sources", + "file_name":"play-prometheus-filters_2.11-0.2.0-sources.jar", + "size":6053, + "date":"2017-07-02T12:48:29+00:00", + "md5":null, + "sha1":"749c93193dac155e6596cf770bccb6d85fd50364", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.stijndehaes", + "artifact_id":"play-prometheus-filters_2.11", + "version":"0.2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:48:29+00:00", + "size":6053, + "sha1":"749c93193dac155e6596cf770bccb6d85fd50364", + "name":"play-prometheus-filters", + "description":"play-prometheus-filters", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/stijndehaes/play-prometheus-filters_2.11/0.2.0/play-prometheus-filters_2.11-0.2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.stijndehaes/play-prometheus-filters_2.11@0.2.0", + "file_name":"play-prometheus-filters_2.11-0.2.0.pom", + "size":0, + "date":"2017-07-02T12:48:29+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checkstyle-sonar-plugin/1.24.1/sevntu-checkstyle-sonar-plugin-1.24.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-sonar-plugin@1.24.1?classifier=sources", + "file_name":"sevntu-checkstyle-sonar-plugin-1.24.1-sources.jar", + "size":12882, + "date":"2017-07-02T15:53:10+00:00", + "md5":null, + "sha1":"044d3f7a4de24d791877f19881368eb978564bdb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-sonar-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:53:10+00:00", + "size":12882, + "sha1":"044d3f7a4de24d791877f19881368eb978564bdb", + "name":"SevNTU Checkstyle Sonar Extension Plugin", + "description":"SevNTU Checkstyle extension plugin for Sonar", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-sonar-plugin/1.24.1/sevntu-checkstyle-sonar-plugin-1.24.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-sonar-plugin/1.24.1/sevntu-checkstyle-sonar-plugin-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-sonar-plugin@1.24.1", + "file_name":"sevntu-checkstyle-sonar-plugin-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:53:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-maven-plugin@1.24.1", + "file_name":"sevntu-checkstyle-maven-plugin-1.24.1.jar", + "size":2924, + "date":"2017-07-02T15:52:38+00:00", + "md5":null, + "sha1":"ae54fb7c650203298e0b806dc97b3cdd6788c05e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:38+00:00", + "size":2924, + "sha1":"ae54fb7c650203298e0b806dc97b3cdd6788c05e", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":true, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-maven-plugin@1.24.1", + "file_name":"sevntu-checkstyle-maven-plugin-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-maven-plugin@1.24.1?classifier=sources", + "file_name":"sevntu-checkstyle-maven-plugin-1.24.1-sources.jar", + "size":764, + "date":"2017-07-02T15:52:37+00:00", + "md5":null, + "sha1":"222d9c1618f283b51315a393333461a4e88cb39a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-maven-plugin", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:37+00:00", + "size":764, + "sha1":"222d9c1618f283b51315a393333461a4e88cb39a", + "name":"Sevntu Checkstyle Maven Plugin", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-maven-plugin/1.24.1/sevntu-checkstyle-maven-plugin-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-maven-plugin@1.24.1", + "file_name":"sevntu-checkstyle-maven-plugin-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:37+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-idea-extension@1.24.1", + "file_name":"sevntu-checkstyle-idea-extension-1.24.1.jar", + "size":193304, + "date":"2017-07-02T15:52:45+00:00", + "md5":null, + "sha1":"defeab02fc4197910d5a0d6b5b995ec1c5c20841", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:45+00:00", + "size":193304, + "sha1":"defeab02fc4197910d5a0d6b5b995ec1c5c20841", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-idea-extension@1.24.1", + "file_name":"sevntu-checkstyle-idea-extension-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-idea-extension@1.24.1?classifier=sources", + "file_name":"sevntu-checkstyle-idea-extension-1.24.1-sources.jar", + "size":27396, + "date":"2017-07-02T15:52:43+00:00", + "md5":null, + "sha1":"bec575c41072d7e2e4a596804544c214a04537bf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checkstyle-idea-extension", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:43+00:00", + "size":27396, + "sha1":"bec575c41072d7e2e4a596804544c214a04537bf", + "name":"Sevntu Checkstyle Idea extension", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checkstyle-idea-extension/1.24.1/sevntu-checkstyle-idea-extension-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checkstyle-idea-extension@1.24.1", + "file_name":"sevntu-checkstyle-idea-extension-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checks@1.24.1", + "file_name":"sevntu-checks-1.24.1.jar", + "size":169476, + "date":"2017-07-02T15:52:28+00:00", + "md5":null, + "sha1":"31778216a037513d3e184e4f1ca70a340436d339", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T15:52:28+00:00", + "size":169476, + "sha1":"31778216a037513d3e184e4f1ca70a340436d339", + "name":null, + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checks@1.24.1", + "file_name":"sevntu-checks-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checks@1.24.1?classifier=sources", + "file_name":"sevntu-checks-1.24.1-sources.jar", + "size":179879, + "date":"2017-07-02T15:52:31+00:00", + "md5":null, + "sha1":"af8b89da3bd59a64d09c3fc6a5817932ac211b71", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.sevntu-checkstyle", + "artifact_id":"sevntu-checks", + "version":"1.24.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T15:52:31+00:00", + "size":179879, + "sha1":"af8b89da3bd59a64d09c3fc6a5817932ac211b71", + "name":null, + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/sevntu-checkstyle/sevntu-checks/1.24.1/sevntu-checks-1.24.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.sevntu-checkstyle/sevntu-checks@1.24.1", + "file_name":"sevntu-checks-1.24.1.pom", + "size":0, + "date":"2017-07-02T15:52:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.20", + "file_name":"structs4java-maven-plugin-1.0.20.jar", + "size":10598, + "date":"2017-07-02T21:08:53+00:00", + "md5":null, + "sha1":"c66fdd91baa322b8ce1d82457931dd9ca20e01cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:08:53+00:00", + "size":10598, + "sha1":"c66fdd91baa322b8ce1d82457931dd9ca20e01cf", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.20", + "file_name":"structs4java-maven-plugin-1.0.20.pom", + "size":0, + "date":"2017-07-02T21:08:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.20?classifier=sources", + "file_name":"structs4java-maven-plugin-1.0.20-sources.jar", + "size":5055, + "date":"2017-07-02T21:08:54+00:00", + "md5":null, + "sha1":"864417782b6e3277788bdb16c359b896085c55ae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:08:54+00:00", + "size":5055, + "sha1":"864417782b6e3277788bdb16c359b896085c55ae", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.20/structs4java-maven-plugin-1.0.20.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.20", + "file_name":"structs4java-maven-plugin-1.0.20.pom", + "size":0, + "date":"2017-07-02T21:08:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.19", + "file_name":"structs4java-maven-plugin-1.0.19.jar", + "size":10602, + "date":"2017-07-02T17:43:59+00:00", + "md5":null, + "sha1":"e6359ae5d7c5ce26acca1e03fbc99461f4a43bb5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:43:59+00:00", + "size":10602, + "sha1":"e6359ae5d7c5ce26acca1e03fbc99461f4a43bb5", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.19", + "file_name":"structs4java-maven-plugin-1.0.19.pom", + "size":0, + "date":"2017-07-02T17:43:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.19?classifier=sources", + "file_name":"structs4java-maven-plugin-1.0.19-sources.jar", + "size":5057, + "date":"2017-07-02T17:44:00+00:00", + "md5":null, + "sha1":"527d367cd36bafb846bbf31c325f35e047f6aeeb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:44:00+00:00", + "size":5057, + "sha1":"527d367cd36bafb846bbf31c325f35e047f6aeeb", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.19/structs4java-maven-plugin-1.0.19.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.19", + "file_name":"structs4java-maven-plugin-1.0.19.pom", + "size":0, + "date":"2017-07-02T17:44:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.18", + "file_name":"structs4java-maven-plugin-1.0.18.jar", + "size":10097, + "date":"2017-07-02T12:17:05+00:00", + "md5":null, + "sha1":"ab85baaae9574464783b1a801626a5850b8cd9cd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":10097, + "sha1":"ab85baaae9574464783b1a801626a5850b8cd9cd", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.18", + "file_name":"structs4java-maven-plugin-1.0.18.pom", + "size":0, + "date":"2017-07-02T12:17:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.18?classifier=sources", + "file_name":"structs4java-maven-plugin-1.0.18-sources.jar", + "size":4983, + "date":"2017-07-02T12:17:05+00:00", + "md5":null, + "sha1":"baa6909399ea6da13ea44ad10e9471ec5d3d9f4e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-maven-plugin", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:17:05+00:00", + "size":4983, + "sha1":"baa6909399ea6da13ea44ad10e9471ec5d3d9f4e", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-maven-plugin/1.0.18/structs4java-maven-plugin-1.0.18.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-maven-plugin@1.0.18", + "file_name":"structs4java-maven-plugin-1.0.18.pom", + "size":0, + "date":"2017-07-02T12:17:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.20", + "file_name":"structs4java-core-1.0.20.jar", + "size":8377586, + "date":"2017-07-02T21:07:31+00:00", + "md5":null, + "sha1":"3cc11ab8b3d7cbe3577b640c59152815ee8122d2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T21:07:31+00:00", + "size":8377586, + "sha1":"3cc11ab8b3d7cbe3577b640c59152815ee8122d2", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.20", + "file_name":"structs4java-core-1.0.20.pom", + "size":0, + "date":"2017-07-02T21:07:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.20?classifier=sources", + "file_name":"structs4java-core-1.0.20-sources.jar", + "size":3366, + "date":"2017-07-02T21:07:24+00:00", + "md5":null, + "sha1":"e30219a4b559221faa27da388476c05137812e82", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.20", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T21:07:24+00:00", + "size":3366, + "sha1":"e30219a4b559221faa27da388476c05137812e82", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.20/structs4java-core-1.0.20.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.20", + "file_name":"structs4java-core-1.0.20.pom", + "size":0, + "date":"2017-07-02T21:07:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.19", + "file_name":"structs4java-core-1.0.19.jar", + "size":8377368, + "date":"2017-07-02T17:42:31+00:00", + "md5":null, + "sha1":"8bdb588fe1bc94a7161283267af0acc405f4b445", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":8377368, + "sha1":"8bdb588fe1bc94a7161283267af0acc405f4b445", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.19", + "file_name":"structs4java-core-1.0.19.pom", + "size":0, + "date":"2017-07-02T17:42:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.19?classifier=sources", + "file_name":"structs4java-core-1.0.19-sources.jar", + "size":3367, + "date":"2017-07-02T17:42:31+00:00", + "md5":null, + "sha1":"f0e9377525b9ad6f44fa7e0d11d3fa15eb04128a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.19", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:42:31+00:00", + "size":3367, + "sha1":"f0e9377525b9ad6f44fa7e0d11d3fa15eb04128a", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.19/structs4java-core-1.0.19.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.19", + "file_name":"structs4java-core-1.0.19.pom", + "size":0, + "date":"2017-07-02T17:42:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.18", + "file_name":"structs4java-core-1.0.18.jar", + "size":8373153, + "date":"2017-07-02T12:15:42+00:00", + "md5":null, + "sha1":"5d3156db77dd327a98cb2de88bd431b850365691", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:42+00:00", + "size":8373153, + "sha1":"5d3156db77dd327a98cb2de88bd431b850365691", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.18", + "file_name":"structs4java-core-1.0.18.pom", + "size":0, + "date":"2017-07-02T12:15:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.18?classifier=sources", + "file_name":"structs4java-core-1.0.18-sources.jar", + "size":3366, + "date":"2017-07-02T12:15:34+00:00", + "md5":null, + "sha1":"4a45d75f5efda8f4977f307b1758bc8fbc910425", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.marc-christian-schulze.structs4java", + "artifact_id":"structs4java-core", + "version":"1.0.18", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:15:34+00:00", + "size":3366, + "sha1":"4a45d75f5efda8f4977f307b1758bc8fbc910425", + "name":"${project.groupId}:${project.artifactId}", + "description":"Structs4Java is a code generator based on C/C++ structures.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/marc-christian-schulze/structs4java/structs4java-core/1.0.18/structs4java-core-1.0.18.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.marc-christian-schulze.structs4java/structs4java-core@1.0.18", + "file_name":"structs4java-core-1.0.18.pom", + "size":0, + "date":"2017-07-02T12:15:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.kuros/random-jpa@0.4.8", + "file_name":"random-jpa-0.4.8.jar", + "size":200944, + "date":"2017-07-02T18:33:22+00:00", + "md5":null, + "sha1":"1a5e966b031ef4a46f5c9af253d4ad5e7f146dc2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T18:33:22+00:00", + "size":200944, + "sha1":"1a5e966b031ef4a46f5c9af253d4ad5e7f146dc2", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.kuros/random-jpa@0.4.8", + "file_name":"random-jpa-0.4.8.pom", + "size":0, + "date":"2017-07-02T18:33:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.kuros/random-jpa@0.4.8?classifier=sources", + "file_name":"random-jpa-0.4.8-sources.jar", + "size":143964, + "date":"2017-07-02T18:33:26+00:00", + "md5":null, + "sha1":"abd2f9076463485bc3134e60c97f158eaa898e19", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.kuros", + "artifact_id":"random-jpa", + "version":"0.4.8", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:33:26+00:00", + "size":143964, + "sha1":"abd2f9076463485bc3134e60c97f158eaa898e19", + "name":"${project.artifactId}", + "description":"This project was born out of a need to create test data for complex database hierarchy.\n This project has two main aspects to it:\n * Self managing entity relationship (based on foreign key relationship between tables)\n * Simplifying creation of random data for entities.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/kuros/random-jpa/0.4.8/random-jpa-0.4.8.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.kuros/random-jpa@0.4.8", + "file_name":"random-jpa-0.4.8.pom", + "size":0, + "date":"2017-07-02T18:33:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing-data@0.2.77", + "file_name":"connect-utils-testing-data-0.2.77.jar", + "size":7052, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":"be0efbe91c363f05d1c0d0b399a4bfce3bb4f658", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":7052, + "sha1":"be0efbe91c363f05d1c0d0b399a4bfce3bb4f658", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing-data@0.2.77", + "file_name":"connect-utils-testing-data-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing-data@0.2.77?classifier=sources", + "file_name":"connect-utils-testing-data-0.2.77-sources.jar", + "size":6113, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":"f4155f2283fd8da59f07b618110a6a141b42074f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing-data", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":6113, + "sha1":"f4155f2283fd8da59f07b618110a6a141b42074f", + "name":"connect-utils-testing-data", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing-data/0.2.77/connect-utils-testing-data-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing-data@0.2.77", + "file_name":"connect-utils-testing-data-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing@0.2.77", + "file_name":"connect-utils-testing-0.2.77.jar", + "size":33405, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":"9216d400042cf0b39ac6a515b24ef744ed4b140e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":33405, + "sha1":"9216d400042cf0b39ac6a515b24ef744ed4b140e", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing@0.2.77", + "file_name":"connect-utils-testing-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing@0.2.77?classifier=sources", + "file_name":"connect-utils-testing-0.2.77-sources.jar", + "size":19747, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":"78d15c354188247302b056a85ef0f1800ad2911c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils-testing", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:12+00:00", + "size":19747, + "sha1":"78d15c354188247302b056a85ef0f1800ad2911c", + "name":"connect-utils-testing", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils-testing/0.2.77/connect-utils-testing-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils-testing@0.2.77", + "file_name":"connect-utils-testing-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils@0.2.77", + "file_name":"connect-utils-0.2.77.jar", + "size":75836, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":"22cf1cd02b756610ebc1573cc248c3d3e5bdccb6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":75836, + "sha1":"22cf1cd02b756610ebc1573cc248c3d3e5bdccb6", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils@0.2.77", + "file_name":"connect-utils-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils@0.2.77?classifier=sources", + "file_name":"connect-utils-0.2.77-sources.jar", + "size":51693, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":"7b010f28aeabbe62eb031d7026945a6351bd2e87", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.jcustenborder.kafka.connect", + "artifact_id":"connect-utils", + "version":"0.2.77", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:27:10+00:00", + "size":51693, + "sha1":"7b010f28aeabbe62eb031d7026945a6351bd2e87", + "name":"connect-utils", + "description":"A helper library for building Kafka Connect Connectors.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/jcustenborder/kafka/connect/connect-utils/0.2.77/connect-utils-0.2.77.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.jcustenborder.kafka.connect/connect-utils@0.2.77", + "file_name":"connect-utils-0.2.77.pom", + "size":0, + "date":"2017-07-02T17:27:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.12@0.4.2", + "file_name":"levsha-events_sjs0.6_2.12-0.4.2.jar", + "size":21171, + "date":"2017-07-02T19:54:38+00:00", + "md5":null, + "sha1":"8aa99a7e7b57b3f1642ede69aa39546dd9e3b200", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:38+00:00", + "size":21171, + "sha1":"8aa99a7e7b57b3f1642ede69aa39546dd9e3b200", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.12@0.4.2", + "file_name":"levsha-events_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.12@0.4.2?classifier=sources", + "file_name":"levsha-events_sjs0.6_2.12-0.4.2-sources.jar", + "size":929, + "date":"2017-07-02T19:54:36+00:00", + "md5":null, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:36+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.12/0.4.2/levsha-events_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.12@0.4.2", + "file_name":"levsha-events_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.11@0.4.2", + "file_name":"levsha-events_sjs0.6_2.11-0.4.2.jar", + "size":21885, + "date":"2017-07-02T19:54:14+00:00", + "md5":null, + "sha1":"71e91e648a4417db4270e0b14826e04a0456e612", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:14+00:00", + "size":21885, + "sha1":"71e91e648a4417db4270e0b14826e04a0456e612", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.11@0.4.2", + "file_name":"levsha-events_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.11@0.4.2?classifier=sources", + "file_name":"levsha-events_sjs0.6_2.11-0.4.2-sources.jar", + "size":929, + "date":"2017-07-02T19:54:12+00:00", + "md5":null, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:12+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_sjs0.6_2.11/0.4.2/levsha-events_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_sjs0.6_2.11@0.4.2", + "file_name":"levsha-events_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.12@0.4.2", + "file_name":"levsha-events_2.12-0.4.2.jar", + "size":11495, + "date":"2017-07-02T19:55:01+00:00", + "md5":null, + "sha1":"6fe60fd021bb19a2b1f958dddd20655de2165c99", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:01+00:00", + "size":11495, + "sha1":"6fe60fd021bb19a2b1f958dddd20655de2165c99", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.12@0.4.2", + "file_name":"levsha-events_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:55:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.12@0.4.2?classifier=sources", + "file_name":"levsha-events_2.12-0.4.2-sources.jar", + "size":929, + "date":"2017-07-02T19:55:00+00:00", + "md5":null, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:00+00:00", + "size":929, + "sha1":"19e6ae8c8c6a1a00d1dcbb90fbdb7f2891af7866", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.12/0.4.2/levsha-events_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.12@0.4.2", + "file_name":"levsha-events_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:55:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.11@0.4.2", + "file_name":"levsha-events_2.11-0.4.2.jar", + "size":12007, + "date":"2017-07-02T19:53:44+00:00", + "md5":null, + "sha1":"c64a8673a706015e5c232d141ad3434ebb5f8042", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:44+00:00", + "size":12007, + "sha1":"c64a8673a706015e5c232d141ad3434ebb5f8042", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.11@0.4.2", + "file_name":"levsha-events_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:53:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.11@0.4.2?classifier=sources", + "file_name":"levsha-events_2.11-0.4.2-sources.jar", + "size":929, + "date":"2017-07-02T19:53:43+00:00", + "md5":null, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-events_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:53:43+00:00", + "size":929, + "sha1":"1ae27f126eaaf42373c56e453c9e43f963dfa822", + "name":"levsha-events", + "description":"levsha-events", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-events_2.11/0.4.2/levsha-events_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-events_2.11@0.4.2", + "file_name":"levsha-events_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:53:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.12@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.12-0.4.2.jar", + "size":49699, + "date":"2017-07-02T19:55:08+00:00", + "md5":null, + "sha1":"f2995c66cfba1aa059def6ea4259b78196369ad1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:55:08+00:00", + "size":49699, + "sha1":"f2995c66cfba1aa059def6ea4259b78196369ad1", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.12@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:55:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.12@0.4.2?classifier=sources", + "file_name":"levsha-dom_sjs0.6_2.12-0.4.2-sources.jar", + "size":3617, + "date":"2017-07-02T19:55:10+00:00", + "md5":null, + "sha1":"c65e3647fb0c2fbb15921737f7032e273d58802d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:55:10+00:00", + "size":3617, + "sha1":"c65e3647fb0c2fbb15921737f7032e273d58802d", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.12/0.4.2/levsha-dom_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.12@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:55:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.11@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.11-0.4.2.jar", + "size":67525, + "date":"2017-07-02T19:54:19+00:00", + "md5":null, + "sha1":"c30e7b4def4e6d33a82e5f8f943e49f80e289bd4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:19+00:00", + "size":67525, + "sha1":"c30e7b4def4e6d33a82e5f8f943e49f80e289bd4", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.11@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.11@0.4.2?classifier=sources", + "file_name":"levsha-dom_sjs0.6_2.11-0.4.2-sources.jar", + "size":3617, + "date":"2017-07-02T19:54:21+00:00", + "md5":null, + "sha1":"a147a75317ff1c0a9364807fa1f26d3ceb99ca29", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-dom_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:21+00:00", + "size":3617, + "sha1":"a147a75317ff1c0a9364807fa1f26d3ceb99ca29", + "name":"levsha-dom", + "description":"levsha-dom", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-dom_sjs0.6_2.11/0.4.2/levsha-dom_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-dom_sjs0.6_2.11@0.4.2", + "file_name":"levsha-dom_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.12@0.4.2", + "file_name":"levsha-core_sjs0.6_2.12-0.4.2.jar", + "size":280417, + "date":"2017-07-02T19:54:43+00:00", + "md5":null, + "sha1":"fbbf863df4aed0a2252ab18448c8ef76ee5ee603", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:43+00:00", + "size":280417, + "sha1":"fbbf863df4aed0a2252ab18448c8ef76ee5ee603", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.12@0.4.2", + "file_name":"levsha-core_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.12@0.4.2?classifier=sources", + "file_name":"levsha-core_sjs0.6_2.12-0.4.2-sources.jar", + "size":13923, + "date":"2017-07-02T19:54:50+00:00", + "md5":null, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:50+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.12/0.4.2/levsha-core_sjs0.6_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.12@0.4.2", + "file_name":"levsha-core_sjs0.6_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.11@0.4.2", + "file_name":"levsha-core_sjs0.6_2.11-0.4.2.jar", + "size":299174, + "date":"2017-07-02T19:54:04+00:00", + "md5":null, + "sha1":"f474358aa47e5c17353aadff262e27306e5f8dbd", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:04+00:00", + "size":299174, + "sha1":"f474358aa47e5c17353aadff262e27306e5f8dbd", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.11@0.4.2", + "file_name":"levsha-core_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.11@0.4.2?classifier=sources", + "file_name":"levsha-core_sjs0.6_2.11-0.4.2-sources.jar", + "size":13923, + "date":"2017-07-02T19:54:10+00:00", + "md5":null, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_sjs0.6_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:10+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_sjs0.6_2.11/0.4.2/levsha-core_sjs0.6_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_sjs0.6_2.11@0.4.2", + "file_name":"levsha-core_sjs0.6_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.12@0.4.2", + "file_name":"levsha-core_2.12-0.4.2.jar", + "size":147582, + "date":"2017-07-02T19:54:52+00:00", + "md5":null, + "sha1":"e4967735d2981e4bce8f08e17f3afb9722fdd4f2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:54:52+00:00", + "size":147582, + "sha1":"e4967735d2981e4bce8f08e17f3afb9722fdd4f2", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.12@0.4.2", + "file_name":"levsha-core_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.12@0.4.2?classifier=sources", + "file_name":"levsha-core_2.12-0.4.2-sources.jar", + "size":13923, + "date":"2017-07-02T19:54:59+00:00", + "md5":null, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:59+00:00", + "size":13923, + "sha1":"5dbf02dbbdd1342676172b684aed46ec0fff678d", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.12/0.4.2/levsha-core_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.12@0.4.2", + "file_name":"levsha-core_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.11@0.4.2", + "file_name":"levsha-core_2.11-0.4.2.jar", + "size":161261, + "date":"2017-07-02T19:53:52+00:00", + "md5":null, + "sha1":"82fb96733b476031483b725052f8f88e40a13b2c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:53:52+00:00", + "size":161261, + "sha1":"82fb96733b476031483b725052f8f88e40a13b2c", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.11@0.4.2", + "file_name":"levsha-core_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:53:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.11@0.4.2?classifier=sources", + "file_name":"levsha-core_2.11-0.4.2-sources.jar", + "size":13923, + "date":"2017-07-02T19:54:02+00:00", + "md5":null, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"levsha-core_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:54:02+00:00", + "size":13923, + "sha1":"8250f8bccfa6ea310dc0f95b822e814d53fdee06", + "name":"levsha-core", + "description":"levsha-core", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/levsha-core_2.11/0.4.2/levsha-core_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/levsha-core_2.11@0.4.2", + "file_name":"levsha-core_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T19:54:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.2", + "file_name":"korolev_2.12-0.4.2.jar", + "size":137832, + "date":"2017-07-02T20:42:21+00:00", + "md5":null, + "sha1":"76c0d2be3891d004cc0ca0c642160157f1b92cae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:21+00:00", + "size":137832, + "sha1":"76c0d2be3891d004cc0ca0c642160157f1b92cae", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.2", + "file_name":"korolev_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.2?classifier=sources", + "file_name":"korolev_2.12-0.4.2-sources.jar", + "size":15408, + "date":"2017-07-02T20:42:25+00:00", + "md5":null, + "sha1":"79f5ea89217808bf0d425861b4e44a94c930c567", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:25+00:00", + "size":15408, + "sha1":"79f5ea89217808bf0d425861b4e44a94c930c567", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.2/korolev_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.2", + "file_name":"korolev_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:25+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.1", + "file_name":"korolev_2.12-0.4.1.jar", + "size":137825, + "date":"2017-07-02T12:43:05+00:00", + "md5":null, + "sha1":"da391a34c44b2253f079f0c8386a37b9b908ae64", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:05+00:00", + "size":137825, + "sha1":"da391a34c44b2253f079f0c8386a37b9b908ae64", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.1", + "file_name":"korolev_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.1?classifier=sources", + "file_name":"korolev_2.12-0.4.1-sources.jar", + "size":15410, + "date":"2017-07-02T12:43:08+00:00", + "md5":null, + "sha1":"061774504514a81614df20c2f17c8eb3a8aa6157", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:08+00:00", + "size":15410, + "sha1":"061774504514a81614df20c2f17c8eb3a8aa6157", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.12/0.4.1/korolev_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.12@0.4.1", + "file_name":"korolev_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.2", + "file_name":"korolev_2.11-0.4.2.jar", + "size":213338, + "date":"2017-07-02T20:40:28+00:00", + "md5":null, + "sha1":"02cc82b1161199fab701a37af3a3ad14e394360c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:28+00:00", + "size":213338, + "sha1":"02cc82b1161199fab701a37af3a3ad14e394360c", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.2", + "file_name":"korolev_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.2?classifier=sources", + "file_name":"korolev_2.11-0.4.2-sources.jar", + "size":15408, + "date":"2017-07-02T20:40:32+00:00", + "md5":null, + "sha1":"17b47d8a0f66f8f10b6c14eb7c5d1385d3fd9932", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:32+00:00", + "size":15408, + "sha1":"17b47d8a0f66f8f10b6c14eb7c5d1385d3fd9932", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.2/korolev_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.2", + "file_name":"korolev_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.1", + "file_name":"korolev_2.11-0.4.1.jar", + "size":213335, + "date":"2017-07-02T12:40:54+00:00", + "md5":null, + "sha1":"cf30ff10d4108b642d7cff2dfb44e8fd38241be6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:54+00:00", + "size":213335, + "sha1":"cf30ff10d4108b642d7cff2dfb44e8fd38241be6", + "name":"korolev", + "description":"korolev", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.1", + "file_name":"korolev_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:40:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.1?classifier=sources", + "file_name":"korolev_2.11-0.4.1-sources.jar", + "size":15410, + "date":"2017-07-02T12:41:03+00:00", + "md5":null, + "sha1":"e60563be89d077defa284e0fe464c7c3a48bcb6d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":15410, + "sha1":"e60563be89d077defa284e0fe464c7c3a48bcb6d", + "name":"korolev", + "description":"korolev", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev_2.11/0.4.1/korolev_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev_2.11@0.4.1", + "file_name":"korolev_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.2", + "file_name":"korolev-server_2.12-0.4.2.jar", + "size":131280, + "date":"2017-07-02T20:42:39+00:00", + "md5":null, + "sha1":"cf35abe567acec8680b945e11ab46bd491909888", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:39+00:00", + "size":131280, + "sha1":"cf35abe567acec8680b945e11ab46bd491909888", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.2", + "file_name":"korolev-server_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.2?classifier=sources", + "file_name":"korolev-server_2.12-0.4.2-sources.jar", + "size":19325, + "date":"2017-07-02T20:42:44+00:00", + "md5":null, + "sha1":"fede6b0c5d59d86d4ed0c65d266638f3e95bd212", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:44+00:00", + "size":19325, + "sha1":"fede6b0c5d59d86d4ed0c65d266638f3e95bd212", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.2/korolev-server_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.2", + "file_name":"korolev-server_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.1", + "file_name":"korolev-server_2.12-0.4.1.jar", + "size":131285, + "date":"2017-07-02T12:43:33+00:00", + "md5":null, + "sha1":"2b11b94e9a002b114cea1f4bd249a55097035d46", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:33+00:00", + "size":131285, + "sha1":"2b11b94e9a002b114cea1f4bd249a55097035d46", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.1", + "file_name":"korolev-server_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:33+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.1?classifier=sources", + "file_name":"korolev-server_2.12-0.4.1-sources.jar", + "size":19325, + "date":"2017-07-02T12:43:51+00:00", + "md5":null, + "sha1":"eb7f30c356d6510bfe0798d4e66a7fd670c30259", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:51+00:00", + "size":19325, + "sha1":"eb7f30c356d6510bfe0798d4e66a7fd670c30259", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.12/0.4.1/korolev-server_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.12@0.4.1", + "file_name":"korolev-server_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.2", + "file_name":"korolev-server_2.11-0.4.2.jar", + "size":196379, + "date":"2017-07-02T20:40:50+00:00", + "md5":null, + "sha1":"9325d871c10d24dd4cfa8d92e6edbeeaead0ce9c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:50+00:00", + "size":196379, + "sha1":"9325d871c10d24dd4cfa8d92e6edbeeaead0ce9c", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.2", + "file_name":"korolev-server_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.2?classifier=sources", + "file_name":"korolev-server_2.11-0.4.2-sources.jar", + "size":19325, + "date":"2017-07-02T20:40:53+00:00", + "md5":null, + "sha1":"e8b11c14a898c3f628a4b6ac8f591c8b544385bb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:53+00:00", + "size":19325, + "sha1":"e8b11c14a898c3f628a4b6ac8f591c8b544385bb", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.2/korolev-server_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.2", + "file_name":"korolev-server_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.1", + "file_name":"korolev-server_2.11-0.4.1.jar", + "size":196383, + "date":"2017-07-02T12:41:28+00:00", + "md5":null, + "sha1":"842f67d21c284903faff44797b8f7d65bc650b06", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:28+00:00", + "size":196383, + "sha1":"842f67d21c284903faff44797b8f7d65bc650b06", + "name":"server", + "description":"server", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.1", + "file_name":"korolev-server_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.1?classifier=sources", + "file_name":"korolev-server_2.11-0.4.1-sources.jar", + "size":19325, + "date":"2017-07-02T12:41:32+00:00", + "md5":null, + "sha1":"30e003efed74bb6a8ebf65cc087b6bbdf82d300b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:32+00:00", + "size":19325, + "sha1":"30e003efed74bb6a8ebf65cc087b6bbdf82d300b", + "name":"server", + "description":"server", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server_2.11/0.4.1/korolev-server_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server_2.11@0.4.1", + "file_name":"korolev-server_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.2", + "file_name":"korolev-server-blaze_2.12-0.4.2.jar", + "size":51410, + "date":"2017-07-02T20:42:53+00:00", + "md5":null, + "sha1":"a9345e7ec4fa7eadfe03ee2e95659baa88d8b4f3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":51410, + "sha1":"a9345e7ec4fa7eadfe03ee2e95659baa88d8b4f3", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.2", + "file_name":"korolev-server-blaze_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.2?classifier=sources", + "file_name":"korolev-server-blaze_2.12-0.4.2-sources.jar", + "size":8069, + "date":"2017-07-02T20:42:49+00:00", + "md5":null, + "sha1":"d774255a8358708d9bcf3d704093e5024831691f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:49+00:00", + "size":8069, + "sha1":"d774255a8358708d9bcf3d704093e5024831691f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.2/korolev-server-blaze_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.2", + "file_name":"korolev-server-blaze_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.1", + "file_name":"korolev-server-blaze_2.12-0.4.1.jar", + "size":51410, + "date":"2017-07-02T12:43:30+00:00", + "md5":null, + "sha1":"ee35cdbe79666699f715c2760699cfb50132d34f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:43:30+00:00", + "size":51410, + "sha1":"ee35cdbe79666699f715c2760699cfb50132d34f", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.1", + "file_name":"korolev-server-blaze_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.1?classifier=sources", + "file_name":"korolev-server-blaze_2.12-0.4.1-sources.jar", + "size":8069, + "date":"2017-07-02T12:43:18+00:00", + "md5":null, + "sha1":"fd7a6ebae93c8b74c31d2e260cd3da43217284dc", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:43:18+00:00", + "size":8069, + "sha1":"fd7a6ebae93c8b74c31d2e260cd3da43217284dc", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.12/0.4.1/korolev-server-blaze_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.12@0.4.1", + "file_name":"korolev-server-blaze_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:43:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.2", + "file_name":"korolev-server-blaze_2.11-0.4.2.jar", + "size":72902, + "date":"2017-07-02T20:40:47+00:00", + "md5":null, + "sha1":"1342b23502c22936ccbe204d0c2621a2e780648d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:47+00:00", + "size":72902, + "sha1":"1342b23502c22936ccbe204d0c2621a2e780648d", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.2", + "file_name":"korolev-server-blaze_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.2?classifier=sources", + "file_name":"korolev-server-blaze_2.11-0.4.2-sources.jar", + "size":8069, + "date":"2017-07-02T20:40:44+00:00", + "md5":null, + "sha1":"8373216ea395c27b68d3e7ffa2b3d50d0a979f04", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:44+00:00", + "size":8069, + "sha1":"8373216ea395c27b68d3e7ffa2b3d50d0a979f04", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.2/korolev-server-blaze_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.2", + "file_name":"korolev-server-blaze_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.1", + "file_name":"korolev-server-blaze_2.11-0.4.1.jar", + "size":72903, + "date":"2017-07-02T12:41:24+00:00", + "md5":null, + "sha1":"9edf80b76718966df9b40141ce82416eaa71c7a5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:24+00:00", + "size":72903, + "sha1":"9edf80b76718966df9b40141ce82416eaa71c7a5", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.1", + "file_name":"korolev-server-blaze_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.1?classifier=sources", + "file_name":"korolev-server-blaze_2.11-0.4.1-sources.jar", + "size":8069, + "date":"2017-07-02T12:41:21+00:00", + "md5":null, + "sha1":"2cd737060e0ba9fa0801d901b3f6f5ccbfa602b1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-server-blaze_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:21+00:00", + "size":8069, + "sha1":"2cd737060e0ba9fa0801d901b3f6f5ccbfa602b1", + "name":"server-blaze", + "description":"server-blaze", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-server-blaze_2.11/0.4.1/korolev-server-blaze_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-server-blaze_2.11@0.4.1", + "file_name":"korolev-server-blaze_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.2", + "file_name":"korolev-jcache-support_2.12-0.4.2.jar", + "size":443, + "date":"2017-07-02T20:42:53+00:00", + "md5":null, + "sha1":"2ed5a5892d53d1b0de67297f9dafd3f786b8183d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:53+00:00", + "size":443, + "sha1":"2ed5a5892d53d1b0de67297f9dafd3f786b8183d", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.2", + "file_name":"korolev-jcache-support_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:53+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.2?classifier=sources", + "file_name":"korolev-jcache-support_2.12-0.4.2-sources.jar", + "size":1742, + "date":"2017-07-02T20:42:59+00:00", + "md5":null, + "sha1":"cccdd6d533bfd5a97e62a88e51893c55e6767b4c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:59+00:00", + "size":1742, + "sha1":"cccdd6d533bfd5a97e62a88e51893c55e6767b4c", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.2/korolev-jcache-support_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.2", + "file_name":"korolev-jcache-support_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.1", + "file_name":"korolev-jcache-support_2.12-0.4.1.jar", + "size":444, + "date":"2017-07-02T12:44:04+00:00", + "md5":null, + "sha1":"942b149c751b2cbab9fbc43cd0ba704e9a5f7486", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:44:04+00:00", + "size":444, + "sha1":"942b149c751b2cbab9fbc43cd0ba704e9a5f7486", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.1", + "file_name":"korolev-jcache-support_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:44:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.1?classifier=sources", + "file_name":"korolev-jcache-support_2.12-0.4.1-sources.jar", + "size":1742, + "date":"2017-07-02T12:44:28+00:00", + "md5":null, + "sha1":"81543b8f952c5acdf415e6f9151a7c82c8d252c9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:44:28+00:00", + "size":1742, + "sha1":"81543b8f952c5acdf415e6f9151a7c82c8d252c9", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.12/0.4.1/korolev-jcache-support_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.12@0.4.1", + "file_name":"korolev-jcache-support_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:44:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.2", + "file_name":"korolev-jcache-support_2.11-0.4.2.jar", + "size":444, + "date":"2017-07-02T20:40:34+00:00", + "md5":null, + "sha1":"26de758f91ee0539569da74cf92e3f668bd5ed15", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:34+00:00", + "size":444, + "sha1":"26de758f91ee0539569da74cf92e3f668bd5ed15", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.2", + "file_name":"korolev-jcache-support_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:34+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.2?classifier=sources", + "file_name":"korolev-jcache-support_2.11-0.4.2-sources.jar", + "size":1742, + "date":"2017-07-02T20:40:40+00:00", + "md5":null, + "sha1":"e88e98a9f73c17f0251e486241e45b0a04ef8b60", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:40+00:00", + "size":1742, + "sha1":"e88e98a9f73c17f0251e486241e45b0a04ef8b60", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.2/korolev-jcache-support_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.2", + "file_name":"korolev-jcache-support_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.1", + "file_name":"korolev-jcache-support_2.11-0.4.1.jar", + "size":445, + "date":"2017-07-02T12:41:11+00:00", + "md5":null, + "sha1":"f42c53b6c08798141300d51baaf066c0424c1537", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:11+00:00", + "size":445, + "sha1":"f42c53b6c08798141300d51baaf066c0424c1537", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.1", + "file_name":"korolev-jcache-support_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.1?classifier=sources", + "file_name":"korolev-jcache-support_2.11-0.4.1-sources.jar", + "size":1742, + "date":"2017-07-02T12:41:18+00:00", + "md5":null, + "sha1":"e7c4499577701d6ec915de69d6873c175c0abc73", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-jcache-support_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:18+00:00", + "size":1742, + "sha1":"e7c4499577701d6ec915de69d6873c175c0abc73", + "name":"jcache-support", + "description":"jcache-support", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-jcache-support_2.11/0.4.1/korolev-jcache-support_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-jcache-support_2.11@0.4.1", + "file_name":"korolev-jcache-support_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:18+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.2", + "file_name":"korolev-bridge_2.12-0.4.2.jar", + "size":28968, + "date":"2017-07-02T20:42:09+00:00", + "md5":null, + "sha1":"4dc61446f324000fc1f80b3cb177b23f0d24dbc6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:09+00:00", + "size":28968, + "sha1":"4dc61446f324000fc1f80b3cb177b23f0d24dbc6", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.2", + "file_name":"korolev-bridge_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.2?classifier=sources", + "file_name":"korolev-bridge_2.12-0.4.2-sources.jar", + "size":7263, + "date":"2017-07-02T20:42:14+00:00", + "md5":null, + "sha1":"3d8e14032b936109183314c6eee245713040d330", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:14+00:00", + "size":7263, + "sha1":"3d8e14032b936109183314c6eee245713040d330", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.2/korolev-bridge_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.2", + "file_name":"korolev-bridge_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.1", + "file_name":"korolev-bridge_2.12-0.4.1.jar", + "size":28969, + "date":"2017-07-02T12:42:54+00:00", + "md5":null, + "sha1":"e42dd1d4557e84e5a1e2a5578c2f0453c6079697", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:54+00:00", + "size":28969, + "sha1":"e42dd1d4557e84e5a1e2a5578c2f0453c6079697", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.1", + "file_name":"korolev-bridge_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:42:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.1?classifier=sources", + "file_name":"korolev-bridge_2.12-0.4.1-sources.jar", + "size":7263, + "date":"2017-07-02T12:42:58+00:00", + "md5":null, + "sha1":"3844e4173091473f1bd5900a4e2a88564be7a758", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:58+00:00", + "size":7263, + "sha1":"3844e4173091473f1bd5900a4e2a88564be7a758", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.12/0.4.1/korolev-bridge_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.12@0.4.1", + "file_name":"korolev-bridge_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:42:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.2", + "file_name":"korolev-bridge_2.11-0.4.2.jar", + "size":29674, + "date":"2017-07-02T20:40:17+00:00", + "md5":null, + "sha1":"a258484cf0a71d7e0cf703cab2531f31dbe15138", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:17+00:00", + "size":29674, + "sha1":"a258484cf0a71d7e0cf703cab2531f31dbe15138", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.2", + "file_name":"korolev-bridge_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.2?classifier=sources", + "file_name":"korolev-bridge_2.11-0.4.2-sources.jar", + "size":7263, + "date":"2017-07-02T20:40:21+00:00", + "md5":null, + "sha1":"76f22a1020e13cf1014910c0b3e36c1eeb1495cf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:21+00:00", + "size":7263, + "sha1":"76f22a1020e13cf1014910c0b3e36c1eeb1495cf", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.2/korolev-bridge_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.2", + "file_name":"korolev-bridge_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:21+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.1", + "file_name":"korolev-bridge_2.11-0.4.1.jar", + "size":29675, + "date":"2017-07-02T12:41:05+00:00", + "md5":null, + "sha1":"55f14fb6b3b77408a5caa42d657b0ff378eee4f3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:41:05+00:00", + "size":29675, + "sha1":"55f14fb6b3b77408a5caa42d657b0ff378eee4f3", + "name":"bridge", + "description":"bridge", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.1", + "file_name":"korolev-bridge_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.1?classifier=sources", + "file_name":"korolev-bridge_2.11-0.4.1-sources.jar", + "size":7263, + "date":"2017-07-02T12:41:08+00:00", + "md5":null, + "sha1":"b70e3e31cfb539675f44f02c62cb7dd7266bb35d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-bridge_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:08+00:00", + "size":7263, + "sha1":"b70e3e31cfb539675f44f02c62cb7dd7266bb35d", + "name":"bridge", + "description":"bridge", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-bridge_2.11/0.4.1/korolev-bridge_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-bridge_2.11@0.4.1", + "file_name":"korolev-bridge_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:41:08+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.2", + "file_name":"korolev-async_2.12-0.4.2.jar", + "size":16879, + "date":"2017-07-02T20:42:03+00:00", + "md5":null, + "sha1":"f44f210ae562c8cf52305355279b2695fbd34a68", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:42:03+00:00", + "size":16879, + "sha1":"f44f210ae562c8cf52305355279b2695fbd34a68", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.2", + "file_name":"korolev-async_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.2?classifier=sources", + "file_name":"korolev-async_2.12-0.4.2-sources.jar", + "size":1576, + "date":"2017-07-02T20:42:04+00:00", + "md5":null, + "sha1":"77739e60f995899ff7a06b10f37a85a8c6847b35", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:42:04+00:00", + "size":1576, + "sha1":"77739e60f995899ff7a06b10f37a85a8c6847b35", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.2/korolev-async_2.12-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.2", + "file_name":"korolev-async_2.12-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:42:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.1", + "file_name":"korolev-async_2.12-0.4.1.jar", + "size":16879, + "date":"2017-07-02T12:42:44+00:00", + "md5":null, + "sha1":"cfadba70f46142e328d769e37efe2b5ce47a6b7c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:42:44+00:00", + "size":16879, + "sha1":"cfadba70f46142e328d769e37efe2b5ce47a6b7c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.1", + "file_name":"korolev-async_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:42:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.1?classifier=sources", + "file_name":"korolev-async_2.12-0.4.1-sources.jar", + "size":1576, + "date":"2017-07-02T12:42:46+00:00", + "md5":null, + "sha1":"5355c4c8a106b7dc9a0eb0c19a1e8599b19fba3b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.12", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:42:46+00:00", + "size":1576, + "sha1":"5355c4c8a106b7dc9a0eb0c19a1e8599b19fba3b", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.12/0.4.1/korolev-async_2.12-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.12@0.4.1", + "file_name":"korolev-async_2.12-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:42:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.2", + "file_name":"korolev-async_2.11-0.4.2.jar", + "size":17652, + "date":"2017-07-02T20:40:02+00:00", + "md5":null, + "sha1":"75c2d00546e48a896daefd295d05533fd92de425", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T20:40:02+00:00", + "size":17652, + "sha1":"75c2d00546e48a896daefd295d05533fd92de425", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.2", + "file_name":"korolev-async_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.2?classifier=sources", + "file_name":"korolev-async_2.11-0.4.2-sources.jar", + "size":1576, + "date":"2017-07-02T20:40:03+00:00", + "md5":null, + "sha1":"a114946226e509a40b9a32ccc1cc43e32f9c7e54", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T20:40:03+00:00", + "size":1576, + "sha1":"a114946226e509a40b9a32ccc1cc43e32f9c7e54", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.2/korolev-async_2.11-0.4.2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.2", + "file_name":"korolev-async_2.11-0.4.2.pom", + "size":0, + "date":"2017-07-02T20:40:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.1", + "file_name":"korolev-async_2.11-0.4.1.jar", + "size":17653, + "date":"2017-07-02T12:40:03+00:00", + "md5":null, + "sha1":"f5ed73bd121926b665a906e0c12c2576006d794c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"bundle", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:03+00:00", + "size":17653, + "sha1":"f5ed73bd121926b665a906e0c12c2576006d794c", + "name":"async", + "description":"async", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.1", + "file_name":"korolev-async_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:40:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.1?classifier=sources", + "file_name":"korolev-async_2.11-0.4.1-sources.jar", + "size":1576, + "date":"2017-07-02T12:40:05+00:00", + "md5":null, + "sha1":"4709bce9ce75f8e1049c1c79d2b914fa3d34f776", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.fomkin", + "artifact_id":"korolev-async_2.11", + "version":"0.4.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:40:05+00:00", + "size":1576, + "sha1":"4709bce9ce75f8e1049c1c79d2b914fa3d34f776", + "name":"async", + "description":"async", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/fomkin/korolev-async_2.11/0.4.1/korolev-async_2.11-0.4.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.fomkin/korolev-async_2.11@0.4.1", + "file_name":"korolev-async_2.11-0.4.1.pom", + "size":0, + "date":"2017-07-02T12:40:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.7?type=aar", + "file_name":"phoenix-1.4.7.aar", + "size":182183, + "date":"2017-07-02T18:00:09+00:00", + "md5":null, + "sha1":"4b8cd4f63b9a7e1f5e33c3dd6da5d568817d5781", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T18:00:09+00:00", + "size":182183, + "sha1":"4b8cd4f63b9a7e1f5e33c3dd6da5d568817d5781", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.7", + "file_name":"phoenix-1.4.7.pom", + "size":0, + "date":"2017-07-02T18:00:09+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.7?classifier=sources", + "file_name":"phoenix-1.4.7-sources.jar", + "size":94001, + "date":"2017-07-02T18:00:16+00:00", + "md5":null, + "sha1":"2d2be8cb45354329b2d4ffa542cca9fbc5d204e5", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.7", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T18:00:16+00:00", + "size":94001, + "sha1":"2d2be8cb45354329b2d4ffa542cca9fbc5d204e5", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.7/phoenix-1.4.7.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.7", + "file_name":"phoenix-1.4.7.pom", + "size":0, + "date":"2017-07-02T18:00:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.6?type=aar", + "file_name":"phoenix-1.4.6.aar", + "size":181642, + "date":"2017-07-02T17:29:52+00:00", + "md5":null, + "sha1":"295f8754aeb2871644f95218fd12a22b119dbf2d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:29:52+00:00", + "size":181642, + "sha1":"295f8754aeb2871644f95218fd12a22b119dbf2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.6", + "file_name":"phoenix-1.4.6.pom", + "size":0, + "date":"2017-07-02T17:29:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.6?classifier=sources", + "file_name":"phoenix-1.4.6-sources.jar", + "size":93745, + "date":"2017-07-02T17:29:59+00:00", + "md5":null, + "sha1":"cd2c29b4763d1189cd64c840953a327851a44c2d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.6", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:29:59+00:00", + "size":93745, + "sha1":"cd2c29b4763d1189cd64c840953a327851a44c2d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.6/phoenix-1.4.6.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.6", + "file_name":"phoenix-1.4.6.pom", + "size":0, + "date":"2017-07-02T17:29:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.5?type=aar", + "file_name":"phoenix-1.4.5.aar", + "size":162541, + "date":"2017-07-02T14:38:28+00:00", + "md5":null, + "sha1":"54a4b6ab92c6ded7ac026e8848488c868326cc4a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T14:38:28+00:00", + "size":162541, + "sha1":"54a4b6ab92c6ded7ac026e8848488c868326cc4a", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.5", + "file_name":"phoenix-1.4.5.pom", + "size":0, + "date":"2017-07-02T14:38:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.5?classifier=sources", + "file_name":"phoenix-1.4.5-sources.jar", + "size":94220, + "date":"2017-07-02T14:38:32+00:00", + "md5":null, + "sha1":"cd836239d8006f613f9dd827bedcc8c39be97c42", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:38:32+00:00", + "size":94220, + "sha1":"cd836239d8006f613f9dd827bedcc8c39be97c42", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.5/phoenix-1.4.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.5", + "file_name":"phoenix-1.4.5.pom", + "size":0, + "date":"2017-07-02T14:38:32+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.4?type=aar", + "file_name":"phoenix-1.4.4.aar", + "size":179798, + "date":"2017-07-02T13:33:27+00:00", + "md5":null, + "sha1":"b1efb7bb2be48a45bbe764f1e1e32e864ff44503", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T13:33:27+00:00", + "size":179798, + "sha1":"b1efb7bb2be48a45bbe764f1e1e32e864ff44503", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.4", + "file_name":"phoenix-1.4.4.pom", + "size":0, + "date":"2017-07-02T13:33:27+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.4?classifier=sources", + "file_name":"phoenix-1.4.4-sources.jar", + "size":94045, + "date":"2017-07-02T13:33:42+00:00", + "md5":null, + "sha1":"784a06cd225dc017cd470f42e1e41c52cb5f668d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dozzatq", + "artifact_id":"phoenix", + "version":"1.4.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:33:42+00:00", + "size":94045, + "sha1":"784a06cd225dc017cd470f42e1e41c52cb5f668d", + "name":"Phoenix", + "description":"Phoenix Library For Simplifying my life", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dozzatq/phoenix/1.4.4/phoenix-1.4.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dozzatq/phoenix@1.4.4", + "file_name":"phoenix-1.4.4.pom", + "size":0, + "date":"2017-07-02T13:33:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dannil/scb-java-client@0.4.0", + "file_name":"scb-java-client-0.4.0.jar", + "size":261248, + "date":"2017-07-02T12:40:58+00:00", + "md5":null, + "sha1":"cf8cd658e0e63236d006b6427c0f916c77f1e182", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:40:58+00:00", + "size":261248, + "sha1":"cf8cd658e0e63236d006b6427c0f916c77f1e182", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dannil/scb-java-client@0.4.0", + "file_name":"scb-java-client-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:40:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dannil/scb-java-client@0.4.0?classifier=sources", + "file_name":"scb-java-client-0.4.0-sources.jar", + "size":339581, + "date":"2017-07-02T12:41:03+00:00", + "md5":null, + "sha1":"9b21295813bd947a0931a50b27e0ffa0fbc4506d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.dannil", + "artifact_id":"scb-java-client", + "version":"0.4.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:41:03+00:00", + "size":339581, + "sha1":"9b21295813bd947a0931a50b27e0ffa0fbc4506d", + "name":"scb-java-client", + "description":"Java client for the SCB (Statistiska centralbyr\u00c3\u00a5n) API", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/dannil/scb-java-client/0.4.0/scb-java-client-0.4.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.dannil/scb-java-client@0.4.0", + "file_name":"scb-java-client-0.4.0.pom", + "size":0, + "date":"2017-07-02T12:41:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot-mp3Playback@0.5.0", + "file_name":"musicbot-mp3Playback-0.5.0.jar", + "size":4569, + "date":"2017-07-02T10:54:24+00:00", + "md5":null, + "sha1":"7eb6a68ee07a8b3f6db326b83e42358df29549bf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:54:24+00:00", + "size":4569, + "sha1":"7eb6a68ee07a8b3f6db326b83e42358df29549bf", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot-mp3Playback@0.5.0", + "file_name":"musicbot-mp3Playback-0.5.0.pom", + "size":0, + "date":"2017-07-02T10:54:24+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot-mp3Playback@0.5.0?classifier=sources", + "file_name":"musicbot-mp3Playback-0.5.0-sources.jar", + "size":4561, + "date":"2017-07-02T10:54:22+00:00", + "md5":null, + "sha1":"6ac059907e786152d83849b19de3042c5182d58b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot-mp3Playback", + "version":"0.5.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:54:22+00:00", + "size":4561, + "sha1":"6ac059907e786152d83849b19de3042c5182d58b", + "name":"${project.groupId}:${project.artifactId}", + "description":"TODO", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot-mp3Playback/0.5.0/musicbot-mp3Playback-0.5.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot-mp3Playback@0.5.0", + "file_name":"musicbot-mp3Playback-0.5.0.pom", + "size":0, + "date":"2017-07-02T10:54:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot@0.6.0", + "file_name":"musicbot-0.6.0.jar", + "size":94809, + "date":"2017-07-02T10:19:49+00:00", + "md5":null, + "sha1":"b459c0398f87625c2474a1004a01ffc22bb75898", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T10:19:49+00:00", + "size":94809, + "sha1":"b459c0398f87625c2474a1004a01ffc22bb75898", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot@0.6.0", + "file_name":"musicbot-0.6.0.pom", + "size":0, + "date":"2017-07-02T10:19:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot@0.6.0?classifier=sources", + "file_name":"musicbot-0.6.0-sources.jar", + "size":46155, + "date":"2017-07-02T10:19:50+00:00", + "md5":null, + "sha1":"dd8531228a3946282c25e460724db310991781b9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.bjoernpetersen", + "artifact_id":"musicbot", + "version":"0.6.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T10:19:50+00:00", + "size":46155, + "sha1":"dd8531228a3946282c25e460724db310991781b9", + "name":"${project.groupId}:${project.artifactId}", + "description":"Core library of JMusicBot, which plays music from various providers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/bjoernpetersen/musicbot/0.6.0/musicbot-0.6.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.bjoernpetersen/musicbot@0.6.0", + "file_name":"musicbot-0.6.0.pom", + "size":0, + "date":"2017-07-02T10:19:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/zip4j@1.3.2-2", + "file_name":"zip4j-1.3.2-2.jar", + "size":140519, + "date":"2017-07-02T23:00:31+00:00", + "md5":null, + "sha1":"e964123e4a8dc9da33f7241b9b14c6500636e5ec", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T23:00:31+00:00", + "size":140519, + "sha1":"e964123e4a8dc9da33f7241b9b14c6500636e5ec", + "name":"zip4j", + "description":"zip4j library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/zip4j@1.3.2-2", + "file_name":"zip4j-1.3.2-2.pom", + "size":0, + "date":"2017-07-02T23:00:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/zip4j@1.3.2-2?classifier=sources", + "file_name":"zip4j-1.3.2-2-sources.jar", + "size":106470, + "date":"2017-07-02T23:00:36+00:00", + "md5":null, + "sha1":"65e1d212f7d92f2f8ef5839667d1dd4ac83375ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"zip4j", + "version":"1.3.2-2", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T23:00:36+00:00", + "size":106470, + "sha1":"65e1d212f7d92f2f8ef5839667d1dd4ac83375ca", + "name":"zip4j", + "description":"zip4j library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/zip4j/1.3.2-2/zip4j-1.3.2-2.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/zip4j@1.3.2-2", + "file_name":"zip4j-1.3.2-2.pom", + "size":0, + "date":"2017-07-02T23:00:36+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.53", + "file_name":"versions-maven-plugin-0.0.53.jar", + "size":297334, + "date":"2017-07-02T19:58:16+00:00", + "md5":null, + "sha1":"02e0be3264e8e750cbbffff2a764bb276a019a87", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:58:16+00:00", + "size":297334, + "sha1":"02e0be3264e8e750cbbffff2a764bb276a019a87", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.53", + "file_name":"versions-maven-plugin-0.0.53.pom", + "size":0, + "date":"2017-07-02T19:58:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.53?classifier=sources", + "file_name":"versions-maven-plugin-0.0.53-sources.jar", + "size":211398, + "date":"2017-07-02T19:58:20+00:00", + "md5":null, + "sha1":"2364391bb37ef433a21e8cd099361eb827626c24", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.53", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:58:20+00:00", + "size":211398, + "sha1":"2364391bb37ef433a21e8cd099361eb827626c24", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.53/versions-maven-plugin-0.0.53.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.53", + "file_name":"versions-maven-plugin-0.0.53.pom", + "size":0, + "date":"2017-07-02T19:58:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.51", + "file_name":"versions-maven-plugin-0.0.51.jar", + "size":254004, + "date":"2017-07-02T19:22:10+00:00", + "md5":null, + "sha1":"5e82a8ba62deef96ba4a80d8c9c96fd6a312f5ca", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:22:10+00:00", + "size":254004, + "sha1":"5e82a8ba62deef96ba4a80d8c9c96fd6a312f5ca", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.51", + "file_name":"versions-maven-plugin-0.0.51.pom", + "size":0, + "date":"2017-07-02T19:22:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.51?classifier=sources", + "file_name":"versions-maven-plugin-0.0.51-sources.jar", + "size":182973, + "date":"2017-07-02T19:22:14+00:00", + "md5":null, + "sha1":"28fbbfe0da5f476a0cda39ae8b27f3ac460b26be", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"versions-maven-plugin", + "version":"0.0.51", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:22:14+00:00", + "size":182973, + "sha1":"28fbbfe0da5f476a0cda39ae8b27f3ac460b26be", + "name":"Versions Maven Plugin", + "description":"Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/versions-maven-plugin/0.0.51/versions-maven-plugin-0.0.51.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/versions-maven-plugin@0.0.51", + "file_name":"versions-maven-plugin-0.0.51.pom", + "size":0, + "date":"2017-07-02T19:22:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/java-unrar@1.7.0-3", + "file_name":"java-unrar-1.7.0-3.jar", + "size":137832, + "date":"2017-07-02T22:59:44+00:00", + "md5":null, + "sha1":"8a94836272bed887791df2b103748757b9e289a7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T22:59:44+00:00", + "size":137832, + "sha1":"8a94836272bed887791df2b103748757b9e289a7", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/java-unrar@1.7.0-3", + "file_name":"java-unrar-1.7.0-3.pom", + "size":0, + "date":"2017-07-02T22:59:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/java-unrar@1.7.0-3?classifier=sources", + "file_name":"java-unrar-1.7.0-3-sources.jar", + "size":111685, + "date":"2017-07-02T22:59:47+00:00", + "md5":null, + "sha1":"9a4fed602d63452d2a896cb9233630e0ebad6862", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"java-unrar", + "version":"1.7.0-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T22:59:47+00:00", + "size":111685, + "sha1":"9a4fed602d63452d2a896cb9233630e0ebad6862", + "name":"Java UnRar", + "description":"java unrar library", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/java-unrar/1.7.0-3/java-unrar-1.7.0-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/java-unrar@1.7.0-3", + "file_name":"java-unrar-1.7.0-3.pom", + "size":0, + "date":"2017-07-02T22:59:47+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-library/1.14.12/android-library-1.14.12.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.12?type=aar", + "file_name":"android-library-1.14.12.aar", + "size":246294, + "date":"2017-07-02T17:05:19+00:00", + "md5":null, + "sha1":"990fbb50014f3306c3f131483476c68c7a8acced", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:05:19+00:00", + "size":246294, + "sha1":"990fbb50014f3306c3f131483476c68c7a8acced", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.12/android-library-1.14.12.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.12/android-library-1.14.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.12", + "file_name":"android-library-1.14.12.pom", + "size":0, + "date":"2017-07-02T17:05:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-library/1.14.12/android-library-1.14.12-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.12?classifier=sources", + "file_name":"android-library-1.14.12-sources.jar", + "size":96763, + "date":"2017-07-02T17:05:23+00:00", + "md5":null, + "sha1":"a803b44168a5428b1298523e1184cb809e6015ae", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:05:23+00:00", + "size":96763, + "sha1":"a803b44168a5428b1298523e1184cb809e6015ae", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.12/android-library-1.14.12-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.12/android-library-1.14.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.12", + "file_name":"android-library-1.14.12.pom", + "size":0, + "date":"2017-07-02T17:05:23+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-library/1.14.11/android-library-1.14.11.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.11?type=aar", + "file_name":"android-library-1.14.11.aar", + "size":246253, + "date":"2017-07-02T16:56:51+00:00", + "md5":null, + "sha1":"1c754425fef94da099f458c64357d91c5faa5255", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T16:56:51+00:00", + "size":246253, + "sha1":"1c754425fef94da099f458c64357d91c5faa5255", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.11/android-library-1.14.11.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.11/android-library-1.14.11.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.11", + "file_name":"android-library-1.14.11.pom", + "size":0, + "date":"2017-07-02T16:56:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-library/1.14.11/android-library-1.14.11-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.11?classifier=sources", + "file_name":"android-library-1.14.11-sources.jar", + "size":96778, + "date":"2017-07-02T16:57:01+00:00", + "md5":null, + "sha1":"f906f9ef776f7162bf58929a416cd7f2c8630794", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-library", + "version":"1.14.11", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:57:01+00:00", + "size":96778, + "sha1":"f906f9ef776f7162bf58929a416cd7f2c8630794", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.11/android-library-1.14.11-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-library/1.14.11/android-library-1.14.11.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-library@1.14.11", + "file_name":"android-library-1.14.11.pom", + "size":0, + "date":"2017-07-02T16:57:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12.aar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-audio-library@1.0.12?type=aar", + "file_name":"android-audio-library-1.0.12.aar", + "size":169425, + "date":"2017-07-02T17:08:42+00:00", + "md5":null, + "sha1":"a0bfc86dd6d60714a6f3d45d80ea6f488947b86c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"aar", + "classifier":null, + "extension":"aar", + "last_modified":"2017-07-02T17:08:42+00:00", + "size":169425, + "sha1":"a0bfc86dd6d60714a6f3d45d80ea6f488947b86c", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12.aar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-audio-library@1.0.12", + "file_name":"android-audio-library-1.0.12.pom", + "size":0, + "date":"2017-07-02T17:08:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-audio-library@1.0.12?classifier=sources", + "file_name":"android-audio-library-1.0.12-sources.jar", + "size":39048, + "date":"2017-07-02T17:08:51+00:00", + "md5":null, + "sha1":"019707898d84b680acd716dd6e30c74c5d052a2e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.github.axet", + "artifact_id":"android-audio-library", + "version":"1.0.12", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:08:51+00:00", + "size":39048, + "sha1":"019707898d84b680acd716dd6e30c74c5d052a2e", + "name":"Android Library", + "description":"Android Simple Widgets and Support classes.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/github/axet/android-audio-library/1.0.12/android-audio-library-1.0.12.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.github.axet/android-audio-library@1.0.12", + "file_name":"android-audio-library-1.0.12.pom", + "size":0, + "date":"2017-07-02T17:08:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.3-14?type=zip", + "file_name":"search-guard-5-5.4.3-14.zip", + "size":4672549, + "date":"2017-07-02T11:48:39+00:00", + "md5":null, + "sha1":"b8c60d8f7f44360c12adf757c231f49e7e8e9b97", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-02T11:48:39+00:00", + "size":4672549, + "sha1":"b8c60d8f7f44360c12adf757c231f49e7e8e9b97", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.3-14", + "file_name":"search-guard-5-5.4.3-14.pom", + "size":0, + "date":"2017-07-02T11:48:39+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.3-14?classifier=sources", + "file_name":"search-guard-5-5.4.3-14-sources.jar", + "size":126537, + "date":"2017-07-02T11:50:02+00:00", + "md5":null, + "sha1":"934f90070dc7ab44184870795494697a3ea97af3", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:50:02+00:00", + "size":126537, + "sha1":"934f90070dc7ab44184870795494697a3ea97af3", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.3-14/search-guard-5-5.4.3-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.3-14", + "file_name":"search-guard-5-5.4.3-14.pom", + "size":0, + "date":"2017-07-02T11:50:02+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.2-14?type=zip", + "file_name":"search-guard-5-5.4.2-14.zip", + "size":4672537, + "date":"2017-07-01T21:15:59+00:00", + "md5":null, + "sha1":"49709f9c575259de6e021ddbdfdb20a5c84a30ff", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:15:59+00:00", + "size":4672537, + "sha1":"49709f9c575259de6e021ddbdfdb20a5c84a30ff", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.2-14", + "file_name":"search-guard-5-5.4.2-14.pom", + "size":0, + "date":"2017-07-01T21:15:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.2-14?classifier=sources", + "file_name":"search-guard-5-5.4.2-14-sources.jar", + "size":126537, + "date":"2017-07-01T21:17:38+00:00", + "md5":null, + "sha1":"c6d93a6de0bc0aff6d03be54ee0e83f87bde09c2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.2-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:17:38+00:00", + "size":126537, + "sha1":"c6d93a6de0bc0aff6d03be54ee0e83f87bde09c2", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.2-14/search-guard-5-5.4.2-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.2-14", + "file_name":"search-guard-5-5.4.2-14.pom", + "size":0, + "date":"2017-07-01T21:17:38+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.1-14?type=zip", + "file_name":"search-guard-5-5.4.1-14.zip", + "size":4674082, + "date":"2017-07-01T20:44:10+00:00", + "md5":null, + "sha1":"59ae893c3c2403a4d9c81ee0fbdd0510e7476ac7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:44:10+00:00", + "size":4674082, + "sha1":"59ae893c3c2403a4d9c81ee0fbdd0510e7476ac7", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.1-14", + "file_name":"search-guard-5-5.4.1-14.pom", + "size":0, + "date":"2017-07-01T20:44:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.1-14?classifier=sources", + "file_name":"search-guard-5-5.4.1-14-sources.jar", + "size":126535, + "date":"2017-07-01T20:45:45+00:00", + "md5":null, + "sha1":"7893da1a472ae51553c0400490d2c7c96b797bee", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.1-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:45:45+00:00", + "size":126535, + "sha1":"7893da1a472ae51553c0400490d2c7c96b797bee", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.1-14/search-guard-5-5.4.1-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.1-14", + "file_name":"search-guard-5-5.4.1-14.pom", + "size":0, + "date":"2017-07-01T20:45:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.0-14?type=zip", + "file_name":"search-guard-5-5.4.0-14.zip", + "size":4647552, + "date":"2017-07-01T20:28:16+00:00", + "md5":null, + "sha1":"e198347e134f8f80b1e420c0729c9da2f95b60a6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:28:16+00:00", + "size":4647552, + "sha1":"e198347e134f8f80b1e420c0729c9da2f95b60a6", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.0-14", + "file_name":"search-guard-5-5.4.0-14.pom", + "size":0, + "date":"2017-07-01T20:28:16+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.0-14?classifier=sources", + "file_name":"search-guard-5-5.4.0-14-sources.jar", + "size":126512, + "date":"2017-07-01T20:29:43+00:00", + "md5":null, + "sha1":"3f822f0ff12628cf7130fc4e8b861cb4c2c8f661", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.4.0-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:29:43+00:00", + "size":126512, + "sha1":"3f822f0ff12628cf7130fc4e8b861cb4c2c8f661", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.4.0-14/search-guard-5-5.4.0-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.4.0-14", + "file_name":"search-guard-5-5.4.0-14.pom", + "size":0, + "date":"2017-07-01T20:29:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.3.3-14?type=zip", + "file_name":"search-guard-5-5.3.3-14.zip", + "size":4762737, + "date":"2017-07-01T21:00:03+00:00", + "md5":null, + "sha1":"7d1836107e75316c3b533a636007ca212b3b1802", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T21:00:03+00:00", + "size":4762737, + "sha1":"7d1836107e75316c3b533a636007ca212b3b1802", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.3.3-14", + "file_name":"search-guard-5-5.3.3-14.pom", + "size":0, + "date":"2017-07-01T21:00:03+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.3.3-14?classifier=sources", + "file_name":"search-guard-5-5.3.3-14-sources.jar", + "size":126095, + "date":"2017-07-01T21:01:31+00:00", + "md5":null, + "sha1":"e2fd602a911f1868179125175311c010dbd7e9ef", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-5", + "version":"5.3.3-14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:01:31+00:00", + "size":126095, + "sha1":"e2fd602a911f1868179125175311c010dbd7e9ef", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 5", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-5/5.3.3-14/search-guard-5-5.3.3-14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-5@5.3.3-14", + "file_name":"search-guard-5-5.3.3-14.pom", + "size":0, + "date":"2017-07-01T21:01:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14.zip", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-2@2.4.5.14?type=zip", + "file_name":"search-guard-2-2.4.5.14.zip", + "size":174913, + "date":"2017-07-01T20:08:31+00:00", + "md5":null, + "sha1":"239f0e6a8e8353a933d552ce2ef3bf00957bdb34", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":null, + "extension":"zip", + "last_modified":"2017-07-01T20:08:31+00:00", + "size":174913, + "sha1":"239f0e6a8e8353a933d552ce2ef3bf00957bdb34", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14.zip" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-2@2.4.5.14", + "file_name":"search-guard-2-2.4.5.14.pom", + "size":0, + "date":"2017-07-01T20:08:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-2@2.4.5.14?classifier=sources", + "file_name":"search-guard-2-2.4.5.14-sources.jar", + "size":117201, + "date":"2017-07-01T20:08:28+00:00", + "md5":null, + "sha1":"e03691792ba7b6f8a9c09ec6af2a9d507712220c", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"search-guard-2", + "version":"2.4.5.14", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T20:08:28+00:00", + "size":117201, + "sha1":"e03691792ba7b6f8a9c09ec6af2a9d507712220c", + "name":"Search Guard", + "description":"Provide access control related features for Elasticsearch 2", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/search-guard-2/2.4.5.14/search-guard-2-2.4.5.14.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/search-guard-2@2.4.5.14", + "file_name":"search-guard-2-2.4.5.14.pom", + "size":0, + "date":"2017-07-01T20:08:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.4-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.4-3.jar", + "size":28951, + "date":"2017-07-01T21:44:28+00:00", + "md5":null, + "sha1":"0b2f55a8a04eadd5334f2bd35ba3d81787255c46", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:44:28+00:00", + "size":28951, + "sha1":"0b2f55a8a04eadd5334f2bd35ba3d81787255c46", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.4-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.4-3.pom", + "size":0, + "date":"2017-07-01T21:44:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.4-3?classifier=sources", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.4-3-sources.jar", + "size":9958, + "date":"2017-07-01T21:44:46+00:00", + "md5":null, + "sha1":"d2bb1226740e1fc95f7298395477e11b1350be73", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.4-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:44:46+00:00", + "size":9958, + "sha1":"d2bb1226740e1fc95f7298395477e11b1350be73", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.4-3/dlic-search-guard-module-kibana-multitenancy-5.4-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.4-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.4-3.pom", + "size":0, + "date":"2017-07-01T21:44:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.3-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.3-3.jar", + "size":28952, + "date":"2017-07-01T21:43:43+00:00", + "md5":null, + "sha1":"28a8c2710ca7628ed9ec8fcc18548156a8bea5ef", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:43:43+00:00", + "size":28952, + "sha1":"28a8c2710ca7628ed9ec8fcc18548156a8bea5ef", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.3-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.3-3.pom", + "size":0, + "date":"2017-07-01T21:43:43+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.3-3?classifier=sources", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.3-3-sources.jar", + "size":9958, + "date":"2017-07-01T21:43:45+00:00", + "md5":null, + "sha1":"324e61ffe0d067bda25b78f8452edc2e8681db71", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-module-kibana-multitenancy", + "version":"5.3-3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:43:45+00:00", + "size":9958, + "sha1":"324e61ffe0d067bda25b78f8452edc2e8681db71", + "name":"Search Guard", + "description":"Provide multitenancy and other features for kibana", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-module-kibana-multitenancy/5.3-3/dlic-search-guard-module-kibana-multitenancy-5.3-3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-module-kibana-multitenancy@5.3-3", + "file_name":"dlic-search-guard-module-kibana-multitenancy-5.3-3.pom", + "size":0, + "date":"2017-07-01T21:43:45+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-auth-http-jwt@5.0-5", + "file_name":"dlic-search-guard-auth-http-jwt-5.0-5.jar", + "size":10762, + "date":"2017-07-01T21:40:46+00:00", + "md5":null, + "sha1":"24f06a0fedfcf6cb476c1f8d47d636ad1931fae4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T21:40:46+00:00", + "size":10762, + "sha1":"24f06a0fedfcf6cb476c1f8d47d636ad1931fae4", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-auth-http-jwt@5.0-5", + "file_name":"dlic-search-guard-auth-http-jwt-5.0-5.pom", + "size":0, + "date":"2017-07-01T21:40:46+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-auth-http-jwt@5.0-5?classifier=sources", + "file_name":"dlic-search-guard-auth-http-jwt-5.0-5-sources.jar", + "size":4165, + "date":"2017-07-01T21:40:52+00:00", + "md5":null, + "sha1":"15282f34bf340ea9dbf9aef2da69782ed840a689", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.floragunn", + "artifact_id":"dlic-search-guard-auth-http-jwt", + "version":"5.0-5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T21:40:52+00:00", + "size":4165, + "sha1":"15282f34bf340ea9dbf9aef2da69782ed840a689", + "name":"Search Guard", + "description":"Provide JWT (JSON Web Token) authentication for elasticsearch", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/floragunn/dlic-search-guard-auth-http-jwt/5.0-5/dlic-search-guard-auth-http-jwt-5.0-5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.floragunn/dlic-search-guard-auth-http-jwt@5.0-5", + "file_name":"dlic-search-guard-auth-http-jwt-5.0-5.pom", + "size":0, + "date":"2017-07-01T21:40:52+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.defano.jmonet/jmonet@0.0.5", + "file_name":"jmonet-0.0.5.jar", + "size":85830, + "date":"2017-07-02T19:20:49+00:00", + "md5":null, + "sha1":"e8365535ac24f57e414c969c08d1fe1cba33ab4d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:20:49+00:00", + "size":85830, + "sha1":"e8365535ac24f57e414c969c08d1fe1cba33ab4d", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.defano.jmonet/jmonet@0.0.5", + "file_name":"jmonet-0.0.5.pom", + "size":0, + "date":"2017-07-02T19:20:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.defano.jmonet/jmonet@0.0.5?classifier=sources", + "file_name":"jmonet-0.0.5-sources.jar", + "size":56247, + "date":"2017-07-02T19:20:50+00:00", + "md5":null, + "sha1":"de3054d25e5bfd4612a0ea4596b2ce2dc71bd025", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.defano.jmonet", + "artifact_id":"jmonet", + "version":"0.0.5", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:20:50+00:00", + "size":56247, + "sha1":"de3054d25e5bfd4612a0ea4596b2ce2dc71bd025", + "name":"JMonet", + "description":"A rudimentary toolkit for incorporating MacPaint-like tools into a Java Swing or JavaFX application.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/defano/jmonet/jmonet/0.0.5/jmonet-0.0.5.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.defano.jmonet/jmonet@0.0.5", + "file_name":"jmonet-0.0.5.pom", + "size":0, + "date":"2017-07-02T19:20:50+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.bekioui.maven.plugin/merge-maven-plugin@1.0.0", + "file_name":"merge-maven-plugin-1.0.0.jar", + "size":8684, + "date":"2017-07-02T17:37:20+00:00", + "md5":null, + "sha1":"8231b7dbbfd13facf36626cd381a9b1cfd7c7a47", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T17:37:20+00:00", + "size":8684, + "sha1":"8231b7dbbfd13facf36626cd381a9b1cfd7c7a47", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.bekioui.maven.plugin/merge-maven-plugin@1.0.0", + "file_name":"merge-maven-plugin-1.0.0.pom", + "size":0, + "date":"2017-07-02T17:37:20+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.bekioui.maven.plugin/merge-maven-plugin@1.0.0?classifier=sources", + "file_name":"merge-maven-plugin-1.0.0-sources.jar", + "size":4998, + "date":"2017-07-02T17:37:35+00:00", + "md5":null, + "sha1":"e72686587daec0b8de676f2842eaf0b6520ed6e2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.bekioui.maven.plugin", + "artifact_id":"merge-maven-plugin", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T17:37:35+00:00", + "size":4998, + "sha1":"e72686587daec0b8de676f2842eaf0b6520ed6e2", + "name":"Merge Maven Plugin", + "description":"Merge files into one file", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/bekioui/maven/plugin/merge-maven-plugin/1.0.0/merge-maven-plugin-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.bekioui.maven.plugin/merge-maven-plugin@1.0.0", + "file_name":"merge-maven-plugin-1.0.0.pom", + "size":0, + "date":"2017-07-02T17:37:35+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.12@0.0.3", + "file_name":"gander_2.12-0.0.3.jar", + "size":157341, + "date":"2017-07-02T13:50:30+00:00", + "md5":null, + "sha1":"a5f9d1c9281cb8857ec6d5959911b8a4549180cb", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:30+00:00", + "size":157341, + "sha1":"a5f9d1c9281cb8857ec6d5959911b8a4549180cb", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.12@0.0.3", + "file_name":"gander_2.12-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:50:30+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.12@0.0.3?classifier=sources", + "file_name":"gander_2.12-0.0.3-sources.jar", + "size":44356, + "date":"2017-07-02T13:50:31+00:00", + "md5":null, + "sha1":"ab3216113da6d20360d8d70f5b109a565b9a6788", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.12", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:31+00:00", + "size":44356, + "sha1":"ab3216113da6d20360d8d70f5b109a565b9a6788", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.12/0.0.3/gander_2.12-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.12@0.0.3", + "file_name":"gander_2.12-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:50:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.11@0.0.3", + "file_name":"gander_2.11-0.0.3.jar", + "size":233806, + "date":"2017-07-02T13:50:13+00:00", + "md5":null, + "sha1":"90cd6023ca2c8b9b43da9c65baf515df1b8c0bb6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:50:13+00:00", + "size":233806, + "sha1":"90cd6023ca2c8b9b43da9c65baf515df1b8c0bb6", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.11@0.0.3", + "file_name":"gander_2.11-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:50:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.11@0.0.3?classifier=sources", + "file_name":"gander_2.11-0.0.3-sources.jar", + "size":44356, + "date":"2017-07-02T13:50:14+00:00", + "md5":null, + "sha1":"d2ac290f4112201778eff03ba1c00b7df78cfd2f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.11", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:50:14+00:00", + "size":44356, + "sha1":"d2ac290f4112201778eff03ba1c00b7df78cfd2f", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.11/0.0.3/gander_2.11-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.11@0.0.3", + "file_name":"gander_2.11-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:50:14+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.10@0.0.3", + "file_name":"gander_2.10-0.0.3.jar", + "size":231008, + "date":"2017-07-02T13:49:57+00:00", + "md5":null, + "sha1":"e162b0e9a74bc4c8e9bd5db3caffc6adbaf8f842", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:49:57+00:00", + "size":231008, + "sha1":"e162b0e9a74bc4c8e9bd5db3caffc6adbaf8f842", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.10@0.0.3", + "file_name":"gander_2.10-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:49:57+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.10@0.0.3?classifier=sources", + "file_name":"gander_2.10-0.0.3-sources.jar", + "size":44356, + "date":"2017-07-02T13:49:58+00:00", + "md5":null, + "sha1":"fea18b8fa894bed218772c9cac76265c4d3f49da", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.beachape", + "artifact_id":"gander_2.10", + "version":"0.0.3", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:49:58+00:00", + "size":44356, + "sha1":"fea18b8fa894bed218772c9cac76265c4d3f49da", + "name":"gander", + "description":"Html Content / Article Extractor in Scala", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/beachape/gander_2.10/0.0.3/gander_2.10-0.0.3.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.beachape/gander_2.10@0.0.3", + "file_name":"gander_2.10-0.0.3.pom", + "size":0, + "date":"2017-07-02T13:49:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.anjlab.android.iab.v3/library@1.0.41", + "file_name":"library-1.0.41.jar", + "size":36728, + "date":"2017-07-02T16:59:10+00:00", + "md5":null, + "sha1":"fbb0fa0682216fb9f5424cc44453518122ab8fe1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T16:59:10+00:00", + "size":36728, + "sha1":"fbb0fa0682216fb9f5424cc44453518122ab8fe1", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.anjlab.android.iab.v3/library@1.0.41", + "file_name":"library-1.0.41.pom", + "size":0, + "date":"2017-07-02T16:59:10+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.anjlab.android.iab.v3/library@1.0.41?classifier=sources", + "file_name":"library-1.0.41-sources.jar", + "size":19026, + "date":"2017-07-02T16:59:40+00:00", + "md5":null, + "sha1":"139b2a33e08274503bc6b13672dfb11641be26ad", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.anjlab.android.iab.v3", + "artifact_id":"library", + "version":"1.0.41", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T16:59:40+00:00", + "size":19026, + "sha1":"139b2a33e08274503bc6b13672dfb11641be26ad", + "name":"Android In-App Billing v3 Library", + "description":"A lightweight implementation of Android In-app Billing Version 3", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/anjlab/android/iab/v3/library/1.0.41/library-1.0.41.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.anjlab.android.iab.v3/library@1.0.41", + "file_name":"library-1.0.41.pom", + "size":0, + "date":"2017-07-02T16:59:40+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.amap.api/navi-3dmap@5.1.0_3dmap5.2.1", + "file_name":"navi-3dmap-5.1.0_3dmap5.2.1.jar", + "size":18209666, + "date":"2017-07-03T01:12:28+00:00", + "md5":null, + "sha1":"1106879361bc03319ff1d02eb4553895c2b5db52", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":18209666, + "sha1":"1106879361bc03319ff1d02eb4553895c2b5db52", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.amap.api/navi-3dmap@5.1.0_3dmap5.2.1", + "file_name":"navi-3dmap-5.1.0_3dmap5.2.1.pom", + "size":0, + "date":"2017-07-03T01:12:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.amap.api/navi-3dmap@5.1.0_3dmap5.2.1?classifier=sources", + "file_name":"navi-3dmap-5.1.0_3dmap5.2.1-sources.jar", + "size":616, + "date":"2017-07-03T01:12:28+00:00", + "md5":null, + "sha1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.amap.api", + "artifact_id":"navi-3dmap", + "version":"5.1.0_3dmap5.2.1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-03T01:12:28+00:00", + "size":616, + "sha1":"a559fe5004f48a9e5825da1893c1d128eb12f0e1", + "name":"navi-3dmap", + "description":"AMap is the best sdk of map in china.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/amap/api/navi-3dmap/5.1.0_3dmap5.2.1/navi-3dmap-5.1.0_3dmap5.2.1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.amap.api/navi-3dmap@5.1.0_3dmap5.2.1", + "file_name":"navi-3dmap-5.1.0_3dmap5.2.1.pom", + "size":0, + "date":"2017-07-03T01:12:28+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alibaba/fastjson/1.2.34/fastjson-1.2.34.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alibaba/fastjson@1.2.34", + "file_name":"fastjson-1.2.34.jar", + "size":478640, + "date":"2017-07-02T14:18:01+00:00", + "md5":null, + "sha1":"6935ced5a69bdd145fe0eda2d3a3b5240c7fc9a9", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T14:18:01+00:00", + "size":478640, + "sha1":"6935ced5a69bdd145fe0eda2d3a3b5240c7fc9a9", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.34/fastjson-1.2.34.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.34/fastjson-1.2.34.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alibaba/fastjson@1.2.34", + "file_name":"fastjson-1.2.34.pom", + "size":0, + "date":"2017-07-02T14:18:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alibaba/fastjson/1.2.34/fastjson-1.2.34-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alibaba/fastjson@1.2.34?classifier=sources", + "file_name":"fastjson-1.2.34-sources.jar", + "size":310474, + "date":"2017-07-02T14:18:00+00:00", + "md5":null, + "sha1":"10b31f235edeb024757de440d70d338bb2d1e514", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alibaba", + "artifact_id":"fastjson", + "version":"1.2.34", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T14:18:00+00:00", + "size":310474, + "sha1":"10b31f235edeb024757de440d70d338bb2d1e514", + "name":"fastjson", + "description":"Fastjson is a JSON processor (JSON parser + JSON generator) written in Java", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.34/fastjson-1.2.34-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alibaba/fastjson/1.2.34/fastjson-1.2.34.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alibaba/fastjson@1.2.34", + "file_name":"fastjson-1.2.34.pom", + "size":0, + "date":"2017-07-02T14:18:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-maven-plugin@2.11.24", + "file_name":"docker-maven-plugin-2.11.24.jar", + "size":31421, + "date":"2017-07-02T19:43:05+00:00", + "md5":null, + "sha1":"e861a89b05916191933ab36e477661271e18a73d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:43:05+00:00", + "size":31421, + "sha1":"e861a89b05916191933ab36e477661271e18a73d", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-maven-plugin@2.11.24", + "file_name":"docker-maven-plugin-2.11.24.pom", + "size":0, + "date":"2017-07-02T19:43:05+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-maven-plugin@2.11.24?classifier=sources", + "file_name":"docker-maven-plugin-2.11.24-sources.jar", + "size":13243, + "date":"2017-07-02T19:43:12+00:00", + "md5":null, + "sha1":"d52ff94bb5228cb3ab738fe5ecc08d1f9820772f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-maven-plugin", + "version":"2.11.24", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:43:12+00:00", + "size":13243, + "sha1":"d52ff94bb5228cb3ab738fe5ecc08d1f9820772f", + "name":"Docker Maven Plugin", + "description":"A plug-in for starting and stopping Docker containers.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-maven-plugin/2.11.24/docker-maven-plugin-2.11.24.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-maven-plugin@2.11.24", + "file_name":"docker-maven-plugin-2.11.24.pom", + "size":0, + "date":"2017-07-02T19:43:12+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-boot2docker@2.11.29", + "file_name":"docker-java-orchestration-plugin-boot2docker-2.11.29.jar", + "size":11461, + "date":"2017-07-02T19:40:13+00:00", + "md5":null, + "sha1":"f463c9f1259af6af108714b9f0a164ce2d582f46", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:40:13+00:00", + "size":11461, + "sha1":"f463c9f1259af6af108714b9f0a164ce2d582f46", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-boot2docker@2.11.29", + "file_name":"docker-java-orchestration-plugin-boot2docker-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:40:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-boot2docker@2.11.29?classifier=sources", + "file_name":"docker-java-orchestration-plugin-boot2docker-2.11.29-sources.jar", + "size":5623, + "date":"2017-07-02T19:40:17+00:00", + "md5":null, + "sha1":"319600847c1a7afb84dfbc98e1ec408886b13584", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-boot2docker", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:40:17+00:00", + "size":5623, + "sha1":"319600847c1a7afb84dfbc98e1ec408886b13584", + "name":"Docker Java Orchestration Plugin Boot2Docker", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-boot2docker/2.11.29/docker-java-orchestration-plugin-boot2docker-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-boot2docker@2.11.29", + "file_name":"docker-java-orchestration-plugin-boot2docker-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:40:17+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-api@2.11.29", + "file_name":"docker-java-orchestration-plugin-api-2.11.29.jar", + "size":2971, + "date":"2017-07-02T19:39:26+00:00", + "md5":null, + "sha1":"a1af1f1d617d12b972496c74272292a65343183b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:26+00:00", + "size":2971, + "sha1":"a1af1f1d617d12b972496c74272292a65343183b", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-api@2.11.29", + "file_name":"docker-java-orchestration-plugin-api-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:26+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-api@2.11.29?classifier=sources", + "file_name":"docker-java-orchestration-plugin-api-2.11.29-sources.jar", + "size":1558, + "date":"2017-07-02T19:39:31+00:00", + "md5":null, + "sha1":"3227746f273ddfd49c384779f7aa46d9874a661a", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-plugin-api", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:31+00:00", + "size":1558, + "sha1":"3227746f273ddfd49c384779f7aa46d9874a661a", + "name":"Docker Java Orchestration Plugin API", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-plugin-api/2.11.29/docker-java-orchestration-plugin-api-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-plugin-api@2.11.29", + "file_name":"docker-java-orchestration-plugin-api-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:31+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-model@2.11.29", + "file_name":"docker-java-orchestration-model-2.11.29.jar", + "size":17890, + "date":"2017-07-02T19:39:07+00:00", + "md5":null, + "sha1":"7ea8d9a7ad2d06dc2090cb678d1cb3c3ad58d2d7", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:07+00:00", + "size":17890, + "sha1":"7ea8d9a7ad2d06dc2090cb678d1cb3c3ad58d2d7", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-model@2.11.29", + "file_name":"docker-java-orchestration-model-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:07+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-model@2.11.29?classifier=sources", + "file_name":"docker-java-orchestration-model-2.11.29-sources.jar", + "size":6444, + "date":"2017-07-02T19:39:11+00:00", + "md5":null, + "sha1":"ec61a0762aaf58a527951f081559f59f399cefdf", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-model", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:11+00:00", + "size":6444, + "sha1":"ec61a0762aaf58a527951f081559f59f399cefdf", + "name":"Docker Java Orchestration Model", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-model/2.11.29/docker-java-orchestration-model-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-model@2.11.29", + "file_name":"docker-java-orchestration-model-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-core@2.11.29", + "file_name":"docker-java-orchestration-core-2.11.29.jar", + "size":64362, + "date":"2017-07-02T19:39:54+00:00", + "md5":null, + "sha1":"df82e01fef59cc59fdd6275afdd9876ccae2cc4d", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:39:54+00:00", + "size":64362, + "sha1":"df82e01fef59cc59fdd6275afdd9876ccae2cc4d", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-core@2.11.29", + "file_name":"docker-java-orchestration-core-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:54+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-core@2.11.29?classifier=sources", + "file_name":"docker-java-orchestration-core-2.11.29-sources.jar", + "size":26707, + "date":"2017-07-02T19:39:58+00:00", + "md5":null, + "sha1":"012cba759afee7a6053c6866d1685bac1adc7de8", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.alexecollins.docker", + "artifact_id":"docker-java-orchestration-core", + "version":"2.11.29", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:39:58+00:00", + "size":26707, + "sha1":"012cba759afee7a6053c6866d1685bac1adc7de8", + "name":"Docker Java Orchestration Core", + "description":null, + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/alexecollins/docker/docker-java-orchestration-core/2.11.29/docker-java-orchestration-core-2.11.29.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.alexecollins.docker/docker-java-orchestration-core@2.11.29", + "file_name":"docker-java-orchestration-core-2.11.29.pom", + "size":0, + "date":"2017-07-02T19:39:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.12@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.12-1.2-P26-B4-RC1.jar", + "size":180111, + "date":"2017-07-01T12:39:00+00:00", + "md5":null, + "sha1":"ef788677b6579137ef279ce667d10ad08419f652", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-01T12:39:00+00:00", + "size":180111, + "sha1":"ef788677b6579137ef279ce667d10ad08419f652", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.12@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.12-1.2-P26-B4-RC1.pom", + "size":0, + "date":"2017-07-01T12:39:00+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.12@1.2-P26-B4-RC1?classifier=sources", + "file_name":"play-bootstrap_2.12-1.2-P26-B4-RC1-sources.jar", + "size":8527, + "date":"2017-07-01T12:39:04+00:00", + "md5":null, + "sha1":"08da80595862416d30e30ecfb0c4382b01354c6e", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.12", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-01T12:39:04+00:00", + "size":8527, + "sha1":"08da80595862416d30e30ecfb0c4382b01354c6e", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.12/1.2-P26-B4-RC1/play-bootstrap_2.12-1.2-P26-B4-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.12@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.12-1.2-P26-B4-RC1.pom", + "size":0, + "date":"2017-07-01T12:39:04+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B4-RC1.jar", + "size":321870, + "date":"2017-07-02T12:15:58+00:00", + "md5":null, + "sha1":"b3934a8b32d6c299bcbf6c1226555dab378aa5d0", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:15:58+00:00", + "size":321870, + "sha1":"b3934a8b32d6c299bcbf6c1226555dab378aa5d0", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B4-RC1.pom", + "size":0, + "date":"2017-07-02T12:15:58+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B4-RC1?classifier=sources", + "file_name":"play-bootstrap_2.11-1.2-P26-B4-RC1-sources.jar", + "size":8527, + "date":"2017-07-02T12:16:11+00:00", + "md5":null, + "sha1":"78e46b1f0e96f3350c2508eb83a8a2a67f2e1210", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B4-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:16:11+00:00", + "size":8527, + "sha1":"78e46b1f0e96f3350c2508eb83a8a2a67f2e1210", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B4-RC1/play-bootstrap_2.11-1.2-P26-B4-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B4-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B4-RC1.pom", + "size":0, + "date":"2017-07-02T12:16:11+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B3-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B3-RC1.jar", + "size":313278, + "date":"2017-07-02T12:10:19+00:00", + "md5":null, + "sha1":"2573b36aeb2112f34b2a77474a1c4ea5d68b980b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:10:19+00:00", + "size":313278, + "sha1":"2573b36aeb2112f34b2a77474a1c4ea5d68b980b", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B3-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B3-RC1.pom", + "size":0, + "date":"2017-07-02T12:10:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B3-RC1?classifier=sources", + "file_name":"play-bootstrap_2.11-1.2-P26-B3-RC1-sources.jar", + "size":8452, + "date":"2017-07-02T12:10:22+00:00", + "md5":null, + "sha1":"0160d8bd9f5ab2779b15443247a5ff46e269d303", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap_2.11", + "version":"1.2-P26-B3-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:10:22+00:00", + "size":8452, + "sha1":"0160d8bd9f5ab2779b15443247a5ff46e269d303", + "name":"play-bootstrap", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap_2.11/1.2-P26-B3-RC1/play-bootstrap_2.11-1.2-P26-B3-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap_2.11@1.2-P26-B3-RC1", + "file_name":"play-bootstrap_2.11-1.2-P26-B3-RC1.pom", + "size":0, + "date":"2017-07-02T12:10:22+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap-core_2.11@1.2-P26-RC1", + "file_name":"play-bootstrap-core_2.11-1.2-P26-RC1.jar", + "size":83668, + "date":"2017-07-02T11:26:44+00:00", + "md5":null, + "sha1":"320b057dc16a04439468771704b73c93d71a61c4", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T11:26:44+00:00", + "size":83668, + "sha1":"320b057dc16a04439468771704b73c93d71a61c4", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap-core_2.11@1.2-P26-RC1", + "file_name":"play-bootstrap-core_2.11-1.2-P26-RC1.pom", + "size":0, + "date":"2017-07-02T11:26:44+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap-core_2.11@1.2-P26-RC1?classifier=sources", + "file_name":"play-bootstrap-core_2.11-1.2-P26-RC1-sources.jar", + "size":5030, + "date":"2017-07-02T11:26:49+00:00", + "md5":null, + "sha1":"d2bafe8cb15d56b547ae4bbc19ffc15cc5ebfd4b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"com.adrianhurt", + "artifact_id":"play-bootstrap-core_2.11", + "version":"1.2-P26-RC1", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T11:26:49+00:00", + "size":5030, + "sha1":"d2bafe8cb15d56b547ae4bbc19ffc15cc5ebfd4b", + "name":"play-bootstrap-core", + "description":"This is a collection of input helpers and field constructors for Play Framework to render Bootstrap HTML code.", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/com/adrianhurt/play-bootstrap-core_2.11/1.2-P26-RC1/play-bootstrap-core_2.11-1.2-P26-RC1.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/com.adrianhurt/play-bootstrap-core_2.11@1.2-P26-RC1", + "file_name":"play-bootstrap-core_2.11-1.2-P26-RC1.pom", + "size":0, + "date":"2017-07-02T11:26:49+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/co.wrisk.jcredstash/jcredstash@0.0.4", + "file_name":"jcredstash-0.0.4.jar", + "size":11611, + "date":"2017-07-02T19:08:13+00:00", + "md5":null, + "sha1":"d2b12ccae8e56d1b056a6058c9c2d2d5aa956705", + "sha256":null, + "priority":0, + "data":{ + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T19:08:13+00:00", + "size":11611, + "sha1":"d2b12ccae8e56d1b056a6058c9c2d2d5aa956705", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/co.wrisk.jcredstash/jcredstash@0.0.4", + "file_name":"jcredstash-0.0.4.pom", + "size":0, + "date":"2017-07-02T19:08:13+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/co.wrisk.jcredstash/jcredstash@0.0.4?classifier=sources", + "file_name":"jcredstash-0.0.4-sources.jar", + "size":6323, + "date":"2017-07-02T19:08:19+00:00", + "md5":null, + "sha1":"35cc6c622e4365b7f6aee72da93db009d6f022d2", + "sha256":null, + "priority":0, + "data":{ + "group_id":"co.wrisk.jcredstash", + "artifact_id":"jcredstash", + "version":"0.0.4", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T19:08:19+00:00", + "size":6323, + "sha1":"35cc6c622e4365b7f6aee72da93db009d6f022d2", + "name":"JCredStash", + "description":"A pure Java implementation of the CredStash utility originally in Python", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/co/wrisk/jcredstash/jcredstash/0.0.4/jcredstash-0.0.4.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/co.wrisk.jcredstash/jcredstash@0.0.4", + "file_name":"jcredstash-0.0.4.pom", + "size":0, + "date":"2017-07-02T19:08:19+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/cn.kanejin.commons/commons-util@1.0.0", + "file_name":"commons-util-1.0.0.jar", + "size":4159, + "date":"2017-07-02T12:48:01+00:00", + "md5":null, + "sha1":"f9ddd32dab00d5cba377e3d13ff43223c5ec868f", + "sha256":null, + "priority":0, + "data":{ + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T12:48:01+00:00", + "size":4159, + "sha1":"f9ddd32dab00d5cba377e3d13ff43223c5ec868f", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/cn.kanejin.commons/commons-util@1.0.0", + "file_name":"commons-util-1.0.0.pom", + "size":0, + "date":"2017-07-02T12:48:01+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/cn.kanejin.commons/commons-util@1.0.0?classifier=sources", + "file_name":"commons-util-1.0.0-sources.jar", + "size":1856, + "date":"2017-07-02T12:47:59+00:00", + "md5":null, + "sha1":"0404e10de2edf31c332116f179fb2b65e93750a6", + "sha256":null, + "priority":0, + "data":{ + "group_id":"cn.kanejin.commons", + "artifact_id":"commons-util", + "version":"1.0.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T12:47:59+00:00", + "size":1856, + "sha1":"0404e10de2edf31c332116f179fb2b65e93750a6", + "name":"commons-util", + "description":"A Common Utils Project", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/cn/kanejin/commons/commons-util/1.0.0/commons-util-1.0.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/cn.kanejin.commons/commons-util@1.0.0", + "file_name":"commons-util-1.0.0.pom", + "size":0, + "date":"2017-07-02T12:47:59+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/au.net.causal.maven.plugins/boxdb-maven-plugin@2.0", + "file_name":"boxdb-maven-plugin-2.0.jar", + "size":298715, + "date":"2017-07-02T13:25:42+00:00", + "md5":null, + "sha1":"304b32bc34543aed6c86a40a1eeab81b70079324", + "sha256":null, + "priority":0, + "data":{ + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"maven-plugin", + "classifier":null, + "extension":"jar", + "last_modified":"2017-07-02T13:25:42+00:00", + "size":298715, + "sha1":"304b32bc34543aed6c86a40a1eeab81b70079324", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":true, + "jdoc_exist":true, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/au.net.causal.maven.plugins/boxdb-maven-plugin@2.0", + "file_name":"boxdb-maven-plugin-2.0.pom", + "size":0, + "date":"2017-07-02T13:25:42+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + }, + { + "uri":"maven-index://repo1.maven.org/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0-sources.jar", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/au.net.causal.maven.plugins/boxdb-maven-plugin@2.0?classifier=sources", + "file_name":"boxdb-maven-plugin-2.0-sources.jar", + "size":140642, + "date":"2017-07-02T13:25:51+00:00", + "md5":null, + "sha1":"ebf83e009a58f65c16715d21ed9a3581f92cd89b", + "sha256":null, + "priority":0, + "data":{ + "group_id":"au.net.causal.maven.plugins", + "artifact_id":"boxdb-maven-plugin", + "version":"2.0", + "packaging":"jar", + "classifier":"sources", + "extension":"jar", + "last_modified":"2017-07-02T13:25:51+00:00", + "size":140642, + "sha1":"ebf83e009a58f65c16715d21ed9a3581f92cd89b", + "name":"Boxed Database Maven Plugin", + "description":"Maven plugin to start databases using Docker and VMs", + "src_exist":false, + "jdoc_exist":false, + "sig_exist":true, + "download_url":"https://repo1.maven.org/maven2/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0-sources.jar" + }, + "visited":true, + "mining_level":0, + "visit_error":null + }, + { + "uri":"https://repo1.maven.org/maven2/au/net/causal/maven/plugins/boxdb-maven-plugin/2.0/boxdb-maven-plugin-2.0.pom", + "source_uri":"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.445.gz", + "package_url":"pkg:maven/au.net.causal.maven.plugins/boxdb-maven-plugin@2.0", + "file_name":"boxdb-maven-plugin-2.0.pom", + "size":0, + "date":"2017-07-02T13:25:51+00:00", + "md5":null, + "sha1":null, + "sha256":null, + "priority":0, + "data":null, + "visited":false, + "mining_level":20, + "visit_error":null + } +] \ No newline at end of file diff --git a/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.445.gz b/minecode_pipelines/tests/data/maven/index/increment/nexus-maven-repository-index.445.gz new file mode 100644 index 0000000000000000000000000000000000000000..3d258686698e2eeceb863492f9c05e69c9d72a16 GIT binary patch literal 109335 zcmV(^K-Iq=iwFP!000000PMY6lO)M?CN?lz61;!_0g$^~k|GiVg1B(1#_tzWG;uJP z)q)E^5C=<`Op?L;+Fh9H%3@_z_cW}3fF32&i%c&v(~JIr{>;AVm*_hYQCX1{o{^WT zndt^*2I#5IjEacw_~+;1e*By-y!F->{^#HQ-~ZG9{nlG={n78d^@SV!_nS8#ou=ip z)2n5?SzVu;UB61_%Zsy%C$IRaKh>{(`rf~J>kH557r64CF(ItrTH?bqeE8S#<|3b$ zSNP6(Cxq6Fu~)(+iZ}Z~mS$ew2 zrCgrS6Uu6_jK3=BdUd+^dE+j_my5hyTr95_Ps8)FxLz*Ko?V`oXXWC0agA4fpKcW5 z`SjP%F0RW}4XK)PHBJ{ly6&!y zWpM*&i?dVQ_zb_@l)(BW!}ZznV)f4AtS(+IZ-C|EJJ*XBVR-xQm-Fz5$xQ$jPkXk^ zXZ4J(x`G7DMR{JXx_k9^SuWC53D*T9M3SA{BrPvrE|ztHS09joVjKhi-I7(|HAz;B z&Q%s;B<>J0*NlgxYOo^Ntlbyi`uYz#KAn8{@>yJBaDN(}72M&^?vwO%&8067zws~S zY6St{;@|0ri*G*o_;Pu5ee$!AJ_=9hHoxrdaRwR;zy9~n```M9x4YkY`Dg{-u~iSUmM=$hh>$n&MvRJH~PYVIfCks!t{p`{oy=6n&ywe z^2Z?gZjOKPtv?*beBkOAC)E6LKXmx+`%ka0FaPe{cVE1CaT>Z|K3!ftd3PAw)w@6b z(fc3#^urHM#3{qC|LEC0{(b`&pVD(N&SxW9{*U5Rzazi*HZJ+yL9Ks(hg$E+wj%Z1 z(C^+2`u&^u{!Y1DQtn(?V_u0@;&bKxxpIec=h;c=h1FR}Q)J*iDPBBRI;5nWVZrJe zxjKNHmsd-A#H(MQT~5gf9^R4@->=DO1d&rq$K60qeET^$f6K{PiV3cmS}Kdts}M}7 zQbw(^gcDmqR$FD_c0|sTJ;`|;u1=r)y1`Gy27Z30zvPahoG2=}Bp11(Xn(=yEd4EK zsdd>zp0q1YMd51Y#`s)Qs$S}-tdAyG=F*6zrw6b!{#rC>x{l$#H(Ya%r@}HXM?A$9 zpA+@BoT#kijv&cbp=0rine2GPpUL}TY{^n{ZtVfK{#OuKUZ%DqDvTXS`u2t+>N-bM zF#PRvPxNzk4(tr3Mg>j=<9*^%305?#Q6y)z=fzcFc}{ukiGF7XJM-CUn;YuYEj2gX zP)5|WP79?z_d`FY=0MF{RC1|A?zxM;noxt5IU8oV1VfdG%Hbn@fa2_^xy=cc>^6e` z?mZ_|dm^ZDh~n+%Ug+l>z2j)ig;}Cx@H+a!82nHsVh&PfEoF#_3+b{PZ617kb#r=t zcKtkns!y+$&q@j)Ww<;$c`jbDQ;z>lHxLwea1y3=U2&y)yY8IxlkJ0l`+oO?_wj^& zAm01gj~35G&(pV5_tB=93FhdR{zWX{6<;sY@*HD)hO5?Y4cDnM;kmCRTN6!Is&K%T zDdSJ4l;ce0?d#Kj(UQYyFNf9=_3!qwX{}NJFWYW)`do|`o}Vn2PtMC}hbZ3EcW7xa zEpvGqZdRwi!tGYei_>s{nF2DjzkL=i*H^rKx0=|$+qT8*<0L&ng1uV}l<4S}prhXr_@&ul z+4p)3)B%_7y8Y_Bs$Xq<=jgj}aJk2{-oAiL^IPfZ0y5@zw}7k-H*Dgze}dCH@DyCu z&SzJIvI^Rtd7i6;R?E@L>Z@l$#sej=J#rxlSlQHYedJ=aHTu&Ofr#Ens5ldHV$kqf zXI1cyRzt5_uX7ePO65i(_}=9?$o}GtrcTB`ub!Wk7biED8O-{nIOTZvQ`6G#jzN8! z$@qK8`ZZc8d2J`^{SQaC9}tf}T02tA6{UG_DQcBWWt?dqb<&cToU1`x%C&Uk2vqC| zWILmQ$O|zbT5KTdm-Jw;CZoA0Amb^V&637Ps^lZn#tKzk@Wv()=sCuDegvTH1SLR9 zObAMVIumS}XVM=FNoW~i#AOW`BVl1WWfaW1P-G~9RScm~(H}xKzMX8IDc>L)c+rtf z3wJcxl=h~|STy(2L1`3aKs;UwG>6f}Ss9YAk{vKMd=IjDW_^QfkmEzirZK8IWRs1n zl||`f!thiU1PkzXs%8oiia!R>9N9cuZz#UK0jRSFic99F+Hg-uOz9FsVDQ&m)J#|v zD|EY)S|O~eQrfC`NaOi)G6U&k^{?kUw3}B}w6vR*-SFURHX+iF6o>zUsA5j`70z7a<5o9pZdSgbQ%mJWg$)~(+X*%1HPg7#g{gFBloZu{IdYm>6 zcMZxQtWbcHoK4o61UEc{B##6)OGGW2TF>%c>v8SmL*coQvT}t(ty{+>qNgZCz`WA% zG-~i78=sg~2NH5l13K9vB%F}m-I7i}l#s^cY*Iq_$3+doMuZU}gbIQ5G^MH3i{?tkFfNm+{)ueRvdtovdyyDXyAVkDLi@Tk28B zJ~hzTX>9+c@%;xl8=u``fn+THAsZEAkkW+Z?sEV^?18i)Ds{0OeFm zD~e7ll2V?G(*Bs>LD65GOHDl zNgko{_feJS2%J~f%d2t{KKdw}P%7xz>bhK{9dR#*^Q2m;PxqTbfIcmD$6Q$PQa1RzOY zu^8ZCRUMfvslweWn6OHQtO|ouM(a|KAb?qV`@4O?4FPmY)p9G%G_HOm5pcL-CWN4D z72FAovE(DiD0vCG><#5m2BCY9gKcfq|-6W0Gp>p26|=67o)4~I(XTC7Wg z^JrnaqT4YsEOVu-R0#@Prl=9H20jM- z_lE+WAKSL0(vPi_4MlY{Rw<*0C+6|&U_ArOWPI_ea9b%$KE{HuT&IU%ogY>|-EJqW zU2J5$5_;-#A5Z1VTy?b+S95?DW_f|$SDGaiRPwBX&e8F)lGw%RdL*dCJ_>c-S#37&v)mKDXEGJ{ftLuB~CBDBRhU4A>{0S&xc+k2^SXhE5Fp5Eo zP+~xQpIogv7lAO&riTNbow3fg6ft7-M_0tO_6`qOF;3>zmw8o?aM8%4V9l|SW`1kDdRPu$%PAWV z0Om0m7$Kp8hue;yD9aHje={C{P`>SRicBB-1W8mN6#q=5h3Qjz_J^F#UP@&2ZOdLlsqf`hPlxVIvE z5A|pbD~P{JISSS+|L(HH-k!q3Umgg|X@vcBE;V?IpR3jZ;W)_W5mp+Qx{3!tK&VsNt z*APmDziq*t5x~DY5a28=;m9{L1$vKL$!Sn=B+#mPNj$_V1gx12v}2}}tKKL~Ylex( zyUqOv0G%bO_bsBbe#^ojlGM|D#v`F>!6|YGsTf+q)W-1u#Zxnkg7T(hL{iplY}W2e z+8Nae)-*E+cyGGlAO0Av;}R777$inijL0Di0XN%G;xIJr!6cp2tEO>)l_uffk~*gNV~~_51huMK#B`C8hJ*9fD1=B7 zHpFC@4Ot?~;@|(Llz zNosjBgSFe+d!;3Ou<4r25g?V$P8r05MWiI0b@0cFvW0O`RRKFW=o&UwD7KsbXUmJT z>*dvMpB0gLTg~(%=!_CG=Kt<76H{^b)mqgQ4u>4Ut>G!*XCPy=ewr*ZF+``B&{6DZ z725!3xe70;<+DmTq*l+F|AT<$fY8vDNTqKuE2|1o!qbT`7?gO;wNn*SqdoxWEMZ+c zzh8>pXXV~b340_|R<#SvS(D(!6$FkZ3g?aVnyIKT%*k3rTlEOi&gs^6pv9Hw7lk>S zW_%q9P=u@<{MLv^2d^T=wsM!W#D}gRP|d1lQPUA)xtD_Vwnf_Exa4D!Rw!Dqv9!b; zMD_uX2ZMtMG9k9)#V4N<7vTXwXG!bZD>$m3omN@?Xrzq}t_~eeDK(1XW5ry|cp9{> zDgqIhNeoWy7%JNiwX9a*$!Z1;2+k3yMsjFpa+(NZbASNt5U zP*O`BgmD>mIa%S{@hIo$s>GIDuTBFwLOWf+ItphrCYBQE#9rk=NZ1x*Z7tP$4+(fx zO-OPhxn)nX&L~)rvbjFjCvwx_oyNI>n1u zd>HppuL^u=saNsHWTnjN9N_23T9p?8-1G%XR$Ipd7sk^Wn`CCw^X5^`l2z$u-mU0D z5#^jS)19`Xa3W@epJR+OMZu@jnp;+V4de(pW*oSxU`fa8uG`oB)ADLp)~y14n)?_- zmb8X!XV(4c36phX`tTNy4T*(>*^m$-OT%Q5GFr=YqGV3xt%b^QeD=ucRy^Bx`ITG8 z{u{|S{iz-p#hJD7otOjyd|F+EV^f?({0n!G@)skOK#1H_A#+k;zg4&xWEF&mA0q&43RX@QMyF;yUpVglDv<5p9SF_>Jon%>%H_PBhP2$qMj~x9!~@g6;6M zsqLFJ_p!~6m>04YB0ArXnB{YOH9K+nBD~GQX=q4V6yZq(%MtJ!B^CH+f`>O6*-^OW zM{6BLd}}((=*TUs`9qME%%XNNMQB)z4m55k!o`Z1zE+HuEcmO~a~J*=*^JeO&(Yom z?FY&l-#DIn03MDAvV>}k)CH5vmW+EMsD+IV%wmkRhU#bIUHIMFaCgoV!ntNfjJ1!T z4UJ0z0Xh|g(3oK&$CRV=wI)U8(MO}aj$yx8y@_d78^S>GCN}p7+R%%VowG{9+d#ys zw4szO%9DT@P9Y1Kl!uLc0JgdLr4iJ%usQY!+OR^K$C?CBx)h31ZO+LkO8a)f3l*Jp zLa_ZZLhfUmAF<{cNAARDaTyxW? zpJfK&w|>w>tIlMp;VW@?yKtur_Y}fe;fo4MM5?zGd>-c-7%Exw;_N)v^OvWql5Vcf zu3x?yJ~%1oFR!nb7bn-tN$jK=U)t zgF|Fze9_}Y-T&qo)LR)#@GWbUr-B&T-9_CBf$!LG&9)-HGuHRyk*3;3~`$KyaQqEF# z68=mrh6m_X_|(q88_f}3Tg2Exy2g&pA$m!(*^LB z#ZYE!bsf@2OWdTMFJDjv#&`eq24;@R_Pr~eu+-z`-KWbJn0+TToSmOsKP@Lut^yS; zi#L$p$yq&F-Nc~+^U2xj4MV)Qesks5Gy7I zESZh0XxdvJdsBOgbSr5{ws+fEo3iz{vYqT@eJ56>=6He-e7K?D_R?C$kVuf zgVRiNWd3dY8Lz!?BOp_%FgpIZiTRdx>*SCkUZhmJIgoR<4uc zW1q`)4=o^snJ!n8T=j3WT>oZMu2(k~*JsZP-t+Q|ddO~_{i77&Z;t(~VJp-+F)c0g z<;}Yf;{1Q#TWo%QwJ!Z1A-j?n@#UhV^RvrUS*$Nv-K3|Gc(|tW%8=KyRag4|S2ru_ z0f5oKJx-sL>-W#YYW3aj&&995w+I(`@$1D48m_p$Tc*+6jty!IYbkg;ok4oZN4o=R_0Ndve_Iok|LWG_nDr~{<-mh0SH zHQuxY+?B>*ufYGtNx(Nzz}%#mLJ87V&S~FV1}bi3VYq$q!4?)cJSKOPfafN;@y!K6 zjB!87r`Z5+qf~Q_l3B2`2Br3Scse0_VRK>jwKzeI&z2v{-Cw+sG z8MR<#<6Iep+Mh3n`c%`X|ErS+3_|_#dl#L^?)61c(ObC8@Z*ehskoYWgqx8f6L9Xd zQJ#TNX`@)xo`~iqq*Y>CWS^k*4N?&9OgD)RL>8^{R)ti36b7hjWr@zJX6dxmJTR|y zv_&0(Y;Go4)hHoH$n>_Ea40aDK!6;Bm&$QCeY_ZxjSq>d3cpy>kw8~A-0<%=fSp`l zg^SgB-;ZsMg_zr|p)%cCzg2E(oW3@FzyRrQe?IzbQLmQII)s2uv%LGY&M1>lewQ{5 zVu~(1$0=$LlewYJrxC8GiCS8-0*4? zf=!{7q=PM5@^PBQU$<~yhO5==wu|-6Wfk4m1$076H{te|#`hjTejCAMIk{O;+eL(K zFE6NN*2VH>H2~}{zRM!1rc@h`4jfLpIGBj48%6Y+#4d}O8D4$+p2F!5PA*^kUVP98U!g^2hf&OrG z>jB)q>;-P|iy!^`KQ5k@knwXa_~a~{pZ&U<#qVzX?YrI0@7Cv%gno_*_BDA7Gk31C z=-@y|2A7noutje+BBytDN@JGVcSl1vsonWVg7nB_&_8{#K!v4RU9>*JFON3lno6d; z=j>Cilo=TkX2U^ZnVSie&Dxp?Ls7v-M)jvJl;lkH(Dgjju3|ftEf?IA#&;B5yF#Z} z%2+=%)qJ@?=rFf>PSsZ@NxdYD-jC)=G!kjPG`{&!n!!oQcomiFNQW~md^GJ`6gE=j zhFp9~wwOFl5o+qcO?-2c0nyepE1Q7!XWp3*TRKZT2&c-d(365o*(UOltvd=F0hnGNgg)yrKAiGO_-3fQy_2ky5?PM-4*p| zrhQY<_k|0%Wp=AmvJpM}_a9zgou%vZm(=N)zJFH?fkcU&dlb0n*R-8~Ud}*`#{vI-!nFNrDYGnjy zX|}2OPgf$LdO-{Cn3G9IRwYNgU5k_{h$;>B#iSw<;}dOvGnEJh#k>4?I%3n*dwp{% zid?1%RA1h_`yh^=%<6;%KjpVpuiF($qyFdp!t=$;#l_k3Uc_FwC_zJ8@Z34$JO<$% zUb-;q4=RPAb(cCO$GiK8Vs6S%&4{Kv%hAZ7l0MlY?VEbuG1kRu~5@g6SX9w>jI#*=LO^cnH;5s=TjcR3^hLXjLK{I$k`msSqNR`tH%)-$)46 zj&l10{+xL}4FwJYC3UVfnToMV!Y9j|v_kXB5*?Lf9!^fMYNK!GUZCbEE0k{So@ws4 zxjF|yf~BgU7`4E*0j{^BbtU0S;obykEFG|MMUOSp-%cT&+~x1nfyf!+!HH?DxR`!v ziCZD3l?uMzc*KC}Z+;GoRBz7D7wZ?gHBj$;xOne&i+??UGMlIkoD*D`3too1S}+-^ z5fQVkL^$k5ju)2H-e~8jDTSII9w*p+OJ5;BvG^hm;ZzI#W&`$gLeuR5?B6WH*le zHni#8tIUvEY1i^jO<&bsTi;lk`SRx7kHZ*qR5knJD`ICZB^@s;o_niH)>&#QeU#J2 z7Dq!NO)<_7ih?t}L=*5qw!GtBuYDSeJ}oI!T+A41zjC?Qo)| zVCM*|Oylr2ffch3!-L0_+sFdo7N4nkVz*Kp0@O4&I#VyCYPnM5h5wdT9ug{PD>Ikp zGX$pY53Monn-*$l$*DW=^~NJ^_iukZWL9&PzJGz(@4=tI}=jQVvxYh4gt;X_+^Ysk)d2FH+8zm(M7M8L~pwk*iUh z>dKIzDGc+b!d{btFi?Lola#@4vvIC`Z^6#Z8tC3u4x#BAOHtxzV~6}rlrZK79dA#f z#sY^A6oz+U6E}&ff9PaG^i{=OCbli%xv2^VqLnCUZdW{~ogCgs`BqK|ZpCU5gUyvy zhX6aeB#SlBekoOHlZ@ldqwmbhcSbE()m(KkePLp9@TXh9U%7YtL7@KUcS5_(yS$+! zi^Y?xP<1oA6{^Il+k(YQ#TO&q8aexS?$td4~4X zV7*EEegT$iJ6%os!_ln=!0yBDZraxJr$&` z27rT<39&hsM&&efnyh=N{!u#|KJP_qanSS?AGvgXdY57ApApzP+ z8n0KhtXu!)+o!(a!cU8ZLXx~+frFBF(_X*KbmdqKT;TCPgBPejKH z`h~_p9+a`$DZVG=8lSBoQ1Y11dc_FYJfkW~FP@&Ir;F!j<;CIxces`J>gn>uMZacF zSBI-7H_!UvAR*K9=xVz7$=UO6WV$ctKI>e5pG}dLg#gLs2;a$S2_I4>9SRj`&w?wy zk+R#eCYy4dQ2}s5T)&ahRfzDCQ#`>9WSFA?4ltF$rV@r6)(t;bFV%SMwzZ7e z^~Ed~Shp=YB|j+%>)*+^MtcZp>DlG{fRQ3~%z`GJRC8@8sNd z2OVy5JBHWG^}ax+AW}v_9pt@16s=r<;uWPZVXLncSHZIFSX!J2c}`78Xrbm7oEWy? z#MImV&5*X?DcTrvrhHI=0Mo^&Z4{Y$pp`(4P^h}`!P!s>9orTKnLfEk0{#(;B_9CHYiz@X&36Nv=XRf2J-}0K=Z6bx9Rwwx5 z`}cqCMXF%2DX8iaM_7)IahEA!p_-VKRb6`+BgXoW?GVlg`_pa-ahk>i5e(Wb%<66oA)_jjq+8?)Wb>?gfJ@}x${jE?9_2eY1a zhIw}?XX7}J)Jelf<@Cm}sJHM^Cw0+)NYS!1Gw3qN8 zh19<0C@@iJqs|ICSY^^frZ8Iim9}amB6N~sl$sF z(s*VpJVW8fCGYN48m9&%CpXt;=QFcQGTkh4XS+}zR!2=wo&Em$#sm6ayti1Lb;XqE z!?WwNm+K|5Zjr3pWDDnu@^MKw*FYR^t`}DU%IIpbdPeos!n5Vg#r5ri87-vI()`_7 z>!hl72{yh!r6r}63L@YyNmvR3l7m|;#>r*h-yw>*i6mL`B%ZRjEx**%GJfhZ(Z-cP zX>K5e#pIzrk%-C_*9`Gks7}+&q5r?ZEPty0Z(eAVZ;BO+}~oUcwEFo@=_!^I+8 zo{@&Qy17{V@P|Jp{qZbZ3fh5dm>1PoC9W_pZtpvw`unhWaTP8vY2V@s6EiP9{P4#gbSJI5oe(m0K>RFxRA^J9gw+|Hj9ZS4 zoN$iI$hhQ^I{gahSW~T!mRiwa>e`UVb?3Y0>}oH?u0^vPoa##&Id7*P`X>RJPK~RC z2}`M*oaQc^pc-AFQ*)sxIu7ZW$oqqyP%(LZOu@q|zZ_--#=fy#@ZQcysc!2xEaBHXN!^P?bz`KO+ ze)FySa2Y9H>Z`(1jt|u|3eU>|F5Rj#PNOsw<)gs+(aN2oqd5tI6la!-0SSB^px459 zm9%B1$GGPhZj5TJ<*Bab#VdqpQziY$;+NS9=8`HU#He73$xV>~BTYr~Tp?`+dwmH0 zIkFq$n!U5Mop)0{G5CpeYGiQZIhCZ7aM^jK3V+nER9ab0O>v{$a7&rzJg3a9_sv09 z-JmPc$lv(A+uI&vp$xCGa1Dcm2)A>|N$!?&CamKLgX>i`8w)Ef{WStLM`>unHoE@I zGVJsg1$HDlIMz7{R#h^h%3MsS+&E7~3p}PUo?Kbptd+Y1-5g=Jl&(_B%xmW(!9|f$ zf$?Xi78aN+R_7!UYBCm_W>H#K5J`=97{1#A7p}u#5@vYmoNk?dRefH$;EGL&`N#L~ zKcM_Se~6EMF<2q8G^@eXyzGMQrvZlO2QRP74{mCua=_QiC#8!VD72tN&$PUJNy*pv z@Y$%oH~#vv&(1hsEZ9Sxnl+8VtgWkXRAP=i*Y( z8ZIiMLkc2_jXI<6G(=2k&==(#iYPoOS2GESw99$xp^h_WRbR4%L;Kq4LFzwgJ!BB_ z>Zd>Y@78Mzop{bxi|6Hv795^Dy?#;X&o0@j`;bgJWq7|!DJxy7_iEYYSdn?}^Q@lY zH>h<0<#8{%%$9EDu1nIFxDlEsnGqjr8IP0V%v6UIRnvo% zTf11kt}>K~fG$Ah2XeWt;2I&1v)xe z#N6~`(I4Nx{~)ygiG+3=aV}{!{jy*4n~IrKXs6aFJ(GSwB$_U7&)Bz;G4G0FFo+;j z6{tk1^FoE{GAoEzbXJV(9CI>xybIAXBn|1z%~7tMY&o++^eYg0np*dnN+~8u=h0GB zCdN>_2r|Iq=bmRS7-_dmbu9DYQkt8C+_cTD5cB5tGZGS9tQ@4xFjU4mYh6qTfKmN*_HGbNydmsB=Hzrfj6f^ z_BJ}&b3puT%$Qx@-Y&Sgc_)0cEtwpe6Sk7@ehVcyHz$Q}E{99EJrVRbRf6{lIR4^; zAN=e`AH4s;habQ9v!DI+y`OwAe+bthBx`M?*gm1bct1Ud_ovNgy!Nv7tf&k@R-da= zJ}8w$(a_&K2P)$a7uitV(2;D-0kWN&@JfoNkcVUlVW)=n4HdG^#TQ!yVvEQawP|DC zQ^CL@gvwenSv?E69x3EGoqzzml^kxl+?Gl4hRQfdLlwnwPm`#*7E80>39r3WSy0wfQ+vxGBPonD!B8eHou(<3 zIu_9q?zeb)c~8-+9a}lLwGH0LpQvE(k+(K^J4AJ&=|PXp$gSi5z*981D_$n zF6J2N&gldS`C2-G>22}z8z|dqvgI~bos<_&Q3Y&OBB!l`3IkVi&`$9%4jylJGl6?` zdU5&e)vtl<^jE7_?9`odG1UW_Tf5GL)_o+`FE2}9P3e_5 zRj0f`ElCwf2MFJ~g8+@&_u-O=mm1|D{^0J`1C&1KosmV0OsP`SrjUj7*}*q} z{>cGA0;WsW$<{npLGSEDGs7`ytY~lyu;iAJITX*w^gPWjpH(2n!d@3vsO$OxHn!Nw;%BR#WsAnWF6K8owY|~2bj>Ku14yc zqp5M0v%2C7XOiIKvS4ywbaRaLLh8manm!?+F^mrZdBhOz4RVgFUYOS!71^(xbJob~{L=Wv2VDPd3$AtO1|zPdi{1$U(p*~v8A61Rqoc}7MAIzN z*a2pHVVb3;7cC7lfNPA}G02V>t^JVA^3kgnA3t+s-`#@jS7G&x(x?Synr^INXa#S0 zx)}}UuWyISnU+&C|K;JWhr183{{0lzaKTzt7A^s!76dI)a?67=LMmUpq!uu-8mF?g z<3NV*2W*CoT`AaxXEq>gjM=g9ju^K+;muGI@Ycuf-T-*3^RtU<1nlW*xmwoi6RO5} zbrxUI+-q5L=&p5r+fi%{`pBVwpfFQ={%6~sGl2cp*wfx}>6)}~Cq$-R=rHn``eV2% zL(tI`?Wr_Ub=s7TOuWB45cV8F_=#_9KS;Q0#NmmR_}HuI%f+zJA!J z@mBwg(*Nh`<{X2JK(ftrh3LD%bTK3dk^|f5z0!EZ0QRq@V8>Ujm&jDnJWG~!@X0Y* zOXf}r$x=$i+NfP%JZ;qWnFb>QUBU+36vg7vQx z*vT4IpQ+R>w+T$wmM=?{&KtyKwy)hLVCeN!MgQLIod--`A7Q%vYMsX}3w#E6l`@v- zJsmRBPA3m;@+$D4$b*usmFTz~$P631evQqljdv!4>s} zhAQ-oXU6Dwq1fD&ojBVY??1yU0I}2Xfq-mVdf6AnV}uMFC}#Ks6n;88*2D4XqL?fc z(H&`9=vlcAlq`)I0@ci#w9>4#ZR6BX2-sLQ?Vs_-_aD$$V7PzDdZ$m>%0di`+(|8{ z5epTLkN89CoJ)vQQ$~%sHd#g4hHsX3cco1KY6`Tqit+%EkFiv=4dg5<5kkJsARF@y zG5^`~^6@W!dG#?=x!$J!>|Jg3(H@XBeQ_$mCAEv35cMnnxPHL9bpHX}pO53b%`5KK zjB?_^CSOf1QN$v2f_S~@8Xy=IiUwnSE8}(txH*zKrW-aFD7P)G91rj@BH1>;If6Ro z8nf_q0r>6v0Eg)Rq{}-Lr!WgsZW@cAWm0FJ7+gn;)IPYj^N?`K zRwVM7<9ho(E=t`#fBEZj^-8v5W~)3`(-TS5dapl6E({Y>&G`H48xLUqWCUjY-Q6)$ z&vgmLmgG3gu-?%#I&-C}EkRnYlc9ddBP4&j3(0oc5hTkS!!tl?49{V3ju@DoaJI9J z;P@8XK0`R)yAOxjSe=KfU;gsulJblSqIq%J*b=vt2&*S_Gmh4&XxBzct*5KyfBcWb z1Ku6(-`bM8cgZ?2!{w5yQ^iGPsX=q`9NbfsS3pgG7@d8#bsYJMJ>ku85IF60WoC`D zx$Sm5#v_JsUyL)v1V%rN#a<(fCtERIuhL0>R3>kys=qtHG!Aa$P>s(B*~lCEllA+L zo-x4uMhoWXvbFcfH96hz9CcPPhp6E~CMIps+-Ad6R-QViji8zXpw7|O-&Ga)t10Hj zkUj?9BZl@6ymJ)xcinGaYrK=tXN`AgDzlx%w!vcKgzj6OcqJO!lV4fC{zgZcKW_o- zuUKbV7HUH+VCA!jJSyrVuT#p7TKk3o?e9$rVVuh`2@KlUW@+mhxkqb|&A{MTfR7RR zv;ofY)ahyD1At~*9_FVC@W0*)koo{p2O(+~{bG6b5j84%c@dtSrLBzh&}`E(50){Z z`Z5n*PHSm=YYk@m69*BTwnVV~w?>C(i%pSgl^1D2tiY+NHWM~Us(k@|dxTKq@?9Ss zFP0gyd*)edF?x_sgA1R$aE{>21B5d(Q6L;K^+`xL+xGHbOW~*kgtL7jakXCc8apt& zZ{Wg7sZ1T1znDQb$l-7Hlf!!EaG{M-B3WIG(nfbx{(aGr!apuE%dBjkeffvO@z2c| z_){$_KM0~hipLki5hOT52y-)o>(-*h>n?=twsZZM;jsPIX&{(tw1f1%&t~No5zBNM z{Mi)F#%cR+%_8qFy@j1CEe1d$PU=(>U zSK-$9TR9+)i2X70Uv^-hBfa1aTlr>Vk5|hVt9|?^VNIh*j-{f{U6FJlrh9YWoMO87 zyg?4{%*x^3@7xN+^D2~++0|sI%x&@|Ljb-gMJ-B{)|%?Ujn9_8f2=@eXGC-1;#M*Z zR(!HzIf5rgi)D7QI6h4}ext;)eO2rJ!?sTwX-&giP^I*4h0;pZ*pT`6TTu-X`0ITn zaEsh!Ub)c@MuJ7hXi1Gq8M&13CPwjCjA2o>+6L^6d~SY7$67=fM9?6@%iDKKLM=(r%-2(7XGfn&YwNa+>*j2X8u%$3Z({!1jVR$5G82 zd;PBkw8?>>~X+b`lt<)HK$2Ptk}ySsZU6@TM`TVM(>fPz(LGcBDs zOOkU!gP_@mYM^7S-zYslIs4KCHpfRJ#B^hFjj(yp;5c-Tak8h0ZjO@XF30e-L$_T) zc3b{iIcbHQ9v-Krv3-IY=Ylu9=)1W#+V5}9weg0(kik$B8XIy>j7~@dZ)8$|iWgFo zdE?E!F7w;f$OzUPBdstEQ+JDRR*f72?NK%42-+MSt!QkUzZTFY=_ey-eXFIDbbhv- zlunA)f`+~A5K0|WCY=1!(c9lWWI(xSqrAKBF8@+m;hdqcO&4Az_sUzJeN3`OtE10M z8983cu!o?XUp7xyCI2aYvn=18FgW!UdJTIb{oVw z5__&18+o@_8zcHKn2(W4ybb0YaXmM!2=X<8xqU~SS_&*Lw$T*;xNp?(HeU1vHo4<` z>Jofq{O-8@+$ksqMB}tv7MkCld z`jA?z!sC6pfPGh?W+tesPf%QG6AF(^d!5uq?c49~K(L*V1f{XVKv1?hZlBfxuLh3o zT*LoOoa80O9Nj2d7i zF4zl$EgaO0S?QEKM_etFsayralTem90b8qsD|-$I--lgZH>XNpE#hJ93e?xQ)+mE^ zwWN|VbZ|^6CR>D#RE|>wdmxxucKKHNHb$m*g0xhPc4~Wp$&!ljSS4y!$~lf9E}rF5 zt70MrJUAEaVwh*w>S;MY-=Vu;(x?Cc`SF-Qm?M|J>%+R(z|zeW+Fjf-8atq1GS{MtiM2#-3q~e~ zs##_k+E_@hIfhBt$pYLCD09^E!l_Xx_oUX0;_|IUL}1`*s9L4%HpR6ALp7{wOmBy10NSe>!vO*hMNA1xLP|ifZ1?5X zK8njrJuO&BVC2KNRf6LXeu@bZjLA76LW~&}(kMWnPV7;pkobX6X1R4&vU_7(I)CMr zVwR579|b1JBm;+G54r{@Dvv0w&=XaFRWy_=1?`o`YU{73U})`om)272Wc5vttFO2V z-?7o;?DyAq9}wJqum(`5<4lOQ*aWYR6(hA!E?QV}l~}ITml(_VY{AKH0JFSOe%kq* zko0jS3}fT;-EJU~8E}&$7$FO8V8oM*S?dG`GDatOC|R*IIm9XpEk!o{9}-$%peTu3ya!UZgVzOI3qF7ea%$K z$l-5deEzL#GIjm*s)T(0^40o>R()ITAb&oMq6{5A?N)FF^vcxs{oc=qyAJRDf4sNu zcDJmH>*eyCT39Z^YIU}{?s`}*R){;O4Q0Byx+)jfef#iC?d+D9&+x(NV)3)9<@3H> zWdKY-v%gr}T%7&uO<7!Coh`4ZlVuF6k{3Og#U&o_PS-x~MR?ggDdRa;@#eY=m*84T zw?19l;T)k}=)4NNqpnC#a29?Mbf{5I8cH$)?Z;yL_I5FDXEe!EPY)W9JbOkf!C9k3 z(winvILOfi;banw7q}LY@uU!B<^o4Uh9UyExzR>%MxNUz7Rl2!Hh3XV-*@zZK&O2> z-Z*(8h^mMz0gjQSNN{g`;X3=If^^owfixj`T5h_0|>!&ZDmGctn2_WTiRjy8+E%VKJfkN}AZlVq>tv0Mn(vB(#+s^BvEI8As8u%AK z86LR!`RxN2|2#Z!Z5uVFnkccj3frh12!p6F`BJUTy0`=rX?a(y^%mey9u9EpMD36^ zR#*vX7f*6T`eu3zWDlguB#v0C$lxs#*6;xRER8kA3gabWd>vJ?{BeAEOy!#3>$HFF8O6uC?YY{;=HPzby*Q9_b6RK&9x?&zbk);3v-`O{b}_rn$|=We>k zvkyQaxnR{f?zzdN)|fIib87Q~=qD69siJJ>(LLH&+IiM;J+1UjNC(y;Ni6syw7%FuF>=L5acSE>Rr|e z;WENLYrt=2WiW`9p@@^Hl{&VTPX_rcyG5hY6(R3KILR9=fe%5Re3iy29jSX=S6e7h ztw6*=h_^M5M$~Mx=br@0+bUYF57aEi)44yjZ(%+j#Bl{T!g7@m425KkK&-?Zhl`pO zD@ofBbG6#KPhzBZXl$vby`Kqqw{GH$dly z@lOW$EXAd1nkv&b+=D5du0$R*X!MG`BHex2bq?8OpoU&K8Tgss}vPNE<=2bXWrOg|AF~>8ABMG*m!e(o0CuI79TG@sP#OhldQ9zutY=&$Yf%a$I-x5W;7b zeWAc9d)imG&IU_MUK)xoxEx{C?3noG09ad<8R1h6ExyJFB|M$d2gCDlz?3UF8BC-s zy-Uo*5IrU{FL)20bQRT4N+9hCZ>!4c;HhavHi9?o%PFs>&20|`C=mwg03s@$V@gST z?^V$lR3SvpDg_r|9_#_Md1mFvG{11iY!;53>+%B*E%Vcj)XT$ zOV>D>xE?;~v~KjSJs2R54jlB7!)&mWFz2Y{D92}9T4{Bvj>XN*<9AvBsr~9+%F;PM z^^9n?^`4P!B)Wg82h~4fA54gKRPof#y>l0;bvoyig!S2}fPpItnsS_$r1!@(M@e_r zwdxxi;Cg@8PaEPMicJ;^jU=6~#_1%fj0UWNlQITo;qaPdcnv%phi#6JWYe2!lJ&`n zl+E;Dc-qvEvOz!u_Aw=C+ZhJH2+%V{1jW)N=cbv$+u`j{l9<2K-tj=ymrHW0(V_BC zObB;X5Gq6`1au;uwuD=fk}BD1xQo22omD2?QTD?$M@N4bZ+>G6?lI^Xcv4(dP*KzA zB!@p^iB8EJYEB5hSXb#~lJUGBwmCZbyNu_zr`QmMv{s4^g$MnY;C%?2IfCd6W0#mJ zmFk~~qM|e~Z4AS>KONZ)I(pO8j=WpxbFH(M2M<{;&Lkf*6h+O7hf?5DS{H(ilIC52 zVS{t9|B$hL=?IUfMMwTbE_t`L7VNH2 z%!UuChm7=AC)C~t`EYp1UW^n~d+Hb7FZxT5FePl@1+EK+3V6v7_mbm5a~wtK>xWu?+tYFbU^}+yd$vCgFKzIg?6t{} zORXg0T$naGIt8=M3?5nN#JxKb-W)H<7Bt7NPmlwR^tO=u0D!4lS*@?mP?3Ed0Vatg zXpvGICw1gmfT?*0FR#jZx8k&ix`g>`s>?oafx~;9x|2Pue;yvP4=n{;Dp)v5kju41 zqYa3P00)kwWj=*0l?BoryA3=t?U01vJM-soP5mx<7Y= z7;Booeh{!&Bvb{IB4V5<3p_7MstQFr6)A>N3CFLfK2=@UtOF}Q2>pnd&#kpY*C811E3{+hr!cSB>C=uaxz=)QT9c4+$ zP(1hJc(k?Z187h7S`&vl;?rEcwJsFGYPD_M=g0j+_VI?{G&(Pni5{U#f|$U*2y>S3 zv4-Gk4bg3!cx$bVY(X{0McVams`}n*)Z9-;>`-)t!$L^|5@tl263&JK``~27XcKIh ztBUe4cdh(vK{rQ8&DM>MzBL^@M5KtTwk`eakIx1Z6e2d~Db-ZgC~~Q$AWY*d1?WcO zbzsWv&&eICQA^u&I%Ho1l=2O>?bPg#iW^VI#0{eCl!6KgW2UQe_)HaPboIr>x^bXs z$EfYAA3^x(85HuV{Nr(wCn$DU;;Lh!bEWX=wO2N#M3n`gCv9PMv*+{y=w>;oWHY|* z(RCe7A5KZh;C?vCli*R((w3kK00J(F;)(Wz;XA@#%==SvesNqFuA3Y6yw@WLnatE@ zJb2Jb;HDO#RIaJA1U1Pl2ixIHa_(g1j8>WW{)4vX@;JT!G&_*s*~g=#Rdhazs@0jA znG7Ns!)mfwB|5YgqOaCudBB9*cY)jpK0P9{9z1G6&^Uj0C_J5mmMl3~oPdcHMG)SG z;*=Atnuzhs-ieKs$nQ1aQJT?J4XMoY(Xw`4OkZG8i$?zWm%Eq$(e3^BNsN&yK}pz} z3nT=sMVp9(Gt`okhfPBan#$O0i#;LDk;^XB8>Isd$Cf$mTpNqq8W>4wDBTB9 z8v<$NEYzpr305v2fo+b8@WR{6A^qwjbG}ik^9Mw2=ha*=!_c zUf{dz^%iimjC8UYS@&H!j78M3ZF6*gcqT*rLD6!AXWn+b=>wetVqj<0Dsrvxr;hs* za)%2^8&J)8)+hR7qCcFF5^hIQO7NV)Mu$0;0-O%OU_8SMVLDRt@dF6CuLtS)`jG#o zhBS{xNJ^g21(9a0RIals_*vD!e5>FQ6S5NF(W$U2WZMF6j*#wd|7p{Kw0-iKvUa)> ze(-#Y@USFp{032KWW}T^vhy%>MTsO*vG6hdc(Lc*CcI~t=Vi|w8cG#!u3_~{#hMOb zOi1~a0od(x_K8O^+bqCCxT-rzdVXHgewq~F zm2Bsh42{eUozdS$(%a|k6S87{c_}kFVvt*~6oHdqlTNUIAzC4PvTEl5Zo@W1Qh>D6 z7Gigr)KQGLZTt?vi0B7a9$3IgQI+N{=8&byR+OYFPXaN7DZ5F!4dV<+J1({sF#Gd6 zoHNfGN5zjo$!rcW=2W<~h#{=zvX&@p^l)^j_M(6bAiO(>rSqy((j08gz|Kp9!z)>% zR`n4h=wgL0gMhX$Sii_iV41;1tC)M;kV@u^um_Fco~jfsi)yYM^&lUOr4E+Q8w??B zjTjqBq%yJyrn6C)gwD7S5HaziG0w77o96maUt-13!ua$!#1SC1PLQT#aI78E0p=Zg zhuZ2!ra9BKs_GFv<%38%zpyEVYTJ9>?}aN*!NenwlvhhNMqqY)s-Bj}YAsr2cx#c8 zH5{ycs&2Qv--d0Dq{7Iiz3)Lj8cAcNvn#rCuPFv}IVSj`NwZ4lTMBbogc6KA8si*E zg)vQ=DEc!JpeTP7klw1|1Gwl)WU4r8EX+q{oVpC_QbP67=`@adTifIam7kV9Ouf7- z6~Affd;P*JZ}_AAp6mPnKYQ=eBU^Tzi51T{do3Jdiu`m~GXzVe`)H$~B1mT< zIKM_JsnIudxEI^3SvpQGA{ydKFzt&OZ8bC)yz9m92TbEKxd=i;Byi)2QaPjudrjc2 z51mY+0kDlF02F}@u_D+?yr|Xnro1K7$6||=$(UJ)6x?0Ts7NA#=gy+c&Qg+TwgJn_ zO=ZIoUCs?Fpa0ZHk^~IiuEn_@B5?3%poSz+WFR7`)sA4>4m>^%+EpjXmhT)O46fEx z4bDwDgRQRLc>*?MO3;jVP;=7Q*M&GwRW!n9C7j?n8{(`GxgmcmakR(dL!nMHJ z{lE>er6j7TvqfEah^xYpPk{zJEFmsB%CgZZgO}x43|wT%_T$tMsVRBSv2uOG5p0KU z!1JIr3_@oUxuDWw$pzT?s1l3~U^RQ#=qe_zvfOVCrwUMTjL{Wr0s!6yV^>NHu)!z_9mKuYnfaukQ(WfO*l~EVvDT zyRonFl5%HRPXIeI&7##DTSZbTxJ*%F319&(M0P=Vtpg1^rGNK@J;2QXTNDCM0K3lT zF-j?ZFStF`m?Oflm4x+~;+-{>Fg6vXc0dg5UPE^RQB$~^j&QeTWw^C6HAEWOt>AnL z?&d7IkiBCX&#_sgMt~tmgicONp<)#9&(1C8Da%Z!a4BodKI(N%CfeV(Na+hclqpW)0zF#>a&kl%geuAeY7HHYR9bN1un;m>V*b9RIsK& z4*^4`!{q;XJ5Gc4_JeKkI52{mCxSMDog@|GmQdz1>{-V_+Q6;-GxAavJyvTxx#;a04uB@sfUN?HWT^ zf|@!A9WNaxR3=de9mFd8}z`C1YFCMyRbRtLEZSZ)u15X~qk%VN>{|S3BBygU= zkM<%c&hY9w!$KIw!%7l&0&qhd**crrS-bkmkpRvtxMmaJS>b(7nr7uA(Mbv$G??zj z*<``f#ES$p!>&7&Bgr5~Qc4T$b7)ggjZ$q3(Sr%7z!f2aCPPyIL91N00=%xQG{K%N z4EL{e#FIl8jZEW6Kv$BH&5ejdITDnaP)1ax#3KmCs6fSn*fhjDB?Q+2^q$x;+71Ob z$dRm2=mWsjY8~c5`9T~Rk}||G@R|*X4J&9MPBP5Y^T7okIQD2}JDJ&R9Nwt9#z1k$ zZw8T1YU#l+i{=1MlqLn^Nw7>iEEg`l_Z$SJPe}kUPO?{ce9=PljeXG!vLG+i(Lq?M zX_nFrI!-_pu>qZu#5jDMeH^@4ZSB6*85)n;43)*fG491sD{7#blki)KNuj zcnd<1dAx*)K}GG=&Km8FYLNG2sWl=nNOML_ioI?o7#g6jyjRp~BDgYKi$p-)8OsEC zYuJZVg0xp|Z{8bG!KzTF7~s^cHx)6ao0~jkm7G$>1eNfTmv)ZW$W#uTnWU7IJb@5* zCX&5ZX{zc~wtJiju=G*9$8t8wxR|4njN|no4@w?Z$y?*F=60e%vYiS>d!riUJG5X_NNihy@Xz+INuwl8IceG%HYzIBW1qtyn?Q=I(M_532C zJ<&j-2#{AlRjs60mkk++xI$J7cn~!kQfW+~4Zv@9hHVgbzu4|FkPKix0DFQlk(0z? zO%@!VoUs{fbWFMwfdnn2e|`kgeilW@w%gJZCQ&y&;F1>ZfgOaHf`dn`z|sL+G6yC; z!B&Mi1(rw(nuTbLJQ3o4_65YEaAh44*CkIS=Y`vt2S7I9z*I*tyuuD{c7pZI+6E6a zpguL=ps^u~=l1W66JlMS=v@zt|~X z_|{<{2boyX?iDgbt53?rI=O5VcyU%{5iC|8uG+c+{y-((C`*xsoo#y{*g^i4qR>hR zyXu{mf3bAErv_v(3S)})4s0DBu$mCZR+kQAeLJVXd-Cs)BnIVJ0$E#aVEtHHIC|P2 zqyxhyU_ujCMFKxPD%__)LKQ)yf^3p5+Ccf?OFBsit3t*oq7^6Q-^?6%55DRKZeaNm zSP{yh`D$Fk^h&%%MTt5d>>&Sw=~Y}>+1%5$g=#1VpcPD-$nb6mo+p9#;S&S*TG`04 zIwH6oO1ZG3a`xn3GQhu@6*p;f`xE$=bfcUHfJ}*q;G=ewW|1+sl3T8WRor9u&7{FE z;U*m+lE@VP)v6n|K(wdjUxO*5c=eMryw?B%DJyVFG;U$+NtFUd?sxL?4+J~NzuFXy zMA7iC5QWs)L(p1F1rO-TF@aTQ0BmGnDH2d?*gMn1$c)AP__qnKjatG+bYr3x*tU_s zIJr~sZ`BA);+-F5O>));}>tH)dk{y^ti3Dqd@+t^#fsQFktzuv*XxYa1 z&Assrajj;oBy}r0@RVH3GGhd<7~9~$fr!F^3rDm_1}{K!XW;!W#IPXWyYU9Z zd18l6=L}Y#P|SfkOL!t>l>^K&SfP`~?i(D0Q%|<>2+#pptGOsC6uI%$6e%=(JpiBb znFQ=^3*yGZ;5<-5Rgf;xWGsMl3GDpL4qC`5Vpelqa?|9A-L#YdU5HkJl}B`>*hw-m zC!B~_LODzLg~7i^;T&XG@b-%fYEEn6X79nG1$balvnV|Y5_}g47QGM@egS*lsqA`+ z{*3?~FmAOhBqjhpB{#;c?k2GwgimKjRno>96%)n!ctW|%xVMrq%Mymlyf|nfr`WYv z)uF_&>a+~YJQ1)n1DHU;qivTH@F=Y+hiVv;fyG)BgTR zY2XHK@w=_eRRT6)!e$p)M9MNIvO5g#(%^i`*&80MX&dqH9*204pOxvBk=jBxQg_+; zVB{d{Gv+9{ltl6tM$*oKiSMzViHjs+OJ}oFPUJ}BgB-4l@g!kPa}|)WZk4Hnv4bs0 zJtL@1VILD6ypf911OgjI;>lX$6V*MZgA=i{0T$PVl3IwC-UEvZfW?gkp9bt-3yf~D z?-j#i9L2$}0Y=BNM(s`gorA#+a`$a_lpXFi?DX6X&ML>eY>;4@Mgh=46YH$NrgGHi zm^o*luGnX6!OE;6ZSqB8-OX3i4;_rz(F6Qe;%ryRSgfEFfRgOSC-d9`R>?eucpe~l-JZ7aL! zGh5WBWo!=;+k&5CGW zOK|8Z_|H!BtT10GF%IStlELtN)EbisjBSYQ=0|K%pO&$m$PtZb8o{WJLSQT-2nhmP z8;?u{fK3p`F*cdN*s!aLrbu(*j(GrGWBXv(Q48>)I7ko{6gECI7Q73dJ%QzxOl67P zVGoelcf*c-j7`goU8j3v3VZh)?{MKIq?5@}=dz)RI|rN%>KK;Rm>5_VA!7gS{Uvq@ z>>y)PSv0hpK9(nCY_M!G)m9Pgs-f^SFN0^LK{*8jvdkF9T@E{G#)pF*WNccvT#lgG zeV8IK;{6Dz7>%AWut0*w-Y?2}v`S*6nKEpX(t@q_fjwYe8)iz!1)}LLcv_yuu30f# z1&*=JMp8#;&;e|c2xQHg=*&m}5#GZ2XNTY%WM@vhIh0$#CpJJdXG9teegq+uJGAP3 zN?D8GRpbPOmjDyY9gBC6lQ}QNLqvVC_tcyW8VN7;I*U0LSw&DvjC&fS0{;RuB-mcT zY0=YceH`(SbQY|{$=udO&W$cqIyx99A;NRUfR&XYiRlpG=Lk}RfGw@Sn_}3KG1@~{ zc9LKgg)*@S*qok|K^!LLoz7UfE>f0+P?7q8)dsLs7Y8?4QYwzcJIKkRP&pRy-isBD z^+l{Fo&+a!rWyoSz{GKG@eWpYu+SW<(HzRjLk6@gNA>EP6Tr!ZJ3I&DG)7QGI0uPL zDaFoK2D@ZCSmoel009A}rltpT@+8|?7Op;S0iTwWBNGwa{NPizHev#B0uc$OV}gbC z-T{{@Y?F5^-a$@Qq!{QR{65TP>s*ux77@c4Rr(P85S*9ED-3ZlJo1&Yooez0M0}mx z$Lskg^YzP5FK<3xq?^^#=PN{~J4|aatGy7s(b|wrmL^F54%g0plKcnD@NrttzF!Y9 zdl!q7;vM96ce&B$w%n|JOg!TOguyIaN&|Qej+4MVxW!B`56rwHr`{aFiY=Q9Y+FH= z-F#z&teWC_h3jZ1M;xOA?JBU{a1=IYO#yxMz}6ygm9UtX49?P zgP1EVs}*TdC_qL;;eztD1hdXUv8GeP3^JQ*ePK2X`R>2@=T^ zyRCD9x5zB;caE4LuG<3pFOR}K!2VWIdN%}65um9fBT1nb`;qtwcha~>Z36FzajkVs zF=8>YOpH!aX-A_q>SXu_wgTYicUzLx`0HFy3MOgcqTrDfh*~?AD0SHw7eGT}wh&f1 zvl4TME}7yYhIfh*yPt4$g)|t#>A48!47S z_<_$Mg9Zok;FZ6Ndyw-vy=#+&RuixTi#r!i{um`6l4WdExN&x8JYE`(ZQQdpKT$xAfIEpCV*$u=olJb}S-8 z8FRX7fE;|L!fOX>zfcz%-dr0f7He-NL@gxE7A`{?7&WpN`e4W;FMSb5ILjDCY`~i z!cm=mWyilUw5Gx`H8aH0k=+2Vw?QY!gii%Q6tpoq;8FiGtb=S!m5X6BHzR z=Q!>l%!3?FZ6WLlW=dUfs1n_$0-dzr68$iyBjLtr9k3pE3N&Tnat@S(yRy?Gqv{Q~ zeC}3PpT=~RE@Qe3FQ10<6h3~6WgJ(ZGCYdwvapd#6e zh7}rD4Yt28PhmD+&D`v^T={I7;kOG|jv0OrUeqis+-j9pvzt|lv*+{m`TTNr_hqy7 zxm(XJ=FiU8GoSF$e6yIrgUj`Kx}IHKFF%6!ugGTXG~Mc+P@F6ymTplm^ZcgDd;}gEuZ>xMOVCJX@oPtl>+M?2Ir{bIT>e_1LxFX z7rBfR|J8OZqKB?mi<@Wj%l_T3X`u`Q(6cV2W^{F2M|PX0XkO_Zr83>*6?mNjc(;Zv~;?LF}4x`oCNR2~0S1&eDsDDanZ z=0;hM!UHrw5($r!15pliAE;ze)qlSmEb0U0uG8guV1aHcu72Tad9lSpXcHpgxIVZ- z@NEO;H|~OIIQ{?aFlWW%8+NWZbq-&z=Xnln-SFluOXG*`GR~^Mg$$h?YIzB>UR8T= z_E$KI*^lpxxXn7IhR0y4mNSXrPbMXsuZGJ*dMl3DDigCXU5;XX+N+Y83oDA%u6 zk8YTFvy8ei6k#?UE&B%@o_r5q(QszHrl0vw%TuaXw*7p)yf-MXI)4(Du!2DBnAW)9 z;|n+g!M6-^w{8SqwM-4ays_Hh7+h=kuAam5`C>79mhe?;;F;NVx>~}zFXpQ?E+xL@ zc5+WDrrI)O#Fa+z`+ifQW%kbH%>}**S>?^Q-+$*Tw+~;ho>Z)gZ*0xAc|)5yURKY& z^Wti`x&bP@`Sy?DJ@A(6HrHswi1k4@V!YHLX{M@E9iw5PMV6T3tEDs(wOyNQh6I@* zs%V?lT*Cz`#0Y-LHIIgC0*g6|5EK>QfJZRog%Lav9%%%JRR{@gOkkak*b}&B$VM{6 zcF$BSUhl6{G^pujX#A3E9u3zJD1aBTuY<~i-t~AL6js=A|cQJy|mfHdPHwU-| z>D{lOEVG6CYP=~wD8ZC3)Up4k9cFnO25Fe&AId9^>K^EmE@5d>MTUAks--|XpfaL? zFB-DGY&~;?r7^3R5ljj&GcMulA--wmmR_u{!7E?QF4EdPjc)B``FeS=%P<>LsN(T; zZOqK#a+Ys?_A{7XdinJE@;c5g+&Y{iMEA_iFIVg8C2iKi7k60e2?9o#@JpM`D)@PM zb2P8jbd0g4IKFGMPc|gqawCr(B!+WA2hKyrdSBS?(J+O{d`a090;a>axbbV#xUugb z9GLR9)MtSy@pP!r)A^T7`HRDp$|>OzFe0U?c%=%`*j#iKU!^Eh$BiIf)dgYwPeg z2Kdqq#H%p%vrsgX3tsn7QHpo-8h*dSi*H@7XCJy%6S(@!k4tl?+>XobqYvwItZ@cE zuO5d^iI9X{1e^j6i2-ano`i}P`w=D+v(}#Fb}XMv;*SAs3XD?d*oTZ#_sG;#b(QHa z8RcOa#U=#|!E>lfj!5(z?AFWkA0HqnN_QX5KWi0i#TJ!}-5t zl!s*$?j4obf`WK&vdxn5KqYK$tm&L}48%%KWSdd`5El+6j)WJF+((i!Qmq8R6O5sY}!+ifTxm`^hz=T4yofz3!?0-iR`GlC>&$ z7Qx3QP8;|I*brO8bMP-H$<|QcX;wYIxVTw6zkq%CiTmXGQ~bZD>4n4eZ%j)sZ6wPz zQ>9GIO=EF|GM19Zjk-yySEd7`OG$7S8d;Z41X|t^PT3SuWWN&tTJ90EZXm6 z)R~Da(5vUpRT%~nf44g~bm>&A;w5}uaK#bcTSXQ~6HG2HhkesZv9-lc5HwWxY_I;4v3g0wR)WY~zj{vt`0N z7m>i$ZlV6ue$>Ps6QMa8o&YXpSl>PBn}l~jkQuVs&a)lZ^({GDNQOEk>P({dJVcQb z^NQsRD#|-7f0U9zv&n-ZR;g`Gh{>o2ceG(eF;-XA7K|0TOP>0vW%MB6gS*Q#k1f+t;ZEfo)dH);Y>m4X8(j0BZUL!{12 z5<#vo)?V=^y};`{qV>x~8rayD-YxJ{0dBfE=|cV2|M1Ss8^Ce`;J3GbG`m`YNB43I zJVb{e31cA663eju#1S1CXW0FTg=}LMJJkyN#drt!zz( z?qtc(lVd3eZx~6!TOJv@K}ow9^-l3CIUWDtUbmeNc@+g%b3`q=Tm4=rASsxs4kVrh zmyhOv1q+eYosWuVknSlkr9(K30)w00n&PHsb^CF=C;4hfkdpP_U->|}<{rEgDrJ(^ zIMD4DI6Z3HrA@C)=)^o0La{3!<-Ld1k;7zMJy+EBML=;}=FT-d+;2 z!SgJ&cG%H`Q#nvmn_zjH3ef?WsEdSY)p0`~&ybb-u zzOPpo%@c==IpyWoDb9lf34hQ4dA~Z`-HY8l^Y8s0DvB3pmoWJDr?b^+(fqbb;pTe2etG6@*5_xz zEf&6?41LoN%L|y=YBhp#^BAm2-y<>k8w_nd&^nBo;4>D9 z;#3lwSjsLY&{tFjW;nJT3$mTw^YuL;_ZyrDx^s1_23XV?RnFxnL_@uH+ zylPzM6`1&zGM_9L6ud5Z1nPbx6U!EpyXCNI)Kvt9a%s%{z_y+%VHC?AY%wP@&7MUg zunmRECTnms84amrgMDKJHtyV~&EAh=))-z=E37uF%brmpP1nQRf&FJ6y!FBN>NCBX z0Gp8kcTBJUXq8HzS7gG!yv-IT5}avlAdy4NKn9y#c9t;ZGq^fIOYkq1CB639mwWBA z9fBNSslE2U4$8>p#ls5vg!*ZMUciZURqJmT_@kg?U;Ce5{ba{gOhJX;gt4X2ok}zavWS#=W~{ndna|uL1={~CxVk!N6S*Dz{NoX8B!eRwwBZ- ztuHAtUN~L37mB!Oj1^XD1+K0EeIgvlQ{}bhc<>}$06kilvHsjdOR1trB@9N@h*l-G zV09@g0~&6!7P%vQa1Ip_3ZHk0z_FH1CLyZ;sBOps^lA2qXC0IapiekfU`)MQe@tzFPj|OeZAFW^ zIuts7!)oJSe&_oi%s%+xk85f)gH{x1ey&h&9$GAyAKzT9&SrlOA6_+SfvY;tF)lCP zSZ`D;<^jIm#FyL!rW(HW{=2g`)7i7L*;|+KdO43@xz)SEYZfF)ENJ7cqE=I%xfD?; z12j!cB@a8lSLJ-ASLNI#=OK#cUylT6&YE{mQ9qkt+sUQ#W-?v<@;hb5DruSjC#JKD zEr7Zme=vgDJGmlPvt}gpv_VZ-K@)%gkmfs5uoqhjc0zh5RR^XIFNDe6Z*DKa45h3Etl;RJi}7#5pB(``@=0>`D8V zvp5IcxL#iO9WK2(b@=w-8>C+uf>4tsWmspSjVi+j+a^&G%qeFo3-}-2MX?U6KB*L# zb=C`KE%&DF4Nf*E_VWk@Bi*DXwEOFnWXZcXb{_``v0p3p`T_6RMS>2rkP_Qo3lp>P zIbw-7ZTM+OIHd9f>on-8nXoQHN+s=HAbcD&q$Y|OLQpCaC$sgDDxoojkYW!jo+Fl- z^6j*v$$ls7ew^8;rUPfU#DA>5Y(xv`(gWr~GiXJ<=I2*nE^y90@LkBDKZqQS)pA-Es1kKJm<8{C`yUt5Tz1Jxd@S#}%S2}qWCAL{==|VP2(5uCm{=>p% z1=`W3Xo`}B?ovCn`<2U^#bWEYnuwkj_+TnW#zCF4q!Up9!U#_Tw@NuMm3lSN9}H-s ztHmMO=fCPd#>4-|*B-8Tda~K}$#Q)CcCAWjj(?nP&Yq?8G4NSPm4kRSzq~}(3V+sx zm}3#^{Bn)reMq|;mRWecTn!{HuEW(adaibed!Bl6HedEltNQK?%iWAVaF*(xP{R+- zR{;~Y`rO$1scPFJBcU7I``}Nn)3f<4(N2*N*%GpLUzyOa^|AX@Nlno@5w6tTpkFdD zD}9hWYHnr7$}^V&7I0KVD(o<(q)X0)_KDkAc3TI^kj|Cb6w?w&-PDut?#+>YFw_OX zbLFY9=&8z5S*DT+B7o;Ag7Ox`pgjuApu)R7M%__(v{ral7V2E}qtV(Z=VK(1kiZ>N z) mwnP(880OT7z-0TH{a=lsSze@z<C6S3(@FOC5d;a*X6CITDQNHlR2EcbZFQpA z2kldGHi+GBtskC@AVd3E5nA%wX`NTW3?DfV}%kt1esaR)*3H`1sP)6 z=IdC}cAF?;GNaW$ZwGpFJ5&lfl6JNu5piW5@d0e`ti2N&3*>w5m7~&GDJeA$yx-7k z#{NmKA=U-YWHBY?=>8eVFA9)bD z@ftvlJa#8P_|9#S=jZd)6%gem7+x2vvn~G)etDKc7=B>2cI(u&>3^%szy;g>Gymr= z#7d0Xwy$QXz&Kwo!*b*`)q)N`vV}MJ#M!eOSlrj9=a2PDyMD7k(M~_}TIki~p*2YU zeT-VoGu}91#AyopoocLCVw4sf(-52!Ob4&piREKwYQ2~SH9MF!B~v)*CXN4&~^3RHu-nH6JHR5a&YWK1{jpo)fA!+Zv7H3{!M z5!pp0g^^T&z3Q0~Oa#wb+Llj2HL7M=r$<_aqHe-tt(NzxMe-*>+!w_2?U(FU~I9MgMm<;ZbS|EZ>MV9VaW4 z!XsBVes$w_HB8^_={soe;l4Lcb#(MC6%Uy}nZ#3(Z~p3NMjm6w`!i3bLftUe=~sEm zhB|C{9vo7znp=sSTl`Z-du*4!L8Pd zboNn5V@uPwq7Pg%U^wzW8s4v|T$Q95V9MaG{m>#d-;eFrDtqdDmFR$U( zIQFV@V7k@l%MMlOSE=vJrK~LXa?Xln7A6I9rusBY7wu#!n?O#XXLi4Z>1~!oBpO&q zTpL3ur_v=$GPoInc@cH=jJ4yrV~Mm~FoVtvvt@(1t{Xu_p}70N@v4(ND9TKfgr>km zR#AumwzH*HfGO=IaY2Nm;0$^(oZW5nU9V1k@E{e}d*O-NMM^V^GB}nJHf9g_PJxwu z6Zilwb6F)3Y}^qx8{4B}w8`z(>v!DY?cQS4wFb+KGT;#pgbP0YPys7o#;yHQhD{*r92i5yPZp zwA&1Cho=9crs;R9A@RP>+3P=X*O<}&_1TBm8n?OOic@$pTi&c=)gKUB0frl($K_)E za&~ih;pUfX_&3Gd%dVPP9|#tx2uU$6yvLp?SnXBmlz|P6&qntL=lToM-4f`K0Nn?D z>Y#oty!DlNnyoRn=ePYn%k8rlDbD-V+U;|fZpz5}ISz#xpVZCUzW=mzm;$JJ-9s$? ziI;LRRk7E9-)j2%zcmUj;*_peV-yd## z`w0XCdM}TMgcE52k3E`D^L~W54-;a~*xB7be2B=g(0bWi#=e-$ov;qhGPUUjBRz zx_b>@p{y!?cowU~xsW>FR`03R_WS}M&6iL5bbMG|uCJGiF}=UNwK2^kDw+&U3Eby+ zD|^U%D1L`;sh4;lc6nG#^nv1;`$s8zw)kt)%Vzg@@cqF&&1mVyYn3)N;l}IzdGUrb z88N)!ymH)0?u1K{bCVqwmzO*eVTov8mL9wL(?gu0pd1E=N^uTZXUS=dAw3j@e9%Ej z>5`|>B!X>GlLf*gr&Bh}N9{E?Y@fSPJro*>u3e18;5R?p(iMS+V%3sg|JY9d~?DdK$Sp02vwMsW}`P5yn=h=mIT^a|a27I|#RMAL0>zQ8zy<)mb zmoZ&}%w5ga%h#`OE}JeF%er>lY-gC+cYple>TI?NaK2pL%$~bT7-BhdG2*{-O#60= z*YCV|Ruc*pLi6Koz_ePl&4*X%dX9;?t;@}lXN({Upp?~?=^Ut|68>i_=RAqTBcsvv z7xwPIs8lW7A$4v3uO7)?z3})F-cxey3MXSzhM)Yh-t_wo(K_YW{!M=+(nWMv6FLQc zoUVPsq_xtQFJQ0iX#$+0;@b{U_Q<>L3Wa`!YbZ4(g-gvOh5L&t8B`QnC>5fmjN4$m zFiCKph0iHP@4O3EFxjpIGnSFvU9}-gz)-GAGQBR+!?17NFITR#ayo*xwUmGorj#kq zHHdf?Jd=)u2rAgJNYze5l>Jw3$U-qx7EN5Lf4SpMyW;?LK#IS{YR2wcpa?rfZ*0p} zfg)1hf~HgpyXjWaQ=;hiYN~b$t=w81QA@{!Cte$8A~R7)ZgaMQd!TEeI(X`M+Xow~ z{dr*RA)_tr3K(JQqB0cFj#R50#cHv|r3PopCe9r5$x!Pkkx^;Gfz;m9M2%~=X&Ngf zd2m@FV`$;}5f<#M+A#>LM#SkTS}lW=$ru7`3*ts8B~(l@2OkwtDG;uMUX$hFij<&Ro-!qY<2Ck)?^w+DM!dQCn~ZZOhjoV{k9VHYhmY zg;u7*QqeTkkRz>3|E7lZ?t5pizrAoPuv;s!bdlEQ%UG8~!iKI--+gcP<`4h;?U|yC ze&y@0|FDk9%-%*Bi+`{L@p?VWH8*o z>Wu1jD*mHhr(%9_NEiD5uEz!q=chdYm>v}yJA4PA_jP~h?DRRWQ&Lc;Jyib(?{TDw zgu3qp+HTFC(WyMP;D2ES#*Z@!D{>HZ3#-2+WXB8s_cwB|R8;Cmr`(JWpSF8QV(#Hd ztJNEW3+Jgn)~)wbPyLpaCAzGo>LxoHOoUoSg-gR+zrTJ?}ebC7U@lp3-J|5Z(*c8YC@RF!XyVy3F>Fk9VRp>VD!h<^4b z?s~qwSyj}mQgdH_^F7Q8ditXk5Dw}1WcL1z|KP?ynf;sp?0@=7i>lS1w1&U!LSuan z@Q=>k#0(a@j!cWdQZzbnK#H+_r4L9dy&dfUWAdHQcq71D`vm2Suy|U!k*pKZHVuvQv`S0AVt6SJ7H9+vK!yu>3=z%oa?F6Px z@&V;fhgQ?qy$KY&Ld7+yhRI&Vq&6V#jZy9fRQe{ouQ1)t`yqK}mw1yoC#HqFhZ=y* zi$}#n{ZxJSc+f1SVE%kT16OtAAu_j2~J8Q}p}uuGXK3poGj!W~xMVC0p1F44{(J(Pmo`(FGuQu~NZf@8zX zd*Qy%J=LAxiP^M3r)l6f-N26zpx43sDP!F)rEf=hKnd0XyT_6=(>*bVG;iBmmhJxC zD>z+k4f&u8SRmN6`XZksc>7hlUeAvz+&*=P``k@;M|!{oDT1E7Di>+Ba?jG=hUN8j z3hM`J!FP8akI)bAA=PwJ-<;Hl9uET_=Z{Y)YCN$~#~?|zhxG1dz5Hl-SjyJ$2=^S% znn1zf`MsLFq<#I`ZNcl4q$E^0A5co(;pQn*zMOA|eGEBc%bXYU%U9=x9Cno1%<>V@ z?JAuz3v-NS`?bBjy5}6gt121qRT-#P51sngf;*i(&_O(`-&x;02bIQl#8K6-dG4Xq z*S_<-M{|2S#N)FHchOI0yGl+xl8E~W+GEss#yf{M&rLTh`@Y>*Hr3-Ey_ZHuIHtYz z<|U(p+~1M>p8Bhq&O^%l)`TbV+w|Qzv5VHBMD8CR+{-k-TEDvdkv%+xz2oQCtDa&2 zLx1s5NdVQ*56I28&?nQk?kx0ZSfxKIFbND6^^R2!yMwrY+M6Gdcd|O4KNz#uV?Q9b zx4=&)*!&)~U)!=6p29;?ZN4wf@b>UYPfe=p$om;!tv|UJ7omRtQOhz$_!flzd3+Mw zbzG+tU;W&^bx*3_{kwEjc5XAj`VFxe{vpNC4hilqYhMGDovJdO1}I{`^&C2y9u7&@ z-{KmtUtaZHvU?Tf&#G_F=6$Vsj%)*Rr`Fy9GUFbKtl?*O_S&6h!MDZO?)*Adn{BKQ zNl(qFff{X!^HS+3TUXc8Qizczt&g{Kl%<|0qa*Q_MxQw)JXq&K%);r+t(4p|+a~W= zpN<~#4pw+mvRJ;X>h$udB1W;FR|2cd1S8%Mt$eakQx>xkIVeK3m6WsSH5Vx#PvF7& zaLR6~41TH2!A)CiqZyY!uN1bxzzt3L28*@_7zb5Diq(r_x>_t>;@_XmK0L45-pno>Ja+Ct z{?D+>*6Toz=P6yzuG~7D&l=0)c2Q^`MkZw06?+Ho60f(#`&DkB)1<_x=jQ0nz<|mFEsJF190%#*%iQd(}?K?scIFvwX<=wmX!X z?8~5``nQ;Tm=0?WJ?+gWNUEJU&_iFBzl(VKLaYwz!8`cE`;0b+BhLWtDUKQTKO0Dg z9Ssb=@WHak)6r)D$I-uqeewc43-=eUcyad8Y8&AhnZi*qrPeSbQ)!0jpUnCE^03T@ zvGJ=HZ#SsTcq}2nM)(XI0?y_Oe(|fXNYnG?IuDYB=nR|xxVD?>m4i9<>wujUc_tV*lvj)cb zqB@$sC#Gn>`&H}h)|4kq^1%vQZD;V%Oxxju$sD_pmamp=?^{N926#XQK5X6(&QZlB zn#xwkP<>ogT)FGjp&sqsg_(+|A{q{N)YZP>rJBYg?U_6hW4SY}hvwcAjrz~OCzZKa z-FFtz*w~NH1GyU=nsi~@oifF!Sp2MK*il_`=aNS0k<(vbYfbDvf@2fOGZp#);2x|> z!!2QlC-|V{3+}Mx#F7h(`Lpwrdhb(qbx-3{{hKeNYW%}Khv|Dh>ujP7Kio+`a`JUy=` zd8{|VR1!&Op~J0_y2^iKjEmvqyniQC$ZXasiD+HUI;aq&$ifJdq|PB^Bdmc(QoHH! z+lMaAKyoT94l5@3$tpROacRsi;ObaslAwkeZLHu?Xd-G zTVZviEUpg0)iGKMrhf5OCq&MpH=M9ReZWGLa8>sC(eSU2jJ{LQnc zt3?(cjitm=W;f~Fv-X-0Rkd2?Ru3n{{$0Hy)mXD?+-K?f?DcmqS63;lt32ZLqNYZy z(}IEYmp^m3Sj)>xeC8!==vj83z<&Tx^D2+31@nnB&~iBsX|`U@o~89{d9%K{S;HFQ zGT_(q^@ft1DIF~*PI?=JWFGT+z01)vEuvN`QEQ#>y@{-U+(*~57DW%pV}0$v=ruMr z6sul+N{4Lo<~x>i$IkrC4$BnG%-8<&V+KDya9I6TO|B)Q{`rBspkKFB&Ni1v{;0hf zsHxP4qQlbZG3^DJqEB2Kku+nGQKqbCStV<i98{lvv7qFv(GtgtK0G;}~8LvB?N7ITK!rsPYL&I;2G@SFB`!(#im3k}2}@ zLsJJfh*y#aX>7Kcd2P9l$q^lC6e9D)jkMCWlpmi$(^0i&xhN1(tJ;dUg4$udr)whq z#gE?IkAxfGK6(HxNHQTR;WE>Vdyqu1H~2+gte&L?Z<7isqsuqT@jz@(+USWRIrYOw2v(e0E7S))GxMQyzKjO<$6Q+)pry8rL%as8jP^sz0|*V z2E%p*9wv#Q%>a9qayfzZGIs8C#1Zu=&P?wV$GGQ{^3mC}&W83|sO=8Chs!m`Fl|pf zV#?kcnaX?03aUQl2ACDcd8Rq!wV8cV~)G#U! z)`=Fperv^-!r1>udtsjptn%Il>*3XvPIcBjb|}>GZ2Db$W;HK4cAQqxF~JodcI-y{ z8)*$AIk4cY(KHDW0{7B5FQjsUDwYW2mb4Efzp*d6A=jN*TdHBCC9fP;OSK(|UW_?# z5rgiDDr2M#N@*XB4lHU8zOhrrX3k{@;uwHKo;fE>l>mwgpye2TKMtUk(NL2DcMiy= zxMDd|rm1le5PO~zkHt7YFm{pe?lxgT@Gx#6sEwxCJHrHttjC;WSF-;OwY zK3|{Ds$pM$Yq3~9$Jq5|MpY=H2|!@HuYUMEEv_(_UH#E*NFsS^tg|v3YKfG@cpC}v z@Pm_4hwYxiwKXd+g7TV!?iS$<4MV+D<5x(n+DvdtpRln6^RkC`BOLB`<`E5u}dFTBhVI z$8eG`E%N;3QREpCxZG%6+N!jYN1ST*02GQMh>&w+$_j3*cP4qzMJ8$OsPi%==3obl zlTm0;Vw+EKZrK6<8<*#{s|px!B~eKv#wkLQqLU|eZuEvRh`YL0`Tb99dYt6#3p z$0WN@yp&_7Otqh=(tPA}PSo1#+duf=FEJ(O?DY@N=c_6?2maGa;lUZqetP2;Xw_}w z>WN#ajnp<7>66upSl(4+l8`o!!^3)P&j=OKdAOWyvI^ zcGMP(-esq=moO0!$59EioKi@jFr=VXz(0&;zK8wXK|Z9fgwnF0uav0@MQX!Ggz<6m zCkN%c(gd_71>G&Y2pVJ_^Vw^bz~HutQxlH?KctFaiB(DZ)+Kad0l2(J^x6s+D7QLf zOl8TSqn%;kD+Uegt`mHwZ4B)ap<{_)?lN94=drICYe4}4kCj{t#p)url#RF+UwY@o z`r6HEI@}IhrHsB+&*oOg0vs!?mL}Qc0wxiq%mY|&f`anp#PAHxR_s+bf7+{Vy1-B9 zGBjN^n=yv9Q1eh#8l(RLWmiA^Uf%+ie1=apqqwW9CwE8O{Jvc6sVxR?k{|_I+wd=r zW5j-0EWto6$znMzF>xPuRNe*85>di2Z(yS-DygnOHc|j5{TLdxy;%sEhvG_$YN%kgYXU9P*6mQX6>bsjt6-<+eiml7EBZcdG zCJfX0PY0dAy2dCo5j1hFvZq2gAc2b_Y3G=Au=>u&me7^cppQvfMFcM_u(b68OF3fc z|1UMZHYjv?Dkld|6X&RCV!BF~Fa_$p5GzyRYlNG`h__I%2>vXQQjz zKEJb1N($|N+bFF{2X%cRcZDYcRT($bbC(AkO^x|N6YhC-DgD~?gtL;A=vRY^C{4gMU<3WbUML8@dOBhgEloKDubq!Iy1ZJiZ9W!jGB{j&o|KctEkF{PAgX{&5M ziYGSz&XPZ6VQc`1MrB4c0b!jb(Ha{Vm~2603*)8cN0NWY9#E7Ny)shqz95v1m_k3t zPH4D`|z&=-l0`unPRM<)<$kUP!Ka z{ONO~;h8!UcdZg8@kS!u@cQg|O>AQ=m!fikh1IIDN}g|N{p4*NWA@i?eFw()pc-TL zled02Luod{aVyHN9Jbq7ZGdIMeJ}tlI~W`fXV5=`gU`T zklnraS0SwLVlryG=Yt0!OpHh6RJ1V%3;w%NAj({-+JL|yIWQwJ)%7rheH*4mDDG~U z8e!AygOP3+;~&(u!cCP$_vOTM)lifVh6Xe0mFVHNv3a zqLdhvSJFU&T<9<;ud!7vTwwaMy&z_35=}{f-m%{1AX0RMWQ^34BzQ0&h`?cLK{R_o z9As5%?)rc=*2WVm93CBmHCjfpCYI&|UXS!yzk!j|F1?$1 z(Z;ITiNS&lO(Ej)@&JyWv@$W{g%64m_^-8*YCJk@fqhy6ySxZ)UBy~ntcN)lBU%N{ z)v{`DB$zTC&ONIEepn4MYepHzCc&4ATnlG3=dfleVJI!j=milv2(G3M^Y)jDTe%x@)N(2+|}aeels*yp)(|5MJ}_RS1SS;-ZeqSXjaXK@Re&RkFaV zTGglC8kqJ}C~amThnOAgOPjNCE}-~v1e8m($w>n)GqbjZ@~nVz^>T&1e6N>aW2|2e z^QmE5bUS>itDPvgU>!dFS`F@lYLwag%`i1GgxH4;PdA8G!dWdO>^c=PcV07<9d#^t zuza{pA+^xyeb5bYDrO0kI91y^iKftM>`<7%7CJfD;hY2;cw`24Jut4b%sQDh!;^Qe z!=W&Tc-1g_H=5RlsX=$23}@m=Gnq6gaUWLe0LO#O(c2PRM}@xwOM+dKqUK^Ip}pxDRCx5-qr{u zORWQDXoFd+N~%DzI+sDn?hW`oQJKVYGLolAf|uMo*hy3=Ft7#KFm!sB}@F4t@VOis9MGXL8&A=CmmS}L0qLW}xt7$8B zK861P8@+psU!$s4N*A14GS4la$JXs{owfrJ)ow^|Wp8fXux%z zwnDdHhE@n1n4$_Mm7~gS!Hn7y6{C2zEU9zaTP+3U;IltspT{E{q4O5QR?!=2I9GjbIf|)J zhKbr5Ryy#l zGl^g=@nA*{x^{t{?Eozubp2`tzLe1LVd-_%l+O@HRkg5wZ~M$=xq3D~%hxcY=gaGl zzj%8{RE_h+&%X9s%@n?qR^fVnwXUb}Cm-&R2BWPXRAbHD)zxBC7PNCZv?r-=3Glsn zNSCYX6?ic8^{;*H`Sa(SqawiZwMG5F>TBP7_w9GS|G_&?*%>)ozgU0vwa;$=EW?j} z_&s>TZ{r(Q@QP>i_4$p*tm?0o4yyjROP^cv{0%+hPuN$!*xH3`BI6E8O+jVZ#jgA_ zYHe4s9mu{4><}<{L0MbjoKh(>joC;tdc#wqmV^1oZ9V|tkN_1_-^~ba0c28=ZYbzL zgqmgUW#$I7xU!K45YphJf#8XWfKSRqwiv^mCP>}#s$cNHi}kLlRXx5jO6uAn@V~~? zf-j5W^sOJfKVlSn4wihh29%xy55*ghHiSnoO)}W2;A=#Ot&OLtyjw^^ED6F|6iqEr zw?^--*PfsvxXMli;yu7d+yyhlhXx2$;6ufl(>U7Y!~Ic#=b|Z(Av1;nVzB%1+KUO6Q72(_usE*gJ0fu$ z)e!R;DoYwnvE~Gh77{l0hovQ@%!AtUiWzUT!OKm=;Uz>HKrT8AhIrog0!oH6!dfq{ z=3#{Yk0e+)W$Yi~v8CJ(Ru*!{QG+2d>0Pzfjy!{!@%wm+?}M3>gq6!>o{pU>oE`xjiu5 z5roZc2G|(g?3Mk&!Gf6}1hT>0m~jFn3{2*L>4Ns&YVH!F++Z@THw0FQ zDl!SmK(GKe>aC7SZ76lu#FX&u zDAiXBP^M+WNWA)2Gy_?c`6Xc^cVymIYdrfLMRT11fsp}>*(gLz&P5MG!TR9A;{t6F zfpWARN90pM^-DcOr;3>{thsq9x@P+U=&(FK4T-A6qJnpG5CjgSyB3j1nKWK-!5W~4 zpzD`=h|UzVVA#e0R9&Hd06Z2lER?pvDVnidxdEV=19wso=w8CFU2NdAfjcnEi4mxFBH0i)4ra z@sY6vp^q9|v<&92CwMf*vS=Srd~1KqL#*45O12Fw*+eB(_lm$tkQ=E~kQ!703m$A? zEH+7*)CRDlu63;IOIcY4eVQDYbBfLvK8I@wUa>C)HCdF0lPVa$W=bUqUT_O zj)`(S^WX{G9z5LrwE@w)`Sof2YcG3)`>~CpUo9`T+qaIQV;+lcbP0Uh;QaNso0rcj zz)kw+-_+>mtC^dv&*zu3=hyD)Dm5Js9NrRNRSBKzd`25b!Hg)iiur7P=k1d1Y6DW9r(s-_gjCha|MBpM?WrM{dylkmB z0Nc>s6;u@6LSvd7H_?qr><`XhJjL>8vD{9~Nk?j8Odc$LZb0Eu5ZJknY5v*}IQ;*o z&AXp&jtBagQi3hHS-AFwZAyUo&3e04{c*3v+$S4+K(CwnYWEA#=`y^eme$W`L>w?BK=}HL&5?nepM884ue zyuK7nXjc^f_Fa^3egDG-;XmyngfF*hM!;qy985;7W5&J|8Qd<4b+R;(ig_WN4WfPZ zzbHxD=mwBkW4c-fteeXB(si300^q-`_oUyLAa`1R@YNGSj>Ey-K@Yb2OV4q zH>BI`YqmQ0HkN|wMt^Dvoo+KM9S zXj9?GbV&EcAnCq`qqiyd_92w3-_ju*hII+pD0s!*2uHwkp#kKiWt}eQs3W;Qb3$Me|B?SKex=Y3PE)x z=Xwca-4^9AEXo9`ggPpmQLu3(h^eHN;W~l~z$|5Pr>NaGrxML4Y?L@mHcBWjgotYS z3p{4%=G3rzz*Zt#J!YG5Kkg%3Ns?{e^tI+EKD%1nJeyy>v6?k-W;wa_&2_pxR!CVp zu&g2n*`C1Sk_kPiV8Qi|l!#4@`7ZBD%}jfoL$?2k)f^H5G-z50m!-xE%~7 z4?15ROmsb&=(KoPE?J#@$?;Ol{zTUgOmtl$y6{#DB2>!3fb$pxXEu1@qXc;)Rbna$ z8+2Px|J8m(e_G#S*jy?YqrBjS8*q|0PNn5t%Ik5;&+0kMuG%*n8lwOG35i}Lb!A_; z%GP)qQ-+V?o%zgLc`q_yV!LqQ4Pa)mwh_!)r>XGRb&Y5cLL~C`_3Q8KxgMLVPs0nr zNYQX(%{3C>jm|=RZNfrq?m@K{;9ow(0yOiujddD~Wx~FPjllkY^4@eylIuthJadjT zGitG0qFQS8&II=bRlNJsnj;AWK&m042>~2Y|N7h&NFuAUl$k}acrgFx0p&_w?%?9#NSfOCk<|s$9a|?Ar2~U0YO+Rw!p<3X5BozIBt8)@7ea4mhF+HN|N=ID;Vqq%uUXo8*P}>F>@eo$eSEbdf1AxZ(ctC z@cP%+M_4TnB|{TdtKQ60X8k_OezMH!?mhmF#t3})iw}M=<}F*|?cL4gz}M+7@0*dy z79$pLB^s5rx3now!A?t>+?_SIOjUgO3>e+u&>D=ELNv{R>T6I{=|H%&H);S$5jnMAQ=HhtVZ zc(i$W%&8x*bL!^)?;aXVZB9kUlqm#9RGWR^MHHo#rrJEOv(O0MMvVI4H5s)kSU}TF zjtzpv=7RNAbF4DDIiO|lrLZ7HDDccNM44GB#UVapB8W8h$$lfpXsX^3ky3{5du9%I zKbpIK8j5%GJKt|DGw35caLkkXK+$W@HCi!wK{U}*Qg{*K<<;dF-c)$l91X18tB!d6yzc8Ht+R!ndi zAxt8#TAio}7Gq-i0eHG{*G2RC8uhn(o?3)%ZxBbxUMp#XC-!9=Nm!70^JY82-n%#P#R6J16% zZ=|>!N~ql#96z4tdQ^_L(_At~R;VHlHd+B_@sd+YIXM9n8lw-!I}>J8XSZ_P{`Seu z_4VDxFdygMl=ES%f^+lx8F`HB_JUrZ73$wTq=gwCHZw5Yl(*3f97@fNwuq#vbczGQ z8T_B_(gjW8sL3!F3{@?jE9%?Ri&o6m`4H2Y?=Qu?^{0#a@$BNGih47-$bn3p4weNj zxX8Jd%7ipIFo$Sg*Z_!9gw^MAe0x&G8P;e#2gir~%?&X>%JJhll}F`xGo>Pec2YQ| zGlMXvY@>1xHq^kpbp3${Q%d0BT#oDQ9Cyt~nDt@Hc^ucjUykc0$9<)F($WZFGGL46 zveZ6H>q0W{t}a9P;<+4Gn>p?|Z*trYL#muUo#X2F%W>7@xKx(c0&5ar$tCA5Sy@1y z$Rt)p=Avz#K=Z9-G?&jmx(cbhSAJ8ju3u0N;26(Ut6xB~zUfc`zs?#{R@~>`KY#Lq zo_{fVff29&m;d-cG0^4iIeGM)aTN6Q;vXm#(kDk~qeaiAi}dp520wfC>Vg{IZ!fN& z=Ag1l&zN?JD{%ZePBjKKmg!qnM0jVcfb?Z?2!g z=VyFcy1Tx4)k)0tOZw0k-7j2rqglKB;QlfF#~ps@uy-VI$9%3a(#)q&b*wR`YQ0We z*u=ADH5NOrnB1BJo08U5ah4-RGJ+k-L?=?zm)i-yhrS0X`ss=kP2S)l^{?=~ix=hQ zmIl^d-VTy;P~v9~r^NfG{0=8~*?g6~B4^e&n+lA z8&6?U>GRV|DtP?uv#XCwC-(G0$Bu;a*;<_bNCsT2=GR|8TRxI^Cxu6q-ltQR|Mua} zp(BTv8lTC3Slc&4S>+8~aLeeT*2y5~rp1k_(3~(^=*A0-hhmKQ z{_aM;hnIKP@9i@z$9U`yFnBEXTnsVx+<30sDZDdz^q7sLF>p}s3FJ*#jJvIM( zfVGQVYr~nGSV>=l6Z^55-<)uwpZQM#cMw;6!v{X7Erqijw zNXv2T+?vfiVMPF*?Qgk`*bb#+Ba~3PRzvINw&O?lZO1$R@XN!6Tr+g|@D%>g$K8cn zfX*TPb93*L52(UeA41AZhNQBxISFl}rkUj-=+A#9* z?imAX{&V}g7vCQS+4Zb=`{LctO8Wfv?$uS3Rc~LEyYz$o{f%QP(O6<3b5yiEg$k!E z4^}yvzMKoonYnS%Y-{*e&y?M*ZwGjn8RO)>8}&!suk3$gkhH!=5O#xkGXqlpdWy3@ z>V9?LQ1g3xyQDa$9U_wI^CIZ23J}ToViC)vU_uO17`4qKwn$wAN=~ZARBfeQr&L}s zKOb&1vb9RN!l>Ni2vExXLv;cw23Z z3>9{6thoPvk?<~4{KV3xr6G#wZ8){b3sBh3#zm@HRgfxb%;|DiNNcZ_A3W2473tm%0zUdbP{hjT?TcQ)_qK zcUx}ofc;Z$?>%PUH4|fm0#zz21#Zp)VFS;Wd#* zXmGdA_ZxN_dk5YSE*GzTwwVD6Nuw)5wis=arZNV>7LFNe$xQm8xV&Pvz-8ZvWThRZ zUU})~t@dvSn-Tl@5+dw!fOD5oX&=FKUSgI$85%*ug5&lCQ(-zbmvD1+*%iefGZjLz zMiC-pxOab6&S$}GXRhg}9$se0+z(!txpY6;Gx$*X8jRBt@|ktYo?;DdqLC0{m!;sf zGF3|oCy47RAJ>e6z&}l+&<}SMVm{ON509Zd8zG_c)GP$2Ri)J|N2j9&D$Q93;B=jg zdMJjj>A#Tb{?5h`Lxty!{mFlL90e)?7I3s>AQ>j0^jZMfQcp@(>K}qhv~Fb+96D?r zJT}%sO746E4r$XPdAYwkKER>B?8$xqu-fqcWQ)I^{X}E9g;7bzqOy{bA!yD<=PZ+Q zRxw#b$TcIpW>uU@aUZNNQ>?gZM0d2!qo;V^#ebmqFB%m0S%!h&ziJZv-Xv|np(DJA zMB51f;&rmgy6SU|z*}5Y;Sn`yKhAb9Pc0eIyEe~5(#pCPv3*L4%f{4_KWh+s80qon zO-e^oJs7RE<}%Qg9s+mT`AiEuHP@UXce?fSvQBc^tqH96$y_E82%ss!{Uk!}^*mbt zm-mSnh?{+VU%eiv2Q@NAt?U}^gw`Ad1%J}*ix)NV$UPfhoGl02Fk~vDHP2|IXv|DfyXlzpGBZQ|n)Fh$G2&Z11|g^r!37y;F}Y+h6)3E7xzrNU+4QbC zF2Wy8di(lrnmF;$^wKajUzoGri{vUTwk%A<5~CnIL>IGOg;cl6ai7-xqVt8za%`2@ z1>B?Qh43()emaE!g3pI*4lZQK<$|D#cMiUE>So$Mv%i=%h_6}TPNotJbFjVu(Sk#) zwT9!VAt#em-gd+dlGjAqs`h>3u-^cuFuz)QFv@kc#S3rn7S^O#eX>k+xBV)Be6Ev% z1FGR{%GZS3s{O>#iS_EoziDt9{b6mjpPa4X>>(T%fjzCZ{2F_7F-<0qd zF)Br%uXeAn8%{O(<#z#EpWiL~#=hajW#K|psRC_*GtxyVSm8nYRD7)fD#g_>&aN*P zg{<+a!}%+$GOcld%F3Zqm(4GL)QPO>!1utZA8g@N_X~SV5{m<%iixfuf{;}?UInbB z$q=xJH?)+o90R!JJL)N;Qup{}-oQPzN;)hXChnPeYxvtodDC4y_fH;p@>ZKCqaWPc z7RHm3u>#Bn%PnxEFC_alu8YFr+Cwz35&!l zHd&;samjZB6bHl4z4*?A`8Oga$&mQcAf5vCu)TY+=&Z|hQI@B?0&OjjcE zY&uu4fnt7NuRf)-Q(zdAM#0UQbTSKsmxQ4Ud7Dd+I&fxilnUIgSxWqYc1w@wY%Nvp z=}gx*rJF+b>y?qc3W4r^TK9-Lwp;P4s5fRNum7qi0-m*Wv&Q=G5P5(0%YA9W_`9R# zCL?r?a6WL{6`u_R?-7B+9@+$%mA24C;!T#gLE)Ofa%~$kdlVZK)7g10^K3eupbeWj z8&fz;_WV^)blknnlS%wjrG+eB7{m^w|w3rF- zw?-8Gk{)>R!B6nOi`@gM#BE@}U-aLZj9ut|V2|Hj;5K#yGz zE+dv5tL=Y!Egq~%xn!*gC}4)^ukjkAoF9}KQPVAEky^P}5=%xzS)_L)B&>#Hd~rTa z26?_7GuBi=GS#|mbGvnE-pqCWLAe2C^bT~FB$*D`B79d$@G5;NDyJmyH5VsSOj>jK zk8#5;D~GhQ0mh{pwhbG#T{)OwgZYwuG&V^O=u&sVSuw!VLXe_{baCRgE|7YnAuT-8DkJ(hjtS&mC91xul zNyUC?;6t!uRY9z6)C=v|p=Beh_u%{pA`^y1)K24KB>ZJ6uv3Lf%5$cTk<|vRwsnIp z^Fu%7-L0KjRu*MgQ(5}#pOI#+EKe4=fv15VbRB2reEHroUnak|FTD>Cl0+9zkdI=D zq@4;DrjFJM}HWQfYMDT-xRTuoq1 z_G9C+d|iCt$+CVJZd=9OPWLe@0PfOt@qzGtAlGqWx3Q%A{s^f`8)1)Z^@?iMxkwV> zst6rLp?a2*wg_a$K@49f?XaL|g}%|gtTBCdXhLZu2>;E9zIXSJ7>NAlj;zDC?ll_k zbAyQ1OxDH=X=$}KJOeNnf^x&N&$CR?9rE-DU*JsL_@w1+{?j~7ZF`_h6es299kt>PrPO6TQ`7EUnm1d9yM_&y# zfm1>;@5>l8EN|+#&z0SNm}SjzYQJN3!j8Tv7V(4A^RC#x9kXM7dA8qVIO2%xm_pbBHg2Bz|C=dC z`fWb<8S>*J47s-h=rC2jCglt5mG#C#laj60R74=LaBn<^trb=3u@_n%5xUNgH8t`; z`%T6S9d+8;IR<}J#(3_nQ&k1wq6a3g3IVQDDR2{ogt$bQ7?s2WFlJ4MJo6150%Q7g zs-lHSUoB%oR6fWcyrr7dBESl5vsK=vDr}UrRyRm9My<6feS0FOI)u5ZJQ6=rHpUl4%hj{X8fp=IEFuWY48+wLW@7Q`giF^6 zKh{dhX#HlRE*QXQD3b+@od-I9HRS^h>blQ}Cr22O#)G^LcGQ^2Aq7+zZDKW<+EkrO zhka$t*RPv;y<3niB(O}suBCiVK*mY9p5N6d^DD5S|}@3ahBRQV)Pl{-LRme zkwHOla-!+n=CxU}sx8_yp-9gX)h#Ue>R4iQFc!g|GpYtA1NTJ-!KinKCf%?sJ+N8a zRyuc&B{$`ErDt7p%bQL`yMCb_?Xy{PDj(CwpJp}sUujqk1a?ZPER!%s>g1`@MVA_B zH=a--<3F`bDlIo#(J>d+RE3aniyeJ>SkeUURU`U-UWQxk4mStGEc&jwmJ`+0o#Nc^zOWfOdLQb9CSC^3X!gb9XbTS{9w zU>NsjA+PJ3wO$hqx86zzd(|rmry7SfCHVz?{Apb1e`U^v0_u|vGC2v;S%WnyCQD5z zoE67|^}3|O&ytEU7uJ+SxaJ+M@0W1W?1_1P=#kiAwD!TeY+0aov2MOBz-XbGZDwIr ztAy$B?seI*rX&Kyx0GZ^nKK79{i^s;E%d|7#H6)==sLszKx`DuXrPHtMyLcXZ7W>7 z$B(PaNIT+|)dcRdX*^Xg7o15xQg25K22e7%)XzrK07;*}IPO|K+}1t^xy>%RYD#GDU4emS=~KU(8Q_Ztl(oCTsi z0&GD`3j1@aK`0wja-8P46wQO2$jb5@hGiD4X%rm4X!2rMO9GQO6O>2cg%XJBaZ*947br=kQ`xX+#^+_q^~%$a%E)D7+952SB!BsgyotUX7;G zA!kITZabp_<3fwEYHUVqzrKDRmalnfVQN!1`t4~(z&oxYwhw;s{GCrubIJX$G;;2$ zR7=%BfeVHpF3@gAts)iPXP61#dcl=CD_1t=!kT)}ex4>fx}tk+S)(lVk=T)?t_X6i za^zWjU@2Hud12IP0n3#FOeiAW*Ja0=hG^dEzJ!Jh09Ln3^B+q*D%3$_m<*SN;x*Dv z#HvI|aJfYZW2ydbGWTG4&clo!%Nk;MtDRi>e$InnT+VMb|9r%PUthm9W55sB7(lH`3gm(q!lU?`Z0PE)@nl>ubu0OH53sLNAHm&jjJ4a3{9UEhy_09ecuL65)( zoozDClc^Lm>NnbKVIdQ9mh%F`p`uUDnAhUNnogL*VD|lOsN?sfInwvz(a8Vd4ab7hS(nctC#e zSOk!Rax{9vW}OpVe0d7jbhOEJcauDwmG>C)V@*Y@Y~NoG6Db_^*nVaFkgPBw8vz>L z4EPd`q6)=oGLd`fXrjHJY)jj&CsZ)GtS9a;1bf1UzT28g$;8}sOxV!XIiALb?pGQW zQwcGmsfPA^3Q;6fMPw&z_BNXA1->U(m~=vI7mE=a*3<;&-n^t93WR9X-n_@-k@%5i zQI!cewJd=rJVFoJaaCmEO3UJMLik?1e_ej8sfkm*Eg!01%&U}K&ksHzKUntg??vXM znWAwvfKm!alA#|W6z6KD?&Y!B*jzjIDQ#`3m$#oStBN4YqHv;)# z&@BG2S{?NmtjUZ}ma5)XgHT;_Dv5%S&|W@W5XT8&L$(jWnl%NY>XwEA0SoN5FgN_n zBl8A!wN#gqtOnLZL{*h7iDp_9$865RrOH$pE7Io5u}{m*_4CVT%fX6a+P8ug*O$I% zsl~kX0B%5$zhzto^t0g!r`l$KX?7w&kNJ=dD{?+xTv?=`Ui+7&iUC_(i zzI{Qf8FqgjPvlRPfEiWySMIH5Aw@)7)HvsOrgw@^o-o-zas;v7<3K+erX>#CHq&2@ zxnTu6pWo^~9wUSbUX~~jKUFKJ>I46WkMY7;y08R(2Yj{Lrr5U_v1T#2HI1oyU`1b* zY^0iB=szASvWG@w0SsSZHiV)@A=V=171h~H$HQSQ zX#P_GLNg;V?uh!Zd%%bd-`QKpyX%V=;pVpdINg+R2V5`Se}DM-LmZpoJCzBD=Yw&< zX~#;5z@gr0yo#|bQ^UGBO#&uVFWUv-Z4;jN<6pJ)jS=(@Nqb5jF3~GiXnJ|5DYzP= zKn!ma7cqI79HqxM14n|B8SQJPK!DWd(GT~Bj`nRoBKbk)AcRJcDj7FfAx0}qCj~o@ zC^AuqMGBw9?x&K!rv8$NR@goqzSG7u!uAIwKU3q7^0}C3O<*;cBxtA>BA;A2qpE+J zl{C(DisR&eT7WuMnlOyww&@F1?*QP4=OYLHY=Vrs2h8l=K=$zbaCPVnDym8d$(?4jJ3-VWvqG>q_5uIyR6eY!ffB4$wc>{2E@Amx z3m%mrnlojf_u5PDg*FAQFvq0v%QQ@&!XeQ1?DRSeSyK!sVAC!rzndr5Xu5b*j@V!; z101kLE0f7sT3NiLC_Pze19TQqsTgxa9p}jYQOnArWi!?3WDgOv)qMSy?A6_U`({kJGTus@1b4jG^1O!tsv;R)UpO9)I!hjG7~Okfl;p*JCz?iYFuiEBeoU=MIHloFXH6x*= zYjqX4zO;=)2pfB@9-0ePkeTMj0W(NfYBDatjVB)Q$C@gKCy7$L9v9XugI2uhG6zwR zlIwYC$pdpi)?694x!Z8hc>**}!mDCc%oz--h6<75*j@baC>NG3fHBQwch(OZ0<4(lR;F6xSq2 z4x{?!i@zca)4|QL}z~l<2N%r(6&hgf~qpqr$66B3}N9Pbot2m=pHc+iaOd?iVMdp1Di*WJ9=q(PscshLE7nfI87qRrqawgB~SF7$f-FEvzM;7tv zA&CO~lj-&urqE}aQInH$nO0InZK=vjBC;6!h5!7zN4O@qIIY&6RX@yN=8cJW|5Klz z6_r(|G#FHUpa%Uy$zfj*5NpMOQ0HACs`KKL9w^NTrjCCTU^!Se{#Wod0WTA+&ET zLh=1{J1y0`hW8C;zP3I&RjCcLYJiwxXz^<-ibb4;(26Iciy9XkEEl{TnE&kM)!ij1 zJETXJLs5$;{aElajD}aN>pPi>|9@C;;gk>QOaa*O$=&sf7xb48UtV3_5zF_flwFMX zvu$V5rCBb1d_jqpiyfJxJjLtD#VSXml{&Sw5IGD5IEcRMaUg`&D8_ z7(2W0`4>H3sKx`){^vW(@u&MQbTF^`p}iGAu%BzP!Z51c*CqnL>DpDpP%&=7^I#Ol zDc|MAJ7E(xP|P&f3Q0M1=j%B*ID;~HUjZ-YA`9JsTh1w#D>BexaaLo_D%mhOsx6eQ zTuXp5*J$BVx^INGlr((^$^fGao@lwEy?@l3R7J?DTX9FrgresPR)ccE|8#}2@Df7* z{BDr=Cts{AOR`$*>s}}8<@;+VWzBBx$YC?+FvtC!!&9J5zk286F5u|$Q5|Kso$4Rv zRB0n!3>j)wZ0#1PM60rjv@3!Mn#LQGHg!Z>Yhu?TZEJ!F-D=GrxBUgYV2%0X=Mfnz z*MciSi(PZ^u|fx_{Wd@*1>Byi%zNwXxkRqX=;$VSvWC6CR2O7-9*D|-P%r6H7!M-E z1h64=E?pc_sx-!_P)(}iaPa#bl~*vt<>t#zZ!UlLyQ`9)+@^39{!u*T;!E{ZJ>_!& zH5LKq{aOJKN4Jh zoBh5?9`Go~l%@VqTIf4 zRe=I-C7CrPS-bnC9w5~22BATc)x6Z>Vd&JEX~S8F z00Y`aQ3Cfk-%9a3{E8~c)}(_w^<>$)B%4`vcu%l-Y)O_u2D;sLg(|N(ZHwm!ftU;? zXAZ%JGHI^u>GZBjve_@2{?`0}Ns?8g)%#&6&NhY;X@?`#^eLJ-44?A01pMnH=O6k|Rap67)%$=j;RC ziw7QEOd(5|Pp5ZHkokNdd{3|5338*J>|qFo3I*U}n(e?PK$VJ7i=dpQg=dQT_^Q=< zGEMS`AhTtQ4EUm(3d?(oEM=qU`eEpd+83H@uSGJ#r$UPmViC2_&0eI8BVmt8>Fkk% zWg9FqxBh-}Z%1$+?L4L+`&00Nf^l40 z10xoIna5GkH^u~q-`rmHu>gO{o^suiUs$>ZdEN}eo`mF$9SZ-1K6xPOU%zwlU(3y_ zi%+`l-;1ALfBI?JucnR?$UsM6A!lik2n#hiDlLhX!aWDZm}Q;=x& zYE%?wz#IiFg@FA-$Xo(9G}r{1lc6rh4ufwJD?J+vHzwuv#LB=afsT-riq=`Bn8_T+ zkONcH&yunN1YQPRGfGy)O6x}Su%iS>#M-$j+e`}lZBd%GGX`NjbDC)fV8Lv~H=sE> zav^;(pg*Pl|c~v2xl=EvvJ1Ye8w8>a$XnhR7j|!(jv-WR6D_gl!TluiMtDFYrL* zVCPkun@OQ6RO+*#8OyZm)X2b{N`-SNe6{#rt-efdp#S#y)ziD{7nkYf?U%PN!t-ua zQ;z9N_SD{&D)MhofO*g*nCgp6IfI#;PqY8p_>%`hzWu>_KY91!y_?J54Esxec706+ zpYL8>zswh(^uMr|HkN?cawtAJMWe_aoH-3}1B^3>!)n%9Mm7#Gzqdx%lCX6Yf|{AI z;cLEM;vjrO@n4%j;S#hS!j_^?+KQCDuH2cDva}ZO7p1@&# zIH1S;#`Co)RE36qSB417hXk(*{D}z1N>kvLDiFC%HJZsK{PS}6^y;$SeNp0<^k1s{ z{QUB+#|H8#pNAQe#`Sx)vlfR`t&prw=qcv4=W`kT=Rd~-sGbuK80h4fj#1~BwJsWgLoi87nkp;9#1XxHl#pdvBZ^!DP=KQTVokzF%uU+~1TpQ4uBFnT z^js|%2(_oNp8(nRJINO1XD6v1>M-ZoGj88gimha;-R`ckQN$0ZdtPiiue@4GXKsNm=r zY|~sgH_xs?Z~E2`E`hA(v!uS(k@Cy_0RuIEIsA3Egr#Aw1z>@bRQH*p@i5o`_X?&D z-ZgXA&Hn{P9GO!{h7(dwK8$G?lIncS;$+|iT?%L0cj zqc3LSCc>n7l2XuUvcaEmJr~YD?Wp^tf6m3n-E(&J%Z+dCPp`&E^H&QEI5u=aAx$tf zW?$hDVo8~njHbyto)f5BlTjyaBO@c(aPLCV_I%Rfc~nC4d`3uxps})yqoW0YHs@eN zEX4+Bdom`(GpSq?RVQbQ0QcmF z#>#p3PM;!}P&5A0p%@u}Qi5;r0iN*~L{))RN~Ac!Yo%%>E+>=P8eqtR~2D_gC`t zKTql_(^L1A#*EzJ@AbO?z6alX@G zBNaX(@DEHW0gd54*i37W5?vfb1cVhKsMD^fji<7~+zEpxw9H+<8Sb@Ytaw{2=ir#G zl&6U@0<+~11603OUNg;I30q}sgINPLs+q|ZJr)+!jZ;EMwoE(evWw`tEw&jL}@XMjQ=28C(!TvH894A9Zj15qGqAkE8xaEJSXAMG zW^zWT7-(qUw&U1fx$vrHUSmqMnAemn83dCq(#|;=$Xx>B+M%D@P!>pG2; zRmqaGN!&dtwl~6%?Kv9TL`w}$7GpEqqcJ%mD&T<6f~9CBe0;9Hc>n_YG5Olzf>W^w%cSAhLqsU0KnX46DFSCh*U(O- z7{~F>JoV5ZWJSV&f*Z9^MA5Jyz_IzMY$pi8xD2pTNqd1fE-J|Y#9Z)|kP6QN_$-U{ z1ZIPv6**H>$JxyAbr8%#rseBUgoh+qMU`5sAn+%brN}H7se`JZCj%c(E(KR*ZP|_~ z$7L%PrKwQ;eiz?p)89-8H9;6{sO2u#TA@J|L3L!Y1_)u6UKf+A)mx8dgEa$1c3#eT zpy>5vjRnu48_aN~Qr5tffRjby-_jF}GDw;%EKen9P1YQ5nFGnqu-}XBLC>eCXjLqb zOfIx!NGi!~V#>f^R$Em;9GiqwYMf}D+vtI!O|d0_y`A@PP;zG|jD)dX%G3?--inx~ z-`Xd45Wu(!pv+{KAAsSeOgT^{PKy`ABXM|gKR8beEK|24hcxG+mHrqKlF*Ar!TXt1 z>LOE43_cc6+EeqBjh+g^6rfuU$#WBgX6u={Whz&Mvjak{SagUJzys0P0DUH%USw(? z^TF@}kd#$Iu$x4t1drgnXqxpbOg>Rom(3$VpH=`NhRq(@v4(j(m%6Hybi!IE86oZ% zDQRD&&G2K4s{W*;{PKyXxWQ&>fZ2BJ${t)+W3~y70Ak5CY_Tpj1$Z_uSP_~oK1}sF zC37Z~tFkH^b<9L%Upau;$mJ%Rr>?GJGYSx6(%0@FXk=6SN>)iaR<0Pt*b0v2*ps<#(9z_W{ znUDsQ?@FjlPMrBRs@8dk^=LauDI1+dQH9ZD!B`xp20^WBkRem6W39}|$xP)nXw2T1L((R=Slb+nQ!`WcsK$34+ZqbiOcx`dZH2fV$ zlMSmGoBI*fIxr}Bftsb&h;CZIYq1D=0y9DhAb2H-p*tH?If|RybkcwF;F5= z8dHH78JsH~Ozk(o?#fJZ{_|qfU*BFI!E@I5mYJravi|bbQ$n^~Yx=?MekSGDKKSGp z|1i^-M0;bIO-0%2gboteC*eyx(vW4KRc;YGu2*H=Ct*d(K+9}PYDY`I_e;^xtA(1( zW27)8f*?|$`=J^cimn+x21tPk(5R`aP%?WGDJ$XyQhXD+$pN_un3}mY+eS=AdgiU@9?#4qP1+tpm6P~-<}58Fc5jBXgQ8o*DlrMIhT&*Y7!6C z)xw3O$&nTACrvIXm(OE^0kanIQwyW@*Wj-sS}HP^WCgg@3>eHR+L%Oyi0Of^~byb}=Vb)BNYzW~tYt)mjK&fy41O zIG+WJ-OM}NZIPe?=jdpAkvogl6&VGss$n`nYo9$~G${7Lsf8y5lCN}$E0_(eTH!+M zR%!*81Isk>G)`*nk4x{eeRQx}O-1YnWg(tsdOp_TwZ%75Ly;?7^WYc_50?_|OlW{W zu3>&+fcge@(vfbkprBUCx%h(GVLw>IfW9uR8Hy#F#=cJ;IFfe3e6%;E0qE2}Hsnyjfx5dJWG8U>t0QovaW_$#sKW0|%xH>oYZ zJ<>Dc@Q7x*te?v0AlP%s{o@0D@BemR-i<%fl-%p*w=|c$RD~;uA8Qb9motsZMJD0vlDfb+NauCgGjJG~nZ&}bX zB8twrQ2qL3*4H-r)+E#!+idz7hV*&k788SKP-tu}R?8x-qx6) z)KA7EtV`yKQFTtYYS#IF7@uBB5uQ$0E=(xxQ|3i;Pgg{YL+_|$j(XA!uz?eWZI{d~ zcGMk)c}?x8d~nH>)he3)UTZR%BlgKwBne+3B?I1pH`aw_OPx&Ls$}{Fuh`SaSZf{5 zxfEKMj|5-fePUYVtaZvMc~P=JyqbW2w2Qz%BMRS|QFx@r#xTvB^;?Yf?IM7Ud@hv# zTSwA+yZiLrUk_Fzdclk6Iyv!{T&ZH2$q8|4QB=moGSJJ|YW(oXn=eZpkzkswAbmlg zVBF3R

T?||+zaJ+PUmmQCn-*udg6SY)p@rO{v%D_FBP-V<9b7ANXnuTUw%N=pvgv%$- zem4R2t~TcV{w+JS`xwqks>dGC?%(l_10IZ_k$3RQcnZ)Kh2|4K9V26n{GR&k>WOrwg%j)Q=2 zPC*PZX1xj{Co%17J~$J6!mIfD-j@$(e($Hh`gGC#VzGH1HVaT6X`I}a%JtR7#p-fH ziPmx{}TOFln;=Ny)2xqQWNz8ET0u^tne7Z}Ner^Wy?0SLQE49%V zU#ko*MAVYoplRAqiXOB{L}G=8xG^CkXoyX1*A1~bLSU?E8~hN*$f3QQ1ednfXJj>g z(Ho#`Wch#p{BrejN!DUyY+xzE#l`6|^<1>x+MAcl0O{F^6inG_z1)yBdA~e)_GIx3 zvM1kpviQ+plJ>-GXP}1RQP(S?GtNOgOWrXnsG>0%Fs2F&AXo)+Qm0)=CVp@RT2tq= zH*4#EI}GX6)?3z0@+2fhUs!{v?{!~Tb1i)DB92lAEoy}BR+M@oM3y@Gz!6j_QHs$d zS<%NvtDP>vvEg;Tyjtdy^~L4#{Mkudtu`lXIFFkG)_cOA$Oc(UGsD|q>zXs&wt0&WII^DfkLeRzia&T>PA?X(R#%HPxjoDJYIq&M)#WqN`=c+| zq2ombJRZD|tCLBYjGrLD!Z5Hxbde)?a(mrU>|M|~X!i*wH8ILz2NTy;v^Oqa5=>F# znpNc1(ySvHjD}+X=ZIPFAg3J85{r6ovf`a!I;inFnA)Ms9Zaf^YNTlM7QZBzs3o)o zJlZNm)IJ2rnh3R4p>6eyhTcUd_G${g(ZDn#S9aI>`}){|=A8Ct#LB{Ww^Lxg(tYbd z_cx!OFMj&*_dn`pEBDN~3lsYIV@C|a8BK}jOk-zRl(n!(jjpwI(U_o$fQPF0T>oz! zB4$<$oM@^`I;zx=PRS*2oxuB26=9`8QKp>&4!GG;X{g?lWzI&kWhd()k zp`_n*(P%f)`I7*l8zgdA&$_dHm#fq6U7e{UV;9bsXB`N;ET2XVcbE+={^r^8$>C5sLsr^s_f09}_*q-aHo4b0xh~x;nwN&n)?v6Z28P z-lwQtq0XLry#|iMVus}@@KkEe+FJuv z&5AEoj*VB>U@pX~c(q>D&FdGJ%Zm--t@UqCmz&bL{wMu>_E*4#J>jjKKmnNDAja!F z00(2%XPa@&C#pFA^1t?vT732|pWso8U*b`VPx?m<=*+!k7shADMS-?@ALf4|O^%kp& z!Rv}B%p}D3S=;as(ho}kkv`FZ6{K6v|knoR$XpRc2fdo7~T1{mdsI$gyFtwqCvqow$%J$c+ldb?Slq- z|91P1ki!Lj-JO8$-hH}HII}7%%QLI8Rte^VHBY7jjO48r+!y5yY{7`|@7~5xBTqVWZcp!z}L@ zS8a)!Q$r(ltH{r5cz#FD)ARGyaM=Iz?Xzx3yBfV`x1Nsv?U(#~oA3p%@P--C^6cRn*q#=A`?Nw*7p@-}|0z|Q0hDuFE1=yvMc{DsAR)|(d?!1!4yYbdPnWmBg zF+dCV^5j)GJDnldvSuz_XA=9SncTIW-+$ba_1~U;`bih^E&4}o$^PZ@WtR?$k1Wm+ z(=9fu-K|FVnf~q9hY<)jsSONv7iJ((8{kmj{BculiBeLVMg{fQoY@>n_N*?jx;gjn z_`WYM=M!`J9-aOIAs0-$%w^;zN=|`2tU~}Zod1w=D4J^mCqsPlb*StPe#Rrn9VwiUNWqC30rgLt~5k(myK$W}=e@ z(Z6+*bZaLb9e{)fN~#KounUObIW&L^fyD~*7&B}~wqT91oAj+|0J523b}3lV%w zb$lHB!L20DGPYBbX92#yBT^EOw^sp=LaQiFiRfAO+PRVpWo>cqVoF@|Y;1Bga?kKP z(K^e-&Q0!XpTniG3e|G)Bhkt$yc=rXn~W?rt5R6dDs=~s+C+pvx?{oH5ZX>2_UfKmKjGp3#r1hc_mmq)7;KJiI?336?BXhah$kl+oDw9> zql6Okr7FpzD^VGl?GdVbn*2Eq7o1JGxKa-|INla{z9}43Mkt#k2dC5ac(`*s!PjF6 zCY#gLm7-D=>b^M4alg1OrP$+s-QRLqOJjMzC?GU8x z#UsM_rthyNftcZcE%an`*J(Bjz1Oh+A8pAwaG^7EK*uZM6?o}Mh!~+se3iM#B9*I| z%9&X(xmwk9$2dgLEJy2!CY3~4-{n&nH!%zN{-oKGN`bnNk&9ZGmI%anw6?$=${M&- zAx0k4v82s1srGFX8X~P@Qp*2ouOlBoTBms zOv+E5t%kwiub-`UgX%AqC*`;B*q2?>$LVWspZF*2L?e1=+0!^D)kIRG(c9j66Z7`| z;_1(S(n-}Ym7KB`f3*7OvXw{@Ti^_n4*CHlYfPu>C?H;IMWNt ziQ0Y<{hGcB#_MT!SHC>Jq73C+PN{zJ6_ulp>KLUB&LALkRtw7+BrR6KqzPaJ6?Jm( zLtP1DX8$kuf$gvm06)biimnY6TX&oyCdOyJJpjUacQlX(!Mv!+LaG?`Rp$l2k{*&q zBg~9>D1e7WjR4e*J?I#a54oR8wX*isAXse4Jb3PHl4QcYA-$_$I;!zS%S7c}IgU?^ z{w`j2J{5xhXRFg(&R>6CVz{{2UWxE0x)oFhPnfqCA~fo-KPAM*H5Vd(-rs{Pe*Uvh zJG%b0d(Jj#=G%zuf7C7D+v`QY1iBE)S821}UW(w8*N0=A!8B(03EsIZ85EKerqTd9 z_>Mk$IzeT7xdMOHka`P^PVRigJsSJO0HL{Wi2Uj`kpp3iF=2BQfq>|ot&;v!-uuX1 zgh!evc~NN#ilb!RZPvg0%6q>bPEUW-^|`>$*FXH;dtcxE{S)Z-_xgYEfv;Y!R-4@? YMnC=Ddw+QS!}c@(Kl+rCG89q-05N9Ko&W#< literal 0 HcmV?d00001 diff --git a/minecode_pipelines/tests/data/maven/index/nexus-maven-repository-index.gz b/minecode_pipelines/tests/data/maven/index/nexus-maven-repository-index.gz new file mode 100644 index 0000000000000000000000000000000000000000..72d5cef848e21fd1f8686476a0b23ea576fcd8ba GIT binary patch literal 8508 zcmV-CA;aDuiwFP!000000PS5{kL0*@?zPu8vhW4YLlVS*QBEFgCz&qYF9Cw2r>AG8 zcDrZFUEQ;5!+mz!|?m?a3RYzTtz_)L5h(m#*{Q~^-^ z{8gIE>}0c?4zT9{qY>CJkP2;2fW)bPQ2g- zetPqhjkk=#j}M=<(7eFN@u8$=A8m{s?2x}Vq(E&<0Q?-qcxkmFqXflC75y#tWj-Lg1`W_$JcAM-E6{WczYK(R}Y)vg}FrcW83LE@B$b|n+PY^xk5Mb z_!{Al$r45Jh{5?fS^F=;X#ENYI6`B_L;9mE+6x@pk+&HSc)2|Nw_N!R$Fx8d&!2By z7e~FNp7MeU#H)um!M%r8%D#AexeXF;jhS-?7t95;^)2%K{_UNzFL88r8^LV${2{@o z;Wikc)l(qS9ymI2oCt=*AcS`)S_Hj^bWI5TvWB1QFvz+cHn4ju$tu8W6yFYJUJ$()Z8tDWkJ8#z%+Et_9P^02 zd>-DMhES)E{q$`W;;r=_+areK5_!YR57U;7gJkTGUPjms1IHunIHD#IcF2Bo_{b;` zh8N-z1wGfHd)(N@-rWdEmfE5Bih2(vOc2?A!X_9)7hNT=GU>OvqM?mP0(QW;hCT6c zh%K>NjF2!a)3QDD@IC^&4Lfx3*irMXpq<%SW}dXwBflIXJBiz z83h(U1U8J9Al$~M;d--8QfuL;IlI7q?p=&4+$jPz>F=%l2Cs}uOdrMZRk#S^grJWt zVfHtf6s2)E>kUdr!62Pgg_*JiVdY~JgUb{>jbLpfXv9ed0icl)<@MYKGf~EgeH$m? zdRIZRfF9Ygh#hkD_#q&qERz6D(Q0QOH(r!>&nws%jMDfi6f8BS(+my7kwSYJM)xRk z0CA@!rotozhnDSvr@q^eZ2uTc>zZbq7rPRn%Ut@p|sMOdZ_hg z4`l3i>f8%HU}q}TS3?`wb{X1KW`HSiMu{AT@ibezJ)p5gdf~Yvj&v$O7wE&d@edf| zDlJ4G|+0~n9tTJX-kbKlQ^H4^}b&K-`W8^ZMKP zc1-4J7Z~Hp0vP9{gJ(d4y>e2RAnykw0G3f`<2W9sdvc6Rj0T#&03g-N#(0TuQF0RXcKPDrFdliP~D7xwNTHRy5 zzC2Gwm0z_O!15AQWyrM6w{b4k8TC;d&+f^o@OKPEW}fXOm3yz*{IbSDvJ4@OuclvMZn{2A4CFl}aL&HFxlgzx zb996q*hz5~rYB{`W{<)Fa~P~{;?|p^6t#PjR2VbgAQ^UIcf@_nddg-*Rd9lJPve zISCwc6UGaGwPztO@*g~QWENw`l)z%?Rm&Q0x29on^0qc~4W{vwTr~c7l>@n{j(MUU*vQD0k`<8R9Do+%$ ztd$k2*J0#+4dV{^FMW@LezAUuu}{1nxAq4PnJma(oMe2mNJ-=FAxk6YZps=L_j;Aa zKA>8yLn&u~>Dc?4LjdXRD-OCIUF#i=63_1JGHa0A`~v>Rp}Z;h$5-W~;Q%Gf8MD(F3u_8gXMHNHnjjIs6AKuPch z-^Z}!B1M8>G!sk7A@uGv^ z&30|Evx5~1E9othDGxv4w8;->yp4y6cSf6_N-`F~D*cPzZTCpn0724L&=n{wW?F06 zSKHJnwvn72jaEGuW=Wg>F+unT;zqzcoJ9S2UHR-1OG? zPRxwJ<=HWfsb0KFTCHPLOA%IgiIs%Xy`Y+M2Ahh^6dr*-xBxnM4%1>ZyjbM z?l$XfaT;8)?0Vhgxz6pwQLHa|@Q~w-9^_wLoOe^FI_6|`x>#g!bJ__DzY!j)+&!dF zSUfCe=^CW7xO>EW_?*bE@kb64PB5}v#?BI^k|gsn?M2>8d^O%-1?(lz%a^B;B#WFm z<-2&EE|$%`nakMzPNtpj`ns3IuCKGA^U`%zu_WZn|Euh5l7pzo|LExG2YDoL!ETQP zPPAV~7;sb3i^$|(dz*dW?S|3pbI577dhtaTC;XE?HmSULhGzHJs>TDK z4@@xoZOM zqu^#sEYh>zc!BM2$<6lJ@*%kePSA^K*?)Un=5TcjMTM%&GGbsOm_Sb00!$nbQS?Ac z=0JiUZnDZ(%9BS(w^1;&a9T&~%&dnphn-Z8v)sy@(Cj^mX2kHCmdpw5E%9NWc0GG`vRwQ+{)ZF`6~!fhGaTG`(9P1{)xvILC@NGf z!Eutxx`eLE+rm&541gOyd;qZ=SEAF49epwhLqG27l&VOLO)rp6DeJl@YQ|n{deSq0 z(d=_qBrnpIMcjGCl~m-)riBE_wiVTtRnamX(NZlJIi`qg#gHsh&*IK6eqS^G7va{U zET|-G1fVTo(?0+57WyddIy#eM6Omp8jfA5t92DJQf{XtWyYKSfEdC-ue9pbff8^_= zG!PXnC^3Vb<tUUYg(moMz@Yyfo1t?(ovY5S+tH6WnNr zmnLWchnFTgF%Bp5HUYckDIlMH{f^&Fjq8;h*(nNo(!%GvxfDSKB(2))= zO|;`3UYej_9A28}L^!-OF$m!B(nJ&E@X|yE@~yu#kzO&Kf8p65Kw&d4gJe{dOR@78 z_zu)#=CD49DfPA}f>I3NZ;xl$&U=BFUZYLMoBL#UA@Lk-gBCaLjN1!b=+&W({CA+^ z(m0geWlfn#7{vtl6%wzwI8PDP8NOqzc`6cyq(H=Trz! zeG*XWGz>p5Z5#~h_E%{tOs|thwSOe*`612)?P3_A^+#gB4^laQl1{9JmYeo zqa~7Vjr`PYZ?uvy@4MF6X7caMK*0!%ooKHz*kWmhnOo9E*Ec7t+PZnWn zYTqd^iE|c3jigjn5oi0{Cfi6Ww{6wXJQ9U4U4W+cy++bG`uZU|SZ^lfa%v=8hQ1$? zl@bh`W>la((#$uXo^{o4zmd3j+g9Pl>aAg@X0dy25MC#)QH@Lva@xwkfg5&te-nw3f0_ z_C`vR?Q+4W-3l`FagxPVrlh0y=;J(pMg%d$+n_0LmeWa3;D695=`E2`e7<`7hL!du z@{-Kckx{1iI7uGLIDs{36VpZ7*C?ZvSQaW%KrQJkaF$_u^i0KLe5Pbyj1C50an#62 ze&^wPMqUghRLzrFi4}>=kC|mozc;%OBrW0RE>v43AscJ#K|}5xlZ-?A15TLbN=Z`g zE)o)7o<$O5Rwrm%zm;Z%{WShZxwvK0@Swd}yrnhb$F)BvA#w6GEhQ-n(zDH<391A! z(``z?sN*nNKaz)xg01c2ZTzfEc@&QYR@f+A%fm+f&0g3jlZ1_u1Xb0QUDT)|B$SLK zS3<5M$QG6a&2eo5VZ*?ZqajT;B}I@`1jt!Ps2|^?b*q$Yo;~ZZo5mZC@x_CAU5vX& z_VUq^o!F(1!;yeql_SaCP&?1MY4C__uwhIOCKf=`_7*B<6`^5 z3!EP0{WHj`-=A?w_Q_Ba50>;sCa{eoAVO;*`qbXnqdE# zpGAHjvj@P{ZWiaGufG4s&2=4+_y6*3JPC80s)rr`U!9P^Sy=$2P9{ta@JLW|n6ndH zzDC@|cedU_TVSV8UfBah`7^Oy#Hpbq@6*H=al7Ve>qP(yhGYO+!cn9z@B_Dw0oqG^ z1H&rf7#jHrY!}%DP7rD2cjUc8KE>W}tm0dHy>-U)YO@$(mNEBckYTHP3>iM11IgDUfTIt2NP!Q>s5eWe<^ z$Dz6q{y^r7+VsK81)}@ic|VS2PX^WqC_M2e!QmS08BVqp%X&gmxYvx4u&{gnXy;tLjck(#cLqHBHfcl;BS_ zyzZZ$7WvGIe6nEANAkI6MIFSd!LjzmpPi%7y7C$l_|ZL#~3L{qR` z(?X&Pe?%-;Skzr8ijHlpN`j<0f+U$@w);x|8z+`*>Wf)oF>j>MDhGh#m8rCrEP;H7-^g&Xg?xszN-A6=4)AUF2QT!I9Vd}_r zHNkaEO*1vef(^SODOj*o)35~5Rcukv9aqhy@rk(SLr@ebi-fR*U!QfP(~iO_WW^h+ zU3g_Q-7dnC(Qy@-N5qI}VP%xd@9MSFP6K0T{`5{`{lB?JA$ zq?uzB62|*clLT2-8{_G(U!@t%Dv>5;dDqE%5@u6mG3MhfvgsjY0JnkT-!B3@jIF#V%bm~Q1+sNHPyOD0Oej+XHQLnqK*w@N~UfqIHoI4 z*|uM-WDzs&=hn!%AgQ+=S^3s)Eifxn^M|g{b%btUQd92oGiiA$-x(@{Rlnvj{c90heVJA^Xc%(Mrb&i0#bAFA6d0C|{LdK1ZI$7)W zjT&)ltgjj^^RfY>se2Wq>n;m}yiXl@hI&PPOC4>|Iwsog3o<)=hjQZ_u6!M{E8qr` zyb%DQm6AsQ%*!Y2zRHeu$KvTTxp7H^daJY}_s${Kd4G*D!FK9rp87L`UDfD1FXq(f zIW8JEG-7MSfVz}h;{wu_8;$q~?UQ&1B=fQJa?3Z9nYk$$Xc%V zwzpb`)Y^g?wJiy{#}MnHAakwAQQA{RoI=V}-ld$|f&sS8T=lDhjFkqTD(GBlub)C`iI} zHxDDabd`h_%$t!dJGgw6fkca7b?Q9OY+*F%e9-5YwS?`4*-=dn&*uuNF>$@@iCJbu*wvK(w zZ@fD}YJ4fmcBVC6dX2shaQ7VuMtdHN@LC(WPAd72cY7Uv z@^p=F z^Xf5`nA1Qncd9Afo77hnfiUpvru&io%>f6AG(j}@ja zzK&M;uGotP8f!YY275!E1E1Hp)X!*CZOzH8XH8Yb7$YbM!fXW*&tKgqWJLl0VmMP& ziQjoKAp?bRh2w;=(yXB`0=pIe+jU$aZYeDu4{e(lPRExCd|M8#D|Chdt}B%wYky&v zwy)gY^~kVpDTT@Pmz!|Cvu+8*y7f%V+S4)x$=#p6$+%7Yioh%o5y-+PZo}mcO(Ci*P5R)7x;Va1{c9`n6cCv*oGb3>y zW?nEu!3?{uXOk$?vj@E(8~tx9QLtk*kAszq=|0z(z;oHaAu zu2J%wWvv(nyI@r`vUX7riD$7s+36t(QtbP+X{IFk(u>Ga2)YrY%^m`@_Uu+ET?bwO ztDbZ=b8^a#>X*T(Xo*+Q#aqi%_M=qfjL!6mgfS;aC`H-(t5~^1#i~@lcPaJS7DZ8z zp0bWrbVb)SLv?hlBg?RD)ip&|a}B|fRaF*bS5!4!!ozi}OxLlR$d;M}8cJ6l#Ui@v zlarc=EDK><*Br+-1jVux!@{!cn21dDE>>jG5RhrN>R2w_)1|=pbQ7nx+p26 zh2XeYAVID~qV^og5*1xF96=?kG~}q3Dqw*gD~DTr?NgLSa}~+OCrYBKG-EeC9r0ns zu|c!SqUMT@C@2O}Oj$P+Q+F`dMb(DM%XD04=oG~WnWn=Zw$voUkPP(+Zv$ZCDJq(! zVwlX4>=?QRozT@ZQ6l#P1?1YW`BSA_YTy6&5mS^O+T@_ROY0SMt=j7_-#xwgu0Sd# zi(t!;=hL1T^TZBGJgw=o>g5*S1kkP5B;aWDxc86l`BSHxfefO`WKj^B0q6d56_QBs zvsV$?+|J%WX6YkWMF`0My1K=)2FWa=$$Z?15pxT&dYC~ai4Aj>gfnaF`3@v*@<%yl ze(n|rX;7P4oIwUSxeuccsVejm9RGTDeR&=eBH|$DM&TMTQr|fggn?%R3(6#eMd#_s<|4Jg*8l^CHZnaJLeY z_q=%McETk(?|VNu`YZ~=akLgP{Hr+Fswiexe%LVY_Y;}6MSYExoBm#JYKW^hi;NXv+ q9{p(X;;Y4*mv7 Date: Mon, 8 Sep 2025 16:36:49 -0700 Subject: [PATCH 11/29] Create purls.yml path without leading segment #660 * leading segment will be the repo itself, not a directory within the repo Signed-off-by: Jono Yang --- minecode_pipelines/miners/__init__.py | 5 ++++- minecode_pipelines/pipes/maven.py | 16 ++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/minecode_pipelines/miners/__init__.py b/minecode_pipelines/miners/__init__.py index 1d3fc368..4c55bfe8 100644 --- a/minecode_pipelines/miners/__init__.py +++ b/minecode_pipelines/miners/__init__.py @@ -13,6 +13,7 @@ from pathlib import Path from aboutcode import hashid +from packageurl import PackageURL from scanpipe.pipes import federatedcode @@ -31,7 +32,9 @@ def write_data_to_file(path, data): def write_purls_to_repo(repo, package, packages, push_commit=False): # save purls to yaml - ppath = hashid.get_package_purls_yml_file_path(package) + path_elements = hashid.package_path_elements(package) + _, core_path, _, _ = path_elements + ppath = core_path / hashid.PURLS_FILENAME purls = [p.purl for p in packages] federatedcode.write_data_as_yaml( base_path=repo.working_dir, diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 660bc47b..1604057d 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -692,15 +692,15 @@ def get_packages(self, content=None, increments=False): def collect_packages_from_maven(commits_per_push=10, logger=None): # download and iterate through maven nexus index maven_nexus_collector = MavenNexusCollector() - prev_package = None + prev_purl = None current_packages = [] - for i, (current_package, package) in enumerate(maven_nexus_collector.get_packages(), start=1): - if not prev_package: - prev_package = current_package - elif prev_package != current_package: + for i, (current_purl, package) in enumerate(maven_nexus_collector.get_packages(), start=1): + if not prev_purl: + prev_purl = current_purl + elif prev_purl != current_purl: # check out repo repo_url, _ = federatedcode.get_package_repository( - project_purl=prev_package, + project_purl=prev_purl, logger=logger ) repo = federatedcode.clone_repository( @@ -712,7 +712,7 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): # save purls to yaml write_purls_to_repo( repo=repo, - package=prev_package, + package=prev_purl, packages=current_packages, push_commit=push_commit ) @@ -721,5 +721,5 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): federatedcode.delete_local_clone(repo) current_packages = [] - prev_package = current_package + prev_purl = current_purl current_packages.append(package) From 810956f8d7bf9eefacd9d64aff5e851f27116ec4 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Wed, 10 Sep 2025 18:45:21 -0700 Subject: [PATCH 12/29] Use last incremental from index properties #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/__init__.py | 46 +++++++++++++++++++++ minecode_pipelines/pipes/maven.py | 54 +++++++++++++++--------- minecode_pipelines/pipes/pypi.py | 62 +++------------------------- 3 files changed, 86 insertions(+), 76 deletions(-) diff --git a/minecode_pipelines/pipes/__init__.py b/minecode_pipelines/pipes/__init__.py index b8339a2b..ecce22e1 100644 --- a/minecode_pipelines/pipes/__init__.py +++ b/minecode_pipelines/pipes/__init__.py @@ -7,12 +7,20 @@ # See https://aboutcode.org for more information about nexB OSS projects. # +import json import os +import requests import saneyaml +from datetime import datetime from pathlib import Path from aboutcode.hashid import PURLS_FILENAME +from scanpipe.pipes.federatedcode import clone_repository +from scanpipe.pipes.federatedcode import commit_and_push_changes + + +MINECODE_SETTINGS_REPO = "https://github.com/AyanSinhaMahapatra/minecode-test/" def write_packageurls_to_file(repo, base_dir, packageurls): @@ -26,3 +34,41 @@ def write_data_to_file(path, data): path.parent.mkdir(parents=True, exist_ok=True) with open(path, encoding="utf-8", mode="w") as f: f.write(saneyaml.dump(data)) + + +def fetch_last_serial_mined( + settings_repo=MINECODE_SETTINGS_REPO, + settings_path=None, +): + """ + Fetch "last_serial" for the last mined packages. + + This is a simple JSON in a github repo containing mining checkpoints + with the "last_serial" from the pypi index which was mined. Example: + https://github.com/AyanSinhaMahapatra/minecode-test/blob/main/minecode_checkpoints/pypi.json + """ + repo_name = settings_repo.split("github.com")[-1] + minecode_checkpoint_pypi = ( + "https://raw.githubusercontent.com/" + repo_name + "refs/heads/main/" + settings_path + ) + response = requests.get(minecode_checkpoint_pypi) + if not response.ok: + return + + settings_data = json.loads(response.text) + return settings_data.get("last_serial") + + +def update_last_serial_mined( + last_serial, + settings_repo=MINECODE_SETTINGS_REPO, + settings_path=None, +): + settings_data = { + "date": str(datetime.now()), + "last_serial": last_serial, + } + cloned_repo = clone_repository(repo_url=settings_repo) + settings_path = os.path.join(cloned_repo.working_dir, settings_path) + write_data_to_file(path=settings_path, data=settings_data) + commit_and_push_changes(repo=cloned_repo, file_to_commit=settings_path) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 1604057d..7ee23b6c 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -7,26 +7,29 @@ # See https://aboutcode.org for more information about nexB OSS projects. # +from collections import namedtuple from itertools import chain import os import gzip import io import logging -import arrow -import javaproperties -from packageurl import PackageURL from dateutil import tz -from minecode_pipelines.pipes import java_stream -from collections import namedtuple -from scanpipe.pipes.fetch import fetch_http -from scanpipe.pipes import federatedcode -from minecode_pipeline.pipes import write_purls_to_repo from jawa.util.utf import decode_modified_utf8 -from packagedcode.maven import get_urls +import arrow +import javaproperties + from packagedcode.maven import build_filename from packagedcode.maven import build_url +from packagedcode.maven import get_urls from packagedcode.models import PackageData +from packageurl import PackageURL +from scanpipe.pipes.fetch import fetch_http +from scanpipe.pipes import federatedcode + +from minecode_pipelines import miners +from minecode_pipelines import pipes +from minecode_pipelines.pipes import java_stream logger = logging.getLogger(__name__) @@ -44,8 +47,9 @@ MAVEN_BASE_URL = "https://repo1.maven.org/maven2" MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" -MAVEN_INDEX_INCREMENT_BASE_URL = f"https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" +MAVEN_INDEX_INCREMENT_BASE_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" MAVEN_INDEX_PROPERTIES_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties" +MAVEN_SETTINGS_PATH = "minecode_checkpoints/maven.json" def is_worthy_artifact(artifact): @@ -577,6 +581,14 @@ class MavenNexusCollector: WARNING: Processing is rather long: a full index is ~600MB. """ + def __init__(self, index_properties_location=None): + if index_properties_location: + content = index_properties_location + else: + content = self.fetch_index_properties() + with open(content) as config_file: + self.index_properties = javaproperties.load(config_file) or {} + def fetch_index(self, uri=MAVEN_INDEX_URL): """ Return a temporary location where the maven index was saved. @@ -595,11 +607,11 @@ def fetch_index_increments(self): """ Yield maven index increments """ - content = self.fetch_index_properties() - with open(content) as config_file: - properties = javaproperties.load(config_file) or {} - - for key, increment_index in properties.items(): + # in this context, last serial means last incremental + last_incremental = pipes.fetch_last_serial_mined(settings_path=MAVEN_SETTINGS_PATH) + for key, increment_index in self.index_properties.items(): + if increment_index <= last_incremental: + continue if key.startswith("nexus.index.incremental"): index_increment_url = MAVEN_INDEX_INCREMENT_BASE_URL.format(index=increment_index) index_increment = fetch_http(index_increment_url) @@ -676,9 +688,10 @@ def _get_packages_from_index_increments(self): for index_increment in self.fetch_index_increments(): return self._get_packages(content=index_increment) - def get_packages(self, content=None, increments=False): + def get_packages(self, content=None): """Yield Package objects from maven index""" - if increments: + last_incremental = pipes.fetch_last_serial_mined(settings_path=MAVEN_SETTINGS_PATH) + if last_incremental: packages = chain(self._get_packages_from_index_increments()) else: if content: @@ -698,7 +711,6 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): if not prev_purl: prev_purl = current_purl elif prev_purl != current_purl: - # check out repo repo_url, _ = federatedcode.get_package_repository( project_purl=prev_purl, logger=logger @@ -710,16 +722,18 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): push_commit = not bool(i % commits_per_push) # save purls to yaml - write_purls_to_repo( + miners.write_purls_to_repo( repo=repo, package=prev_purl, packages=current_packages, push_commit=push_commit ) - # delete local clone federatedcode.delete_local_clone(repo) current_packages = [] prev_purl = current_purl current_packages.append(package) + + last_incremental = maven_nexus_collector.index_properties.get("nexus.index.last-incremental") + pipes.update_last_serial_mined(last_serial=last_incremental, settings_path=MAVEN_SETTINGS_PATH) diff --git a/minecode_pipelines/pipes/pypi.py b/minecode_pipelines/pipes/pypi.py index 19fcb18a..07a8cacd 100644 --- a/minecode_pipelines/pipes/pypi.py +++ b/minecode_pipelines/pipes/pypi.py @@ -20,32 +20,20 @@ # ScanCode.io is a free software code scanning tool from nexB Inc. and others. # Visit https://github.com/aboutcode-org/scancode.io for support and download. -import os -import json -import requests - -from datetime import datetime - from minecode_pipelines import pipes from minecode_pipelines.miners.pypi import get_pypi_packages -from minecode_pipelines.miners.pypi import load_pypi_packages from minecode_pipelines.miners.pypi import get_pypi_packageurls +from minecode_pipelines.miners.pypi import load_pypi_packages from minecode_pipelines.miners.pypi import PYPI_REPO - from minecode_pipelines.miners.pypi import PYPI_TYPE -from packageurl import PackageURL - from aboutcode.hashid import get_package_base_dir - - +from packageurl import PackageURL from scanpipe.pipes.federatedcode import clone_repository from scanpipe.pipes.federatedcode import commit_changes from scanpipe.pipes.federatedcode import push_changes -from scanpipe.pipes.federatedcode import commit_and_push_changes -MINECODE_SETTINGS_REPO = "https://github.com/AyanSinhaMahapatra/minecode-test/" PYPI_SETTINGS_PATH = "minecode_checkpoints/pypi.json" @@ -53,47 +41,9 @@ def mine_pypi_packages(logger=None): return get_pypi_packages(pypi_repo=PYPI_REPO, logger=logger) -def fetch_last_serial_mined( - settings_repo=MINECODE_SETTINGS_REPO, - settings_path=PYPI_SETTINGS_PATH, -): - """ - Fetch "last_serial" for the last mined packages. - - This is a simple JSON in a github repo containing mining checkpoints - with the "last_serial" from the pypi index which was mined. Example: - https://github.com/AyanSinhaMahapatra/minecode-test/blob/main/minecode_checkpoints/pypi.json - """ - repo_name = settings_repo.split("github.com")[-1] - minecode_checkpoint_pypi = ( - "https://raw.githubusercontent.com/" + repo_name + "refs/heads/main/" + settings_path - ) - response = requests.get(minecode_checkpoint_pypi) - if not response.ok: - return - - settings_data = json.loads(response.text) - return settings_data.get("last_serial") - - -def update_last_serial_mined( - last_serial, - settings_repo=MINECODE_SETTINGS_REPO, - settings_path=PYPI_SETTINGS_PATH, -): - settings_data = { - "date": str(datetime.now()), - "last_serial": last_serial, - } - cloned_repo = clone_repository(repo_url=settings_repo) - settings_path = os.path.join(cloned_repo.working_dir, settings_path) - pipes.write_data_to_file(path=settings_path, data=settings_data) - commit_and_push_changes(repo=cloned_repo, file_to_commit=settings_path) - - def mine_and_publish_pypi_packageurls(packages, use_last_serial=False, logger=None): if use_last_serial: - last_serial_fetched = fetch_last_serial_mined() + last_serial_fetched = pipes.fetch_last_serial_mined(settings_path=PYPI_SETTINGS_PATH) if logger: logger(f"Last serial number mined: {last_serial_fetched}") @@ -108,9 +58,9 @@ def mine_and_publish_pypi_packageurls(packages, use_last_serial=False, logger=No if packages: # clone repo - cloned_repo = clone_repository(repo_url=MINECODE_SETTINGS_REPO) + cloned_repo = clone_repository(repo_url=pipes.MINECODE_SETTINGS_REPO) if logger: - logger(f"{MINECODE_SETTINGS_REPO} repo cloned at: {cloned_repo.working_dir}") + logger(f"{pipes.MINECODE_SETTINGS_REPO} repo cloned at: {cloned_repo.working_dir}") purl_files_updated = [] for package in packages: @@ -155,4 +105,4 @@ def mine_and_publish_pypi_packageurls(packages, use_last_serial=False, logger=No # update last_serial to minecode checkpoints if use_last_serial: - update_last_serial_mined(last_serial=last_serial) + pipes.update_last_serial_mined(last_serial=last_serial) From 0d441f95edbe31776bf04eca58a0b0c5fd36c3da Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 12 Sep 2025 18:46:40 -0700 Subject: [PATCH 13/29] Move code to proper place #660 Signed-off-by: Jono Yang --- minecode_pipelines/miners/__init__.py | 49 -------------------- minecode_pipelines/pipes/__init__.py | 66 ++++++++++++++++++--------- 2 files changed, 45 insertions(+), 70 deletions(-) diff --git a/minecode_pipelines/miners/__init__.py b/minecode_pipelines/miners/__init__.py index 4c55bfe8..e1521118 100644 --- a/minecode_pipelines/miners/__init__.py +++ b/minecode_pipelines/miners/__init__.py @@ -6,52 +6,3 @@ # See https://github.com/aboutcode-org/purldb for support or download. # See https://aboutcode.org for more information about nexB OSS projects. # - -import os -import saneyaml - -from pathlib import Path - -from aboutcode import hashid -from packageurl import PackageURL -from scanpipe.pipes import federatedcode - - -def write_packageurls_to_file(repo, base_dir, packageurls): - purl_file_rel_path = os.path.join(base_dir, hashid.PURLS_FILENAME) - purl_file_full_path = Path(repo.working_dir) / purl_file_rel_path - write_data_to_file(path=purl_file_full_path, data=packageurls) - return purl_file_rel_path - - -def write_data_to_file(path, data): - path.parent.mkdir(parents=True, exist_ok=True) - with open(path, encoding="utf-8", mode="w") as f: - f.write(saneyaml.dump(data)) - - -def write_purls_to_repo(repo, package, packages, push_commit=False): - # save purls to yaml - path_elements = hashid.package_path_elements(package) - _, core_path, _, _ = path_elements - ppath = core_path / hashid.PURLS_FILENAME - purls = [p.purl for p in packages] - federatedcode.write_data_as_yaml( - base_path=repo.working_dir, - file_path=ppath, - data=purls, - ) - - change_type = "Add" if ppath in repo.untracked_files else "Update" - commit_message = f"""\ - {change_type} list of available {package} versions - """ - federatedcode.commit_changes( - repo=repo, - files_to_commit=[ppath], - commit_message=commit_message, - ) - - # see if we should push - if push_commit: - federatedcode.push_changes(repo=repo) diff --git a/minecode_pipelines/pipes/__init__.py b/minecode_pipelines/pipes/__init__.py index ecce22e1..b48ecfad 100644 --- a/minecode_pipelines/pipes/__init__.py +++ b/minecode_pipelines/pipes/__init__.py @@ -10,32 +10,16 @@ import json import os import requests -import saneyaml - from datetime import datetime -from pathlib import Path -from aboutcode.hashid import PURLS_FILENAME -from scanpipe.pipes.federatedcode import clone_repository -from scanpipe.pipes.federatedcode import commit_and_push_changes +import saneyaml +from aboutcode import hashid +from scanpipe.pipes import federatedcode MINECODE_SETTINGS_REPO = "https://github.com/AyanSinhaMahapatra/minecode-test/" -def write_packageurls_to_file(repo, base_dir, packageurls): - purl_file_rel_path = os.path.join(base_dir, PURLS_FILENAME) - purl_file_full_path = Path(repo.working_dir) / purl_file_rel_path - write_data_to_file(path=purl_file_full_path, data=packageurls) - return purl_file_rel_path - - -def write_data_to_file(path, data): - path.parent.mkdir(parents=True, exist_ok=True) - with open(path, encoding="utf-8", mode="w") as f: - f.write(saneyaml.dump(data)) - - def fetch_last_serial_mined( settings_repo=MINECODE_SETTINGS_REPO, settings_path=None, @@ -59,6 +43,12 @@ def fetch_last_serial_mined( return settings_data.get("last_serial") +def write_data_to_file(path, data): + path.parent.mkdir(parents=True, exist_ok=True) + with open(path, encoding="utf-8", mode="w") as f: + f.write(saneyaml.dump(data)) + + def update_last_serial_mined( last_serial, settings_repo=MINECODE_SETTINGS_REPO, @@ -68,7 +58,41 @@ def update_last_serial_mined( "date": str(datetime.now()), "last_serial": last_serial, } - cloned_repo = clone_repository(repo_url=settings_repo) + cloned_repo = federatedcode.clone_repository(repo_url=settings_repo) settings_path = os.path.join(cloned_repo.working_dir, settings_path) write_data_to_file(path=settings_path, data=settings_data) - commit_and_push_changes(repo=cloned_repo, file_to_commit=settings_path) + federatedcode.commit_and_push_changes(repo=cloned_repo, file_to_commit=settings_path) + + +def create_package_path(package): + path_elements = hashid.package_path_elements(package) + _, core_path, _, _ = path_elements + ppath = core_path / hashid.PURLS_FILENAME + return ppath + + +def write_purls_to_repo(repo, package, packages, commit_message="",push_commit=False): + # save purls to yaml + path_elements = hashid.package_path_elements(package) + _, core_path, _, _ = path_elements + ppath = core_path / hashid.PURLS_FILENAME + purls = [p.purl for p in packages] + federatedcode.write_data_as_yaml( + base_path=repo.working_dir, + file_path=ppath, + data=purls, + ) + + change_type = "Add" if ppath in repo.untracked_files else "Update" + commit_message = f"""\ + {change_type} list of available {package} versions + """ + federatedcode.commit_changes( + repo=repo, + files_to_commit=[ppath], + commit_message=commit_message, + ) + + # see if we should push + if push_commit: + federatedcode.push_changes(repo=repo) From eb4a4fba5d229a11f0579869a6330966475a137a Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Mon, 15 Sep 2025 17:50:49 -0700 Subject: [PATCH 14/29] Use new common functions for writing and commiting purls #660 * Create function to get checkpoint from checked out settings repo Signed-off-by: Jono Yang --- minecode_pipelines/pipes/__init__.py | 8 ++ minecode_pipelines/pipes/maven.py | 106 ++++++++++++++++++--------- setup.cfg | 2 +- 3 files changed, 82 insertions(+), 34 deletions(-) diff --git a/minecode_pipelines/pipes/__init__.py b/minecode_pipelines/pipes/__init__.py index da414826..5d030617 100644 --- a/minecode_pipelines/pipes/__init__.py +++ b/minecode_pipelines/pipes/__init__.py @@ -14,6 +14,7 @@ import requests import saneyaml +from aboutcode.hashid import PURLS_FILENAME from scanpipe.pipes.federatedcode import delete_local_clone from scanpipe.pipes.federatedcode import commit_and_push_changes @@ -39,6 +40,13 @@ def fetch_checkpoint_from_github(config_repo, checkpoint_path): return checkpoint_data +def get_checkpoint_from_file(cloned_repo, path): + checkpoint_path = os.path.join(cloned_repo.working_dir, path) + with open(checkpoint_path) as f: + checkpoint_data = json.load(f) + return checkpoint_data or {} + + def update_checkpoints_in_github(checkpoint, cloned_repo, path): checkpoint_path = os.path.join(cloned_repo.working_dir, path) write_data_to_json_file(path=checkpoint_path, data=checkpoint) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 7ee23b6c..08b5d344 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -19,6 +19,7 @@ import arrow import javaproperties +from aboutcode import hashid from packagedcode.maven import build_filename from packagedcode.maven import build_url from packagedcode.maven import get_urls @@ -27,8 +28,8 @@ from scanpipe.pipes.fetch import fetch_http from scanpipe.pipes import federatedcode -from minecode_pipelines import miners from minecode_pipelines import pipes +from minecode_pipelines import VERSION from minecode_pipelines.pipes import java_stream @@ -49,7 +50,10 @@ MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" MAVEN_INDEX_INCREMENT_BASE_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" MAVEN_INDEX_PROPERTIES_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties" -MAVEN_SETTINGS_PATH = "minecode_checkpoints/maven.json" +MAVEN_CHECKPOINT_PATH = "maven/checkpoints.json" + +# We are testing and storing mined packageURLs in one single repo per ecosystem for now +MINECODE_DATA_MAVEN_REPO = "https://github.com/aboutcode-data/minecode-data-maven-test" def is_worthy_artifact(artifact): @@ -589,26 +593,24 @@ def __init__(self, index_properties_location=None): with open(content) as config_file: self.index_properties = javaproperties.load(config_file) or {} - def fetch_index(self, uri=MAVEN_INDEX_URL): + def _fetch_index(self, uri=MAVEN_INDEX_URL): """ Return a temporary location where the maven index was saved. """ index = fetch_http(uri) return index.path - def fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): + def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): """ Return a temporary location where the maven index properties file was saved. """ index_properties = fetch_http(uri) return index_properties.path - def fetch_index_increments(self): + def _fetch_index_increments(self, last_incremental): """ Yield maven index increments """ - # in this context, last serial means last incremental - last_incremental = pipes.fetch_last_serial_mined(settings_path=MAVEN_SETTINGS_PATH) for key, increment_index in self.index_properties.items(): if increment_index <= last_incremental: continue @@ -684,15 +686,14 @@ def _get_packages(self, content=None): ) yield current_purl, package - def _get_packages_from_index_increments(self): - for index_increment in self.fetch_index_increments(): + def _get_packages_from_index_increments(self, last_incremental): + for index_increment in self._fetch_index_increments(last_incremental=last_incremental): return self._get_packages(content=index_increment) - def get_packages(self, content=None): + def get_packages(self, content=None, last_incremental=None): """Yield Package objects from maven index""" - last_incremental = pipes.fetch_last_serial_mined(settings_path=MAVEN_SETTINGS_PATH) if last_incremental: - packages = chain(self._get_packages_from_index_increments()) + packages = chain(self._get_packages_from_index_increments(last_incremental=last_incremental)) else: if content: index_location = content @@ -703,37 +704,76 @@ def get_packages(self, content=None): def collect_packages_from_maven(commits_per_push=10, logger=None): + # Clone data and config repo + data_repo = federatedcode.clone_repository( + repo_url=MINECODE_DATA_MAVEN_REPO, + logger=logger, + ) + config_repo = federatedcode.clone_repository( + repo_url=pipes.MINECODE_PIPELINES_CONFIG_REPO, + logger=logger, + ) + if logger: + logger(f"{MINECODE_DATA_MAVEN_REPO} repo cloned at: {data_repo.working_dir}") + logger(f"{pipes.MINECODE_PIPELINES_CONFIG_REPO} repo cloned at: {config_repo.working_dir}") + + # get last_incremental to see if we can start from incrementals + checkpoint = pipes.get_checkpoint_from_file( + cloned_repo=config_repo, + path=MAVEN_CHECKPOINT_PATH + ) + last_incremental = checkpoint.get("last_incremental") + if logger: + logger(f"last_incremental: {last_incremental}") + # download and iterate through maven nexus index maven_nexus_collector = MavenNexusCollector() prev_purl = None - current_packages = [] - for i, (current_purl, package) in enumerate(maven_nexus_collector.get_packages(), start=1): + current_purls = [] + for i, (current_purl, package) in enumerate( + maven_nexus_collector.get_packages(last_incremental=last_incremental), + start=1 + ): if not prev_purl: prev_purl = current_purl elif prev_purl != current_purl: - repo_url, _ = federatedcode.get_package_repository( - project_purl=prev_purl, - logger=logger - ) - repo = federatedcode.clone_repository( - repo_url=repo_url, - logger=logger, + # write packageURLs to file + package_base_dir = hashid.get_package_base_dir(purl=prev_purl) + purl_file = pipes.write_packageurls_to_file( + repo=data_repo, + base_dir=package_base_dir, + packageurls=current_purls, ) - push_commit = not bool(i % commits_per_push) - # save purls to yaml - miners.write_purls_to_repo( - repo=repo, - package=prev_purl, - packages=current_packages, - push_commit=push_commit + # commit changes + pipes.commit_changes( + repo=data_repo, + files_to_commit=[purl_file], + purls=current_purls, + mine_type="packageURL", + tool_name="pkg:pypi/minecode-pipelines", + tool_version=VERSION, ) - federatedcode.delete_local_clone(repo) + # Push changes to remote repository + push_commit = not bool(i % commits_per_push) + if push_commit: + federatedcode.push_changes(repo=data_repo) - current_packages = [] + current_purls = [] prev_purl = current_purl - current_packages.append(package) + current_purls.append(package.to_string()) + + # update last_incremental so we can pick up from the proper place next time + last_incremental = maven_nexus_collector.index_properties.get("nexus.index.last-incremental") + checkpoint = {"last_incremental": last_incremental} + if logger: + logger(f"checkpoint: {checkpoint}") + pipes.update_checkpoints_in_github( + checkpoint=checkpoint, + cloned_repo=config_repo, + path=MAVEN_CHECKPOINT_PATH + ) - last_incremental = maven_nexus_collector.index_properties.get("nexus.index.last-incremental") - pipes.update_last_serial_mined(last_serial=last_incremental, settings_path=MAVEN_SETTINGS_PATH) + # clean up cloned repos + pipes.delete_cloned_repos(repos=[data_repo, config_repo], logger=logger) diff --git a/setup.cfg b/setup.cfg index ffbac886..f258c792 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,7 +62,7 @@ install_requires = matchcode-toolkit >= 7.2.2 purl2vcs >= 2.0.0 univers >= 31.0.0 - scancodeio @ git+https://github.com/aboutcode-org/scancode.io@f3a581171e201e5fdb20962115a661b4eb4a7850 + scancodeio @ git+https://github.com/aboutcode-org/scancode.io@c69e8a0492b4e3abfde2f66dcd3434c883cf2ba2 GitPython >= 3.1.44 samecode >= 0.5.1 # FederatedCode integration From 289c336d7c6d4092befd7bbc3704567e05ba7698 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Wed, 17 Sep 2025 18:55:45 -0700 Subject: [PATCH 15/29] Handle downloading and deleting index archive using constructor/destructor #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 41 +++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 13 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 08b5d344..6ee8a224 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -585,19 +585,25 @@ class MavenNexusCollector: WARNING: Processing is rather long: a full index is ~600MB. """ - def __init__(self, index_properties_location=None): - if index_properties_location: - content = index_properties_location - else: - content = self.fetch_index_properties() - with open(content) as config_file: - self.index_properties = javaproperties.load(config_file) or {} + def __init__(self, index_location=None, index_properties_location=None): + self._set_index_properties(index_properties_location=index_properties_location) + self.index_location = index_location + self.index_location_given = bool(index_location) + self.index_increment_locations = [] + + def __del__(self): + if self.index_location and self.index_location_given: + os.remove(self.index_location) + if self.index_increment_locations: + for loc in self.index_increment_locations: + os.remove(loc) def _fetch_index(self, uri=MAVEN_INDEX_URL): """ Return a temporary location where the maven index was saved. """ index = fetch_http(uri) + self.index_location = index.path return index.path def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): @@ -607,6 +613,16 @@ def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): index_properties = fetch_http(uri) return index_properties.path + def _set_index_properties(self, index_properties_location=None): + if index_properties_location: + content = index_properties_location + else: + content = self._fetch_index_properties() + with open(content) as config_file: + self.index_properties = javaproperties.load(config_file) or {} + if not index_properties_location: + os.remove(content) + def _fetch_index_increments(self, last_incremental): """ Yield maven index increments @@ -617,6 +633,7 @@ def _fetch_index_increments(self, last_incremental): if key.startswith("nexus.index.incremental"): index_increment_url = MAVEN_INDEX_INCREMENT_BASE_URL.format(index=increment_index) index_increment = fetch_http(index_increment_url) + self.index_increment_locations.append(index_increment.path) yield index_increment.path def _get_packages(self, content=None): @@ -690,16 +707,14 @@ def _get_packages_from_index_increments(self, last_incremental): for index_increment in self._fetch_index_increments(last_incremental=last_incremental): return self._get_packages(content=index_increment) - def get_packages(self, content=None, last_incremental=None): + def get_packages(self, last_incremental=None): """Yield Package objects from maven index""" if last_incremental: packages = chain(self._get_packages_from_index_increments(last_incremental=last_incremental)) else: - if content: - index_location = content - else: - index_location = self.fetch_index() - packages = self._get_packages(content=index_location) + if not self.index_location: + self._fetch_index() + packages = self._get_packages(content=self.index_location) return packages From 88956bfc1cf0a3a4d7b813077e5c8ae7be00521d Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Thu, 18 Sep 2025 15:15:00 -0700 Subject: [PATCH 16/29] Split repo deletion into separate pipeline step #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipelines/mine_maven.py | 9 +++++++++ minecode_pipelines/pipes/maven.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/minecode_pipelines/pipelines/mine_maven.py b/minecode_pipelines/pipelines/mine_maven.py index 5344878d..17818dd3 100644 --- a/minecode_pipelines/pipelines/mine_maven.py +++ b/minecode_pipelines/pipelines/mine_maven.py @@ -21,6 +21,7 @@ # Visit https://github.com/aboutcode-org/scancode.io for support and download. +from minecode_pipelines import pipes from minecode_pipelines.pipes import maven from scanpipe.pipelines.publish_to_federatedcode import PublishToFederatedCode @@ -41,8 +42,16 @@ class MineMaven(PublishToFederatedCode): def steps(cls): return ( cls.check_federatedcode_eligibility, + cls.clone_repos, cls.collect_packages_from_maven, + cls.delete_cloned_repos, ) + def clone_repos(self): + self.repos = maven.clone_repos(self.project, self.log) + def collect_packages_from_maven(self): maven.collect_packages_from_maven(self.project, self.log) + + def delete_cloned_repos(self): + pipes.delete_cloned_repos(repos=self.repos, logger=self.log) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 6ee8a224..42c30f45 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -790,5 +790,5 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): path=MAVEN_CHECKPOINT_PATH ) - # clean up cloned repos - pipes.delete_cloned_repos(repos=[data_repo, config_repo], logger=logger) + repos_to_clean = [data_repo, config_repo] + return repos_to_clean From 9449ee26d692e4ddb9a684fe59227237c3748570 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Thu, 18 Sep 2025 17:09:41 -0700 Subject: [PATCH 17/29] Fix logic in destructor #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index 42c30f45..a84473f4 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -587,12 +587,15 @@ class MavenNexusCollector: def __init__(self, index_location=None, index_properties_location=None): self._set_index_properties(index_properties_location=index_properties_location) - self.index_location = index_location + if index_location: + self.index_location = index_location + else: + self.index_location = self._fetch_index() self.index_location_given = bool(index_location) self.index_increment_locations = [] def __del__(self): - if self.index_location and self.index_location_given: + if self.index_location and not self.index_location_given: os.remove(self.index_location) if self.index_increment_locations: for loc in self.index_increment_locations: @@ -603,7 +606,6 @@ def _fetch_index(self, uri=MAVEN_INDEX_URL): Return a temporary location where the maven index was saved. """ index = fetch_http(uri) - self.index_location = index.path return index.path def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): @@ -712,8 +714,6 @@ def get_packages(self, last_incremental=None): if last_incremental: packages = chain(self._get_packages_from_index_increments(last_incremental=last_incremental)) else: - if not self.index_location: - self._fetch_index() packages = self._get_packages(content=self.index_location) return packages From 81b124316f3079baf47ef343de9acb0103c520fc Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 14:26:37 -0700 Subject: [PATCH 18/29] Declare mine_maven pipeline in pyproject #660 Signed-off-by: Jono Yang --- pyproject-minecode_pipeline.toml | 1 + setup.cfg | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject-minecode_pipeline.toml b/pyproject-minecode_pipeline.toml index 061b4f15..cfb5d48e 100644 --- a/pyproject-minecode_pipeline.toml +++ b/pyproject-minecode_pipeline.toml @@ -46,6 +46,7 @@ urls = { Homepage = "https://github.com/aboutcode-org/purldb" } [project.entry-points."scancodeio_pipelines"] mine_pypi = "minecode_pipelines.pipelines.mine_pypi:MineandPublishPypiPURLs" +mine_maven = "minecode_pipeline.pipelines.mine_maven:MineMaven" [tool.bumpversion] current_version = "0.0.1b1" diff --git a/setup.cfg b/setup.cfg index f258c792..a0e15b48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -100,4 +100,3 @@ console_scripts = scancodeio_pipelines = matching = matchcode_pipeline.pipelines.matching:Matching d2d = scanpipe.pipelines.deploy_to_develop:DeployToDevelop - mine_maven = minecode_pipeline.pipelines.mine_maven:MineMaven From a225502601b7eec9cf4bbcaca9886c656e60a856 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 14:29:31 -0700 Subject: [PATCH 19/29] Remove repo clone step #660 * This is done in the collect_packages_from_maven step Signed-off-by: Jono Yang --- minecode_pipelines/pipelines/mine_maven.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/minecode_pipelines/pipelines/mine_maven.py b/minecode_pipelines/pipelines/mine_maven.py index 17818dd3..30a2f29f 100644 --- a/minecode_pipelines/pipelines/mine_maven.py +++ b/minecode_pipelines/pipelines/mine_maven.py @@ -42,16 +42,12 @@ class MineMaven(PublishToFederatedCode): def steps(cls): return ( cls.check_federatedcode_eligibility, - cls.clone_repos, cls.collect_packages_from_maven, cls.delete_cloned_repos, ) - def clone_repos(self): - self.repos = maven.clone_repos(self.project, self.log) - def collect_packages_from_maven(self): - maven.collect_packages_from_maven(self.project, self.log) + self.repos = maven.collect_packages_from_maven(self.project, self.log) def delete_cloned_repos(self): pipes.delete_cloned_repos(repos=self.repos, logger=self.log) From d126ea0fac4f3e04a8f0839767008a184c90224d Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 14:33:58 -0700 Subject: [PATCH 20/29] Update code style #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index a84473f4..ed431417 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -48,8 +48,12 @@ MAVEN_BASE_URL = "https://repo1.maven.org/maven2" MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" -MAVEN_INDEX_INCREMENT_BASE_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" -MAVEN_INDEX_PROPERTIES_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties" +MAVEN_INDEX_INCREMENT_BASE_URL = ( + "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.{index}.gz" +) +MAVEN_INDEX_PROPERTIES_URL = ( + "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.properties" +) MAVEN_CHECKPOINT_PATH = "maven/checkpoints.json" # We are testing and storing mined packageURLs in one single repo per ecosystem for now @@ -712,7 +716,9 @@ def _get_packages_from_index_increments(self, last_incremental): def get_packages(self, last_incremental=None): """Yield Package objects from maven index""" if last_incremental: - packages = chain(self._get_packages_from_index_increments(last_incremental=last_incremental)) + packages = chain( + self._get_packages_from_index_increments(last_incremental=last_incremental) + ) else: packages = self._get_packages(content=self.index_location) return packages @@ -733,10 +739,7 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): logger(f"{pipes.MINECODE_PIPELINES_CONFIG_REPO} repo cloned at: {config_repo.working_dir}") # get last_incremental to see if we can start from incrementals - checkpoint = pipes.get_checkpoint_from_file( - cloned_repo=config_repo, - path=MAVEN_CHECKPOINT_PATH - ) + checkpoint = pipes.get_checkpoint_from_file(cloned_repo=config_repo, path=MAVEN_CHECKPOINT_PATH) last_incremental = checkpoint.get("last_incremental") if logger: logger(f"last_incremental: {last_incremental}") @@ -746,8 +749,7 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): prev_purl = None current_purls = [] for i, (current_purl, package) in enumerate( - maven_nexus_collector.get_packages(last_incremental=last_incremental), - start=1 + maven_nexus_collector.get_packages(last_incremental=last_incremental), start=1 ): if not prev_purl: prev_purl = current_purl @@ -785,9 +787,7 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): if logger: logger(f"checkpoint: {checkpoint}") pipes.update_checkpoints_in_github( - checkpoint=checkpoint, - cloned_repo=config_repo, - path=MAVEN_CHECKPOINT_PATH + checkpoint=checkpoint, cloned_repo=config_repo, path=MAVEN_CHECKPOINT_PATH ) repos_to_clean = [data_repo, config_repo] From 113bce5181f53875fa46621186fbe91ef864b5a4 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 14:47:00 -0700 Subject: [PATCH 21/29] Revert change to scio dep version #660 Signed-off-by: Jono Yang --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index a0e15b48..f3fda32b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -62,7 +62,7 @@ install_requires = matchcode-toolkit >= 7.2.2 purl2vcs >= 2.0.0 univers >= 31.0.0 - scancodeio @ git+https://github.com/aboutcode-org/scancode.io@c69e8a0492b4e3abfde2f66dcd3434c883cf2ba2 + scancodeio >= 35.3.0 GitPython >= 3.1.44 samecode >= 0.5.1 # FederatedCode integration From 78045ef0a0b115770ba81e8b98826ff5b5a8c79d Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 14:57:24 -0700 Subject: [PATCH 22/29] Remove unnecessary logger #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index ed431417..f67f3ad6 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -12,7 +12,6 @@ import os import gzip import io -import logging from dateutil import tz from jawa.util.utf import decode_modified_utf8 @@ -32,20 +31,9 @@ from minecode_pipelines import VERSION from minecode_pipelines.pipes import java_stream - -logger = logging.getLogger(__name__) -logger.setLevel(logging.INFO) - TRACE = False TRACE_DEEP = False -if TRACE: - import sys - - logging.basicConfig(stream=sys.stdout) - logger.setLevel(logging.DEBUG) - - MAVEN_BASE_URL = "https://repo1.maven.org/maven2" MAVEN_INDEX_URL = "https://repo1.maven.org/maven2/.index/nexus-maven-repository-index.gz" MAVEN_INDEX_INCREMENT_BASE_URL = ( From 644fbc0deb71adcc1fad57db0ca9016f29c5142f Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 17:36:44 -0700 Subject: [PATCH 23/29] Clean up all downloads in destructor #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 92 +++++++++++++++++++------------ 1 file changed, 58 insertions(+), 34 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index f67f3ad6..c5266c18 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -9,6 +9,7 @@ from collections import namedtuple from itertools import chain +from shutil import rmtree import os import gzip import io @@ -577,58 +578,81 @@ class MavenNexusCollector: WARNING: Processing is rather long: a full index is ~600MB. """ - def __init__(self, index_location=None, index_properties_location=None): - self._set_index_properties(index_properties_location=index_properties_location) + def __init__(self, index_location=None, index_properties_location=None, last_incremental=None): + if index_location and last_incremental: + raise Exception( + "index_location and last_incremental cannot both be set at the same time. " + "MavenNexusCollector() is only able to yield packages from a maven index or " + "packages starting past a particular index increment." + ) + + if index_properties_location: + self.index_properties_download = None + self.index_properties_location = index_properties_location + else: + self.index_properties_download = self._fetch_index_properties() + self.index_properties_location = self.index_properties_download.path + + if self.index_properties_location: + with open(self.index_properties_location) as config_file: + self.index_properties = javaproperties.load(config_file) or {} + else: + self.index_properties = {} + if index_location: + self.index_download = None self.index_location = index_location else: - self.index_location = self._fetch_index() - self.index_location_given = bool(index_location) - self.index_increment_locations = [] + self.index_download = self._fetch_index() + self.index_location = self.index_download.path + + if last_incremental: + self.index_increment_downloads = self._fetch_index_increments(last_incremental=last_incremental) + self.index_increment_locations = [download.path for download in self.index_increment_downloads] + else: + self.index_increment_downloads = [] + self.index_increment_locations = [] def __del__(self): - if self.index_location and not self.index_location_given: - os.remove(self.index_location) - if self.index_increment_locations: - for loc in self.index_increment_locations: - os.remove(loc) + if self.index_properties_download: + rmtree(path=self.index_properties_download.directory) + if self.index_download: + rmtree(path=self.index_download.directory) + if self.index_increment_downloads: + for download in self.index_increment_downloads: + rmtree(path=download.directory) def _fetch_index(self, uri=MAVEN_INDEX_URL): """ - Return a temporary location where the maven index was saved. + Fetch the maven index at `uri` and return a Download with information + about where the maven index was saved. """ index = fetch_http(uri) - return index.path + return index def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): """ - Return a temporary location where the maven index properties file was saved. + Fetch the maven index properties file at `uri` and return a Download + with information about where the maven index properties file was saved. """ index_properties = fetch_http(uri) - return index_properties.path - - def _set_index_properties(self, index_properties_location=None): - if index_properties_location: - content = index_properties_location - else: - content = self._fetch_index_properties() - with open(content) as config_file: - self.index_properties = javaproperties.load(config_file) or {} - if not index_properties_location: - os.remove(content) + return index_properties def _fetch_index_increments(self, last_incremental): """ - Yield maven index increments + Fetch maven index increments, starting past `last_incremental`, and + return a list of Downloads with information about where the maven index + increments were saved. """ + index_increment_downloads = [] for key, increment_index in self.index_properties.items(): if increment_index <= last_incremental: continue if key.startswith("nexus.index.incremental"): index_increment_url = MAVEN_INDEX_INCREMENT_BASE_URL.format(index=increment_index) index_increment = fetch_http(index_increment_url) - self.index_increment_locations.append(index_increment.path) - yield index_increment.path + index_increment_downloads.append(index_increment) + return index_increment_downloads def _get_packages(self, content=None): artifacts = get_artifacts(content, worthyness=is_worthy_artifact) @@ -697,15 +721,15 @@ def _get_packages(self, content=None): ) yield current_purl, package - def _get_packages_from_index_increments(self, last_incremental): - for index_increment in self._fetch_index_increments(last_incremental=last_incremental): - return self._get_packages(content=index_increment) + def _get_packages_from_index_increments(self): + for index_increment in self.index_increment_locations: + yield self._get_packages(content=index_increment) - def get_packages(self, last_incremental=None): - """Yield Package objects from maven index""" - if last_incremental: + def get_packages(self): + """Yield Package objects from maven index or index increments""" + if self.index_increment_locations: packages = chain( - self._get_packages_from_index_increments(last_incremental=last_incremental) + self._get_packages_from_index_increments() ) else: packages = self._get_packages(content=self.index_location) From 77295a3c7a3f7054c09dabb7625fb1d4f62aa852 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Fri, 19 Sep 2025 17:45:32 -0700 Subject: [PATCH 24/29] Update docstrings #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index c5266c18..f831a353 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -607,8 +607,12 @@ def __init__(self, index_location=None, index_properties_location=None, last_inc self.index_location = self.index_download.path if last_incremental: - self.index_increment_downloads = self._fetch_index_increments(last_incremental=last_incremental) - self.index_increment_locations = [download.path for download in self.index_increment_downloads] + self.index_increment_downloads = self._fetch_index_increments( + last_incremental=last_incremental + ) + self.index_increment_locations = [ + download.path for download in self.index_increment_downloads + ] else: self.index_increment_downloads = [] self.index_increment_locations = [] @@ -625,7 +629,7 @@ def __del__(self): def _fetch_index(self, uri=MAVEN_INDEX_URL): """ Fetch the maven index at `uri` and return a Download with information - about where the maven index was saved. + about where it was saved. """ index = fetch_http(uri) return index @@ -633,7 +637,7 @@ def _fetch_index(self, uri=MAVEN_INDEX_URL): def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): """ Fetch the maven index properties file at `uri` and return a Download - with information about where the maven index properties file was saved. + with information about where it was saved. """ index_properties = fetch_http(uri) return index_properties @@ -641,8 +645,7 @@ def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): def _fetch_index_increments(self, last_incremental): """ Fetch maven index increments, starting past `last_incremental`, and - return a list of Downloads with information about where the maven index - increments were saved. + return a list of Downloads with information about where they were saved. """ index_increment_downloads = [] for key, increment_index in self.index_properties.items(): @@ -728,9 +731,7 @@ def _get_packages_from_index_increments(self): def get_packages(self): """Yield Package objects from maven index or index increments""" if self.index_increment_locations: - packages = chain( - self._get_packages_from_index_increments() - ) + packages = chain(self._get_packages_from_index_increments()) else: packages = self._get_packages(content=self.index_location) return packages From bc240f2d0aac06c0e85d167489f633d75f68c030 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 23 Sep 2025 13:07:41 -0700 Subject: [PATCH 25/29] Simplify download tracking #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 38 +++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index f831a353..d306f4bb 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -586,12 +586,13 @@ def __init__(self, index_location=None, index_properties_location=None, last_inc "packages starting past a particular index increment." ) + self.downloads = [] + if index_properties_location: - self.index_properties_download = None self.index_properties_location = index_properties_location else: - self.index_properties_download = self._fetch_index_properties() - self.index_properties_location = self.index_properties_download.path + index_property_download = self._fetch_index_properties() + self.index_properties_location = index_property_download.path if self.index_properties_location: with open(self.index_properties_location) as config_file: @@ -600,38 +601,37 @@ def __init__(self, index_location=None, index_properties_location=None, last_inc self.index_properties = {} if index_location: - self.index_download = None self.index_location = index_location else: - self.index_download = self._fetch_index() - self.index_location = self.index_download.path + index_download = self._fetch_index() + self.index_location = index_download.path if last_incremental: - self.index_increment_downloads = self._fetch_index_increments( + index_increment_downloads = self._fetch_index_increments( last_incremental=last_incremental ) self.index_increment_locations = [ - download.path for download in self.index_increment_downloads + download.path for download in index_increment_downloads ] else: - self.index_increment_downloads = [] self.index_increment_locations = [] def __del__(self): - if self.index_properties_download: - rmtree(path=self.index_properties_download.directory) - if self.index_download: - rmtree(path=self.index_download.directory) - if self.index_increment_downloads: - for download in self.index_increment_downloads: - rmtree(path=download.directory) + if self.downloads: + for download in self.downloads: + rmtree(download.directory) + + def _fetch_http(self, uri): + fetched = fetch_http(uri) + self.downloads.append(fetched) + return fetched def _fetch_index(self, uri=MAVEN_INDEX_URL): """ Fetch the maven index at `uri` and return a Download with information about where it was saved. """ - index = fetch_http(uri) + index = self._fetch_http(uri) return index def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): @@ -639,7 +639,7 @@ def _fetch_index_properties(self, uri=MAVEN_INDEX_PROPERTIES_URL): Fetch the maven index properties file at `uri` and return a Download with information about where it was saved. """ - index_properties = fetch_http(uri) + index_properties = self._fetch_http(uri) return index_properties def _fetch_index_increments(self, last_incremental): @@ -653,7 +653,7 @@ def _fetch_index_increments(self, last_incremental): continue if key.startswith("nexus.index.incremental"): index_increment_url = MAVEN_INDEX_INCREMENT_BASE_URL.format(index=increment_index) - index_increment = fetch_http(index_increment_url) + index_increment = self._fetch_http(index_increment_url) index_increment_downloads.append(index_increment) return index_increment_downloads From fabe27640f04d9e07fc18d45034940eecb2fa312 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 23 Sep 2025 16:44:56 -0700 Subject: [PATCH 26/29] Update MinePypi pipeline name Signed-off-by: Jono Yang --- minecode_pipelines/pipelines/mine_pypi.py | 2 +- pyproject-minecode_pipeline.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/minecode_pipelines/pipelines/mine_pypi.py b/minecode_pipelines/pipelines/mine_pypi.py index 17368fbc..3ea84a4e 100644 --- a/minecode_pipelines/pipelines/mine_pypi.py +++ b/minecode_pipelines/pipelines/mine_pypi.py @@ -27,7 +27,7 @@ from minecode_pipelines import pipes -class MineandPublishPypiPURLs(Pipeline): +class MinePypi(Pipeline): """ Mine all packageURLs from a pypi index and publish them to a FederatedCode repo. diff --git a/pyproject-minecode_pipeline.toml b/pyproject-minecode_pipeline.toml index cfb5d48e..abcd37ee 100644 --- a/pyproject-minecode_pipeline.toml +++ b/pyproject-minecode_pipeline.toml @@ -45,7 +45,7 @@ dependencies = [ urls = { Homepage = "https://github.com/aboutcode-org/purldb" } [project.entry-points."scancodeio_pipelines"] -mine_pypi = "minecode_pipelines.pipelines.mine_pypi:MineandPublishPypiPURLs" +mine_pypi = "minecode_pipelines.pipelines.mine_pypi:MinePypi" mine_maven = "minecode_pipeline.pipelines.mine_maven:MineMaven" [tool.bumpversion] From 0b3622076f2d2b34028bbbc337a91db789f6ed91 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 23 Sep 2025 16:47:37 -0700 Subject: [PATCH 27/29] Update pipeline #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipelines/mine_maven.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/minecode_pipelines/pipelines/mine_maven.py b/minecode_pipelines/pipelines/mine_maven.py index 30a2f29f..4901dd4f 100644 --- a/minecode_pipelines/pipelines/mine_maven.py +++ b/minecode_pipelines/pipelines/mine_maven.py @@ -20,13 +20,14 @@ # ScanCode.io is a free software code scanning tool from nexB Inc. and others. # Visit https://github.com/aboutcode-org/scancode.io for support and download. +from scanpipe.pipelines import Pipeline +from scanpipe.pipes import federatedcode from minecode_pipelines import pipes from minecode_pipelines.pipes import maven -from scanpipe.pipelines.publish_to_federatedcode import PublishToFederatedCode -class MineMaven(PublishToFederatedCode): +class MineMaven(Pipeline): """ Create DiscoveredPackages for packages found on maven: - input: url of maven repo @@ -46,6 +47,13 @@ def steps(cls): cls.delete_cloned_repos, ) + def check_federatedcode_eligibility(self): + """ + Check if the project fulfills the following criteria for + pushing the project result to FederatedCode. + """ + federatedcode.check_federatedcode_configured_and_available(logger=self.log) + def collect_packages_from_maven(self): self.repos = maven.collect_packages_from_maven(self.project, self.log) From 16adc5c869ddb83d87041eefe6b7018712d5d31b Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 23 Sep 2025 16:57:58 -0700 Subject: [PATCH 28/29] Update expected test result Signed-off-by: Jono Yang --- minecode/tests/collectors/test_github.py | 1 + 1 file changed, 1 insertion(+) diff --git a/minecode/tests/collectors/test_github.py b/minecode/tests/collectors/test_github.py index dbb345fc..05dd9f80 100644 --- a/minecode/tests/collectors/test_github.py +++ b/minecode/tests/collectors/test_github.py @@ -34,6 +34,7 @@ def test_github_get_all_versions(self): "pre-scan-queue-update", "matchcode-toolkit-v3.0.0", "matchcode-toolkit-v1.1.1", + "minecode-pipelines/v0.0.1b3", ] for item in versions: self.assertIn(item, expected) From ac3032ad4965371c2ed0d3418178b66f3b3cee33 Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Tue, 23 Sep 2025 17:18:08 -0700 Subject: [PATCH 29/29] Update package batch size #660 Signed-off-by: Jono Yang --- minecode_pipelines/pipes/maven.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/minecode_pipelines/pipes/maven.py b/minecode_pipelines/pipes/maven.py index d306f4bb..d0c6be3e 100644 --- a/minecode_pipelines/pipes/maven.py +++ b/minecode_pipelines/pipes/maven.py @@ -48,6 +48,8 @@ # We are testing and storing mined packageURLs in one single repo per ecosystem for now MINECODE_DATA_MAVEN_REPO = "https://github.com/aboutcode-data/minecode-data-maven-test" +PACKAGE_BATCH_SIZE = 500 + def is_worthy_artifact(artifact): """ @@ -737,7 +739,7 @@ def get_packages(self): return packages -def collect_packages_from_maven(commits_per_push=10, logger=None): +def collect_packages_from_maven(commits_per_push=PACKAGE_BATCH_SIZE, logger=None): # Clone data and config repo data_repo = federatedcode.clone_repository( repo_url=MINECODE_DATA_MAVEN_REPO, @@ -794,6 +796,8 @@ def collect_packages_from_maven(commits_per_push=10, logger=None): prev_purl = current_purl current_purls.append(package.to_string()) + federatedcode.push_changes(repo=data_repo) + # update last_incremental so we can pick up from the proper place next time last_incremental = maven_nexus_collector.index_properties.get("nexus.index.last-incremental") checkpoint = {"last_incremental": last_incremental}

4A)7-g`3;c3a5kXEaJXIwXgn-6z(Y`P}siQwe!LnQt1Sfp>7*0-9Txsm_EJCr~}HfkC(2TF*9!&!S1gn@iKGj~D%$Q_*iDMRVlM ziz$g3+d_!2TS_MnanTWQNU>5X?W)fdvu$Ahaic{f_~xDOUVO~Fs^ka-wmOrf2bNQa zSY^yQ)22I9WYIn_Ybu9*V&()2R>em(X3!A@!;%;08*>bfX@JSW3s-8Pf-3-XTLaK| zVbVzeoM1Ce&v0YwGfyd}>u1l7Wcdu2(9fp3@2mJd{#h!2f4BSm9Te^V)|=6;Z<&_F z?7Nuvjw2-oa80`?Qpf^cKNz8^p*?b0N}dffEKD}P&-1Z!!d4`V%jWbTF%02_Za1dU zoll?+$^>arNYr~6ld~o3s%Y*W0_4a8!J3rTN72j)ToFLpFy1JB5yOl}&aHQL>3-uJ z5`ktk)Jh;E&XKNOX;P%`yQR1mt7C4j?CN5 zpN$j7P)(Z?P&y+yCt>PLwI0OHW07;q@k z+YH^!fY7FP8$_MNL*O9IdJFc9m=%cwF|Em5c+OB?C3FMMZKQ_kW-Ou{YZW!8sa&L@ z)}f$yjuFVhAzp}+DHSW?wQTulHcd0u>5If*W!Yk5$5A5il3E0Y=p`V$&L&n}N+O^t zKp&h%5rmz}wjxIKJVpip=wXK1O=`VcfQfBULH&O#7hgC-4fY>@$pK|4a!d|BU988rw0f;9)?vw7~ z>J&aNx7SxMyO8$F--N5nOv|O7^sD|3lY7NX)&L%aRr9+NDk|uUr?}K}1o$uSKVzV3 z_Vv9T2#`0xRuQGl2qPjlG+roiM08wc=o2EY*azab$K`_5af<_P_C z3bPFf;dL^ZM;fF^*#c38^d<(H{{+LwLGt+&E=pxbVIzno3WuU9$HhGTb25#pv@3*ZI|#hd(~KeQ|U7{L?4# z`ugrkw_UQ_(E2sku#056)&A!AaF8@9PV{b9&b{u%2YA?r-NP=PTzt|!?&2qST)#SY zUvBZu#<#lJB8T7KThK&HyLe8q7*;Eyvm6NNdqV)jdR3sXViMiIe?A*l1e<1A&9l+q zhwCgW?VFk%`XlfIAy17)vX~8kWiln=&F}~K{RqVAg3w-;$!*|k@MA>{v^lId8_)Oe z8lt*Uv5kt!M_>qIblT%!X{JXBFxTN%N|JyT`dUgYHO)hxFkxc=~|S7waM~+ZU z7OtT8#*7OLZHq7As@{~_bp2$+ppbLFW_pP$2(NeYAD+F~8@oQXmW(4v+%W~;ADHr& z?+lL`+dVw$$v)P8YxIqgfLuPm*!}80R886jx~DT%R%+a>Fl-h$$X8x+NybD(+jcA! z-+ES_-UV3C&%@K3l3)Jz%kJM#?mm0@{PQo_Q$MFv31Rn|e(~b^*??}i>u0`k$>*2K z|9teZ16_apF?|Uia6^k%@2)S1*FO%=^Ud|;zGa4bUJ+?m=c+2wWT0OyN~lStVCeG1 zq#~gLBa+@eO470wBii<%-Uyq5wq5U9BR_H`ZSY4?b70ZzX^<>TSPH(-D32tmvp>@o zDJT3%v@KgJqHSO9@Qpcbq7f*aeQc3-HgV6ha?zKpt-z7h!l(m)R|sP)Ntp4q#aj!c z-TYQ8%AwoGeiJzydg2kp%*z({A9@NoDb*sgDFKnCvMDf0rY`78)9b1W0qC;mN!sLx zN61-~LATFlO=PgAOR7eEbRJ!W77S|_OVo&xJTFptrm_mf0z7-}D^32G%=I}&*Q)%v z{i3#S%;{>$-+5#?n)ZwEJk(6JaE50KScF(81{V<+DVb}KbqokD7Rg!`z5~{u2;Xp7 zZ0ExFzwbWt6k_15LgF!1SiU6T;*+R=tZ*tq_$ZXuMZ|2!_h&y?CuUXjJfBB&d#Z%8 zb2xJrRiXI6V=XiY$urJ84Ht@5G3}sW(&C_8(k5=FYE|$KQ^CK{psFEw=N*;Ll6LGO z#85aJNS&ybTyL^e%2%X7KxWHW?!LW5RC#d~UMsd1 z!p4$oRxu-P6eR+5Od6mzP`4(F1O!{M*i+Y%#j}YM#yKsEA=hOk~AnAkUFunrH3!fO5%=@ZRWimtoXdkmMlbOv6gbknk z-sr$DJk2r}rqFo9$VG#tdqPb$A<+I zQ#tO3VT%1W*n=GZ@#KR~A&bYHlqdjY+6kH;FEcZNIi0qNQF=@<+{fbFU?@F5Bw(FFh*t-AF(z-B2)6Vi$Ft;(m6O;@iL3#Dt!L5-xYg_W2%?WKP@+uS-;Dd z;p+O+FZq1wwnX?#lLL0C{ex^Wvs)OX_hbJL!uj=|9zOlO?$ZYfKlqB?#0{$n z*p;*B5bq|ZYNi1TT2?>b}%jhwe*v*Vk9Ha^Z`c%e%YsoU+4|Hr^+Cg3{5t#9b~*TI*?y zphajy>s`F0wa_-p$$kHflxHul(jqD9&<6dx%OUp-H`$jyTiSLicKHx|e;3&7sQK`t zpTD~+#2A0=aHGkn6^qv>tx1|Ea=8=)kYdvY&j=LhCYx=)z4-czYD;wJ{S@tkU=kgo zZ&cNd`No^6unOUG(ZOnHRV>t-Rddx;lc(?y3*heqS9TK>i|W-;(O5OJr$SM-Wv*Y_ z$*72x@ekfOIa&-)lTUOlh|MxEJsnYi57KM06kg;Pi?U?={L+~7VGocNGzw{!-Ppb8 zJ0HFG(fyaFuk9s?C1EM&&Y=%oRSh)3Ti}A|6hbT~RRvva?F{xWzbZ*qtWY80rdK5C z7!}e>4KU_t9c9XiQ^5`n)gc~swA4gVT?pc?O;oH(lGSZ0`Z^Z;Od}Vwl?o19Y7oH( zPy1=<*0ut2Mh;PxbX!j|^NsK76#nTz#ovI6yPNR5d|6-Ky}T*i{Ty(ZXn+(2lcW6o ziA~NsHZ%hmMWc;oH&vrg-h-=vfZPQj1q6?Qc};WgLylb0PB}#&!^dLd=uN-7@}?_t z1Da=3_xe{Jimat>)WVw(%$}2*GSDuZ~ z>tA_S9qAi`3R>@6r~%PbuOP@ic^Z{Y6XbwW0`2CC+(x>88Nc&4@4s^_&(mi#18Z3- z=(el*zI}^`v~ZB~61)4KzqcsW1$fY!5aat4c%>^l9}y1IELcmEQ;LZ~j9&Uj$6k6( zK;SIQJ!Cm~`^FNS#dpUC7ABx+8CcItnvKjst6KAJZwvxdnqE_=DYry~KLE7=wys!>zmJUIpWl1=6&ca|{_W044dFuP z*zAApKXb5n;y+z}`q`5gva$c~Z|tYCyg3CB2O0OR)d*a?>qJyzPn=<(x$5*rD5T zbQqGh({vLe9dG#A_qvbnD*bN43nAq%W>-KBp>$7dO|R-h^k*0>SI6 zt5+9aT;6?lF?>q81{W@$mz%zQfUqn54y`Z)fUP&-_U`6oBCh?>#qdA+?4G=?E@WIA zv&Zf5Ab@cQ{S4zJKrAY)2NwzFN8_d#qnS*Jk8#$Ij`43Wg_I^O8qdm|Vbf@e_~ zxCG@Kjgj;Salu+yGL5~BQqfiDq|NSaF!H~LtMD|3yYOjw{w4k8$?%saFTxEB$d{sR zy{J@t--GtnKC%>u>W3}Jsu5a#?Z4m&7w`2?7&!TpuEYv#q$nC+E;kfM!+_@NXBYG` z^z|ANwf)d{KJLELF@n|sf_H~Z42>8nx_A|6Vv03cC0l6Mrb#MF1fMBa6A0}6lTAGM z^~>j%cY1{fs?|jU9`vKO0ij2A^m~yP#Z(wx<9sbD1sxC~ixfGpT2wBK1t>-+J$g&M z{VkV`2)%A=MAGiaDB(Qv>wD~hpw1U9v#&CwlIX6lL}n}^Nuy0w$-td=7tUwA?y|1p zbv17c3Oq;{SFQKW(xu`=bQQSNS<(oeO$th97qru~^DMY*l`vCPhaDWSH+`71{m zVDZ7-h~K81T7-+{DufcX6(JWyfHHJqY zQkSHuBKj_*q^gGky$e<+Z_4QPo^E)(wSxz|Y_u`%M3r{DG}wrM15AP%WzOMXN-g~` z8c?NS6bu4E@Y(qj-*fG_1+$H&tNnX+(;6Bg3dhFne%jPFkfW)Zd+ zM#Q^B%gk!DQdL^{EVC-98)y>CWUlij!WU(!<3J;ILmcQWv@wm!^v7aADsc14Ra%5q zi&K&kpczi8C`Hp0Ah#krnNDWFqL6kBaPu2+Vu0_{>wF$-J{J9%b`J$>DV}|1qo9k1!pU4#1nSXHvego8LS>dKq_bwW%bp$4A2{WWyN`mNa|z; ztVzCw+igkyaEtK=F8LP?`qz!U<)Sf|!rGx`UsCPOS0?gIb>p%<5F|`{NWea@ciBoE9&UK@g8>GJ(R{jX(t3u9g1J+w>-w5-*Aml4{9lUK|u3c{_ z*Z!+SG>j$6r5OgQq=pqsS!Ws^pSX=csm8*%8I_M8^(KQZd}C%1NdG+u`56ZN2<59n zF87x0VnX>FA>==v6aEAt##On!-G<_=cCCYV{WNdQTAgNJpFQhg`A~9U&e$A7;MvLq zIKz1sEFmmRDTqXK6Q=u1-AQ~{)da)mWktl0{$?M>U|u)#$o!~@27AE77hO{HRMRJu zsMWYY+o7N$)l(||Y<{fjhmkG)aQ$?drhYs&KORj_)_j8%jl6+{UF`J4P#5x7t|#2u zY<)GEiy&;KrA#q-tF)()a!N*cYH94ra7=yIl*fxX8|Dh6 z11_X^=_1wLvB?nH)A+HfC)Tz3u^bWn0qV*3SNL(nk+|0WS3JCL0HY4XuUtW>o-m6T zd{==fS&`W?>t(7sT9Y`JTuC#T-om#rU{y0bn>Y9oC)AtdK{hgCRVBP^xl-G85B!g! z5-UE#0lqeU#xRJJw{~(oG6R$fIt1r@EWR^}mix$@fML{C2$8DOrPRD#61F%C$J)-q zm^aB;Y-GfmN;uY-%SDW^Z<0#1(A3rSr=MOv|8!f_0d(Ke498VJ#mO`p8oxe!)&rxd zD1!8wnyYM0R%!v07@;3jsilJQ+T~=$v8ZF25334dSu^V3{k#{`+VS$p{0N>h`N0EW z3iu70{Zq6r9>H0*8FEbZjgFVI`LU`ew$Zn==f^QUc@%y;nx3qA5Z5S{r{o0hM|*lc zAA#`Ld;oS*mRngoOM=mj12YMsMy+1+k`(PEDMg;HCz~9JlZ|_OpltVh(-TO8Dv_rW zspTLRLEU^=N8xIUE*k;dC8m>0PUFX_p18(%z&$_S6g_D{tQ|j&I1=AX&by&10>MXP z2HYbvfEOjb_l7F~o9GkuusR-cl);+dsY9heb;b;6A&UkBRyD)h#xj&n4tmX)Ps4m{ zM(CQrh-%ZZKd?B|PU%u-!KZ{a#ce*Q7nC zF{YL?>uQ9D;8{f>eU9**C0knGaV!vTFk($5Ja67s4~%$IRHB8ZO06Z`ZM*A`Oz&&I z#`k-)eULOm!*Hwy30}bu+6tw*;S7mZgR)opUvle_ zQe4ZE1!IFNkqCENafj_X-F`ocf;huQD;#Zol!2x!>u!#nv)Mr~xTzvg>A>0iSXC6; zn1w_9*p$cmLs66#$lCGah$}g)aGkgk(Jv73N;MXGKQ;%Hu&ShLOelu-CukpX$s%jR z9gT3M>7X>JuRdf=C=C6ViQXGpx8yr~E3C?)aT?|DNZ-~3t z$cQza;7m2I0Q*HtZ;DPdD#a(;N)}au|Nrd0dv|2XaVN(0QY)|IwS11OU9ZBg`SA4toGqe6x%gc%e z#--GPs?CNH2&%zDLaSJ<1*?LC?k!Y@9Q;>h3>3W9qLwJLuSMhRrK`;~#}C`I5z!Is zAsl%^(GkO29d0LlyRvvo#<3JHoah;c6WcdO$ad%D z+P5o&=3$ze7x#ISkWXsuJh@g=1g4V6Ibkg(3w@$Otcn`0v$2Au@l_cIXAvRF1k7lP za!9dql{Skapcm3s?NGdy*SOv_ppZGCmgWxkS7#T5W4cMLiolEI=;sBX7|r!l|o%{Y6z zvS?9Mjku_&67V6AV=Tc5DuuKhwnB3+y0?#%#iDJf&aOR{#o=bCw=0XcWE%^SLTcT6 z;R@e0l$|tndT8IW3=khkh$LiaUb*6>gho(qO-72Kt;LqDs3+>fs(_(gcW%YF%l#{` zjcB=XQAY*rp0Xtwi}pN%yqU^FyAxcP6MJh`Pm#rbVALyGC6jljg(F~mJ_Q-}+HKnhI8K^@-c=qz@^8D8;a|v&{ z10S|KQ?!~#hCk~5x-YqZ!Fi>P6$L_ z81F(ZZ`FL3Ldty?)E=@jxjQXs`cg zy`HRzGD=X-uejX~)33&UWOkCTy;DQ}r67UEn`#hfvN5K4V|+0>?(H}@T`o)ZqlD^3 zUuO>Eudk{7e0W4I%W+4M?B00VK@K|TdCU2`kVDF*1j9ocjD>5>0;ZFy4?tv&hbsd< z=a}|h^O^N>STq>Y-Ny*_8y9d+5XhpXknKKkG~c*Lv%*pqLJYSl^*qM5H-INYe-)O3 z@S>wELDwvx4zUPHK_Z6@HVLT{{U0QB!AfXWnXp;IEut0$!k!J7qEEmb!*fTZ)vEq z`WCCEXXLJY$PuyQ2ac&H79wXJ2XW| z`vjRR8jbD(v0)6*0i$^bdh+&6W+}oz_T9Gq(PVVz`QN)R8C^VleYDMLEsc!2Am9Xi zIVPS}n9Qd;Gtu%@L92 z7w?sOl~z?h9>`$PNUZM*!+x{k%4%UOTE~H*Ugq%Qr*EcpEJYF*`bgB>?FIS@ti#md z85{$wWW4fOP_S7_Bv7$RU#RlhOCL^Ah*crPcV|oUYT<8G2w5$RMeFeW6&m^*7CZjr z{IXr0y?FhqUc7mAUh1<~F@GAL@47hsnVcDhGZggh+4T2*wOhp)Oc5EQxCk`pz^Je~4+wt|g=y3PEU-RO+( zO!%>5PqsAkPQ;bG@F0}r0KRIgR%x$IljKT_x@ieNo^3HU?RCqn;pL!e4!rE9J?!%` zUJLuqe(06w5~Ykp2{N&~61X)SbR{5&SWAhLOwcK{v{JojLA~6rxn)niwhht*5vuuf zyOnH6xJ`=O*$qdDz-f87mXEDAegzIEQbdT=wUtLgYt+kA??{XYPgF1GrG-s5FM?|- zMoJ`d)IO2n9_|2(kJ1TwA}@>T<+bSY;-0ErGH6?~&(b!piDYZuo9skVzVNP|pmMFM zu2e5^P`xCqnmX#G$5#l-x!}e89l~1m61faL7*?4YYf_1u>x(N=+fv{SYzv_XT6rYm zxO(xT5$YU?9(%!_;=Lr#9dJqjYe1C0;FEA95^*FnnJTXUPg%kVrz(P9>%GKr_2RL{ zvd4=EPgJjBvh^WH0H$Jm%9Juv?wXRwmK!Btqk^6BgqJ^i$jkZVZM|+W9|@0AxLvmW z-KmX?x5_Y0IUgtgFZefneD@2sjO>5$zBFr#OWG)^$XJGjtwk9GnpAqHQJL5xA*49GyW5=h3KY&=srhX6cdTGFe}XGPcqPwHVlKJsL~43*PS z^A=F!im&)Gf@mY-5MqEkbyFp3NyXCXEG?-Vk$JdxbaG7ijY^rPFr{otD#xPv?usN2 z854#tI;kZUi-i++0c@^TxrH!FUiMT@jT-{2VQ2jWm4h%`&W0}<0tpbE6lk|u2jFN5 zylh?o^5oU$vnG^I9w<&#PMI&o%LNfMbj?M}^&E>ZVF?_AyWWk_DD>H zz(g-6*iK<_1o$}DxBrqqoS274zLPcc*nD^c-GoY7w7@Mz$eokS%}(Lk zkB(8lq+rteZp;Z|Baz{$e6!Oy%0&qjWr~QAvE%@V(@gPF^F*~8Oie;on{u_MaIvIQ z5|+@-|HpjU8RS*-`Lsvbr~$}3!YZOv34l!$?nr~v%&IvXOKq7Na^^Lvv=A$mP+j~# zQm=$Wh@RKIk5X@|Q8_1XlqxpHpi4w<4}7U}E<$>^vm&Y~YYt&ecvSPXrXw5SDXNrP z_TEY#dF4((K50dSMSGp#c6l4S1WZ;Yox;VEDk<8{wcS6AF`o?Nl~Sj(flRm+$$M2B zDeq&{F%<+22Uc9jSyiN#F|P7T3o%gLk9pXmUTsy05Ygvd_(!P^DVK;09$+y^WLV%p zL-NHD&x~i^iU`uwDtlfN_K@>FoCrCx@g!B!MHT{%cd0c6To02r8VQ)@;$-p#VZ6!~ z<0)J$s*>Mf;Qhn6D^2L$CeWj7$S|xyPy+r{d!JM=Hjw68k#o7~j zSyC*d+O~TzW5GxYFWlTmtzyO@dk3a%G_OlSiY1K_>y&FD=xGV-b&!c zd0Fw($ZH{ZxGig20C<(i29qnTku#huiqm*mR4(s(%4NoBynyc(5$kcx0LB{aW#*s_ z-(i!0z2uZlv<)O%4K+S}`>e`A(uht#NnqX*XXDNHZa2%KY6y=JNOa3+rAkeIk7$Mu_0+E7}Y03GA5Qyvg zG+vgJ3qi4WQK#<=#qed}HH?9 zdU0{An(C~6IGT4bkg)|)IbKOIuhvgK|E?-L`OY+fkNe+b+d~V_~d`#Pjooj7=7(mINeIYMp{D zghm&-bznVi7|~t@*SXAIc_tYW7tu1&ULx_d$fqn@lG9mndLv**d($Zw&SXt&^!F2G z_A0^7Jz2plm#hI*ych<|MvcJeNf)2_mdm7;c{)m1sbFh@BYsm4MQS(J7=wq4dn`A| zsk|w{>I_)Sg%S$Y^WaFBe9102cm}{SyH39rqNBf`__kMp8=2r@rhc@3WmBBB+$LU1 zv4z;=spzU}G7Z1LCAhR258;&qOf2e`+wIrbEBl70JFu)Xln6V z$m~t3Ehg)Vh||^rwU+uN^$OPY+1NgZah%^cNq~tfUYeyB=R0v zD!38$F>EX;R&b)5p^R*B302H-*8(37DPl@eYrgaaMug(3rmKxMY3Qo}IE_X*e~L0K zgv0>+(+eWwLi7-vnHM4!s7JH_p$UYhp<1F!#D4_R2BSq%8p&tUh#aS!!irdk_`Peq z*=IvMN||f}+>kgzWko|wcbX>5^pAW3>yo|1U9Y212M>mJhDNLQl=t;%Q88{1K32S0;>`p&elnS zVI$pgIR$x=O{@rcU?X&uX=DS3BF#yjNh2a_?h5omnJ9zjxrw0!EsTJ3BI|t--cE}Q zKRCb#NWNK)ay(|c->Es4;>5hM=G*+KTgr!j-&uhuS!)}Wjy$J@jYyFcmElHGxsvcDH6pu%9KBxCjwK)DfbYqoFHT!zNIH2yJphfyBZf;bg@DgRiY`2YgCz|j ztGngUadaywn1Y^Tz=K?CXX_kN?x3UQou|;Gy<4)i94sjiG`&}0Gus8}+|f3_ZaTjSfskq`5 z&tC#+O%YJL1!SmU58@rupM_v1ZRnY=CUd&}NFZw+kwH@gK9@d*$gPN^Y%{j<{Vx9O zPSKw=aZEa?x*X8S`s1MaHmC|X5s-C8?nZ1ORWCWG=J)a*DK(i#aImO9u8)Vti!!hI zI`af0kP`WUHXim|5Q>8@!P|&rr@)iNh{RK<><$$&?>NY}7e`{3y07%_U5SmwSkj(4 zeWCv}Uz~5L=6~GrRm0yZ9>8fyG(=oyD>AbX;@;irv*ScBsf`M=QF|lx zgV4FNY$oypw3h*_=~7f;4!Fnyq$9W;|eMw=|z0=>9{I-nbgqdHl z9H2hRQkAhFQrGIN$wIgW_n8eDRf+e{P{{4jb?^h~7b2CGvfC=8M!e|>$?IBmi9iYt z4!$`u#b==!aHq<^KS`Sqic=op*12^eUlXOYoV~6cueHL->LQ>LAhBkPPgU^f${`UG zvZZ2cF1aMt{J|Tb1GF!x3nHTLN`9Q?BLEcV5cvT0*5cPwXo#yRQ41j6aSa=Pv`GNv z!|@}J%j?u-Auwr6U8g8Ub#Yev`S7koM2jMz(ux74j7j)dy+)qvgR7SNe3Pmn`a>60 z2Z&x&7potRg&C`gC##Ee4Y5e3+V~MMU(E}?Mz6}@!=$UcYS-`Y09rx&qPp0A_l&qx z7ZFyg3*5GJ(N4>5KdP_Ka;cwP*ZP}!_C-7|S1;d; z{}}xvow+md?34KuSA=FkyH!2+duqsqaTNg|8L<3JYyR2z>09!*f7+p%R+HtnG0}Jy zuJSzS07xE2>M|u4hgQct#guwA2M1MXV8uOj@*^wb#fOFc&TF}gtOOf48=>l3;4tgG zZ-`rtiuYNml6mg0+)HiOvvN?Qm=!4=UfYhW3`hZ4k?tX!WnKU;T!H_`F|^Wbu2yj) zwU>#ki4OP&;Y^>PShTEIde#}oENpi`k>z26^M2h$7BmuanWJxt8?x|+?2K?cT{c+m zspgjzBJK5=961hJsae|27bb(3ar)n5G)us%hJs{8*6I=2jD~}?+&v1QiKymyzbRnS zqgYwgEWKOmxpypTJ3Ct=r9DxzsAiEIKFC@?IaM?ew5|sK7ZnUgG8jb?zqc)+)U#JF z&M(eiz4|oX{^smu{H$J{y}Ee){QUCf&27E8efBC|-_+}8kku9^`(dkU5T>U@%62E5iv*Filem4Brrd?fcKH<;Va{BilU0hs!ezRd>&M%*D z{_a0rp5Hzj9&vB}*H8Xo)6OsI&E|Q%tk?0jmQDI%6R*?x?RC8VVxz7L|KRNxo7=0a zi~DrLI4CW`QWJoQ8V)2XQeIYDOez`pH}dL{X}a<6A0w{A3e9rsjLF@Ji$X^QzAABX z6S4sE0Mdg|IDXBLf%{@@C1{s2vEl)|K2=?kKpc<9z?~om_xm#&?dwD{_vlj`I|J!+ixmW#ms;l3+w5Rf^4|WZ|4L@09=o zOE8Hrp;4@&@vzP_v2wn2iC>M3-NBk@qV&7gM&3mqc_kA3SpgJKyzWAjR-#X(Wn+?& zc6jrCN9hj_Qwp3{FK?FwN^(9{f}|fiQFsByy&KzM^^myS<)z~mUIg~!T|qRLGKryg z7+4NDMxBtT){?j=PtxM}A&e)W!W;vlUWtIqWJ?MeiIK_i zF|-~wV5Zg1xA!uwVq5YuG$+OJUb_tLW=1&6@Utvk{)%nuF zOZV_@X+j|JNR0W(~n>}vMVbfk1_ zSCv+FL}@tf^7tmE71#i($yK@*km9&Pfl?GM4>R#kqjd4m)vSIp8q?hf+Atlhxl>V` zt5&ttq;-Y?X&&dSZ;pVybr&{eKf?hyAKxKcjAo~$b8{hEn;^p?5x1l#Faf-R zjNU0l$UXq95V%|}=80r4+MrbrCm{@EyRrXRd)x6AS!ilLS7VB>q6(!{5+|GB5g+VS2jz`R83)fcT`ROxWT(8!WJolXffYn(0h;Uu+)O2Ds2RoOvXkv^ ztvhyhz66HVdHVp(s*YmB=GgWMY>T(VQx!280e*8jt7U9Un3vYXR=%OJOH$h-Io2?i5NF6(a1~0QX6jTau-j z_IK=(c;!tNE>Mm%baE8F$AEX%4S3u@FQjjE5A2*o@}fF~Fkf=VIy|CYR^>UtK|l`x zCQB2tnT#lnoJUAxI>;9Tg=R~{pXDh|0{=a~J%?ZqYlIi!VMp17R!P#CxjrOa`Qa={ zi=g3ilhGlW<%ccEv~gZ7LP=~Xr`X#=T9|; zz?k@%OgynRDid8SfNf79dPyrhb&GEJ>Y&IxWUiwYfco%iHo6p?u^iSa8?Tv7@k#9oveTcSDQcF=qEHu$C^#Hjc!L(RNS(aPX$D*UE} z=g`tnHoK!VoJQ%QN+{7KdCcCllheNXd*Slzw^l(_@=Z7ul?LW?H56(=wGbKrUwi_| ziwbeS8uf!cEa6Afv%z)LxWT=YELGrl7`FNx6>vNiAWrQnPh|%Dgrob`WQNsIn&WL; zQiuDcotsxzFYh&X+xx3LP&|i?S3^m47-0YX|MS)L)vs#4J&V`3=Pl;jkIVnHEfdwB z#cTZ9&GtJsw=d%D=Ec=Tx!JtDDz7i<-QU~{6{g!4_(HwDIlsBBm$~xnNM>NeRBz&C z8NTVBo8gb=w`aRBTWT%|rq5NQ%H^bDLJc)NDmR>8_*!Yb*a875(Fp+2;%^(rr@<- z_F99cyzUi~!dUfyA%#xh^u@wGu~Qd0ncTR;uM{H#axv+Ey;~8EfY>S##w`soa*mG<8x! zSp&%8ZW{Q1npMN5qOXnSgeb`kvx}q_e=DS4QNuO-wQhnwLcNYE!p@$$t7rkbg#;Pn( zYnom__ucssEEH(hN;SbkcaD;~XHLUHfB)rSp&jDkieuszN!67IJJsMFz_1pEJWlf@ z2%|DhFM0YNZw1T=(si|JyKq5^>0sksDwZ_>YeuLH06TIZh0DGpt4El^Zl$IR}uoB;wYa!2X8&##y-a6s|mz1$grSV@n=yzZxn-_ssodP~v^ly{Zu_yYSpjkZ8Jjh<?-V&L@(&aM~c#&r8a}^5{7BC?SN-VP};aa2C>5 z&x03Z2yo!YV{721SR8kZDp@x*@ejImjup;BC(SpBbJ`%n?V3=fX@1l-5wDj^wMO5x ziawLz^>e}}NzwAGCdc!2Cba$N7;Q`EEOjSo;f)E~d$GN#w>uXUN^2E52_cbdKwDhL z3KSW!^BsOdMnmLIA#&-IrS^00!;&;($9Cvm9Pl*_UolIkO^m!PHdW*R+4GHPY^s`Q zQe3<^0Fi_2p51(bnDKJO-JMry=l%tN{w4-BsLma9)Wq8SYsf8~eXcqHGHaw%q40Z-1PgPf3I(|1ZDSjx+0A+g-Q*|1C#OmXbroQDV0!d#Th)2 z>?I2XbnV1{kUdtqwe9sxl!QdbOPfo{p6^GBs8)F|_;LxJ+coP<)cRx#T)evD2`zmQ z4-uBPGaQumQB6n((g)OB-Hb9eseocc;_^4}Jytz9@>XKUUTBi=pZhVM{EUu## zjdV?1#Z1|mL^B&S3OV?hx@AN(6+{S=y)bOP|S)20HCF&60*{C4NIk)$g;Ry~OX ze3-e0z_XmaPDn*bQLM<__0%i(Fv1?u%S9xwNq4&1;gLs_Er7_n6?uSO8%%`VDIdu> zWWqJ^Jx3#}s&aux5lvzC><(;+&_!(^_wdQds10LLPDp2Z7rD0R0e`_9Z8C+|7_`aV~i=NXcsRUmndG;1t~g(I_QGk-rA{-0t@cpPDQ7jDHrdO=Sc$ydhl#8L*tv0 z@OF#E<%a|xuQS1$(j3|{t%EP)p&Xs0E171jZj#?}6kbM$bW5~|3?3;0KQXMCXCIwn zYbR8kKy$CZ&W?53H_+uy`lTb}==niDkL34&LtGNgDY+yJGNO=_7tZLX(7dP=>0(%Sr~0Ak&O-cKx+X=%PND&i*x~cziUCu+f1LMT^8Q zyrB;8ZP4QE6^~UD9E1@~U~pL*@py_CwZZh7f1nNHP71l#X1-Hl&kwj{CY(GelWI{V zlXnitElOmWIzk)v2HhNu7Rxm%$W|Dl51r z13rgAl;j7>R&gIxk-8ykFjl5vXW=Qn^LWL|YbSfBxP`CWU);Hn!O6p~i;`VwfGZyH zjqilD&8vO;7swgV*m zo!>doQoSQOy}m3L^=3`dtNm_{+``nV$N&{w^y4xDmPmyhrj-q{69`VYWEHzwJIt?G~x&X zsmM(kB>{_C=8HD&VSp14LtFfvT>k20xh$$+5S>`4has=S130@sK!_%fkIsYx0bDwnE~ z)Y9p)cLDe)x|h5PVtwbn4e}oIcq42FlQov8%Q}z`4hclEAw&_3lTirekPHE@i@loU zO0Tk<$Q!a9pswwBU4$d(z%moP=7CLF@ep0uxls6+mTS~W0W$E6lIHe1 zY|+)|v3GxO>A)_SHzy0vpfK#PFnHzu}g;p&0F9FGysl)Im5xS@k%Je99;~om6WufCLd`%FmmBO~D z`9Tnrfycw~c0xW3fEU=Rmyf1+Q5lr)z$M6do68&Dxl;jAEalXMXuNpAWvWg`Eo8Hl zVj*6s6rDNAN32NZjSijO8@*jbE$!aMmHYed4Ch;_jUv`&auz-ZmM z=RN#5u7gRrjg@D!aC2*xyy_*8tk#nm+FT98jY|DOt~5{Bl|``HK@tUDOKOx#rr%JIQHG=kZi)Jl5Ap zon;+f74V949t(?@;aep9w@PE5K=YzbIO;T5Y`NT z|J!r&mp>S>dybczR5v&AvsxIde}V7BkJnbO@daig#hW_x=3ZRIvPm(2dbat!fBw%u zzTMy#ep+AMZf?$BzPcE{=LJ4zb9H&~1^%aQ@Wc4}`Q=bYxcjWL%`acz!}+J<#m$f% z+_u*jLuzqTuRlA7Lf$bjHU#6hjeq8c=(A*E_>j9|#gLzXjxAfSZ}1VrH++76`(ks2 zZ@J!F#LMTe<8%BdByhQ5eLB1MYQPBIYF!%{iEon`$m4ttbir=IWj<2dF*_Fk;&Vl1D_>@wH3A1_r z6RMT&CLThYOu(1csTl0=5HJI1BIBj(9M4}aN;mJHMD?PR2(HtG$b(9^*{`Hd+L4I| z);lGeYgGz3Vf=^dlsvKt{}OyQh%D2=#6NgQ_N0_{q+7#TOEdStjS%DB2O@V`-S7WC zt?oD2e7=Y`H`{D|S_Hf}|Fn+ZF@$TF`t}Fz4qK}ewaVY`7T1_+v)wGyujS#rWJKf8Q3mGP^AX^7dMbp`xzPacSQ;QE1l2hpF;#d_8DYpTdzctMAZ(wSTow9|3%ER@7s zK@CL3o0IofS9Jw4ko4^C_rIYtqOQ^fQuqDsTXC=|N;kgrR|ub{iQ|9S3reH9z1ow| z%~TV|X(AW=cMuHYz(GhiuWCMT=Xv)tI}sr#tv+iLqEfB!LNd>@G?X;8kVpx3DHU0> zWRol+_7-=_BG07lYYUe<=i&)!?2jbJUAHHR=La2axsw5tG-uetWqN)=kdSlbDy=9y zW4~HqBd;HIh3jKtdddF%hYXKsYRUh=2Iziz(SDE9_H`-sE};^4wD7nOgKR5DB!@*S zFLSY_)m)lF784LZC)CX}c23>F05p(k`ef=Y-s^QL1Z|q;Eq1nOAU~CIs1ER2;4}+Q z&EO$O&H2;FJQ#5XGF_)*j621)Js`4kfsV9Kq~JuVlJ`ETX4vX0@4Tp*YBYtHkni=C z&su-kp*-WJ)!Q##)rI4h^8u=(9LF~!T6EGA%Z~*-L|8+TxxzOCaWKMGQZnx6=jS}! z@LLOaqh0!z4qQTHb3!3WGnV#yod_A3b#6r(?P3O|6G_WtkOv}7H7cfJ@MEnmj`Zmg zx^(0+^jbmLIgKsKP>N0>0xLFJAm`vozb02F6TlJoPL#%XJu;FNdw_1PnM^4cSI*g(zFn$?G1cBj}_EZkfJB2tUcD)S@s`Q<}BfKBR5wyeE@-zdJW~h_^RFLRX!t7g_^E z@=HJ&V+uy`NMr$}&B*0|7VKiv@OQ+5Ejy*a@pXs~fn*uU}B)pL^h#+0bvGJmkoHH<>Eyj6Q zBXYG<>0CN+?tAZ=&H#=a$=+o+5*k}1K$#RJ@tXq8kW$B$+v zG|yU4<}@!~83)G0p?76WV>bt1>vx*9WaM?gd>@fo0%x#!nVmF}-BEs8ZWq3RwJyv*Rh|-20JD@1Bpa8@hj12(02s?9@6Y&L zPw%1<80s3@-C}R*bqPqXd8Um9>hiqdz~kS2&Ae7YB;}idM}fk()gIy4r7#m}Wv720 zia>WWqkIXhmi) zOq@2hVWeCa2ViQ`E4g(>p-gTBT2y6n$8yKn5i!A&AeZZ z4NJGbOl2^;vdiT5_s(~L*sn!fcaC1lP(mw`=WAtO2w64YQwnfB$h9a^DQYpf+7rvM zn^1@bpWFp{V_ibqAUkylBsx+j;|f*ROhnENs{ky`l_(Ui8dB|Q^?J{<`WAGcxZ9y5 z#nxGh-Ynl}VL92ER!q^lq*%17+;(7FK|F=m38Kod-o3BB0cDCw^db_C?^u??M{s3Px95vv(Mt?<@u+#HNSXMUtay{{Mqg2 z=eM`@`i(d1gcE@HP<^3F}h`$eEXLv~Rcu6Siiyx6ii?QQk7 zmCB1)rfi?BVEeE}8OD9Rve(@nbHuFqQ2)2Yy#W4$9;;Z%MFZp4x<&4h;N43ImxYS0 z}w&6tz+FvQE|gheudm zRCU)?b?L`@68z6QJM4r+w>8K8&BTN1qvW-VLKmGgcVWU1YC?25f%8Q*cby?l;M{H1 ze6KhA?Q*WHirn~AhQfF@k~j(F6&MNl8Gg?x14*n`^G;-EhIdzD6E#}JmbO!E-~`1GnM@6!(PG&;N6Rknk#kJbL7N)EAd<6+)Eo3 z&neTc)=XS#Fkl$ojh_@dqE-qVQaXY2MK$-TqvpIZZmZ^MzEAgUxwaNV(`p>$XcRbg zx#pNPPYSBd!Ng0FwjEXT^Q)T$Z+_p(w+CLv+*t<;lalXB&6^SpAu3f3YtF^g6sk1Q zWS0aLV9xbc&HX!5^J;xFWUJ-f$Az!)pw}iu0S6CFF!1NOIk{fVyWZU1 z&j{J`=Hqq^R&%GsyHfMan-2wYJ^|NN!E=Rs39>Zgt2-UVYfh-rS1Lg9-4y zo&OzzdS_}bwKO3ooHW6eONx>g2lHl0!{hupYj#x2@i=zR`I4GjVLAp5&ix%|d1q>_ zTTsDg?xv8+x8h^aflSK)=_EomrI}*HbOYx1yPQA2x_W-G0M94a=Mzmg#*D=p#ruNZ z8E)Za+TMG?voVWF{M4RGjbOhCQxVFds^07+;m?k9y{PQaq4|*;v)z*-kR80MBd4fh zK^`vnCPz@?vYu}Z2UL-fG}{7eLG-6Fzo_rj8Tl-DVcn?ja5L|U`6gW9Yc*S)Vpbi_ zoLmt&{ZKTVn?jzNhKr#)=Kr|I{DPv(`w>c0MIW!#9JJiOD>a95Q*E-ErlJVR8)>Xa z-fM%e0@PIPqEB)PQvY;;*+u=9okz&vdfccjgOu;gnHw1`3|UfTW-HYS#2UB_5Jng> zHR-vRHmu}&QL$xTv6UQqZT9Zd-*$|da+t= ztB9(z8uYDk&C@Q@aC^{r<3-U~MQ>E%>8Ck(S1s4@S8~0m*s8Nnk@s{B`KFV|b>Ep{ zXFki?;IWBUgz-j?##8l`Gcmxrwc~Y0Q*-{;%=PPX#T>r*>1Xlcr@!Xq$#bQ)fpq8b zxe#)EYiz8c&UWGwclaUUhvU6c z95=&40NZb=cLIAE`AH9CkmJSh_$OUmUDS9v`Plon3^BMGYK8Gd;!RWtY%wIEp(~_Q zaTXyUdp%9iJ~$wq!&bmz>Lq5}{V_fh?k&juI*BR6R*cm;I$Myr@+EafrlWv#NJz+s z8o-cAE5vlzY*y z)U%JqXSsLoWq9LMFNfEyOv&c*>XzR-?T^KAHOj~j0%Xo!B!Qeqn^2T7Fp?A#vK^<% zO|yFafI&E_SD&B%CSI3kFYE2~dA@meF_ML7)#LjWppRjW`^Cy3^`%Rlq z#^1EL`%MG8gH*QS_|-?7mj}OR)REUW!(-jL>3;6L6rZ!kT(cZmU9KxTYW~yq^LNSu zdvZ!==W6yoq@*RXhGephP9Q8vWn*boOda!IpDxQoUTF}j?@d@$H0G36bkNt=U8sn4 zN;Q*2;)RDQa+#BO9#2w2QwWAf$f&*dijNTLAs;phRdsq*?u4qy(cFi9-K7e*<(lR( z1jRsMbBR3mK|^_CtpUiw^4#%ZILO_su>Wpfs!OIFsMF@9Xnemt_%%5*?%x@>-C-Qd z^P)nl0ePtB_aQ0xittSl0banYoD62TN4cZ#yM6i=%_a1@e-(`rfxK6CezN;?2CYFC zVnoxLk!UNzXujXHxll{lD;1(0=6)QZb5R4kPs>5)2sZHd#vCEEP{QE~lQRjTpm+~% zHGqu1D8Qwv8ke#4)XxuH7Eq^Oy|}t~S#Qp+U*ABOm*vgNtNbYfNZgzy0WP^U=>f9u4B6-rj8T zb>+YwH%t+YN>s+jV4x)pn9Ot2X&@fu>=M+7WJ-od@`Yi` z?e9-(!#%-pPx@gS(&6DV&(Vg)BrKTe$iS^Y{_vqd!1z`S|1c8+_}t{H%iHTKVBpQ} zCx3!0b^Fs-ESAWlQ_g{t@x7NdGjhDoAaV;X0aK*vxOiHlZ51wC@fCs6K0t50_2qZJ z^@l$m#%VnJ#TPHr6|&iXj4#=${>=f=oIy0d`>p?a`$PXTHxynC4s8$@{^qB@=CJnc zXEA>opW~DM$$xR+lm7Cv@rVEVgW*R%_)89>fAQBJe0p_zaen#X_>Z$+efIL~{PMP5 zU&f0Mudbh;-CQ*Ns}DXrMBXTpL!W)%r#^hz?|glGe&{!jpZL4q`u(lIw$lBlqZB`W zxi714{l7jI z?boj3<@37xj+^?QUvsbN?hCi|*SGfq-J{YmmEU?$!(TSdMQ3hiQ-VilK28Z1O3t0u zyS7m;l*pxNTX^PT3tDjJZH|rSVq2XfnDNTU)1@F)Lx_~b1gYM6sG6h{Bk z$6N*&N&wrNgR{*~TN|Ec41=|puJg<1_g;_(jlrb+uw&7Yu)Zqjl~HgS+>FmdJi=a^ z!?WYO9@NQ!>CmZ7IXAu<=WdJH>3zvOD<0Qcyf9Tp%Wr)79=K*zn@_;jyyKa;0D2nF z2bGq2cD-j#;CbA5WVCtfOqW=a@Tny7QCm@|@*)s^hOZF+paDu|M80;4Qv0q_yWIo( ziBik$P6>XU<=(bZ>zqn~8`2`zDq1FE8zrY3?`hNsCD9<$cj1%+_RC7`{Coxmn5F^l zu!DNr=WBQ#qT_{AHU_vXZ+MdkIpXZB+L#cABX5F*9o0Ut_k*%TwEmONye!%)!lX8R91)2ajBBwUr-y%o8GIzR=I z#x6tyWg!x9t7h_@|M<$tcryQGb2T^Gp9W=E_g3Hvi!|zIrj>+%X(& zKELKSEtfpu^zWuqM3GI0Le<*Hm$A)orHUuyIFN0Nlns$9L}?zHa+m7`tp@x4;k?^{ z{jojC1TX!(QuWr^uS#({xsVpltm){oHq|6$sR3#zsf6@AHFFjF3kuHb{LBNW!R$-5 zy+v{GpmV!^`^PV2^*nz>*nra}pkmpw;?BgB9l*DBNN3#iA<0l{{?D&ti8pUPy}E4Y z&;NIM#xsD==-DUKQGJEnq0{J~g0*rx+(mcp|HseXvcCP({VQV}Ocgps9^s{9%+?pp zmpFwH7CZ->rS{V+)E^!p`>^gZ{hi4vO#j$-W!=2(YLWaXMM}x)nqnzV*T$-bWZDpr zk}0W}BwID@1o98-9?19f(DO{lw}E=4{zV1?r-R-nVr|ix8$5+fK36JUi#xY9|ZhPM*2pTXKk5l5!!$D-}bVJ%?E!e^G6Mo(~J#i63awcJjSt zv(-KapL9zm;)fAfc$y`U1~8OLNR%>38~2i-vl#<-&oiHK$?&M_;RU3fGcaxdQwEM= zUi9w#o-IGUzuKLS4AyG}&T5i~8r36x%_0lrLMAbvCbcrmlfPrmoxMe$l2<$;H@3pS`nGr6RX$Q*n6xb5!dC&!(u z)yEztyfSi}jQ><22!DWcMzCoi3!qYx28b}q*-PqWJ{P@RAk){>;S7xq^BDO^=Bl<; zLP;rQ?oBq}6qcw&$UGziag;>UHS5z3ah*>@T0Ldb@32HuM#hX$^PP*78 z;6*bGHtspglbBr8R0^T1spHf#qlKSWH6O`mu}Mj8#Rh-T)s!~=hy`PsHes}xHTNZxz$KxM& z5U6V42VQBY5CGTG`y0Nex_N!^X8gxpg%Y~d z8Q{$faC^$UF3xq)ZQ%m|YhLN!`}8dz|MDlp7dJl{6M?&y#yhqwQd<(9pHA?gypZ7( zWL8yGSB-Chdt>-b=7cS|lC8sT0Q~g^O@R_O&d5{7cB)v9;ZL}xqyr>%jwhz^&N!Wn za8c=;Qge-`rTaY16lg7f2W|ld_I91T-`itvY|0SY?Ctn|0)M=hEkh+^6|#6Fu+{S1 zSm>t~!ITyoUwG`@Jgq&y!yXO{I_gx;^){O)C5`WNusw!B52)KDU)N;KBbp>}Lq0F< z;r%zrQnM$a+B8ESE}36my*U3YzIk;Kzj$_Ye(~b!b%pO7(S|t_XX4qlp#8Z2VK3|Li>q?;A(Hxh@p|aV{h#>v(TC$dCI0!UUVi*HA8vl~ z(J$~n*R}AE#|!)nyxV!+?34H5=9iyeaS?%gpC3?;ujJP^aJ>(yxXCZ-%ew3RHHI3* z7<5L~8Jcjpx>hw$A1S85|5lL$BGcr!%=+Ux=u(Drn+<{+&P{JOg=#>ynMS@pw_Q9g zSzD!K$bj$Mam=?DNM=kjR+f;O_Q=}gzMAKcw2 znBicOa?KV)Cc0E~Qc5Jr!?}G`jt8_SyWT(25&vlY!+T&pukDl!UP2W*&w1XT*UmvY z#cL;AiZ#L^!nT@9t^!U{Qjru8O0dPPH#A!7Af4_x$n6+}_YQLT+#KcL1rCfW_RWzj zwPkolgLvj-&agU4#g@mN+oFSX?%}lC;oQcQnYe?~yg#^u2PXs4i5Pq<)+cFfgs0S1 z*AlgLEmWs{4RY^_Lmxi4XPhK|dVaeCNE$aA{X7J=aU+BwZRaW6zdG>ierr!pXdQHN z0vVOa(IfBmd{|i^?m5#^CZGeYrlSP@`t;LVa+~b0A2!$z$GDveW#%{2?@#f;DNqkd7>DvZ;iQ=7tMAY8A$XC9a1fTy zCRId27-tnCIg@z|TM7t@F{d0(_oYWbXJ<6q5Cg-w(H;@dzW1faPA^m*#~&IAEjdw8 zG9dsa>#7#Mh~|Z_KD60e($h|F(U*Gr@J4hzM*ZHGu02KVy)Za7rBX|^)+Q4VgqNPA z5t3@+R#WBu(@t^Gm-^lO`n^OVY%hjA4)Xmu9y><>8Woz6t_f~Eg6JY|gCcmk5_}34 zlFqa@`_3<%<77zs3T$fKY~adpgyW(IZjGK}(|@z@D}QTGG4j5q>`gXNo0xKTJk<*s zenCpFl^4!tQ}PtqeDt_eT=J{d%^!gd=w?Xm`Axvg9^ap4FWcZz*3MVM8!Q{i=! zp5~&D4YGI3t7-f2P}%VQJXgj{pq`=qS~w@irEhS%Aw*k!b3}=d>SoMYqBk;8jb9{N>e z#?3|4d1Ca=WF@?*j*3*Jh$=M!R7cWHB6y2P2;;n@D;D`>%4*3|I7zeD=l8NAKktEl zccOAqO0rd%EM&Ca*(htH>Rd`W38$@q6yvlv=C77S6>o0fnaZ=2ufKS;=8A(i-1h1@ z=AN$E;fM3k8{Da#>d;BEJtRO2(296eF*IoOY`H^znze=pF7S z#dJiI zj?FX{pzHm)u5Ppj`^8V5Tp zHQH>8$bk??vuus`e&_55FD$fvg6mzIY&vUt$)*}}6Qls4GiK!dxgG*a%}bv|4OE=t z%_3Ur=)Cq8`MU=k7OlwOXU~@ooa-RWt7pH;aRuP@_ixbldV17$oeueVZ}@+I_&5I6 zo}uFBG{RP$r6{q%IIB0>1s=2>h37XZk%vQ0&hUSH)EO>0Tb>fryEPdXOK95}xBmVt zdmXJNx0rbah8DuaOf4fPchzYg!L(kAhog zv;4HfNQ6b7A`gJ5f(P_OFKF+f?BmXI(YwlS_oN;--7C=8*%|r%H0P(8y-G4=>B*A{ zC0DDOi)6L)u^=JQLgpg(7D$Pu(~LK3K&!G3N74@fTtK70v2lE{!|6w7v_R)q{nnnE zE={*AYpld?svKowoKPtXjRZ4Go0^4poz4&qr=8lOBZaT-!PMR`@L}`D}3fLD5^s*(bryegkf!(#WH0 z$s&6vvz5{4$DiJ!&osK>#&=2mwmJ-t7_Nz4;0Ggo>18AKZKue?hGIfEjfEYBt8 zfxWY_#MAS8ar^Ruzc_5LySly`)a5$kP5I2+Z0`}yjN|Qg(RgQA-+$ZtJ=-&T_8*4D z$A5OS`H#Q+V&5gmMymH2Wi)6CbN!1tod zajui^LIC6ZF4fu1`{na*Ty@D-SF{cI^|^VMlavwmnnL0?BJjLsZ)fW%{4W}<3mu~c z|KoTzFMHdGzkCUhZLQ!JSHlyfY!)_Bfu`rIZ1c@V-ze*5Pt<%`(0uPYeZFqnuC0Xe z>K$l)AYQ8EfH3&hWFUBvF!iylkKPf&G6})e;8x%-4Lk$-`=st>xg+xLh#7BP0Kl`>I@7!ib;nuPRh3 z`6g35jmN`!%RCz0<8iz*QNu;Rm&>E}Je)6DB;&w%Uc_tw)Rj%q+T?j^nUU7m>F|^9 z?eTbiTVKY@^OwAy_vQ^Tn(S$)SE92;T?`Fu;7nORUxx8Vd!PM)uRr=2fBDhFzuZ;z zki;vfW+NW{s7Xu1H&Q;voMQ@>r-uOt%xCZ{v9+X~UhO6ePgfv|FpdNXP}AALJ%K;# zOhGOOVj0QPHLe42oy&tK@K;mu7Hk9cPK7!s_WXK{b@34iwH7r*$An_v9xFMkGn^7{Gt-A0a^ zk2bG{KM&9aDeGqZ?w|b4$D3c)i~1ZmW|OXNd0XbNUwspKG4ZfHGY?a5UtiY^=-&MK zhDrau4gQm-DReu(s5iqN1aJ%oP$pN|NPeo*3EqTarP)=@j2cJT0_pV30Rk>8WKgJav~Q~#{a;)LOD@I@qG+R6{e)VNp(88>iEurlZjoC??zkgRFnbhK56sqg(>Pk!;DUf*)mq%+yI zSuf|qnaMaYgcUfa&S;c-DSX7AzWGJH{_K4Bi0y;DFHR*m{@jnRcKgkIgWC&6Q7%T3 z07w^%;&75gR_6p4rA^+OV({TnCKpZ2n};2;6K=WDVeWjtG;XzNHOiKKiP3nVb8r`0 zAuF_tM774Km8kh7ZWk>A&~ffi?zn}R-TdY{lr=XUKlbjqZmEz zKGmecq_uLF^R^;eMRso_tg7%53?GqTKp}b0hxFu-ecL>t@Xyy#cwiX%K&a~yD#yoj zLQQ)ib`c!rp^%#M_a*NIS(BXROsG;et!b4TzC}z3wd)Bzytr|ocUPF(qjwy-BLht@ zLw1l~DQQxMdj}YY&U??*1^k0`JOqVg)fc-*FRi0@k<|NFxqGCJm!;CWpy#BLuf7_i zl0({sqjz5C=nRSKBxGBCaBtDoa+7vU((4GG=`GE9w^oKZ^+VuXj& z7CE_zsnn*CvzuWK{2gI`x=7ez`;kI-^>I98k~FQB?GhPPZFRhSgO`q&Dhe`};B^ZC z!nzrmbVKf8CiFc!O5dW{0B(2QHiFE-%!AS$D&d2CE3K-ikS4S$AjlSw5)=~3B7J5r zR#iRbFn3fg5=f%c7Xku@B7onEgu5znVtWobW>J&pU6sCSgcFSrrh;geH`h=&>d|)u zE}4iV)peA28}EYaSaZp|KvN>*SZzc~3gL#Yb9ulq+BQdH=KpV0OF1-cf@L(0xWb{y+C z4_hnKky--Tfag^euPJNMa?%lSlYqXQvPmQyyP~Q2{^@9mZ($&NEIkh=toSOU~? z#T6;7Es_IZF#}B1oc|wy5O**DVE{3}EP6o5w31Qhw>zh+D+`%f)6>}A3z_Ls51N#|w*N~aa^a6SXeIAjS6b&-S9E0UkhK{_E71( zA=qyYRZx*gpPexZMmkv-LMIh%Jep(zjEwEPA=~o}M`jHEHzdrq^|A3%4l$hI0)sQb zq?alqM1zYn)U-BLs^u(=CZ3&|KKAQZwFkWF`1Dc3UswSYiBmqXXzWq6d*{hEO$W&7{`)= z&Lqj?VYl%=V-4tTmo0v4{LMy2TkAo;-0sZ4>kW-{W!{F8ii|-TNi>VvLt(x+xErUk zN%-1!DdPFv?>9cg+6^2og7a&YlDPrzECCG+F^F76@GQa;M`fZyWT}jTeU~=ZZ22AY zyYrf(Z)n)SzBQ&z%V25ixc`bpcm-yJakf&B{CEJH6&4oXP~hdFp*%gg|0|A~Ni)nK zM0;kPneNu|#?8d4rAO=ne(h?hTxMykW0snN21n~9T3FkC#eX~SimT<|;YngPJu9}& zH*ZZNO_zaSmD|E(vWWB;MJK5ggnh=9WQ_DVXBdBzU6(?9bL_=N=Ez{Fe@#rUaW6z} z`+}pb9Yp+@%4?Nkpop5=jZlyiK9@@VbO+UrrJN z=f*XqC@48PB3j0q*AlkUGY5RhU25ouN~depZsTb?(CzQ9e?Yl=b6R{|&Sw{s=hNkr zN%O3B`Rb4UhmW6>_Jc{?bZm@h(X7d-cp1bzcrCr2begCYa zC*g9sc!s~aoRm+?<+AxHhh?CSa1*M`GrL^8yGrz%q;PSuphUbU%jMN%UVd{;_|Kc0 z{+izQgXZO?OX|~nHCrs2*39&LYS{b?_opt*VRAXUB=Ru7UQ9nNljq^Zq+VY(&k7gQ zWs{uP+%sI~>GJGqJ_9I7|MB$l@w<~SPfw&bj9+{yOY%ofnz@X z?JC*uVwRp#(qdVro2K_*>KWlaEUD94awv2Z$sm$o@RgaX5a3F;8WayG@SaA%n?Wkv zo-Hz*&Q`xslh;yBFoUJbQF@WUMrC9{s-mb~k&)mpMTU@IAiHPN-rAuiV;VwHOkl^Y62(FbD2tL#?kVaA1zz6v*B*gr#_(J&dfS?e&BGZ$73w zPd*G7vDK#Xb%MXeTpTZ#u_=y{U+#b30y zDJ5DqHahuComAm5J#|k&n5tD2R5e4NfPZJW(BSViQfcwGk)bpLDWCT%03EB#LB*mq zF9O(Q)}9yI4y#I4BQ!O}YZmzbq`PI?7r-Kr!8_YLVnqGbK)xhUx0$Z^+Vu-d{1=a! z+fP1T-+nWKGDYi5F2ZUbDf_`7vIpC#F6p97ieALxbq9bu2*9ZRDt-HuNrObOcJo>H z^Xqm4@d-S?;^nLLnQ2}VkIGnQ;j)!a&Q)Ck^G5?2RYbMfUi(@fh?EE5z@#nFNENHe z$)uV^fL$%daLFpe%%+~0E_XHRY!t`*`f@paRz~zm_m;-nmtVE7R{aC@UtPWZFWY-> z)^r2N5NrXjHRZx%6ujW0=(DvJjsY~uWSLp#-OT~-KB`LE505|-cnzgm?ZCjK^cVma z9rILjmZ=g`hAT^)g8SqVN`m*D-Djbp|k%atfk~ ztQJO9<1D9g<;=(qif@jg7||Zf*Go2E>yi<%S{m;6rvGC5$~UhX3oRmPWn)c=u?)ZA zK`S^ssY9Tj0~OW>I1=tzJtZ?M7odEK0*`tj}fk z-u!F7{EWJJPky<6)Z`I8>Nb=5`2EYt>dNIjTrS{Bo`Ix4e=j)DV1-8q^o2)H5<8E zLTx)EyO+40&X(|WBjR$>^sR)Jt6d&p`nBS|y-QsG&^&AMqtBM*azWw3JDb@Tf~eAJ z26JwB&{_p%qT`s3iYny62r3~%7v0|;jBdn^0OqFg_7==GzliIB#(GDR&`q~d*T3#Q)Xu#P|}qL03U7AA&Z2rdmqT7p$r zV{|k%(-ykG9PglfcMp^!I@({NZBVr-w^o~ezW2W#hP7Ec6qO|_UE!Ygl6--lb55J8 zFne?Wz#2|v%R3PC{t!kL(f7K`HCWnueh4%AzTgflro=3Da4}>`7su^D-irf!)j?NB zpukjvIS$LHwt06u3#7rK+EQrB4jn%m2NP-f7*TDORlq|a+)9EDOBm^bl)&Xg0w?Hr zjekR6rj12@9_Cjs>0deG_3eNz;hjW3@yv7GvTSXI?i;)>wzpiz6OWoTjCUtLeDt%k zJfBi<@yj3n;KN7F+RD6!)Rw|0n45qStkrQuRS->vMF(jOtisSU4oL8nA=Xm24qttJ zH>@3-84Wt!&&wfntNc{s`WE1HbTsExjWW{tdR}uZwPsF}D_5QpH5YR}>TVI+Z|+7n zGJ6#5-lt1>Wk+5ME_iw2Kn+gr584*9R(uAb~hSVtfSk|0oL4f1?=yBJr7slO_MMOi^`K< zPwVuLA(j5TOE*oEq0P;=`;Vwy!?N{UH>elo8`1(}u+FUpPNw3+;cTgh@$FrLSB?EU5H zr?ch+{CsD;q?}Mg=aju(mCx4H5w)Lf5sXS1UXAkdm9t5dTuiJwal}pxvoO_Y)K<3P z**-70%R|t6`rD~f?R&Nwsk|9TI#iMB@2Mz65(;_(np;a@SyV{S+ro(1x-B`rx6fG`L#aR1gGYfv)L1f1mk+gsnghqnXAaRarRWIlp>Mid-|0;^ z%UxgJdeb%=O=%FafdmYibRk$Wy(Olo6y1!4;-HyITT1>)L2ng;Gv3|aq{J6639It}c;`O*`9{OnKDe0DrVUN9w(!H` zLp*eSLT6pX=;^N(r8&XYz2^Ooelq!WiJNO_=ZEh3H_hhJ;=Av?m&>Q+f@0#u8XbVX zN2uO|(64E`sF~{TJuh($^SwJLm}se>PN+JnOeZLltQq9wNt` zN=mBF24=kyeszoigv;~~fxqqoC2H?OQK4ieJOYRcrjr6Yb-t1<@CyW5SS38dp~884XQPS*Ddp&dquLI2fHnz4SA=F_X?dK2~i^=qsI zpxRBO&Bv{pt%S1UCO3uZB2~CDNty`hGs|nOg({c`D)*VFHjGVL(o*PGyH06LRF9u8 zucy0ZBq@`$=ags{+qESQ5G;&MUXe);{Y00o=BD8u51B^H*{1(f^rtw4Snq%!q~@XORnvp(H3nUlw{oZj5ZrH+5~Zj zwLZJsTHpNjjfHXnR+wwAsn!#fvJ%O&;-t&3qjr`oqZ%DMDI{}BN?_T zl%%=oN#>hlN^)BqZ;goKmJCb*D?wO-7*A25FAj#1yrKvOj?3^8LK1Mm9anXBrwp#f z92FSmI_v2hT}P$cIU<~;lV&|n^|es}e6*e-|C*@XZn%MRBbcDWp4GU-t20cR5}4JV z2Rz$E&XTk{ozlM|0~;EveNGH9O_wi*+|xhfgU;#CzdG>u-=jpn?|%QSfv?Uf#jSj{ ze0S)(@>wd48yfs}wO@TcFRl50Yw)UY8JgGSyIA1* z<=}_s%dmKwOI1+(|Jx})IHF!VcnWyv8 zG{L^hDD0sNuaCNH(3KjlFP4Mi?u+0--PAqGZyYnmY5)j6J*V`ZaJacUOjYh0=R=3E zz2Df-oG$)@k?r%!&4nY@;38Z;KHsTR5ANiT)yG4}Z#|zMb_CZ?0kV+Ge7{#(UA%rX zihDmhU;Jjvx9@4Y?-9a&uTI0TC(504WqswR)5UZ-8=Yf&P^G))2Q4FCl;tgXw;#T{ z_1ifu4Bamw9)2bKT^ZvIyL|H4dyG7Z0*S*3!eC%>$Wuq%V0+0Zr+o;lf`m=otD@0lAEJz z%^9=HNvU<3n$4jXWl4v>N}JS3N77m^f8JZD{qxmQ>_7H``kUoi(OHn4UE#ylg3z+; zMSIcWy|~C{t6$Eqo?Hzq>wax@m*w@-5H6?9pMUn-_h^Qn(~k7Oy6zwUf43v^?~(nw zxF&IZ_xrP}_5j_=N?e9#bVhE=WQ<+kwJM|69c23lzNW3hp-afu@A~{aUQaLbwznPS z2%9h4Q-i~RwyEDf*R1H_UYE8D9*BhYxmta4=T)=$tbuucRpu9WUcIr0`(L?Pz1jUI zw30LaEzAp0-*HVVn%x(D_Uz((5k5O)6S1@0IJQwCx$0+aNGkl-=9h5q2MV~~&$6Sb z%t|YYa)Qd97w==%F=<;0kHJJORd!1DIsokndu&TWa(lZJM*~~8O~>$?cKr>S`+?0= zvD89cP}koQ6`kkHo|(!ek5NXUs+FcWRkvPTW;&uFnp>gI?t*WC4XZpp5 zhc{t1$?zS_e|-z{O~U*p3(XkXd~z&_oHXM#*y>{DGOBExGQwN@lgrLU=6~4{!u0YJ zSkJ*7P(_(aLpz}Vckk~v8-Z`}bM@A{z3;a+M0Z{DtVs-<-+5ibiSD{6PA~Hw_ku4g z+ZXMk3_tzxHI)vYf+|cdD5L9np?^;@71YmQ3@;|_J!v>^4$-euV<)D`Gz@X}Y3Y%J zKY4uJ)GF>%g7Xd~*jVch9r)Q#KKRkkAN}ZzlIxeBEqBoYN;!EvT|T*vO`b_BgZI`? z?QQe^?;Sz4{_dPk?RNy_&)JqZS63x^!#yr*efI4OTN=~TyKWsLSnQz6}&^|Nw?b!paHS1?e-{-7$jJv|%Bu#LtW?qt}JnbZcq-0L(L#4!N zc|80vGftIfhIW?QV+_*>BN-Ed2-X!B7*{%ojxFE4 zl^hZ&3aQQ6W+slAbkF$EmZ4y6j)4%+gZ`PI^FjFUZ=OB*xGa`8O{-R-_}1TV*@pHW z--1=S`MW0DcC*J0=T<}vDR3{DjIl~@Y;=aF>K#{7$Rv3+JFWfKXeM3F!0w;T($kxt z&gP|F?6Uoo(4huw{~w=i-)(h|Zm`$;vNi1B%5QZots#RveEnwCV6o>PG`0a0?|xrn zeb=>PLNFMXS3kG*xH9BvD36KdAnfBg%ZAKJ@FWJFH^9 zt-DZ!^&USLLw@vUB&b>Zq+FK8w4==b5w_@E`A#dy&G(cv4g;{9(n;R_#T~={?~k&4 zqwa4w1(I98>K#0A(CgLMziM?1&WOn1giT;62vxigELbiwtYJ<`Bknm_JY()rvwA4P{KeU7|F;16xg2Q7;<(ZMP8O7Cy*l5o8PmR> zb92YjRuY-saoL0tDi@O%v+GH-m^1m!^|Z`elhV{?`jGzchjBt2Hd7g@|9~4zn<`GT zPp285A?keeAAYtuJZ}}x)Y4H^9d#;P=&FLtCCLP0Qt0rSFhzH34gCC6nbOqH;bL}K z`Wo2C*Y@*o6&0jy3g6=b&iV}PwUuy0q@F=(cvjKcsw}gf^1YkGfgywp;cJktj)ec= zWC`!Ge$2PFlwx_|WewH2FL}$Rc4@?^C!t zttW&FBiTPAwh=B~Nc;|It`|kACWq1aAbBoM$4t#^3OBYE$)Uj_Z*>U!PDi-cvqgS( z5#r0mRhU0LyL@`J?zk(@`)8~iclM_2PUncS;l5p96EIFa!}_P2o3F%l^TAEsV=Jw) zoC#NJ^~o7iW3aGxRl}{C%xqCscB`GLyZGzV9;J}^J&;%O`FBM$9nFz*9Lk$!un zjj%CL5ohY#X5pi)Di|6BN{FtbIttE+ZUc_!cL4XM2_2i}frj;0efI!VvvN&y65P!u z7lWv-suXgmQbFCaHdGG(7&YskH*IhXo`e@|VRTB}?fdUNU|=YiOL$oYHFG9%8DZlE z!q}iCNSw-0H16aP<1%vGlkiwRpk}}$PEj*kLsl|m%#c)qmj^|dTnK2xUx^So&wd%3dpD!AoHRiwfx~9N#ciw!j186y; z|64qnzMK~dSjyRab`7(8vj9Z^1pp3JGj)PHr~5_4;4b8<%&qXFLYf%Dh^-?lkW;D7xodNTYPLG3H6F_w(D zvc|%B;xI(f3$9G|ObhFhKS|&Dh`xK*uN%df@T>kZ?g8|j+BG=@hS|7+`K<#jF`G&) ze>fc%Wm!_I5Ps5-^F8$4Gd=`fa`SNdZm0;NmN{7mcA#~RGV)qQ6gb?PPU)ceD)dyl=LG483!Z?J@MQA0dBxO^t zf{Iln2fhd^7h|#}sB|C5M>HMC&238DAlIx7_l)%Ydb=lLSHxMEj~LmS11y_oxoANl z3pzuV6hg`KW zX;3>KYdB@J`96B?jT_Q)!yZb{qealbGL=M3rDSRkrK4s_*62WGY8Fugy}S?Pqk8WB zK#3l)4wW)Go8FM5MLUeck@b)&o}9wm;k;%3A5dTrAOZMJ1&p zn7P*}7RTVcYN1-6p}P=a4?#4hyN-)tXm+)%@A|R(0nlWM#z@+n5FlD22Wmh>LA!@( zjzQ^UOfFkx&<=t&rkoBDZcjM@%`}0PF; zoJxl{d#EDv5k&-T7=pyxVs_M1;UrBgiRuV*g!c#vY~?0X-?~iAe<;Wou(059>0nLd z`)HyVIL%Jj)V*k8rT%{c4AaYmds#%?)p9sVgnzY4AGM1J66~?iMm16PI#ssN+IC`& zO1Ygh%XEw(D^q-m(ncXNkHM)3a+|EoE*V{P;N4mFw;gPY<@6I+*e3xa(-_~Y`HY&9 zl}JiRQTKy=w`K#o<^7I`z%JW?#}Bf;=F2nq$yM|Ch=2*d@ZFs@E+ketbaAw=) z&C+|x1_~~`{iuBU^N)Wu`C#+l$s@W;Cx2|K?Z&(P>o?JEw;4xslN)JSD&|^qjzy>v zSfMKDMQN&B1ka1O7)Vk#B>MS1NNe|mf!H9ozNKfjT>;|44G`v6A}gw7D60)B7iv=N zY0)!F!^X zR54IemlR%w4w`klZyY)cZ}qs@ISbW5y?uzNZMiGFpspO-wO;=1qvl~<#N9SGH${B4 zs?oxI5_1q#WiEn|=j3gaDQ9DyOH6l*&mXD}Ll{Trjxzo39R#+a5_X_A;+|L$%w?ar z;jV(OM9n1!xdnp-hc!H?0;o~?(82oS1F=qX2{-F=V6~1;JbpP(>zc0z=0nXITf9P1MnQT@p_^3FcI{QvFBwf^>9TwH=)2ZCxv2rSB&Q z?2R~B}}%g z)aF}T&_d&>pDF%jsg1P{$t4k*288RPwQ7IFW2$Qg>cIk4TVt0Suk1jJXvwWbU}XY> z0j0*(g*#PL4;Zzp z5!Pp&V1Th7~~vI|A;`?CAXZ7UC6JrG7Y zg+O8r=Gz19`ur+gh%-Hqi~sgF{u4NJbEN0-e0F{Hll-5*d-GA4FQ+x6B|cqw{qH?m zy+$02j@ZJaC`OeKr;F}gZ$runzk7zSUA)-r#XR6zcv8TRC zDF{~B_Ikm8yl*+~)@l-{A86PGIjS}#bD+1u=OIRClxi#hB6h?w_{o7~a+9R?m|uoD zowN?+A;q|Rl0l4qV3BYmMu9MIfP{V?as=7a)uyU*l2l%u+U5lxONL2eRU25bkP~~b zY0dkGYZ~!cyL(!5t5*F88T9~r9j0|LP&|;|Y+)UXFd-%QN+xSe-h&NR6_kuoKbSu9 zkyL#M)ZTQ4?lAtg4PP^@`cW(*CX^B%QjBBM z+JbHL8Q5BkRGj?vFpoaSWK#hbHWpq5&c@gvM4$yPW0ZH*X3!J*(i%Rj|a!N5yaRug4+bAogYpgM_Rj(K>4O!YiA*K zEl2#)Ur7Bt#7O$*sojewwivi9L8*{AD&~y~Ff{rs0H3ubUDzUAuK|ei3j;r1yyU4fIn^noLcSw$DBOoWO z)vjOF;PViiOo?+$<|yHyW044OqfvDHiEG;REX83a<*wi!-Iw4-=dT%Rd`X9h+E$6C zzl8C*up7jB+*30@?S@M&wXX+n@x~;TwU(vE0(%z%ho?=2AvQ6>smL^f zx~(jMdz!by^x19NrhUCbQ>+rJc`NxqTGi(g$7Q^Vp%&XYOJRd|DT-WZkw!@lQq81+ zapw20c;kH8F?Kueu#upAz5J~Tl#QXQE;R>NsS9_N%tj7E6_cYy1%l%Non$A3YpE*lNaaBxmEgS>;6x0 z|K;=9JqR{O;xtzCC$VE-Eg$3{=NrQZAR%<%`L@Tr|zb7Eh*Eleafx zg4Zb1$Cs0*<<=#!ET5NhIl-GIy2H?U|E9bnr5xIx!Ec-k3e9&~|; zj!g1G3v8xp>a{4e%!n>^v6W8eq%JKzyL*^-+YcJ=f$Uux?^TyY=?Aux-;DP?jdzGy zRD{1q8L6C(Nph)*Vaa2pwJRYwPYs_B8}Ho)591A!F*x3?EucV0h2M<#LyfmLaCHhs z+^Xyn9mR=K7fg8X0xLRrt)yhKo3r07N$^R!UM$Nc6$gb-e?{(DBH zgcfHcW$HOkuhOLO*?!x0=$&_)zJ?vvPwj(N?d2d(^_eSgyScAH#GBL?$D zBa5c)0150L=(VZWFx_SS-`TtqTNXy_)bk`MUsq>%w#=gR6tCA*Ku{Ip%8 zLjr0iAD#W~pMw3%!H3+FY`owmQ{13Lsx;vOWpQvFg(}r5RkDg)vF@VwFYZG&BXiDC z-Qe9q;@+wOclD4$vMzI-q*mNHp)B+mF|!E{kqxWVDm7%`IZyX3q>-uSsEW*>ka&B( z)S7-2^Pob~&R1Tg)=YbuM2s$IXLK^DxLP!o^7K~wUCHVD3+XD%;bcc98CRQit-raN zJ-ZQ2n?)ly^r!6th;LV-`7ei_aZi#7h%70YG#8h>EYaCwgeizLCG3t@JmbZJ?w-*6 zZ;z48h)9Iop)KvfRPAJci{mR>H@_!YP|XFNGG>s~#&A|*;@ZlTgmQ@z;B?G%n4u$! zAD<$NF*`%4h`WWNx$%AH{vblJk#Saq3njz|-6#|cW(#-el@3N~j+mirol!bTC}Va- zNH>rW2p8UFRZFJ_%HckURD7|SM-c;PAyvwO(T%D}K8h9gn1Mbg>iOJ}N;j9Y&YnG; zUcS62pDvz+v!<2V;-40uEZDhOpCnWR1^v9xa4>x*EvPz1TM(Jse!J(dY&~alYODL< zhK_^)T5F4q8lgZX*_K?44?!XpFgbhBUAVdquJ0d?Yq#PPK)VL`wJm_n0)Q9&{iXxp zabHX*E;$eh9vI6!rx-n}F-Hp}_dHbVj5!V7ZWShYzF)Eu@La-*Esi-R9#_Nug5|({jwTVw4M%mYAEa z0)>J8Ie079WQ&_(wl?Mu7&(5oVp6p{Ii#5FR_LjU8H%u#0}GuX1ND~)c$AjO7bUAV zGS}e5iSR}g6YzBZd;`I23=2X7HL&G&h-FF42VMgnL|G})DP=hIqNbx&u;L**#E860 z!OreNIBF^l6Skks4_?!jcEO|kNg8QtF|2|u@EEzLh zXjB#D=9t3Qwve&U$3`B4Yg7lN7+CBFE^|M|QF5zvwY*Z%dYuCpFG!tJIR@obNi~G5 zICBT;;Fwj^n+2^ct0>w7Q*(8-zB}QE-8ar^T z_A-Zh;LsN#lb??{JOtOM4#Hgy*+Fqnc94k@l4D*|^)E~1{FL>KR>%aHB%?#Zn#t1L z@#Z_B<=L~nXrp1)_iMe<%yMlSqw)QUPhY-y$O=*Clg)CU@SX~0q#9u@0^)1xl~IBM z)rpoG;z*E>t-7n(3QS)0N*3CNW(5u_ZWYShcbxVyf}HvO z3OsNbewz9Pu57RvZ%ZY@7?m_tj@b$VB>*#(=;VCAbfH77_4oQWQSrE8wh#d456slBfO3?*Ou?y*Yhe8_FLD{Qw(qLOvE}(8fy|LO8 z8b+zY$igjAW5SgjSxkWYa&s)y1J#w2Z_0c*WA{i+OmV)F=(wWFmC zNzT23TXG-;#*#qJjcTG9 zIQ_qYMshbtV@o21q?%SL6p>U`;kpza$f~VMTPo>51K7d#opEe;7(>{mAuMg_dUzh~ z`rGV#VkuOn8H$&Mrph<^AVj1^34^ zs&qFeg|`RFoo@arh?5CICTk4>#v+PG(63W1A)5eJkC5NXt-SBMm2SlDA-EX~t5*A_ z2C-g$;d*c50M$YiETgh;v|KqEEvBZX;{47P#R8X6q=N=%AA={j8Z>xqy6~$uc>7}- zQ#!%Tu!9n(TRJDTO7Oao)Iq^cWbOk1ay-En6D5;c`$Fq4f3^bktv;xyv-u1+zr)H& zCe{Ywo3Uvewt@ob@l|1KC;Nu(ORL+jV61=LtV5f`vWP`G&odncODqM3cnWf3aPE~y z4|~45%j;kF0G)51IMDI0!8g$H?~m&0uWmY$HJ84%?i&~9)BL!+ySl1vW#10T>Obd{ zH1_Tyg^SSsyVJ9~_rdwI>n81N^TlPlp3^pT?}PJvJrA9GtUAE0e_OSfZ+~lEYO!kH z_SWWIKUv%cwFP4r;?*^GK|1I~cecvAQIlKE?{2>6_jCW#)u8MehwbiiqUl9<8^=D^ zbWrYfd6W4)O?zECeYR4Cy{_Kl+I`-%H)gvpUbnv7eL*|2cV2K#R?_XhZ1G~T`^#-T z?R>jZ_Kw+Rds(C@1@QLw5k7A~2rruNA`d!laX+q$X)a%NeOE&kVe3I?(0x z>nzdx^UbPV$K_D%N$K?33NVUDHSO%r!tHVOH|U1!c-qUqm5m4pDu^* z?{fI>qs!rAE{DHyId5Ff@4L$xDb3cHx}m;guybzZa(KUM${l8oA*{AA^-6OU93n!M ztDxN%Zj&of1{VS?pB;>2)a8g?73>y=J>KP5ol^|XxO6I*)8}U87(eO1pZTybQ2ffjbYj=2~9aryh?LKdMhd1JP zc_V(8H{xS%hL5@#ew>@xXMs&BJ&^56hop~=Y`BfeW=EwoO?8#CXc7!sv`J?Uo}OjR zZ~)?99HVYVxq-wc;Nb0|8r3&D6o{wZI>obOa%Cp#z@x}KyGZqAQxPhtCSBn`H!~dB z=uMx?TanEszY}ie;K(Lb$ts4RNxF(giELA?BG;%CqO>fXP&^j%;E~O+n|ZLv<~4OQ zzb`@08#nXD&Gf9=sGHGtpz21mB6VyuQz$`F#^QWt*5*=!aH`POu2IP*859h4H2Gj0 zqi#m`HVj)F;&?ZcOf8a(vvj5=BeK^?X_t~V!c@x<&o~)<*Ug;o1ah`0^H0|;3wH)J zn%RMMv}P$#ueNhJoM+G5e6hXz3driWj<3-n7Hw=uB{}0*^hy^hTBl6R%5%@Wb8e@v zne6m6=j-Pl5ZQd;|JnZI{Q{g*oX&tRIou)b?`3uw^vxjMvge!6`{w-r+*1gDfNNRP z*=w*Yb->D#J;XGOnQYB@|9m72MB7M@gTVJQ6i4ktrE_kPAqvnwJCjw(jLyXhV~lha zOk2k+whkB_1ZK=`Q+>ywjgJZ>iCvrs6MfhDZ9u?%WH_o zS?$3XL36)j_d~5(0g~13#|Wc1XblQ>y7<5t{j5?6yef=@@tSCC5@i3Gl7O@7_Lm!?iyztNp(nWwrkx zmQZe6?fYE~IbgwKFAKKM^19Y?Ab%AzUmk0Y9XMK|{af#ntVXz?q6x`W?Rj!hDE`A6~!Z{3$DJoRz;VWfOQYC}~QKX!0t=eX)l^A@DTN}9tnB!p* zZ8j&bZZEX2w$@>eUB3kJC=RDYH5S23qVk$d)=(>*I<=8bpaK*%lZ@;QiGE{_-lNS*)RhHpQ0IG!Fv zIh0%9_T0)p`{Rcku+VR*u339kX)FM6@RE3^o%Tol@I<_aRm zD&bVx_C!MvxteLR2TOIhZiq~KOKmD6eHMt!^;-q~ua#hvQoi*#Jsta;&?y5nW1sxsV#lv0#b zKPd$&MRuHzAKB|N-m>91o~ib{kMINC&i4jJ)j^_=pkYY}005jKn93|sS%n~qg<>d| z-^B56eEb_9{~G)F6V}h)qi#!8}sqh!C`2-v@NzEt=9ud@B7E`Ceqm?6{H9;M1a*Y z$jr3NF5665hywnRo#NvM<9N$9+YaBjy@9IMKEA(yx;HRia&;_PW4S{ppR13Gam5o= zQKbP5mM0tZn>hZBkALIi-}v}9KK^s|@#As4y{UBEjpK#mr~7!3vXxYrzpxm54Tzq3 z_KZhasgG`o)C@yJej2(_AJ5fL9KUKdbE=Qe8eT95O3k++R8ReosYXq3W7oJG$@`8JVEhTh}survkBp}nKbN^>`jWv ztu>rB%S5UEG17y;RRtp`qoGV#PX(bt8Z-P8Xe=}MR0);1miG79C+!s-S$lg0v>kBiy04iOSX9-NQmd{o)0&nG zGgS?T;h=Ut+HopCwdXOC_CUZL@saZzT7ElY0rw~f*ST$XFPu01s(@c?Z@x~yZhu?D zP&pZ{l&P{g;8+uAn{o1=a)9d(Li{oF$i_5H8yAMM)8+_Os2A%{KQdbfS# zKz+WQM?TibZXfyBAnqOc`1aPD|2`z2oSrMPBOT-md!1Y8&zLcrhv}h*B3ilHJs9YI zFgk6hu^LxQis&Wv3*$~ot`h7)5g@+sJc?zx)sXifEMvCKGdXl5jNruDLv_u-O}4wx2Eg-P}xkuv4;!&i{Q@btt!XXjMn><7}BVRfs^V z>xIiyIifPpSwcipq)EIKTC~=w9*bqvmMJl`qp-pvy&CE^e|MiXVUAa^e46au)K(KfPL zVeCPh$4(`l4f01sxpy`NYUnu8=4rU z&c|XIwPiOoWZvpyImVVzofRR#z`XLs0El;V#!)4K5L5DC6qz2?wPk0!(S*f|%QU`R zX5j?PuH~|}6pnENHL(7qx%Uc0`^(J&v#PM>p=gYOOOFNH6 zQNkpUg9~46IXkYc=}qI231F?2n7yoeuVD{rwSk$)8GLwfI=EzXoy-NeB-;8yjJyX z54A_BhD_-ebkIt{iVByl@kQEFi-&UWQhXxIfMw@v5_uu~;w*>ut@62}GZw23ihF3V2jaHguqTy#poBe*4?7 z{LRa&C$n-n{p=+N0Nb}hQaN+ewIi(UD0hmrXCIv4n?k+errXj-?QK_Y{;k!olb=oF zJj`EA{(d%}Jfga;)B0k1`FQf|#RNazBwM9LHDmzq5hW6B@~J}PTu=G^&|4WdiTeLCkZtkXOwl@7!>s-)KSGrl>3VY^aN zGjLY%M3B{K9T>FH#h?H#@Bk8QLZ@#lvEEYsgtg!q|C^+-Vir}I%(Xq zl0rSHG=20UnGEt5;3Z6PluF?o^@o#Gpg@HK22hVHsoN||-Y6+Ra?x5+AqIN$ovNfx z8XEUPXigHhek@uY>vLV zWKH#!YV>EsIS~krl@iw+prmS0N&TkeS4TRd>H?&SIfKlYUdRYK7f#1eQcPWI^X)Fk zaCtesc)3XNjF6qBiz(umhFi0~t}00-Nrou3ZXgQ7h3aSj|M{)kub|qW;-g9X(WCb{;O`i~0Zce_XyZdHQF}f_8oC`am)OhlP2<17*x!AsF$J2hF0e zg@M{KIuWbcRyWwaWw2Y-Nd_Bx{PisvteSRnkh6ZS!2=0F2P0yxk@7_mWtyU6cHmDz zM#>^Dn3gtZv#VEE{A5<j_-lB0qTIf73_CyNqNyIi3S@J`+AvVVUR*4;CJK=%&kx1hxebYK5Z0&T#d zh;!Rwo#9%5eUJ+V+b@#Qi95{ltX(`A^lp_W(Ec{fYC$*C9`5?SQ8NxI$x@&eZ3uBx zi9SgUS7|+7nS+RccM0BI$^FjVsDae%P-VkzN92x#?%H5SId-}(|L}v^yug9AzHL?~ zKmCy2>j$&tyOZZnrs>J#3L~r(r&wT`wlM>8H~SFy|W*qqI*c+FL-Q`foO2#g?R2El8lEeKPa8N($s$BOVYgNZK24 zwDw#SLOeQICpq(;TgRh6N>Zbf1_Z0`D{0%W@s&zT*AGrUS5e6(eV0k_CKe>zMqre3 zrF^Cij1trW2DogkS9Wtl!)Imr^0(6~^$7^0JQrsJ`<`G)j`w#;q*=GC1jFD1Ss2Z2 zSD3%j{IUkU$tdwgaRFZtTuwd*DJzB;0~_gNn5Kvc-m!G6n!Gdq^1G)2q398z7Dc;} z&J6f=e|`0C6h;?L9g(ZeUQ|(CsT$VT7@K*{DkLYR)mxnQ4ivjplu)=~6s?Ln4<$Yd z1tKVwFqUAX&I*C~W>rpv#Q_4SIvkgkU268;Z4|5Z{>9m|@M*a`ySli3JiWxUgSV1H zdPONiD=gpH`jd7m4$Q!`3Dk&O`=>$va&_=1 zgRkBG`uZw|Wmz;_ZViLxCLmtTF2Us%6I?~#e)NkEH?xn4!XiRYqlyESV=2ape?&lZ zifGkhHgX@F?Fh{sB(yPo#`p~EU+Sh^X+vt|KoybKKxl%r)$qfP@(RO0gg7>0vT$V zaxLJRM^4Xy?PbWyZOWz%O;6bzpM|Dr1P=#J&wtt}w28P+vFYLj0uMx7xs>Wn4DdB9 zyX2EMHJbpMQMYaLA-XoUGfDEZx7kE1HnrLqgIzmJ*It#_gsYKyNavudA}f~QoP8(` zHm%B#z{MiMxN@}EMyKdaR>QW~8V^TV6}BI`ycS|p9)#XiUSLr&c(sh8!Z9SB=o6hx zswTOuCA@Fm7F)C4aD6!^;OF+7oeg2Z9>WW`MGNheM!TtIgc9{(jX# zpm-3fh60jib(R!ES|O?Pf=h6xGDn7SlUx4u+qXf5%RHY=^V#awK*kkibq=T=mGbQG zq-x&oZ3x6`e(ely*8l(f{q_Otb>bDO@2o#=mW<2f*L3~`a|^FCdDK>qnWT%bSd^QH z2Ty}>0?Xm5!ULHkE0-L)3PY8QOEypkjk0SEaTM;Dc1kPy`&Pi+o{aIv4xCoHN7!&% zGAe~RKp6loa*VG=?8LcKDLO`n47d*E7}#U_i_oR-#0Yk~OCUAK??d9w+!x7G4RAaW zt}{wnQWC||VeXh4D3rZdjMlGlhwD6@baNDzgG=R`8>8 z&MO<8>8|?p$mJ;JF+Ddo*@9gwF6HXTIa3d+=Zt$gMc`d_h~pd!&~8qmARA{@qP%|* z#3->I#XhF&#`g|jv;*HRfEmRG5)AJVe6$i4&DLrV^qUMdkTx?bZSbY2M4A^A&wfRixTGP$=T!UFwbZDr9M~Z@{IS=6hICH+{Bu9b+-J>il!)IX?ba- z=D(d@tdAJY?7P`~$4yXrb2TCrG6R)yLp^KyY0Ax~-v%j-FU1&S(u1kB56 zYF~7sH_&0i5q4Hv6|FZWE<&zg(Md>Nl`j^4%tvo;&-1&XBT8BJRlSvf5&yim><+UMhGwW?2SBB_`((N5Q9QI{)BpkR{;XwVT88w|k1NZz>(eSE=g5=gKbU(28OxO{Cc(CwqxV%l3os2h)uJ|Cn=(0S=0Zm`Dc2MF$=B zTDt6wW@hV@;@zG??C=zdZvxsIPoWU^+;|F@iC5(*6bOQ^K4}Y@?{hJQ2@X-@nxkMr zC#QmBwVN?y960VDocKl z_KUkbh2pyJDHNgu_c?fqWU?oMR9H+bfG%a2$f8v#tTdAg z-FON}qfPN7Pk|84yfRM_aS>0&OBaNXO~Fb<3qZ+39g55N$Hb_5CHs$($1YF7y&3Wp zq$6tWDXfv=ReA~ph(2XWIrcg_35!|1V3ii{9UUt!;8$EGdH7rz^%SDF_T0+Bww^+` zf#lc+(+wL+HB9MJgE7fiC4|V_q`*QB0rSQblU+BUy4zFmU7kX2BIk~$;7+d+X{c0} zcx9eK(}s-4@FwChL1mvDbwsF`A`G;uSlYTths6~94o@KmQi;f1tol7m)=xfoFi*)j zsd;1|2Zke%)TszpgrT${ue~h1S+_b!`}v)oLJpkLgLP>8MK+$|)oH)Q_~(G>Z$&5| z(OM>I@1Q)(BH83kwBE+j)&9FZ1wX`7NH6-Hf?7hZZK9Ez>iDmKJeAB5SSJLSyrz;p zXB7-O3!|(RIeF%4a=A+$?)DVB1+lq9;UCI&x#-8zfj} zF$pmzltX}0beEX#_7rTFr*NAhQXNmhR`UXJ9aRQ+Wu5|tkhaGPmkQ*-vB(QXCNV2K zrQM0@H63K@F1+3CDcBvJ!fDy}6wJAmrw{|@vL6h;rJ|r#f)`1t3)KKsF3RAGh|cRI zn{q4hFi*km^c1dlzJ?@#p;&tg-tQaoU<+{72~iO@;<>`5N(J|8QWR4gj_^8(a!pHsFjA;#gk8)o0_ zDR#+Ym#6Sz*i*1(@u`)Hwu-+>Pa&c))nz)h0Hz;U62!8MuHe4XGMz1`CMMG1b7j<1 zc-gNFMRE`;PXR9b%H|475WiBnN+~Pkkf=F1ZFy%zq8X8=tDxOmg%j@b6msW2g}zC8 z>39liVbvhFM%Y)l`eZY>yy0|oMN33cGHTkZp-F1#XorY0av1LeJcYb#pMqBM`kq2q zFIS$zy*e|QsLFxy#!z-s2%OvCSk07skRzr7Y&v2sb%>{sckfeZ<_A25aGtL`1@o_t zClygCLn^>tgEboJVamZ5Ngp_jBFiz`;!D>u-sLIeLHiW?rWbL?Q_!kHYZE2)j(K%4 zg)G(Ts1U|@t*Kmh8ectl1i147o?^E=c6bWSB_H$@V#TK*6}V6SNF;mMRG_6%90JdTe0CFPa*H#r_fyWduP&IS?yB@?O&az;I+_R3@y_u zVAYmavL87VFSw*tIBkO5TC5)P6nJeaEpR^UDInbb%7gT_-OuF~3`;(=qYyVq{Jyec zf-8u0z@(+jh-gv~1*Wnx7%U5mDZA0sn4{<*-|Z-jkbOrXX}@Gu-sIue=*5jyP}$g6 zoCQ@ZWWlAezG}urQlcbDrDeIzdn$hi|CpmN!rV?*Y9-KaQ*bK=$`C!22nv(N!#ju= zYy@WvJ~3aC2^G#GYi2DM0%7K!j-o4q{Tzi6n}*akjsnuqt6V)UC4!!Zb`%?Vcv-wt zJmmzT_!yi4X|%dfoAeq~l*Qy*se5~>#F#y#>M%npp)7>QfO}Y|k+eRsA_v6?n2qbHty{ZVaEmyD? zIh!`DG`1>JJhLHWWxKxeXD16}%$NdyzxxD4;@XmKexO9peTziI2pdWJMuk_*jcSE= zh&GkAh4aXzX0dGbeLY63QWaY4t^=#P4wg)1}$o7vQ-LohVqq{`Suv4%` zxRSv?Tuq5POk)o2?IP4>D^@+t$jVV83;C-diy~J09Rro=?pYunp*g1$kCbehWY7rI z5vWQQQ>aOCMP;R=_V;E{v9j&WQX;E^b>S2!O zc#nQZ-eF{kGY`%ivof--e~{>&Wm0l&Ihv%uGbOZhGA0vpJ zR#kG&hvtiDvu@}h+J4$_Kl1RkAlmhY)4@1veOAx|RdZFbnyPY6F36I*{N(SBk;jNp zm9z*sU{ql`8b8C$eyhdzBM=UQC8`8`2^t%yq^%F7iX4o$4mOqwrW!YrowuJrMog-t zm5)IcX%iMTA2`MJa1v2QX4)+%psgBY1W_>JnoKPY5EwJ1c?vnP?k2*A$4O*Qg9`a< zih+H-D<9J?9fCOS%T4Y_LW$Z%DH)2O{C3z>@O;c8Zm0=OszvA=5o~mqj{k-vluHel zv-3}$%`WLAcKe^Eq(I-0S_D?+HbJFA0zx(Gg-$!kdWQ6iKmCwyx{lX$j=ySVT68+Ks*M;qas2_&q1ky_C84tpg@!8#Ky9P6 zH-Xa5DOw&96Z!~r_G=VG$I6j8F&o}d{S>|X1CK_7q%8n9bTXBrPr}pCy@YWP$Yex_ zPFOYc=-QKrke^QH7t_fCXd}dBKdYmA!6&>Py@#%kw?=LEsW0Z|o32?3#JXgXzGRmq zTlnTim-J&f+AH?}{pQL1yy@=MqSB5y*vw7aR<2Q%M$EKzhEj>KP-VO{_$xqSRwZM! zOXx5T2vbACT8bw9^pW$t{3`DbB%!{^aUvbxq=(+Ar{8eP`tAth>e)BHd`veQ8%6R) z_fDCf<^CZf$Fwg84G=uo6p+igEJU!Oc}O(b8GPWeBpWTLVX5Aqk0*GqW@sr__KJJa z65NiKy2KZC%yt`svlYhSQ?vK$M3hHSZ4^*1m{@d0chcYRa91^Q%U&99oj*Up5*Wmzui#`@e~&M@+*vC@^Z6y zjZNzO4A)G1R`<3usk*66TwAH?Ecj2lOZTL_^YQxpta*PvTa%3bu{l|yDL>22-@jWg zA+B3Z)_g$=U$)KNy7;je5_~B*f2CM>~z~R-QYyb6WoHb4c6Iszl?q%lGXa z8aqv-q^@IwTay^1z$e5ddbmk2NsYb9vZ4cL9<RSF!K$vFmWC7+GyZG`bhZq14gmf z-~fpSIaG{HePrz%zLrCgf$yG16;Zz_8w%6eF&9eK+~krmfblkXS#%cCs$t@}9f%FH zug@S%`Y|7qDSrQryd2K?P}S%n^pONg{MZN|+XZy!GK-p3-`%Up_cNX$=2z3>XN~^zul?%$sP@ z4Wn*H74S{5)A83y)Hy6Bu$W%X;G5|~negSMrr`F!?e}^j>iwD;ujACSKIknbs1TLw z2Y51XOzok(`s_A60>3+X42x#k&65mywQg4FDN%k-Kb|%5bUK4)Gr%~bz2?&J5K#|v zUkXo5WF%ip>Q@n=&5u<)a2+!DiwM%Iw}*9a)%2Q?buhOj6}0xK7a3DUIq(^sOP$a( zco{i5m@Wq{3LDV|*CBO3yCbP)dyap9Nqw^=6@?fATozcZzh2ELo)r^WSBO$Go#XX@ zC#IR}q9IFbJ}Peg>E^;cRiA#?zb49{X;Zw5<(z85(8zTu-vumJdD*PvV%t?c3`}a|dGsg5F5-mN^La}H|^e{Xl`28W;_cJkpU`Ey& zY1Zj^GWE7D(Rdjka26ylLTWk}U;+)ZO<5_1v17teCj^l=x(MpJAna#v1OavTm4tr_ zLRapE>_8nIKL`p6prj(W&cy>d0nC6*J~*2#qZ-fS%4V@?{n(8GSP@M=vv zAJBf$LGx-oUo7ZF|8c6Sgz0R!!XZ1u(GLz7=~Lo|drI?5la;l`a16dPcd$Eo|F1Ve z;uo8VjonvREh; zg6)sdYQeb?2UM;Ei?R=2U(vq6} zfBRgT2YcdxBdeq5Z@8sgtG7Z?tfPd*U`>G0l;(Er5VQ@gPws@)L+p;SU7rmh(cRG> z*CX|OM-eTBuvVFZUO-AEDIX>By!FKbD3iRi3eYOTofCbCy(JTM>VSxDts{Q%b##0b z)xkw;v$2I%1_)jl8ahv9&t9eo!9hmH2&5iR{pfhA&*v$h9pY$IT2~vaS~^v~+SU0w ze0Xa=osa2$+s@()E_qa4NhD@c#Mqg|U@Y2mwD3^^Dsg^6WF@xF;0_~q z%|k|w)Nx;z)EtpPsZ0-DT`C?F)@yvGj#C7Pf2H>{&#v4hsfXBC2{BUXfuwdPNVKHy z#Oz)x;T;32lva$H3F{sUuK zUA1#fN~v`*fF&m@XA6dD8I3b0(cTSO;Rq>W#Om&l(nDOUQB1~siY{l5^p0@tH7PB^ zp*~f#S^%;|Cn7}atPJQuYi(lA8KOu#nfX5*P3a+iMfI|^qT2!*e2U$)eG1;I0-87W zlGaBUlauXEL5eU2zsteMf-FzMkT2{0mTpKBW_(Yh8kJQ6|zCV&&_0sBU&5!e3^g~B6xZu2YpkCX(S5Nxv z%hTzq%TdtN$#Iidp3W8*>*h3{Es*3k)+*C{mIw#@`~@A`bj9DaShe|Z3FrCS`SNMA zo;ORXs9d%_XnU*X<1Zh7h96A%Sx{Cek7#W$+Imjg%uv(E+%EoOkkDD@z8GB}kl8Z+jU}+CFlq=4LmCxLz8!-5wG1Ix z&BX5zY+XA?)$Mhj>|SB$3;G!Xb#)Ft8OTTw#)#xIqqoH{B9s_}@t}?pV169|HdSGY z^WNHSX0D_&-P&EeSI`CNrJ}vmBAF<>4>1%IsUuTsoghf-0CZwUv0nw>cY0kaum z*o9N~Ux2O4$^>+7vo}Rb&7#oE<=`YZz!=pQkvUqm+aY*RfUO*v@s9|0^FX|!L3{Ta zLk@z`aBm75ye;UKqszqu2MC6vA|!0J5A|{1H8GTX1sKiO2y~mQ4VS{!6$AGQI-${P zlc@9pjpCsu6am(@d$ps=D7wZ4^c2HQ*-t)SfZa&Tr>7~ztpKb0&U}nh`C>>Im_iU} zGy-{kQYZ_$P+z_~uZ+iV)UqzR03H%#ul$H0Ba*E$)J)cH;Qa$KiGaboizviNo1jsO zvkDE+;Cs#B~Frct?~t2}a&Mnf^XlQc6D z3BUTu`*`6m=)yfvAD=Xfi)HRI1a*-W6{&1L(p;>kXVdlf&3rliYC40nv+wDk{>k_2 z)A?+`O!c1+A z9s}yl=!_c{9PsOrw4c?HHqSq`*9 z=-j5_c7}gnleYc5OSFj*$7J)|gf)I-rO@%jiNHcGsF0J-EYg}oD%|ifhzO=c?M=)y zYkfeRhKtE8uO|^MR&ch{J+`_G^Y2o)S}ZccmvwlT|K$d_?B{L*$d42wqVexeiWM`ej*VV4F6jO^nHlwIxneXrocMH- z;5m7a+VSE=Om3&~{3f{Umkh*3i;=dxwz`819LDNvn=1xM4Gzo{MsiK|NT!R)g zlB}JAjZ&>h0siQf2R}o@@X>O9u~^~jXD@#I;1}EPKbx-B54u12fmfI4X>C6-c=h84 TuRVLQ`ONRw`}BM=a#J5ppPFYzy+lJfBrkvQ-j`l`{VctSIbw`!g%H;S zE{@>hTlRe7$Khpl5B>*#BlHpzE!9h0{r9PvfBCi7C-AKJY%*Fd2Gclr7|h~)9?rsK zIryyp=HUK=_kT5bRCQz!r}M$b(1*dJpA8gr7{l9d+o(chh&mA*3Q|aKkat9BM-?%~ zBg2Sh)PMQ4KmBRdsnbUnXLdRsxnG#G04==Hf;=oj{_<;IZC?F#m@h`t)a&1^$N+bK z_F^`jFHb))?sM}vwKr?G*R=EF^F>&^`;&XAxfjE;8t2K@uiZKl$auigbz24Jj92e(evM zcN!{OauhbCc`$NevPeyR`N2o`fA)(OT9`1Gx2%pDdTNcYpMwgai;h znM}vi#~0AZM`znqeEq{M;%p%QEgqs1^3J^u;_ZEKF&h=0DUrPO7|{6y!(*#K7?14G zP0!AzlVLocxJ2(lqnjb?y?Iy@9UX5y0IasmpGd6Q$TmGxwina$xeJRVqq&d^AsZoo z1McrixFA%%B=FyBl<-J!G+gm0jm3z|KqAI6Xsm_M(l8tY^2)KxKu!PlQ`Z4i>u#tL zadPcY5f4mbs{>PxQ)dacRKq`=r7WAVhE0+NR<(W84-f6EXzSLQw3H?2g|&Wl*E7u!90MzW}FBc(gk?-_ZnC~D8h2*XZxILObIU- zA&x3Q3MrL))Ppjh`=32rYl_!BJoiaU?+g~_vn2MT$>YKDNk~n^QSgKNi3Tej)oyd} zc53jQ!E}w=p;sTXaGP(WzJR87{ds$*D;qLV&fu zc$6a1DefcnRHG1iw95JbO2i9>Jy*(s3uusYM^ma-nJ|GGO5MwO3MiPP zzFTxoN>1d>_=1Ph?xtM9*S@#M6>M4ZqDJ3gs$M-MG0OE6uvQ&uQd-bc$MTkoV8TJ= zTFoIA5tImrY4BVUM$-onHB2MwkA&5$R3s}nUMqXyA=RIbfo|WGk7oEpdg-b1F)n{yhQL{{1R?9P~Pl? zQp-Z4A^Rj_g_H*(ybKn?Ne7kzivVt>XFf7vj0#LT8^NmDma==NgtYd&_c>#PtS3LV zqh^AMs{9O!ILkC1En>c3eR2!cW>R3S&6%SrP*CYsQ;(zdz$r3_=n$}}rdp%AqOg{@&0{%N1=m-@!_nrZ!tk;651XX#RIHRKsIdBx2rcto~kqmrAX~H8{CIn+# zU=+6}Pm5Ns#@S;9xW+{*fOYMg5R{_L!{$y4(AMLoyrfJ@Dm3%PA*~1jTPFinRO2Wi zJW;|}*{S-!)vfxEQ~Lkvc9i}rm_{v-|HgFt|M3cR`=Ls`9@L}s{NLw!*4!$zl;g=> zrO~VXg(yr^f$FIIf1)A2IdF!uM|DIIkdX{g#DaIx5u-u?Pv4vR|RXn3uwuqhV1?eGmcg2p^*nK~tg#7nm}Iv5R2ebifX^V12iigO`iZX~iKe z^Mwn_T{6N+VR%$EG5!(@%t)r$|H-3|ni-nnq8@P!^ANT3;H?{vxL00drYuTRp)zO` ziE+lYdi@uDz3!X@l_}Gqr}JRAa*MmC^Dwr7BWew$U|2b$HX`e}!4O?>su|}_QHV@h zo&P~!=X*p$Ld;!?_?zyhDfe77_H>_75AmS`qALRA#}M~Q?X7?y9E0~Gq+nEPst@gc zj|@Qf*VAG5iqr=Z9@~F#T{Lz^0?j?vjCpG@aRf`_jj64KS^NCr4>oP<`v?~b$Ap*>_l7zt;4riivQ?Vke;2v(S z$xWP(gjfU4B?{n!MH8Vdt8rQdhMo(jT&&iwSKU>IbT_#1XtoIB(d6@<4pUm}Fr!t6 zrB-=|jmAhv1JdXjMu7Ctu&?t ze%?HN+5{LuZi+%u(V4b(%N~ZAL~}tG9o7iQaa}Xx;5HSFmbMoJ-LX z(akJdR3s4ZJ@t}s#etzA%5l|sP91feUa{Leb`oEb_Zv7E zBS$#&ANoxtmQf3y77>F*9xOTNZVu+B)o*-gzk3*iaayEswLSyJ4&{uYBBmCMZA8Ed z+(s<4!NMDgrErFVC&080)jZ~^r|%xw(_W@vs>sW=6#N|Ay2s}&za?pg19x<1e zP8Byo3kAWcuvF74bh)1)be_kw=3~mJl6jvQ$XFC$_OyuLaA;2)=LSRqf@mad5LgmI zC~EbYWPM(DcQKofCXY|OS(-hnf>T*k6{6~^Ml$CJu+tDa1}2Skpd`Rl7_KlC6j=qT zI0mW$XmZ}_>W`1@YA;K0E{c7wSb`8$&=bK}VKnzq19gKA+GEQ=KM)M9S&G5UqX<`y z(xv;{%M)DY?o;B4I;sczP~eFW6mpCU#~An*6hzO1uS+>tIf&OOl_dBGzV>UIx%MA+ zcX}R-TTbUaydcQhM_Ns}S9Gn{Bq>)cn{$8rt$#6_PoD<296p{;&u1U`fBEj_l9?|@ z5xxpnn~C>-cE9e;AWR;QCSfpI49p8T2$l&k zfnyU9a4V+T5UL%pF7u?#j3yo+*weB9)!q+)Cz;&ff4XsRZ!rL zfWh?Csc^~e_Hu#jP>$7FAEUgz9J`h-WWX$X$qiuvLU#|0tvL=Hc-Ihp7up6>s15HRFg8#~g zAALHwziPfwgYv=1&dvN{uzX^cgU4YK<`6I~2J3EsPMn^BYD_QB!)&@3f$F|kYdRS0}T^R@FEp@CrF z6@h{D)`XN%45rcgh?DnkJPQym06P$`S~O5c(V$1dlHZUowS$ziiV95PLazGFP$7W- z;)ROfds(Bbz)^u;1_BEqQII+qq=X2Ur$Ue50u|Pa*7w>};Pr$f5<-*PAp&M$iR*wgBg!INU(PH-)xhhj{cMe&MZtV-3Sek)1Kid zrB6;r@*O3(Mb=mkHqs)a97JjmPqmf8Y&`Vy>Bujplj<+<;!Ij~s{cBjjjF(BHa-V~ z{u1=~5Etwt(L|$sL5` zMWPSUxj_b}vQD*CC{G=}CF(#RAq|QS!X_^)a$Hz0AdCaIkAMbM0*I81%T=kA5+?EM3kwh9Qa#cbs%0c!Wa%w9Z&4=)zxZC2`xmo z5Y>XW+>KYsdUzF8rCj9dw1ju{sRr@A2GM3k;OFMd%@b=pY@S?!#o#_86G@tf zvW6HJDB{+EKVgZpR@>-7VOZCl8{6v7Fz-(xNuVM}DM{e1c2lb+HcPA3d!0-92Vl-t z^!Ly*U&S9bOZCs6KOdTzf#-(M#E-`H1B)Lui~Oeq1b+EqSy=4NRrY_c zSLxxgAu#j;`gF3nvYeaABCRa9u01p3k*}osBq4j!5TN?;oVuZ(o}IL5Y|lqyALd)v z{3yn)3+KzxcSJq=cGs`C}nK(H>COYDeBpMnQVlWVmDh30c%nG*jdPM_*c@zUU z+2GufG+%-YRtiJ>rwKEGs_0|z(cX#1ooE~;8tbh}2Z%G9==FPGQgE1I~tFc7lQ}pBCO}!z~nROgSKfk1^iB@UudKcH^*U2sy@bdW*GEb1EI{u(9xb1oSE*e;YTjD^ZO2plqcgKu zhWU@STU_b2tLwDa|3j^<7SF*OA1=d-<;m^^(6MLZ^3_HSwlv-ZsIdS=98QkamFsJj zRxDj#m>1>i%Xu&zYIk$7Qimr`D`Kn{g)&Xt{5!Rt?3`I^+Uo1Ae-9I>+P|NK@hqWi z@xk%BeKeV!Z@;!7)m3c3x=zks#n9~>NxD{rTlxXlYd=!Tf_HR%`T+~ag7yxSfH6oK zi6L}IeLxKUMGg2#+!7J)^uwKgxYG}p)DQ3M)enpFvuRm9Z1!hwyARc5HBp!qN;6!a zdT=Q{)gbDL3>s90mJU&cLrnYWAbK+1Mrs4PQxA9Q;Z8kVGK4J7u57D^o&ZuZURcos z4N+(2Qp{C88-I-&B5H$a6qW=95u-$g%V;3L0Cxgh2ONS3+$wey-oDsTZgTYs8j(>d zq`pDCh9P4FHkO&~>*0o1JmdHJ zpKJ_(9Zmen_Rrxa6KVHOrD6Z>*tNohWM;7%3)NB=Z|_kTJ+Y)_`I>&x8hW(`RY+{O zwAP?$2WpVU1Qm@Y3Y<|Sv9<6KhrF>a2+6Uy(;9bL<4$YbnAZ5czB#Ct*64L1wJM~> zf!>gHMii&HM|F9%Az4sHVI_k1(lbx3@&vpmZw1zrP$E)ZLO23jpSzd}cNKMFo%TmC zMfnQLrNKptwWZV&>{PXaV2IXODoQohIs}OcG8CB>xO>%j2Mb?c3@5X*m*?~GX~mB( z(GU-L<{qX6Oe*rKZ7l84tCP0`L78{>57+HBAin-L!G3J!6^8Y_H4tVM7r_c+ZICHx zLk5}(w!%M+Q-KESi017QYyZhUAe}5&AzGK${cetk|wJ!3aLL-J zW{|={5`rOebP7@KI6=^n7{uY@(xd4rMC%QU-`zqazMyQ@qudf4j>~ZP7n04;kQLdC z^L$4e{HI3wjQWggXjmlh<<`>}Bk0y^t@uFiN8eoB@RYAF7QE%W@ zDzB^m)$O($NPpIXwEe&)F`POVT&jO-EC&x83G4%vfx*?7wzg3rnQIq%Ladq=# z0=TaG{@pErs%z9Pi|!hDvWTvmClk7LeT6R^x;J*w`H5de>a3(7Qw5R288UFEPJp2V z(VQE9f7NV*hac`i(ZhQ* zZH>uCX9cG)I>%tS#E9&}(!*&~Q!KtnSl-^nVvP;pO-{!baWo#k6hlIaOr|I<%mN|R zlu^MH>4NL`)$QgBaIOvj>BZ@MlDs0$kLTc6gg4nA0YZ}498!3OzX ze_C~D(EZ?GR?oFp#Ch~&G@qVYvw#OaHQ+%n=NE%V4Y(DpytK$ECn3&J5b8uMjde%@ zb&SwRdxIGvIJT|(2Unm~C;KO&iNYq6M6}u}Vy5#=?yrVuF~|rGq$QZ(fR%AdLcqur zk`k0f1WHoMqYT$Xv`(R_h{no9t0(>$*M(GySHo#ox|9{6gJ(vDNN7+JoFSo=i&2Z9 zWt7^rYe&3$9MMwks7{dtj}>Q8TvY(AF7&R@rkY$sr*9Nsr~R1?k$%_^spF}^d$ZYi z^;-K%2A4l1O;Z1&SI-sn_C`SnNoe)No)>o+TtJ5oQ=Tq9Pitum{N{# zFQZSJWv%c5^XQ2WF$iuM$4oF49d*}Au|Cx#D9>vmttqAm#`zIWx6EV#W8r9^-f0XP z+j|kyv0s!Ufk27JR0E9qw(`;6_;vC0kctTyL>P2fzF zT6JP-&X-TR2`LdRRAEMGZMd4FqlJTu-ufi9-eCM?YQNhce%4U2>#;TM>Y`~?%ZJmE zTF)sn@Q3En1qyKnm`6!nQ0Wu_ix3bJ`SzOgFRp=(edSJWClc0UtP-0X#rfo$~&9Tgr7``|JMO?Ua zFrot)k4|FC0=5Dp>M(>2!UzS?m2$pC(7!y2ps`U!JtAH_=MIs2;TJ2d^L*NGuQgmJ z-5#v;WA~HCD@Lsy!GbCyxv|uO6sNl8%BPaE+@$!B;pl1Gd-?DxD24>E>Ku zmhaSkRdh22ctQc=zeg{Vrw)&0%9 z)QVJLC<+Kf3DF)rKFoaEBperdwMf(}j!GB3VpPYW zX+A7ttJ|iPV?sxi_76k|!nngONSk*2gVLuCrPCP|ll<~wYKvCABB)8evo_JHPLdOx z7G@1^n^+1|x?+mkw40704m3kLD(?iioe`o3*`!EZjO9$CzS+eD-3ctRNsXl*5tjRO8)k~yQe z2Uh1n1g20sEleCil}-sua_#fZHPh?N3*vrV4nq;SnJ*pXLFA8NeO1_E&K0H{;S1jVtHLL22h z#vyoTtk`m(s->l~^R%rqo!c~oCSSt;Pkoq;rx(>^D$ZBaB?9XNe`P9JNKEQNikeE1 ziPNz)xKG}1x=~T**U-n|i)OYWRwcqOD#}bJVbZFi$U{)U0DekAwt3pJrZlpYG0Z~b zj!@=wXiw?j!>G_DKQ%dIo-+#MXiAbZQb@PH6>@N}Ac}Y`j1CIiKnOY@aCQs}0b!I( z6)#29K3kRBPmV5msmY=9NH~$BuIsD_%Qt7<3ONEc9_(}kv&;<#6&r(gV1;5jp2=H? zds&q(bgYbIsdp6>cwvGi9au*j84>x4)~!$h94d>!tqaJc?5JRkx5g?SQQ$-}kd^=( zAw|nL}CpUhV!7S0+B+BD72$Wq=MqnQLZD<=4ct| z&iAXyp$fYhfIDy_BO>?HZiO5)B?=QJP1@DVxJpaI%0=qHA@fuq2eg1FJ=u}f=Dj~l z=+2h;Vb;FyI?$Bvxc+i|Asx&R zr|vvK+UzdcJ*i=GQCr)otq8S3DmbDXLao4cI=%vtU{unVPAd{UA}&g5V(i|__mvgy zVS-%R!1p^qhEh4a|7!i#W)~YgdT)KEWV#(*xG<}COQoNq$r3yWu=w!Sy_0nVLpPm( zmu=v7Pg_8kupFI*&3m2u<*rEGYyXDz^;`*NAwLoXlUET^vRV1k(@hDc)!?Fl_sS8G0bye(`2CVa0bv}X5HtpZ7>f7+ z$ek*%5$BhFI6GNx;A;HLiiBVaYo(~8k~{B3+IT(E+FKU zGBluI4g%Syq0_Qs(OaxEv_eGR97t}Y$I&U{oswztn>!Dtfg>epDi7npLzhgptEm6^ zHpr?()nazhrIORpt0i=}UISp7DZf&W-5T?F^srvF2f@L}?AkGLDFQ!YHu@8z%+Fs-?revqOV0 ze>M)wE)^z)%CjONq}Ej~Ef7HD;rt)gAnS%3;Qx91T7?__n#RHNU@P2#^-*8 zdII7zSenNxU4AlnJ~y*e9t1pWKUhr9!XS>u)d{KV+$*enOo`h%DpVa@8yzyt8$yZK zh6s-ovCed=wLjjdwN>vA)@uLY_uDV_Dz*BNldWG>)tQ}3PZzVs$5>sd5ns0P+6UWd z^32Sx(q8g@!08*0A=ZH=b{dBPJfQIeG>4vE4lkBFE%x~N_d5I7cIa2P8+N)HElZ=* zX`OCV1~QYiBZapU8vH+7q}uX|QSC8jq}=;ZA9I{sb|R=ROxZsP)EUQ=fakX}F)lyV zAH^INoAd`lJ#$bya@`x?{6)7(>GLe4ES;c|w!Bo%KSnyAk$PpeMbKa+PKl?AI?6mV zPDE|tZ|00AaGMinw<;j?kfqPrkdhTjfdW}bbC{td`C9!eqYE)wQ6(i3j2R1ol#G}K ztCZ$39n3(2@c}d59YxLN(-&d6G+i!;;<|9w1g}mVOZ1SKbcIo$G)*@Iv0E1tMH1?m z${wdP$>93Mz|DhMf)7@$#Gg+_zda8Fpuv1<+>?68XNVVxV6*9HvUKOmnl{Ei1LAGS zLbY=?IUUkbiG1WZXliVv2uJIAOsTIrqV5^7O@uXDgE-t5`S;bEX1ZhAYtc4~vz{3& zxXahi@!?|hcw(04^JZb;?0jkLIBZ(t9bag@S$g6uET7Cn?CHk}_Q}?-YSyM{V`k>& zY}(VrT9L0`xQ355*AAlK&H~T6J$T~Y?xl)>4(M9;;=a*5Ibc|~ahH9%EovMDzk`|u z^lM={gaBRs)h&p3$Hc%VnTX!3oArP7xjkD9k=^2b_ewH*ZNAZX`nc;>qgA?Y=Q3Bm z-v_;edpjN~@Z-(6PT%jbg?+x060}eh7mQ*(JIp!KT~iXT&M1axJSWmh8NBq|XeLoq zUL$Y8r!tf{V}oS)K>GAKQA&tHflSU-?L=t`Uc(oTJ_^X;gpxF*eVmj_>^(&y1SP!i zlm#rMP{y`=sc&WUnJu~;DJ@iKMS=5rCQmSw=PUiA75dpKS>J4~R6gZ7_=kxM@Yiw_ z7U@9fv2o!nO-Bx5NZJIDzdQKs(+|`MxS*9xfa?jbfG-)~UuVY6r!_^+AS`RGm_j=! zq}{;EGcR0>(Ib@h&zY!bFf?scw5-#I`fA&UniUT;?3$wf=H|6+lhkE=Zk{Ze?b#Ze z+nJI6Z~6?+<(B?NQwWDAK7qdU3fr4qQqZSDHH32|ai|lt2+}Ms6Ywg$Lig#EMy1j+UWAZDPb_p2!FEpq1K`Ld$#~ZM{bMN!4yckpHfA zsiFvoo1Mn^63GmLxOLHO7$}rPHI& zri&`PuZbDb!O=0ygCE$7!4z!PeA99(d?zYmhZvWP7zPFhOUf{!5^S~gGzdhwrAi!- zxiM?d9v-FsUhBQfrOBPNT1YXa*}4Ekn2w)??WYzFc<^MS-nTu!dt1)}!Q!ZE275<& zwO_oK^{X$gsh-OFxZTJBac5UUy}?*JwB4rK-Y?zDKXu%^eA7&qN&R9;Oh@X?Cp%n! zqxSb7{EvstpZ6H)zDeF$oW6(89fPz>t#8_9NR+14Is419WATxX`DUJFnp&ocNsV`P;KLU=E^k4S=F;;EE0 zsz?y`LI<8)7aX^0f^<`{$8`fLvcdsdoUf|oQBm;S{?3q53(Zheh6AzE&Ta`zW2sY2 z5-zNBF6}>Js-3X4vvJ|fjK*DV9%hB=9%-L;m8``nFO*BEbA=y5s}14)>H0zDh2`K52-%m9g=+cqmQ?Xy>hGX44rhJkv9LolkEK zX#Z375cfZ`V?WkUTykFF3iHuBsIz<9EO?|9yw{<4`fOk-dsEUtb+JcyfENxWxDgHH zG!p4ZNNrFx9qDw#H3cTXam8UGA$c32m}NO3;8IdlfB4DOmmcvv;ufc-C9 zmlE8Nj{8g-$AcX_{Pq3TUX+bNzCXQRPdB#=^JoH;n$6AQGq~Ue&&>r8Y_Ldv<|tlN z&6!QD#(@vd!gxAMvo)L9e6Db{>lY(#7^lc+!HEr4Ax|w~*n8u=jR#B}oHY;+HdJ43 zzju`suFMjp28ZiR%blxfHel;goei;dX*7A-nwnT&gvZjCcCJ@*T3c7Z89E;?+wny! zj<~n=sM%Rw%EI*exdV_DVRZC(J;}1w;d|w;TxDnqy}y2PXK?DHn-3X~-ASi9*Q##? zeT$EdnN_;3!OO8!{l8ae?>M$( zW=pBnX;z()(HFp-=$Kbsc|ErhVSVX;x}Ln{o*?EH=3Q@QMt0Z7D%~v^{Ep|gO<(b$ z{_N;Z!_x6s!3q?g+|kqJXL_cViz>AE$gURHd1yB?^4cfJ`v>8WS@c8Zw0q~Q56qL_ zp6Mt)(x2hpx!L3TbLkJ*RD4Z2V{df^o_(_mgslrwZbhKDE@1`XZQ(45FLng#Y2YlK zk$@bd%2MnhyiaEmN@b#^#yRFO->MkbO}oB{3c^$|1--6&$^?-z->UG%rd_l)M(cHm zL+`^l({dNL`KNggvU3xX$Ll=Yqo<@QaE~>v*sjcAZUJ;!tYnKc`$w4 z(CXgmceMbKpoIZ^vf9cWjWa&9lI-DShwGV$ zar*w@^X30Kx1JjZA1?39m4-*EQze^o=E01f!T1gvob6l9rSvy@THRQTBYWEE*&RT> z%=2mu!R<_Jf8RYB{&rg7wQzCh#%8e?wVe$-B#GS!&k_D)3Y`h+1h4l86{%;Rizz zXsDnk%t>mk;P|!9eb!_1*vyyHE{(~!DCKj5C979%F~|9-n*GKmYXMgF$t2@q9S=sM-z&M(5)&pI=mO-GB5bjK>$7 zY&+w8O!YZ9k={6@L^?_ULk}fRTh8H65m2hkv3HO4c-8U4Gsb>Zz33K;)TchZS~q>t z{xS5^)xMLa0dNn;eX~=oN4r{jnh3SOBds@@D~IH}ZND)z-pu-E=9(w(WxYKT;995l z&1SBezm7fWCq3Oy#c~gsGTFONcpKenCtH^Ry(vNJ*r@$rR~T+Kk?bp9q>b8{JQr^l zr1kptChZDk@%FYPUDxiW17qPmA?yw92pyaEG#8sF;y3hp`=vY>Q#`0BaW$!>1Y9O zF@&-v715T~;ShsKd1}ERqFr|=_;mTA%dz2%mlFG!s5hz!R461~J8B<)`kRITUt9gI zi+KU8wKrlFj3bAbkEElwt@27+1vnzOXpR~ktO($!91!^dhGQbX|9AD$5r!O|-nZNX zk7SE8>9uN~*&*+(zOnh0<`dRA@Y`wbo7??OcN)ojWIBS%YA|nSkJ5kaGc|i{#MX#r zw|b{VOVm6(@p(@w@ZOB0H_9T}r?f#Am4YZHn)-CKP-5_K*~HjUg{{;WBj-S|P>l>q zXL3O7>YVTKsSL~ExV#DqaJLa9r~tV_y- z;5G(T9h=;da{6>Jopk9&2)&DauMb&}Scv@it~&kc<43>z#dhc6!b<0_BXO;fjhq|i zIYT7cbgH9aDuh%6UP~6ew$eV3kNG0k$@=|vg2ggrnRW*x)#H06 z+_uYPr#J5He5>c>N+<78g{^Vu$Q-T5?sg{F{#BnYyp>|u-9Gm=cjWha*HQ|@b#0p& zT0CaYQ(pRY_|^A1)Iy(r2Dh}d^N`h>BBaDLKT+Wb{SdSU?I6?nUs6jMK&$x>7z)CH z=CPnNnD;E&15os7XhBse^^pnG98$<+e!SNaFqC12N?`<10Sk$kjYfehXd*ROQ;ZmO zgm3BSUH5g`Rl*eurSo%ep!2w%XQa4rj9X(~rmLcl|Jmwys|Hhb3F2Z9@M=Y;TJJeC zpM#^`TCG`CYicd#EC#94=OCEHs6~TxrbF;VfVEAC1H#0^kn)Ip@Q8S!C`x6S4)KGh z$JBED-G8@wsn3I)UQ|ikC+lC{u3e@)w`D7vD?Oc#?>szd=EzB*s&n&;*)s3Q!KsjW zLeUCxpDD6wC4N%tj+51;>GUki+SsAhdS33>Y}Gsms~&O z+fSM`9qNCBv6^oEUi^0aIBdxF+w(BLI5Vq^!Ft9e`+hkHg5DHN-Tr6}-Wy@n^~%wu zKKJnHA&l7$8liWG<_SOBq;0ldJ1l{+GXb>K(m^SX2dCoZ?f0hDbBt6wJD zv~LsSo~nFbgiO?<>N)&kyIWN76>xVS?2@aPmJD~6U|HeV_99206x!fSL)WSQbTIw zql%VLYNC&x>mVHV5)mDRWC&XxEd0?uOP<`Mt|=HPMJa!c)}s*Kn~IZ(hB(^^xsH`j0p} zkm^|kP#DYGnLK~5j~F*Lsh&j)JNLH7u5kan^Y!kz_$!_h&}ApOXO7nb-)9V@)cL8~ zG|fxbl8*{&d)F%YMmdBGkJ4dAxYL?29I#|k$(YW^^4u%ML{A-rHO@XgFBK^!f1;)i z0%a=SUU0oYgC!PY5wvxIQvzx&IxmIv!e}ZuQ&dR0Ra$4T3-oNfSen^5bR7+hmEfh} zr1f$$j5f>95?Y~r_~239_||g3&*7uZ^>+0fj%dWe$v~Mv9@I18o&;$WQC2vFF;b>` zD*Wp$ZN0{HjM9F-`|?$CBX^X0F|l>exidMfI(2M|%(tUs|II7iczN{|&?{}aJS^!j zOZzQ9*1v1AC!F3BZ0t=ud8c0y^eK2HR8b?;$s3r1zU|a|hie1|@(-%p24o3CDxJdt zia|%vbIKr1sKt~;#t+BTr_7Z^r8;5|xKwF>T8eI6emExOMLFv#HO z;7i2Y7-WdJr|7MR_;B8J=n7Vv7g02)33ITA9p!4?ui9+@;MS#g2eb3#p#E&NEzQiQ zpfLs)z#xNVfWR4~aeYcXSX?VXXCrMD)ig%Uje>B?Afb$QR10RjC-Q*mGQR22;TrsZ zYrS_B+>9?yT3FyE#5k0*b}Zv6LmNO-eG;csu;DC`bx>25~; zBW=Sz^?qrMe5H)=*E;vYwiH6I&ep1^8LA?aDV+m%ZH2ui&7i2mI#`V(710>tI3kgH zs-2)BD2_oZQf_*xX||B|X>yHl(K@ku;(-a87l^-Bq^V3O=E4ddjX*j^>6tVT4Nwyq z6V@5w2qEp$J-@Mo)OIO&O++bSpVkv?ScsIJUOo-tef!Jl+1BjR`#-IMjCFa>lx4nr zGMWs)!7|n?LbIRl$Mw7E;c9YnQa!zXXlheUhrwCJ)|;}Q1gwtX!Xx4=4L%xAjPt}X z%vAF6RTLg#h)zrJ2OCRZkFWy2^B=<$D3Dtu;+aR zr1ocV?5_G1kQF+(Uc2d79qel*t?<<&yLD+|&Z^UmTbFiHJ2u2?=NtB~K=x*ov|RI^ zCCZK_?iBzXp2?E1?6lCI8&Q0xrdcTqp<^X=&$txc9l9sylg}5WW}92brSH_Qb}i-h z%T?bBZ;AD1t!^jc^?j!a0QaOi+=zbbIM1cguD9Z8{m#E_CN>)(Txpsc3#hN2tFWW` zE|IOUE3@T?dKMi!r0{Y%4Lx#obb>?1?>Caqy+22yJ1yW!XTV*<^6c#$5O+Nbum>iW z4~kx2pBJx*E>#1fq;mhL5R&9`>#xN9Qv^Cibecht;OFb;z2-)1LyUJOEfFxdV)TbG~1BjbbX;dXSkxklk>-6FgZW7VV)M26MK)+Nl>lr zO3pJOL!co9VX2E+1>s?2qGeRkXbI;+bWhxGmRViZm&40SyuWSlHvW`LXacDYK{su#-v3y#)eYK$a_pL_n+q4CZJ~vC(S9Wx_ zM)TGY#F^RH^mkjkZeP!qEO&0Z?l((1xo`FRIBDqEGX;YSB6XRURuXW`yBmo*=B-P7XjCTsA%590@2%wL zn0G3{I`)N?#2x*fyTrFzGJ4><)zKNFMVXPi*Z0@Pw8z;Zh#+3Fs;b&VMw1Vd&zWA6 zRW&wv6p?b=X_7X^1*;7eQX7CO1gA)a$lC{F?rZ?G)3Yv*2qU=yHkiRtVn+>XOR;b?o>1aGo03L$&nUBnP@yBU;AytLR?sy_b|n*D6KK5648TNk$~k<6yg!#tjk z2dO7%8~tc@KCY*@$0Iv8^G&%C>J&J5h)Wk~z#?ELycYzan96lT%P|hrphNt;^syuS zyw|^1n84WQZsgn2w?ey((&-JNH$Fs1VA$!&mFJDOS~+gh`_|^Tt#&$Hn5zwZ=F;pk z*X^t-e$Y3m^@{hx@0t8KXfmOXC2nTg;a-Ol>a&GdAX3ssxYkAlBHBE|`zE!K3ZTlF zG|WVdx$_uH7CD632I5bSHK<>$L^uF;pMAuFmNvl?T%WzJ7*@G`yg}GpK!~jf5-wuK zvB02%HH6qqGQb~<#m*>edTgc{cO9ii2oo!R=gk&aEbDwm$>5p10C2r@T1$3=^{wiX ztu75tt0GrbiP%t;K%P#*0A621QiKsJ1hQU%J#~QwNfig%s-*=e5!^7wR8PH`6{J4? zC47Bq_!hRhv@!f4c;^E66|kk^sf0U1j5a}g20ZB~Rn|%sslw7r?X~FHZ?MAF$E1YI z5;lUWB5sLACC!ENs@O~jLKz>pQxRM2rS+a*i~$$&LJ<$1swGt_(+b=7Dr|mf&KEB~ zdi2XvOo4$D@#Rpej3Y%l7ZQsM8HSOnGl?;H;AmBA=bw*e4YIF4egD(G@>2a&6!K=%?@f;+<6U+oxjQ(YWO2f?2AXo6V=dk&9HC78*=*gxgJyF9yv7V}0E{ zF_XvPBwd8C&`caSoP#iVHkwZ-b-&DF@I1i4q`ybi^kh;YHY}fqFli3qgn;sVv79Go zd+;grB6Tro93K{=#}nviI$zD4FQ*XP!mmvyPhjwu0|&st&z(Z6HLlGxXWifWD`&xv zwz@rd{sg*UW@*kJJY^uk+hO>4IGCAqh&*ubd9^(SY;uD#EZy*(;UF6lKZVhlOqb2r zT&!p|uDj~f(W57W6f>tOW6+oXyw;Y>;GRrIzdcWP7hurAfv9_VG8n@b&*Ar?{%RVk z6*>Sk0>V~>gi{CWBNpNN^F*`JaznO!eCJazy!GIo0SVIw*26NGz@SX$p98=unY-DK zW2-~%s<)Tn#qu0bRpbBs$;dq!oK;7(Lf0yqU!;#dfsZ_X0_`m>7Rzupc)Mx$oiw=6 zF3_Z!afZL2jZ(=#Gk6>(VQx011v3h#ZI*yD^`&Btk3qfEvc5Jo5RPF-t#z10B^{9n z;xnYQgE)s6ta+4z6K7iT{rz6~UWUc8pqwi)r+ID?h&gYjuZhlQ@$ZEEPRQ?s{Hj7u zQ4AtFj=eRK5UenA)&?Ch)tsgE8>6^(?V~tO_X_!Grz2L$y3BWqro`k*)+snExkG&? z>vyt#C+k<0b!9=+nGIfnMaPQ6zazNrDu8{Zl!9GX5CmCwoUC^SCP~&Y%BL`stgB`U zQ_FlK^qsKZ3HzO}U)iv8@6*f)jTQ&ttxhW|5hTw_VGy>$X-*|;XWPHsE9|{C9n-v6 zc#?BkXC)yl@5KC0%Qh~mnrNF7EjNE4mlPFV2VBh^l!wwV7#znG7f zp+m;kCmn4~#c|TeI8i7+yXj8K@1*=r%C9^X7c{jhDvP`glBu9H;t{1YK&>~{L~c37 zA|7nan|_uBonTZF^m_Xow1Y(9zTOk!TpUzuXDfnYM1OLL+Vb*?}YqL$ge8o%;J>7L5w8Q zD;f~to?B^zSCV)IqVIgFLf8^=+$-cyr)Tc8nv6S}`txyk`QmI`koI-WmI2(~nDr_l zk}JF_+43S~YTb$Zow(nL`*qF4MPdSWo@n8!{ZQbxD^4OZOe002(#-PqI{L|eaqpG% z^&Y`3NvBo4HYGW_lk_`DzmxRqmvp9#j)VuzK;(nh7#R~JPigW@x>Te^Adtj^z4zX= zHCj%MV|79kW|v!apZ+;A2~NX0C4A;Vuf6-3SAAhkXLy^oEHwCy8+-v85$f_N*g9AjTksY zrJa9@K|qD0R+0uHjs@PS*b{JFI2m<4opde?3~ROD<3%v9lCDD154htQ4{oDGSlJc07n+kQO}KSdb&=MMnoZC0a|A_bwn{BkY7^207`C zHdYWzwAsg2q{vpZut}N|x=Le{218YM z1G)zV*ovUM05?F$zs%>cP{7UcP7uzW*Pwlav@i}zcyJhlAxKG3x@LQ-RwXD;7PE9* z-xLh*`Ppy*VThf+c$u!AHa||ABg?@dz_{T1DR4Q2TkE#T?@ z&(|3L=u!QJ!Nd9s4cu>RU#^gTI-QQ!_8wHd)}Yv&XNFg zPy62Gpmy^oV3q|9o-o(tO)-HdvQfPxVhaMLxeHu6#sv)#eoKS71+C5;!3xxQgeba& z_=6nrJj5^$6BlaC>z}9T^xM-^^Eb>-p9c#e4iG>Oabc)6MqFk?Ed>#EQhag>1zzp; z-wgFPf3^DB;63=-;B@de!4BS=%^C{)?7hbGs~tTz52gyqAc+0>qfhQvq0V?@Qmrd^ zeL7zSi*>J8hX}399XN1912a}*&!~lAaX=lGwhPd-XaQ~r#}E;;==IC%pjQvS0O4f5 zKQ|Gs=9jeSk=x1JC7TzZm5k&NBRS)!w}fb=K$QontUy9LaD|*x*G;x=9 zvQeo)yS!quMI*pRXP!GSA0US@GVHL|P6h#rSSzn_WFB8P*_sWn9b{u=ZmV~L6EHcs z&ADZ6^Ehq21@9*v1W$#D$XdsQlc3Tx*v)7lT;B><3u=5H+1&Yjw7lrnXQ^~f9=xyk z3-o#JFa23Yrbo?Z8al}b)n52C8@Y#0V{<-nPtr6|nnhZxdkTKLcZPxvih@C$ZSF$YrRu#q%4$B0zG z{>j^HX!KXd(r9Mj$FfJfs95vPy13CsyaZ8AaU;07)~6h_rSf&W3Vt~X#5e-om0Zba z9mIcvg4$?}?LSHVe(cBOW%UOd@;p9L7y>!AK02l4w1J8ytD^;EUa9CyAHM&9G-L9Y zAD)kV7>_0a9Pv1sj4B29pqZB*JR^fOfd+|Tb|$3P$J7C9hC2tAa;pujg{r68YZl~PMVUmFh_C&P@NIXq={$bticHUSn!Q8#J!f; zs0~vlM81_MR)pFmel=8)*P2aG>-a-zTF3*v0jx%Nrz}?vOdG>ogNF`3aN30KAkfrF zc{38*g(j+e88=NIw~Jv6i^a?I$Ell}=i}Pq`}ycu6_c=B#uTthGWOX(Gt5NI)FRDV z?DF(CK7fx5?$;lw%>4V+R~mY}QLRa&<&ITdmr4a~o?9<4Kzs?#G`Q5!S!ESa8e#1f z7ZATYq*5(eZeh$@kl#HLawn5l*javpM#5gNI;5Z3z+W47AA;2)Y8_Q70H9%*LBR^+ zkdfF15(u*(Y~%{qJGs8XF7jFg3467!swgg$Qn@zlgn}|AGF8(xR1;#EMiNmeJ;bI? z3k!;xTbwO7^k84xk}f_M>q87TwuE8Slvn{xu(2hpMdU5GpVX@i4c2>G_ePt4elRy@ zp<46X%-I=%2}Ii-3{eaz?NliTzrb7&rXeWOX?sgsU7zj&J5Gx(omk-mGT*1ha5cG5 z6#5H{7RWtbU4z#JPG zR7okJ39T2Mn+Yoje#ykImV zDejgb3Xd5w(bLdEK@UaI%dVnudTfGI51c?GkFgJc6AeM!6AL=V2;^jxgc=UYmRLap z1b^UE80_g~;PmpLB>6mbg44`Ufgf=xJScKYsTbBc2qkp{rjiiwbL~>~RH7xwng%zi zC0ak|$J5PWq*Mr(VN!1iq9ke1jK%)2jbT+_Y}Y!Nfm=yiW*@wj5e5X}^awNx;QKfc zLZskg>yVNz1Q<#Y+Up4DAcTF~M@V526rgfdPw}KB#%#E*43%N+ybX>p2WCFa-4G0h zJ}r(Coz6+%;MFrhkA~XEnE)m)_Xkkx^RBkMau@z< zKdsuYoU=!B_hFbc7=QSv;+nySRsK*F$s_~OdVKBStgHW-m`!x;de#aJ4M zW+DZ}%89oc>0NJb57P6|;ymrreX;Nb$m`?b-hlgS$fEXeAl6@TFWkKW$PVH%sxXb9 zTv@bOGHo3QDU#A4E7O9C;(?eWA$Lk_1zF`QkR^jJIS5pw3D_9I zq|zSrx)o`T4_I7>sJUWCLhh8@1eq5O0ZfqVC3S>pp{~kxVg}t|1OtfJG2uOy*g?1w zo#Ni2m~d+!xoqpJx67FAbh=zD=VsO;#tO?4T3JP8Jo&dYljE2NfZSWgMpF&+=KS8ickOT$`M*Jqk4TBsUwRjdx6 z1(p&jxD^~}6j?;ZP$MXKwJB?a3NQR6u=Wb9#<^Fq9#+m%R@C)lMTRT!Ym9SONo6kCBH#W+PdZkeJJ{PQX`p9{vry}#)yWsS(oyNFmCz@J&h!c{t-H~`e@k>d-qd}?rT3Dt45NA=i zq%;-L;O=21`kCxmT=Xy*aBMy*MAy@i6pUfMoVY^q>kl3^D89P6GI;NkkJf8m46GMe zZ6*Zs5{KZOM1q*0l2htIA1Lqb)L9MXXdItpPF z_*w=*u!MoZa5`NKQ{;FuW0)NZq?fTc*4;of=$XPPbO(SuQ|mSTk!4vKL-#}B~>%{_~iA65HMgZIX(3h&>Cf3Ccy znhORgK5KRyRDKnpT%Qunl%^D?5`1YPr#cwf`oN8d#Dh=ky)ayhtp&M)-6W~@=cDBjkXKimVXhiL(! z%r}B0gw-HQQkV|BB0vPtL`thqXDxsSW4(+vlAy3pYyON_Bn;h3Cf*0Ihf5hEsOUr0 z03nns9Wik=gaO=qU{8bsN;@GynOa4WNGDMe(&Eu%Tj_p+>%%rAfSaC;0zZ!rGL`fSl( zh4E_N1yDctnQsa{H^96mNaG9ybzo2_l0Is!I29a}F?f1RTa@j!-vj?FO|zEbbpXH4 z2;7R-NyXxX^Y!s*`Fz`Tg9kO`g9zSmi1lnVQh92WBLSzHBEfNPq6HW6$g%HJU3inB zwH07A@U=j^+o8B_{7wL~8IbpYB4&{Vu0aI|!fP2FF4YXc1 zrJ^|ff^og12wwKJVv7=Nx;LPF3AKWVU}K;V*Mm(>(}pqxsUz9Sqby)MOSbNGHa>qm z>ajjp>Xr3*XX}mi)IY1Y_KOr7yWN9~b_2&@W4#?|LMf`8#c z+lmzYrl;}6UcU)E_dLBfO^VhPEF@RF({K9tgBRPjL-*Q_w8!g%-?R=VOYX z5(Z1KgPcYRGEIqe&ZG<`1YE%(OykrCbR+}xNjRb9`DWE@$0P+^c7qg%RjPEVFDn_C z6=gKm##&|#iyYi&aOZ4@q@8wJ@SuPKJwh)~Y03>Xduf@1|8;s$0J*{X<}qxo7zY^A zODT~7AHxKzOv;u)K2YOmVr!xH%(!n*^-8oT><~&Tv#5qgaN#JctHEP52#&zL5Rs4o z8bwe?wV@bX11`MMG|g2oekiz|pxUdn4@_HUg@Z5-loPeV z6K0(EVDy>uk+hR2zE^w#Pa~p63mH@1?p6j*Kbl^a(Ft z#i>lx{b@RkdEB0;lvX>32)G`pszC4_d{QaFAq6B3L`o8)oTa3Ha5jMY~4 z=XF9xSYg-0<&lBi0e=%i1RrUjI1pu44g;f5P zDE<7?Pe0j-iPELPqk2beGDP>ssifN)kcf_@Z8NrA985rLu;Nm+Q1xvc(v zC!jtyWTk>a30b`yKosp(-$x@8#D?S?P^G<3g_4K?W#KfqLxxsc9D@d@SR9P3j}6&o zt!j%6>qIV$QhlE5gJv`Vb*_z!)KaIwrB*ijs3QcP!Wyi+R)%BUFJLWbJ$fB1dm)fX zrmH#VjCbnwqj3@Ju}c|#h*OQYi5_D0lu;T$>X6|e)Pbtdc4z-Q#}&Gl#i8fCxFALA zZSKW+RXKUgh0!>wD6*dVg^hb_R@o+=)L1g zr1gHV4B(vfdm??=8=$lbsrrIe^VMm8D(51%0V}JvS=RqXYgzyQXYWn7Bss1#L1;#O zv{R#Q?HfZNDGC%aVf(_CdJYJJ6x9HmO^}j~bmnMmtqN3TMk*H+ic|VCuQ5+GXP#u{ z3HrP49uXet7M>BASzLzX0#rpty4z=V?cVR2-R0``;%0eXcH_tgzq3AE|mpAb?y(l-QpDoKxzD?Zv*FWO?1it9`>f$v&)l=ca^2>%T1A&yCEwjdR zHC2+o{m-2D^`<`P9zH<3`|-wtfp-|VB@$1oJ_{`qnMzw!6%JM)JMP(T!%lf9r2SGz z*!+|(0$YDZW4SSnkoqIBRqUrgS=^2~3=0YROW7bMF=$0wx$uQjB+5gu?H5O2Q({`H zfUxy9meRNe6+RLhRb}Pyz&O+erD!?Mbrz*Chlg{DdP+)x8jrBOvy1K1tLs(0dG-2i z^^Bq{uDg7mMu}KQsVqh}>V+~&+UkAEMsC)B{Ps`<_oLOb#rL`w44D4${XU*)nL6rG z&&uarDcqOg6_w`g2D8Ah7F0y};@LGR|JCApbzZ2l@3Y0t^UziFUG;Zlt1F@|C2x;& zn5{{un1f|eM^>YERKB2EipKCP6r)78<3m<);N0vNX__QA4OpZ}>d)mM7t>?8pWGzL zs8tZ~p}1j@G)+-4Mh;z&WloN16SHPJW#qod`RC-0iVPUx{O1gy=%VB!fQLbKn{+ddL*8(f$nqXj)8FcIvzR@dVm_83g5P zFBI$1a523v`NA%mbr}B$$pi%pQ9&ev47oB-3B}GzZ?g+E$Q%m%Wec}*ObNfV55=6^ zDdwh^z8g4H)^_T4JphhST=}e$g5xNud0JN5`Q$vE9v17WgWqMDI|R<0tSQc?0Z>_=x^_ptHjOO-u^*z0jUOw*je^dVI9;T}ItSmD%0?DUyzySD)Zep0 z;@oJ=Uq5op`z4JA--sK=n0sqx@%HV)Y&0+xOR%9T=2OyI+iYrr9!?IL%wmWXQGUgayYx z441{%@r1v#Z`|ayfE`_THvcr9&3 z5)>Ug)x%JuA&LWsIJ@QirW)&FXRMvC@An3?i1lUmNi*{DS zs8Rj365y`#P+^EmF~LU_vWhMnc6(#mxKo0Emc z6GBc!X3%hITjE5JHUmSXyod)3b#`ZomJ#a%d@xjOFfko#mcr<$Gc&T%A!xSH2gSx5 zL^dHfr@Qi4`e;eL-*`!}4dEZ{EX=Lmzq2X~uBsf4xd@RbAyR}lSPOPPg*8Ta8C6tk z9yi|h&Jr7AJKk9suYHo8wXS~D-8qEIW#8iIG^Q6KUcJ1&di~is^%})!#dKR41xhCy z4hwUAfB*-NorZP(_CI{Q_yHbDe*gGTxA>r`9Yt{wCYQS^D7B*kO-ghF2JvQ8jA1nF z_YN8M-mTV+-%JfI#=kE7NVi{;1HwJy7Y4hGNtj=m8G|cmjEd4$9U}M*bct8k5Q!Z- z{=NIJ8^52%@o&Zthp5pPVc+;wO*saYq2ipQj2^hwQ3S(`4jg|@jyX~=G=TB-aC`i! z|HEFvahr?puf*Gnd{)+Dw*!x)RJrMi%b)zi@~Z0<_Hjthsn}>A^|*R@T{ik9`bgQ9 zJh31w2c?SeokD_Esv$6LGJ})oocxuy{?j+QSD$?H>O8K_mg&3UoX*)6dtjZeVg1Tm zUl@M#ANt@3axDq!DZ`IG{G2MpoqR8(7vUK_@85Tyw|>fhzP&EjU;o>;p%YG@tya&@ zO5aK;>sP1K@=@Q4oHPqvs(<~x_f}AJ{Z6Df+V_TD<=5|h`+Faq2%5IvS`TuSe)#>5 z$VVQ2bBi9oh*x~){Lb|L>)Zrxr{iDPDSMZ{^Y)zyyMKm98`aY z;EqfW;|`H}SPCw!iHiDP;YD;`DNZ}tAJdi$|j-dBg8mw)tfv3 zP10QCq!U-U`odBvmFfW)r+g{72tWfR+c5@j??ZF7-+oE8Nfz1`La4ITOErO@FIB`R~_mKKXP<%pjpGZK+_mf*?)=4?5*!1I1Uw5DZ<3O6IK}A^Gcjk#zCjdqm2}X%q=1 zmh~l(y=&B8`Cq>EPwl}|)Pb~gBg(7wPzHsG2>%Aw*F{x@GLHOdJ{r6_c<{60WNhPF zfSEotpK5_jmF!*=JVnZEHrYg|q9{T5YY7tkv@57wjHSdktsjJ9R+KEChAnMSP;H@U zbl_eTRrqK;MLZX(Q&B6I8h>`y=t4byk}EMpJ1+6M&opjOoRH4kCrKL4(J=Zij&!RT z44s+Qn*O!*n71*`CK?M#(Gt!K6(2I$CgP5^Fw#iEQjktpAN)Vu$4S?N-ap{&iR@xL z-9rGC@zV&S-&~J)CyqH&h^5cI!eg%#Y$-A@3zLee!3AUB{7OFFvU@G@?x5#HUOP2C zHK5VEK6btlN!lEJwrCAVm^NKbE2+YqgUN#^yIc5 zIQ%SQ;$RJh_H6bZ9+^}c%-{0@>X6`6M0l5D8}^lb!+)_lnbDL~m9R146ynguVkq~T z-4U1H{jV3R^kQ{;gY8fKmb;z08F_FrLStgoj1?ofOM&X*`9e32LM4jRtvQTFetN*j z=VqNmd%Z<>AoPLNa%yvD5eN%OXPM%R!TWeDn!A{Tg5A~F#EDsEldcD;7$DgGW$zML zH*Gy6*$~AqxD%5l_{|Lf7|>0OoMLp5Viix;=b*ux!Fwb{$bm&*)5avV)ML7!43^}>D>YVbYPgIIlb3z* z1J5Rg>5sSkY(4J9Cw(FKjR-Lt1hr8#!qlQ!A;OutWriiG3VgE+!lTV0+dx!ve;-8Wd-?Q4We+`~ObQ-c_23j8+!9hHNNg%?25L?aHV4MGISN%i;-F&XBQ7hW31=xWzEt!lx8OMWPbxn1nw zc{i70NOYx~&;wC`5@Y0!E=M{1NU4Mbhk)N=S)glm;zLE7u@!JfpqSsvuGJ5PaQME| zpKX-)X~UqiYhOi|Zj?0~U#@D_kr9EDyinI-G)F;mZqY9n1%yG+&klrMCpsOnA=?!COTJ4gD_a=#Z3 zS#QvM&RHJ`;H{bx&p-R&1s=JGuNHs*!Bwb3d91aT8lp`8&;Ro4i{U?b)K?alw^w~0 z?&7MP?Dk)x?5=-4TgJ^VbP;*s>}>V&dU1PAk^lI{-@pI;MO~hi>&46E&GYU17MoxD zY&hCE?~iuIh2S-_aF#OoZ%B}G1^Je)WUP^+&F*c2M2seMFRR?0&^hJeMJw29X zW<#K$1Y0vTv#zn??}}o(DyQ94vwMcoTtR| zqkynP9e>~{7mHm9CL3aPUTTV&vB4*$IIxH@{r>VCkbR=0AT**ebSH;8msT6?C$jW= z+pW=B1uN*1xPs_0>#21#mI53D>@_<_q4<>tDaWT=dwqxP;AaF0D9p4S3{dp7&$%*^ z>UG{-fO!<$(7`%Ya+82!O)BsmOj0oXbQ0h-9El8O{?-9!bz2lyH*Elxw*mCaAU$Mw zdUZb!K$HxxQ)r<%JfP?Ucg}ivZTLStIZ#-*4>J1WmSJWe0L8|I+eKmfYOvJRdAgzJ zQDDZCq+T74feT2*5}mskrd)8*L|))qXb}$zqu8RDwOERJ8?DeJpTqU_DlPk##AJp)=`ODO zLepeWf1T1}R(U9w)AuUhmI7kjg6Y*1th7p3EiCL#%@MYT7fC1j@Vfjs>V2=YZs%uC zX;A)N>x7vNxfYEqlAnf&BIh6bDLafbXv#!Rm?auB6qT!7xGaUV<+zEO+t#qcjl2iE zUJSQSZhEZu(=by!3Y{x9R;6&~D5CJTI{YKm3cX$^n#|`ocG|zTZ>D0oNYBs1)r;%B z8&9y-IUE;#5mL{l1*3oed*uo!&jWQ4-o9aT2A4f_95^}vI1xN30NixvQ&CJo3BdwM z7S))Q?L7h7{ON9}`5r9Ft!Y6cdqOg+`+5q}TZ)KdJ8S>@+qG|1X{=UL7ZgD^0)_Kz zOM&1D7gCKrMW9YXI602z`(GadYi{q0W(pazdfg?s(H{C9Sk!VlP@@X)oKO?<0@leS z&ZvI{-R$w8nG|F0`K5iZ!fJ1fhoa)@t)a_)=+K^11^-9yKQAGZi}M4@J^x^Jez`o` zX;clqS#7WwZH_AQl1ZP?-8@)MqI8r{YXNV2>wvqC&FJS=fTB_w+Sm3sWS|ODopL{l zVzl9VaB94+=_nL)s*y-Rb1`~PjDjQ{0K=yc12rzSsTiU0 z9}jOmdX9aObj}rvEz(Zx(-(JOjQGu7F*4iy&~d2HK>Vd@oHBml8zH?|h`Yf}4$dMq zI5OD=m00j}<%e~^ql$M5G@5yx)tI8qpDxZ^!&B+iO&PNBH9T84jnI=}|H+4V=;j#U z1K7O9M_n)LW!XlHQfv?gO;k0@QWNFC8!CcK)!_nX!o!2_vQEA*VDLSLke-**XXR=I zXKr-AqxK23S~ui}*bD}COjF;78(|2eJJpvK{&9PTU|3JfXkr{SZ2_I~&J z#kYs|E&l$4Z+>U-3Es8nf)G11`@i4)()4KL20#A$PriR5jqZwKmCtX6GvswV_u@Mj zl*&xs$CJBPEbB7e5!9RwflnTOYx8jYAeBo1oO#3b<#PAw)2|lTxMRRI9?=7R5R4;duK&U5 z+46=m`k!z~h6i7lqoig3b1s)NFS)xYciwU~yPkViaNpbJMseEL3%l*M$w6|p=XZ}= z`X@%wmZZku>Eqpz?h7)1hAv8|MfeHZT}bVs;~RLdFTM{-7NcmbyrmHd~Y&dti-!w^yAGA-uVuv?~INMzVSd} zvzP973}@QDt)n+R-BeoJDO3LGqBk*uf)Pu!Tt#?WA!JJ8(kUo!ql+nK0S9B;r0_eB zn#q%^a#q51dHtj1<#a;Lwm%$Q#BC*CDna~HE}C!?Q!J$hSqi*F__>y+1Q@((8|dgfwuXlTPL0p$vdZo(m5s* z_lNu5G|ZWPfBkbRpmejmc=hgeH*N3Iw9xs^v(S}d!WZhg8_4z)xiFJO_AbK}iIV%m z6nsxif(st=qpitK=J6@=yN6H29nYhOfq|CZV6>JHfI?s=$;ENY$r#Gw1WxBn7eSH}&F3Q!qC^(lB)PiZFMXM8n>Fc&} zscj=u=QqcX9-w}?s{{Vct0mQor32q@cX@A%56)J%8M5B}!sa};Le)BNrS>iuk+oKp zQv>SkJX4lOx;Q9d92)Xhv&i-ttR7+`l@<{DJ9db6L$)7{kXl=t;3&dU$f{YTHiuc` zue@L{8wuAMaMi&G_vyVJp=&ijGeg3v*H%x%i5?BH7#*vnK8DF_Q*-fj#mY0Us>YNl z&%e_B+X&)U0rB~DNU!N1Cv|yqQLe8G{_y$D?G=_!p2}(cDIoOJrE!W-4JGR($?G&u z;t&7sllMRP>h+;JpL0 zOG2kCe8Q&GK|p4;z*2Lq9E(iu)GU<;VZOeBMu4ukm~w;;|F$apm)9HtCYJTVs8rw7 zdo^VVZ(s%j=eqJ5DP=Gg3#~|%tTMJyQ7&*6nAJ(_^!Hfw$v%4wcWg6H4@I%!|OoH=27WB?& zI(^sLQzyBgf}v&soT?*f%UQ7$AD`JcRPry@=r_PG`>v^AbB&s|1Xn7yro+QkP`Cp1 zx_Nb3HqfnKAEi$3tp4Wx_170CTlB+g7ZEHxFTlXs%P~yO^}4q!<|bX0a8njxxGLHV zrVl(z;bIZX;+CF@FArUq>FdY7dUN)w4cMLwI_d)aIvCRz3qR%xJ$$7GQr-bl5 zvpl!8q>|Hn4@_~NEX1kv$wan()~7gFRU8PU6wp|b(#m)a0R%A1q_LHuRiWE=rkKhR zoc8kwyZEe}UY>=Eo7?lV*PB1^QvrQ^$|q&Qy`W0nY#LYwPr1KR#`bZFi-`sM)$h^6 zfB5mb2>SoK{yWjhux(Vd69kDl`nTI+)~6g)XV{GCTw0 ze0TIS%rGYVy7{y2M!xlf0EgzY<;|<+FKx!x_#rIb&E{33&xcB@!wnlq-Z@U8@2mDaE6Q%F-;u%jqCMe>$9@+u*+$QHm|CJMbr%-#h(GS<% z-+uU=ZPN(qK|}3mm~c{4Q?WjDni}WYl&kS{{V8{fgCB@^ua@bcZ`{;f=zVM!_tUuJ zr-x35qEh%$RI$ZF-)bSU<0&SdR0>sLqr%yI0Q9|^w1eJ=z1TvhCW3DsJN!4Q{wV@u zQN=oc6oC1a(Q!8uKrb=l0iRp z(}J2F1dD9PG~C2{-$!FnFP~{Oi|!rY{pfq^cMP~EpKrX?YOTTloL5-Hnt7mXhRW!S zyDO%wQxKwzk6FZlkoHS5VUvxxRquP&4stmS;654}Gl@%8IfgHi<#cKaIMi;AmjHcK zIS<@O`v7SBC6%C=MxFzpb^6I@Eyc7o%JJ)#Qpq895nz(S&Z?oF>z*omdpbd~nNd05 z@!?Sm+;!KziLmkgl4!MSMc38V_}vsmlv- zHtq#C)sz~1urWgAaw*1vuKX}Ob7E-CCK7+K15EWbh#GkWN8+kndQc3Ij9`S&)VY}} zreQB4rPxYca`dsN<8jT&ApDl;kuBlswWVeH@yG;oj#WpOH;&R`o$<-31g&9<_RbVR z)t%*-Zhy6f?CSaQVs(!ybi9>o;D?+WM+FDOv{>U8HY4xeG2prL>E^;u+O2sm!oiD<%K%^`l2lF6Jd>l<2u#sN5Kg-`l{$G1q#AuV++%USB^iqpe-b_ zW-2Rou=pLK)}2<3JU3;#mTOP5ts>*WkbvcyJhe11wF+&mgwvX#1tV8RMR)kNIz+8I z!yBa!qVuraSSleqh}u4K~Vhz_^Lb$Bch_}Oi6@*pW9f>cw7Bt3)qXRSN9q#CtG!; zZC|lnaM6hE{jJTY=>-Fn-48cRiMptBlcQV#un9orZr?`jf2r}C>4gg8A?ofG~(c)xw8tmN4zOR}C zt9gvPg`hdB)IEa1*cz9-3$iLBK+u(Pu`1|`>gu7ZbBF@>d}C+FyxjJcr5-D9TxKkD z&5i{FssP=RW#Ey)aiS8EaC-xXLnV$yG$(JKPebAeQD1DFnm{%#=#Ic7c?vp3!9xML zl1_U%!Gs@$1%d!1?NZS;-+MIiVs*Z{3K#dNIE;3BGy!Ej)NU18Pp{gyuI%uRiHkdY zz7afH4x6d+CLON8xN_}57F4Br3n`eOgwAQ~IyL?G2BcZpvtoKQ0c?HBmGX^sIvSc~ zPQk&YjO_}0%R{o-dMdW)D4Gfz3Z8up4}mr-gtpO$mY@ws6Vw*u@!;SVddj_Y5}Lx- zY#AJPIw}mhiX;UG!H9LIh1z|hxL^BWw)ix3hqiIY9iU|GwC&i@khrFJPs14{AC*iE zGNA}H^tTa?%0dO`prb<4c6}g%yJP)wRra-;J z2Z`WHHW#ft8()yMZPpzmv*NdHIyKgWh7BBvHLBYkfe5Obt`T5{l@1vKsDvxU@k*z1 zHM3v=QJP~B%}SkTQ!7l1#D=q3+p2YUI3}m5TBT4~l#sb}A!@2@Nr6|HQ)yDCt+P9o z!kS*;T}*S{6F{lyArc+Viaw;7S!t)(-w zdO84K1>H~5+GFjd;6>a)Ph@*w#xafM|pNx1^=5-SPe z3_)RuV_;+T**p#?w-=w5)jcOuRxvrPN32+1ApJGBtz4z8`#8K~;#LlyZy_-eDR{uk zl5!H6#ac?L+GouobY{Zmx{lRJ(`Rl#n%i}XHG69g(FzI%f5u}z5E@mK>zY=GOl@<17@a0>%_0JORNrr0J1bLV8LzhE$$L$f^rxaf=`b_}}AOsUkK!Yi<@ zl8W`dQr)KNVm(3>XRH9J`_{=+e+e!H_tfVc`lBcd9|07s>hb_+v!bYY z^JJ>8l_at4XXCdH1P4b{!l&@kIZF}FoXlGdnOO=Rb)0KgfNs3cnm#oZ^}A0cde?B* z{LnIjD^HHiey5t=FmY_?!|jEnhBqUMa8e0TxU*i12v<5s&AFr2HAaW~FNp3!nUg=w zc%#fTSgh$!+nAl+7asx16zO1=Qi)osBpmmO0{EFp%zLVy7HV}xt79R}$sPVZrTc)? zd)1EG5zhIa_hQm4doXH4kuq2@8!CmBP(GFifnpwlA62R4P>Gw-e0tkmXlD!caSB3M zu#Cq@oRd@#AyHjb4k{twv)BSAC}ibeOof_0`K0bW4803wR^nu<+b%HaCy}_!I82?< zky_Wn+hi%g=+Z5}@JSMphl|P7y|?;zA9InMo<5*^wIt+Hdb zaOeV9CYM-XI@zeedj*3_eeXq3xLRI?i)Z(!IjH5<0lew^&I|luE?jze$3$%ppKmsi ziYz;+v0S_g;zz~n=o~af4O%GZy(+o8H(a^_X-@czur20ihGS7Ndu?|hG*LhkSfGZ0 zk*;BQg3ZlcB}?)agrw#=MyCfrn-fAKS&R9ZHS<%l5z}-uxNK!efMjiEf{T>A=G6WW zo=7#(L>H)STpojK`jHKAvu>7=su^a&MPHwpGV>pgt|}7+^#lbwiK)N`p_X4NLfumW zl(ssB66L)v)(G8FDalld4qW1&Sy8XY=(40d?@Wz2vlN== zBc$;VEl)>Z&A=1=bQ=xCi28Cw>tn1nN>_r0Qw+B2at`n&V}J$;$LNqlw7t=Ky3q*Q z5IpE*qj~f38?8_#Q02ly8HQLC-IHgqbtZGII)c1Aopxfm?%QYwoo5)`a3Bd?U)RTg zW;gnc9*a%}7-UNYp(@2F2{_3l8q{$zP>4A8n<}g;Vzh2EFPE#+XUm)CxAFAs_C+iS#&UH+!+3Xbdv33V*SP%ZqUJYSGoarkug6l5WmkEw1oe<%+T*FX)$VyI;L3^{lUZbo%SR z_DLxVDoS@vRq6VvORMwuHq-ZBd-}GAy(Js?zfgt(PNRt#X3Zu^^$9(hWo*L9Ui-`op|W?PrDD!Rw0)w%qzxo_3pvHi`7Zb zFRxb6iPx(mesB2q+v8%20RHyjPneGSXyC)Y4}T}s)VqGfn17a5=&@M4-+%b8?+*L! zbM{r;{J(#CRnr3%)1=Jj9?d+h?)mmmn{#!E4?5biTix^H@BE-udh@>=xO}))8Krls5PX&d4&H8Y_%2CDA>j4<<*klZtZuYV9S=v|8}Go2%6m zW@l{Ua{A|WwXAZw(gBwAA_W$GH7s#yRdq#1S26<`^Ughj8BdGmbc?h}VH=;Ca<*m0 z)5Gnb*F~yMQXBagT}qyoMoY?Li^UmgGv|4#lt{$hC^I%cuguu|3^Lg~^@bPBdc)34e>FSuy&8ZZNGT_`N(7<1c~Q1? zQFbqaZrFwSD5Jf(0RFF=Z!5K5tB`pP}T zzNP??DT>(wRaJa~T$Wr9n0|i00BJr=9U=^m5umDgq^{!B4UWngat>eC@E~gRHge-N zr-XpR5zGpZZX|LMg1)@~mmDH=JO){1(uSHn>R>#KL{=~uk+D>41qFzzs_2+IK!Dg@ z0WyuI=oq@~Pqr9UWO;x931+=v$x|8-_Nt;=yhNri3INcGdJkG_4%xr#egU$Lm@>j( z9w9(Zx|mDytZ;8_%qAJFl7WQ|f+C^?53m7+AB3ovp-)_AF0db?Rhs~SjT0#xOuHlStF(Z+L)QfY?+jY;>~zjnSirv43^o3iMIeo#6d$5Q~pjkx0NlmYBQF1)IA|H>|Q!yN1-3 zM_#A|SY}exU~Dowsf}NqgSKD32;(MhVh5vUJx1erqkiWTV62JSgp@3)p}i^AhG?tP z)UcFdeQXknC+-i$xL*P(*R;Xofw6B2Pbp1o8X5cq7_BqB7FjbaBh?XxYUAE;QNV<$ zgoH>A^1GAZvv_uUb$fcT%*)r$uEOQ>&z3(rp@C2{(uR!*Q|hDqM1 z$Y{;@M2dgq@4weQbwKsCZhQVCU|kMfV9428J4xLDPD^=j@&5O|voRvVNeThgQc~k@ z3PUdNV^h*ps>m9d7)+%dYoWiK!L?s(0nlw+iNy}UPHe4gRF-%=z7()6r0*`PWQ-bS zBf>w5GAY4h0q5ngnzkN@Z@-ihzD8mR;p_B}cD@mc{CI#`QcPx$K`9IRNUfP2i?P}o zg^0{+P|0lKxVFK&b$LqNLV&9OS6!aaNz}DMopie0Hsr+ue91->*`}ij%>zx$2_CUoR}J=BO4gjK zRFl(|Md!JZm6=o>_bCYx)EKrt08&7$zZ~{{F(&+ST7HA@o4&4BBR%g8;4c-g4d4$t zL?uJaROX4B+$B95UwNp8Zj~N}f4`U${*6!Z7i0W=iXw!gL6_dZ1Y{~btU(3|c7e~q zh(ReOoG%KrSXUvdQ9G3$_f5dX>T-2`lU5hkH&?gmW=8fQZmqTNbHAa$r^h*8oj||y zwuixo$D2ik5K#GS537V7&^eKkk}lv;!h?ZNJWhr2$HAZ71G-TGiS|HWvC4}n|9C_5 zps~b~YJ&&{I_XVJiVN$r=LP=1v4-lls>jU3>|W4jn$}A4F!Wx8d;epb2r3DsqY5Q4 zD&7h{Sym0sXI)RSjsFIeBy17b+&g?Dj)AsD^tVYo@% zrAVd!qx4y1stN4^mB*5xG4L`H6wD$uEz|bs!%V{~tH!uOls$8q6T5wxU zEmc}Ayh}Rj;39^RDPOCOkHZ&@34lSGQ~X%Y7S@5BW4})|{~wI8(&Hb7Pr!=|#VYNX z$W?no1xj@?*(I0Zm5A(N1WaG-P2YkA{Xk$~!Cj7ZrqfIJt1HVnFaIA3?4y(^))VA@b7@#%N2u8 zmO*fB#(=-n0Nh!Co7IdMTR$!RO1*LVPRGhl&!GQ!jB zwN;gB$<1U@!3*2zW_>TnSs`|f<|l-6giZa^LA_6GTD=BeN4J z!}Vh@I}$1?#2|KRn;e34R-VnK59}^vy@q^uZGR>p&kFQ5)nXU2`)P&z_Fl*{vh4M= ztAVAiF8#LU(*x~4n!762kx>hJX)1JC@(ZzdFFK$LJ4eBti<^IWv^mV2kK%kt!P44hbyMXKsKxd4|<_( zHrzRAC07NbK(Oez1H*u#f>0j|c~+XGZ<-%1e_A2$)x~N?maT5Odh6nRjcB#$mQ@eb z#T+atiKuD>ak2t?Hbld?cQRHwmMOt0na1>KuYOX82(fKc4v>6g%9dxm86!CsCu)!$0v}K_EF8GkF z2`X4vo8iSS}mN7)1=s#L!#SVt968v69N~UQwMuP$Q7-+ zspG|N-PDzE{ff@1_lq?bZQII*V!-B}o4WNI9>{z}PDZB`WC_XTP-05Sro>q;ER-Ns zRW60Gv)a13x&w1gps5gD6R#L9Iqtc*dK_NHM2321snRL9@F{`+I&e@)UGW@vzfghi zG!;Jp@0=)ulr@ir`<`9k6?%HD{)B*)h^cB#CoHlQ!%VR$a)@-|&UhceK8!UxJsbb3 z0XW^J+jB|@ojZ@9n-13SRBhkQt92gn#WB+HOCG4KsQGx}5#%Ww0p%kiC0fd;K>MN`<$seP?lS+h@wH&F9zhV7b!Eru3Sx`a)eQ%;_9 zrKK$}BKJj8+`&61$&`xR(9uKhX(^eRvaBZrOzk0HbeLjXSz8MD2D2qs?_rp9c2n_Y$IhMA$u6^To@Hu}^SkU7DCzlMDnq_KBtCFn-A5dB7oPvqM z87+)~@;VOitRO4aI>exGF!GUn>+1ap0edJXQwop@$}y*g6CUIP?tkT&bDN`!HQMoc zO)DUi1~DVVR!(!^fKm5xBb1>$Ju3c#yC5Iv+Zwx0J*uhGXJ0SDjt!V72}gWEoLh*O7_`SZ8_1rI&*Pm%7G;o=myv#_cxhssM(I%P0p3TiXP-*^AI zgKZwo@RGpr>3b0hPga59AU|y!cJS+EI=Inr- z6J9BJQ|I>Aa~gDI>fk*cSRJekF0)9zvr~+``lOLz&Lh*(dtKD$zidWdF`2NoKzWJ?htUf>a_U7pWxG!x! z`R3vqSIhjY3>oDiJui#?w>GEaIdV@&6NS#+663hFfb#ee*vVQhKq~ki*R+3Z(iqc z6V6wkf!$MfE}M$1lGy3f*5ZaPSNp^b*GjAYwQu6VAJc;eTp#?m+ndFzcGleWOjrY;onqpV8H}e`=L8oy zf`-Q^>rTSb*Y3f+Uy^A8+?4&|h5gN|GrZ9@?TzA(#ncic`866wK(H7gYl24*L<}uR z&y&KG9D#qod@IRWqi-DHcfA+uT!a3D_0JstG&l|}Bk}@T`x>s&|*S8s)quhby zr~nRT37%*yMMC9NPIWp&q^k(Q_-JhJ+&4C|TrJt8A^OH`BwjaE1Yo1XqYaBuRSWnN zHkl%gpfXkzv0$*1eZhXtaHw+a`gN~I_}BN1aR2_n7-ges0Zk+Cv;4-l-Wyk*daYnQ zF_e^&CI=9nUXq2n9O;C)%>ne}s4?!BaT=p;M7l}d_p*nmTQ(ge!&Frj9M+b4$~u)p zb{>Y5S?d03L{-?S-GS19VtAMG_G445af!o*rpqLTx*>*KXQLCOvC;)Ug}6ye%7S{- z$RsElsn)Cx7ehHGhTAf0i=83rK@1zSmxJ-KxMZQjgQ%ra_ah~h2!?BI5(V7*{(|?w zCEiP>hcUXwR>2tUAckr>#u7{j5p+9%_X;0G(jl_~xKw7^xFkh{FA$FzUDNoKy9?`N5?DJkbOdHWWux$}=rWE(YKY;WgJ-m%u}xLeZ)1aLoUni| ze6TwIyXEI={XSTNzZ<;}+Ek#&jg7fTI5AM~u`+BkMZGW`quPqc%*3p`TG{Z%*J@KxRfV6_R6vI$ z9)l0MS`!?PF_>)Ny#}p>YhngHleF0?8T1zsti zJ!o6tLc->`lp1Dk>c1i^rr0qJALtMg_(!n>T2m zmYbVbC(DbQaz%AEuV;*gZ>6wpRHe4AL0#b46bYtms9_+evbT|nVo2;@R=~I5;t0vc z)I}XU#yJUAOg18;)_h+v(_%5H)FN^f#JPR6m1!s)%%xAkg6BIB92vWIj>ivnPRKBv zX|u}B%xY!4Y0zp2eC|}B#+*VG2r7JBcotmhD6{PPH|B>de^Wau_{L40&{rOXA3t4w zCZL$%GG*;;t(II{>hmcrq%%gJK&oA>RXkuu=M@;84(%T-N%C|;VM(ITIanQ&g@aPE z4$1M{6^NCjzgc2A?spsc0}pm;oIN1cEYk zGkoijBK*p}(RLY~d-uJPt#G^bR&tU}lXd@S(16|J7hMkLPmF35jd+YfF~Cir&8t2M+*C_HdU-%qJn2Z?J$DV1JKWklr(LP(#Kj_KMeqQg=Z7rx&!w9bTDmFtSWc-b92F8+#AVOKmTBIbe zJF0@QbRiBbT&~XVo>~fHU$fUl4e-NZ27Y&#f#H(xd)*rb@PD-XGfdAiEv|2F zYu!k@1;ICpX~(N_99mAmD~cXq;Sy>(I;X^Yc{IHCez)6R+go_+6@CNoYG7Hxs+m%$ z2SLKt*1`LXzk=9XC^iZn*$J}#eS#ORE=nh>C!f~OU$>S@OVz4Xsio;}Wd#${-0ojp zKXL$Y@03!ye#EnasFy8(AS$75zL~aQj9f}99*h~flph_ zp|!b(Y9hW0<}w2H#TKX;l>~IYao(oo;GTeTPU9t>1|4%Xb5UH7RqNouzraNl6=G$@ zKq8q_+SO$4LpP&oG<@1=^AuXUzIOq9fmY%FCxHhJT&e7uU=kdY=jtMvR0EAtQZY4V zI2?9|Y5wspJP2>NJ-gW>mD@<+(YmQ2*xz#9s5tPOPG7IG-LMJ{3q~BIU3K8ND~EMsR$)`&X0KK-5TMN48Hs?tUWI}Q_{GtZf2ctY7xVrFG3c{3K+ z|K7w&ofFQMDNsDk>wCX(y1ITwv6jPt)bR~Y%8Zi0r07Ofc(42F zGJ?)J-o&gh<|3tjJ8IHgVuHo0pjSpkM^#n|kB+kPY1@2Zn3W$q#jKo{>uWIinVloq zT1dVWyY`Xmb`D()8j5JO)6Mgj_sq!0{cG=;l&rYR6mP8lVw{|5l{QNXrT&!-o-+BAp!yijt z*}mr2Z4S?@ha&zPIks@bcwL;G$r+-L|J6edmJ@zx&CD zCjyXeK8GRvt@Y4X>4)F{2#@&Fp>b+sqH<}pOnvKn4-}by!L+{1-+6noP9y#JzdgMs zn6(>HP0!g$9}K6#dg{hJkv@QOc8=SuLV+5nIhGt11IK`tav?^|;c4$wY<&Y$GiyC$ zBlw@DM)fY9Zp5KJ&D=x}hE+H;BegYTPA6HEiK@b?222_U`$}%7T9?0nZbpCJ97Hs& zgxZS4mUkNFdgl)$d%`=vau4hs4$2SWpyS`)9K5o~;6{LFSE=D9dRvms!UmgoNItS$ zg!Phm_iqjJ@=tr_rJSGMtX5|fuzT+}c4l$Ean&2I>&s)~Y9Z%+@{a&3npoGbwV;3a z@!|*lyT{XTkJJb*z{wrcn(8~-!d>w~g=92bK5nDZ+Hn=rUJHA2)J)7-*|v2!3hEsT zan$erR9K1s>HkZs^L2;ePhVW%^V7Z?b_`deM(O{eU=%crLihF6>e*Qt&JFJngMZqQa`}(u%)y3#L;#9pW-+4G$*;up(@{I2HAu@watUD66{wS7kagE1c zWD51&`4Ai7vRvJ~+WqviaCTePAEnjV(75=z@zLqc6@H`dfINC-H=XOhJS(g7a&xtL z$u(rA?ED2!ytuhqo$Y?OJO|!8A6;DD-t2yK7GACHes&p_+t**;&||3O_#n6>h&%El zJNdcujnlqW;AzENT-+S~{jM+ip0AVNby}~mC10+tUW{e!)V(X-d3$7#!kbaNvs^~E zGQ6n4VqfUYHnOIlPW_rvsUkZssyIoFY4N{cyzyB_m9vJSDoXF<5Wk^0nk6;bHcob7 zqPhzd!I*87A$>|4B}KMXTM0uYmFwz6Ywo?LCT2!aA8noU_!MQI-&f9G|Cex{y(Qf?7K|n&-OswVKDC;$Y4JFcymxf&60hQMFOeykrKw}bR>r$9H?DjA_)=4 zi6@M-_K%NJkX^)V@LusqWUBItB7+p6(ZRUopVC^XVE; zfFgxXbFxy3ok%QDZfbH&F_|%ko)x8h8B3}>6wsWEYHp{YSU}eIoKr?OQp%44rs1q+ zCSBDs@#=*qOXavrE1f z@p!^y%08Y1&#rhtamlj1yK>A3@h?#~-e1~VR5hU!c(i;5CIq*T}vqU1tdwX$M#iZdGVJM$ynD||F`CmVS* zp3X67=(cg;ws+*BaEkSi)OUcVlxk818w)fU#9120orioWdHBfpN>Vp+GnFJ7dGFJ} zYjx9OwY_6Ep3<mZ(F?Izisi!H~(vo=9k{@e}E7AVnxFj&co-+^W~4q zbyxJ|vRri+G#9B*9T-YK=!?9R&z6voMSO){phnj8?eoPsRieASE>|b1T-;nO)8d5k z8dfhi-?&*(2jR;Vp0T`GgvEIY7x-blJzG#Ae*CzE^n5`VPMt+=yWt!n(MzzB5ON!rt9TGQrt2rW!KQAG2#A8m(}DArWt0B1|#1XgCH{fKz#& zjLk6KRx{^CSKcGYQrrV2Vy~9#B%)zkNFw@MCSzQqyu&X<;*E<0gL6@J2ux}hwGAT4 z0LNdzfPfV_YqOOi?gTNvJ1-LVnF}G<)Lh_|ZeuRoFU-YHKoVSuR!QQ^o&ANe_=!pcI3tsA{;Q=jK++XioHB4XG|RavP|F(e!!e`$ z`XCYKD~#oW+Gmaba)PIShDpRsQ4TCWWhdYN@S_jk|K!7#>5!sP(M*#+*;fF8rJA^> zfB1vv<>T&k|A^Op(!cKeAAa(K!Fk&G`J(^%f_}a^eeHE;pGFR>2SeOf8((cpcxaDHXUp6a8P6hc?1SteF06~WCW z*r=p_3h;9ZK?*m$L*0UB7VhTLqsO|tAZ3awLg$I(@h{4(rG9ZLtCD!}-0c*@``d%i zZ;SZdC-JUPw3}jT`Vbb{5EF_2lNRic>5bp~#(?}!TF8g5Y~!*(&8tWzyI7>RQRbwj zkUUf1aHIwubf+?2`foh~{H*AEF+IPeSy;C#l~d7wqFD%D)kk4CR_^jbOZn5_lQdret! zFRiLRXG+tfwy0h`3HmvySI$mPM+tpj#nj?2Q|I8(=tHbk>*PG6I_P*AXfHHA)}O%) z2PLo*MA*s8?@oYk!ez*(*YW1{dAJHU&sP^G6g)k5KSRxyd7~(}a&Bntgr80;T>aM0 z3kF=fA8rKMXNoZiNiwQS!)?lN_u=kkU!wB?ya|q78Sh?kAejAf3skNAV?x!RYxBmb z_7R|R5HLmzs<`^#t5lLfAwyWTrf@PQ5*2)Q=>eejiz9*3jbN@dC@Q3&r&{=!waSp_ zj16bW#e)1typ&4?rsMGeXVGSpcs@e#_Fec88mXs-6=-@ti!QpS*-1x$VKxe-4E3KC z(&msdH#(Y_VX^}pN*M~2Y}H4s(Y;qe9V$2NH2h?OM>)y`dJ$}htb&1eAi34v!!3oc zY=Y6S8#O)v)U4pCMmrt?)o1fN)*?YizzXnjI8+38f?`C#`-}y-=fbBbDSV@9@P9SA z^O}LhW(3diXxRxu0`=uNIa|hijIM6=fF)d= z2x=$YR0RKE&#MN2`+mHMBm|T2I%BPP#2$+R|0yXZpPAGOZYK18l4cy7^*2XDofA+k z8&yd+n6crfw(F6QEmdt&s#*!*<1nq*&)aS}{;R3>H2)2^YqhKn*C6LoBzpQ!4OC&;^h^WEj*l(CKf1`v+Z}RB|BP z)RRz$)Ym3HUZiJ;g7%HJIfPa9M1i?!EA~f1)mmkUvb8oS&nOp!JYHai%1TuVADwc+ z+Xt=hAvD4;(bm%HO^I~Y#Knm*DXQ7YT%sZY)ItO@#jUKh!28%~b9OxBIgvI@H@tj6 z*1bpzYp0>^k5ygZQi(fX+5hP7&6*@Tt}{Vcn>f>=NJ*{H(nF0&AyR6BBC_E7Lba?_ z1h_UJQUr~f?s*vVwJKPd8Oe;u0*hAtIPdc?zhM5s{KNUqy*DCnq~Ew1xfD<(fGkvI zEZ5KHXLUbIhPzvNDn)Q66CC;wxDpBR54^1Ledm87qA%#|dUgIRT%NCa_;h>FIqw=etnIP%)$6a_p45fKi`C|IdA{g>-Q8w&v*mts9Y1pH zT8gD|aw~XHk+BR@R1^f%WXnlOAut{h_2Dr@9pu-JIz4eM1M2$gTg@ge>+VOLHIc_) zQsf>XmJX3oll*StPcgnqsAQM-GdPc;?jUP+)a|0lzuu#+FCm}k7k1B`GXi!qd+#M@ zwP;OKt4xF+T8$69$jT7IxN%->m&$%#z~1FDyx#uhWSzok7#6T~ljIZb8_qPc>mJ@F zAMzm(qX{ppRj_~d&%>h@pV6ZhAB}09esOoKSV}Cauw1fsP^nCFC>uJq5jAj9wgM7a zn;XPCPJ^l^o4XUruh)!!N=)|rvOWm8DkQq@8)oAXGw!Iq*+esGo6ZtL%4v^|um;v+0 zWMLUZ<~1-+wMt9{gD5=53XAP+tR_GqrW#zn_omue78XplEKKB@trniBv3YB zwWO~l2Bvbgjz$d%7xi9I=XZ(Rvt@c7%IU@G^z^JO%O!mJbh%phbV^F!nh4R11^@Ua zM1xZ=`y2&9gTor${h#{p9_SfLFkV{O4c^)N9pw=~eCCEp?_BU?I9xE1^SU%F@=m}LPBntt7!0gP<7>}H7AUDiH2S*T7@*p!(_nd0GbuylCuhsKjLdyn018)?&#T%SHh7k4+? zPyX3;-^_5iS;C3k{3QR6L02sPwZtyJv8z$}CBUN6k5A#AFFsqIU7VI{pCs1mL#Yv# zlEX$zxLMKx6GVib7uW?7*|9{jgLIy)(u*#g^R&!U>nG+}D>Ib(d8d8L>7GVmV6Cz$ zuj$?`;eXLunG9yIi| zQvo5jHi)^8(s;kVI$v(o93N;Yr})74kwce((eQzZ28%H{`)N3%r%cw{v3LWFe9dvfP|-3H1-18iN zRildq0sYZG7(%bLZ&nzS(;n zeMm-B1!b!v2~c)ad~7)L2_Xvk!6B-#0pQ0iac<`=Qxj{oKyhe&qs0WA8lC~dLzSuu z5}{$X!PHWu#KNgDrDp)g&mxliIcG}nM5GqqO36~qcc4=w6o?djCN!aJib zanw^NCvc7rVYJqhgKG_!>3P|_x|rR6YDzq%O5M<}S5wgr+g~MuHj`Y8+5~5z{Eg?C zS1)a3DLKPbQgP^Cw_T;V!z$-kz;QcKuV8uK#|CfVEvSmayG^y2N&&P>9)?MScY!2c zg3=0AP$Jw>%CzsiKZmI2W};A@W<>TiphDSJpb#mRLbHbhcMPf%y0=1-cw}ByY3B&@yhpE z?3_$_A=<vUPl`O9T4tC!32`Rl3QQPos4B$!hn7$ULl>UTXgjG?|R#JW@|)^ybP z%OCEZ@GE-4ukeJ$C(C#lF1L-P?6y??wEs2Lgom6L*K1qU(wC>>mEl|P$L>r90ER#v zZ3BXE&R_|#g^qfXCsz=2Bkst;k539eeKmQEOqE)yDu(F(;!>2wyX` z9;CU=2Jw|BECo$%2y+mz$*Uec5t9Q7*gj>v_??^Xjr6jkWv0;`!<{U(a5Z zp0b4~{87#)@JmoEDp>Jq==?o$nx6*WeMJ6$zBBm;rH61(yw&Kyp+CaqkmNS+_zmEY zQ)JMpNd!}>vjU`B@3YpPTf_~bLJjdQ!>l;yiFU|@L*MC?yNL>$H-JN=HoX}Ec&IwU-4%g)f=0@+ zOgcrI5bMBfj4#H&Il^IejxSfQ2h#+yCvv&z>evWrZ~9u)Op*6dEgc{=zSe*E>?~Yv z7QeVUzhM#8(?wq(zvxbD&&qi}{gWE>Q1_kn?sKEgMWd6P05%tydJ`0HlcU~!_^now zyQ*OfG>>U4|KGih;KTe*l zYN)C-cOm>RgA?JVVQ?Z`4QGN{Omw4qBa};}90JV1y+>%|Yqm8yNI0Bq>Rjz9w2ON0 z?tM)8+2`fi8-NcL=$jV0O9$naEv}zQ1dyApxvSO#JHg_YX9WezRlVO6QJr z^^i+eBC9A=>M{ttOd$(L$(JTHX)H%kGQ-8jN-;6R6(seC(ZWw?tD`8=)iZ8`u0nbl z3)Q_Nn$x*tT~$ifRBT#A=v?;tV7x!3X?2>GFT(ou#q-r>b-q2~GEdY5vw6#SdxcKUWv^Kk z4Www8?GHv@J<#!c=ZGhEx&qcIWXE&##nD+p^*O>|A(TlGQdFVO5yOwIBR`IU87A|i z6KGb7giE!edxT*b%H~zQ>G~hO@YYml*}*}D4Eg# z*pwlCO>=p7QVa`*Lxrnc6_X`eQ*?AmRGui|+F75ik9e;SvfE8gIAa9!$8m&lvep{ z{WP$-+fQ#Kg1`S1UUn{v-S;ncGhIJeY#T^kKfI&(#@cq4okoyR=l@vYr)97~pmaIz zLI{d#fK*mmbtx5Jnc(=l5Pz8C2?g6;juHypU7pbT#z?uxMj;dj7$P^!s9>1m%t$H^ zqNZ9USok{$!ml3zg~RHbQ1BD#8z>CX3LHuIW?@iS6jxIX!Pk^3LiPxS7va8|U<6O_ zTT@p|{nY`6Cr80>nEegY6U8(;J;1fsqTzq{OOQn0yXc>>s8{FRIOuS?+`M|S_~r8@ zwPJm>h=uyRE?%v!7U!kpU29bM<(BFeq^qhX3t>+()9j4I3OtU$!SR5d9~`y*cavm4 zxk2{ii1iK%yz+zJ?#~#Exd-+XL?zr0JXUFW-vcZBPu~^CXvbx?Elm ztKIU*@mmkP^Q>$F1(&C{F7ME@E-shnn_F1qFt}eP@2Ha@s zd%7%}vhKWtZZB?udg>z&kO!gu}{aCYw@u$OfS!}ldg`3~hd9Jf66_*l*_ZZH!MS^B`t z{|30=&2RH=J@25cyuXY*0+UT_4znO^BhI&y18yPicGrC8yxu$Lq%Y}*)2#pJ_x@lw z-x!WX{^e~W-I%vfcMrGcwA<)> z)=s|dz`^9)(X_dqj=6s*+uaUo$vjuhq3pv?D3fNKRmqf~%2ttc3EJft6O|Ox7^50F z-#d}M6UDs9oJv1F0M|) zrqH?l5-2XqX{p!P?e)h9}{_ubQ^pg)i`&b;Rv;mF6wQ3kD&V{$kw>@Y7{r2kz ze0M+ZF7`>6l_ZqS!o?h@NnA-;8<&dFkrHx4(QMosSsqKpVVNd!>_nSVkkh9x(4>+! z<@#1?97|RRPNk$$E3I6zH3S!}^&w_!byOnN6z)UKVc8&Re4DU!O^sz()qTiOC4tE* zi5S(36j3!#kt=Gx0e+Lhc_#O)-H|Ldkp>Pb{4S+rM1|NEqk+ZvM8}$2sepi}SgB)3 zGBH{YyOBc8JhDW6B^V1qdF7f;(8RB%0^#kf#AEyh*rQr$|0V!1#n=&C*&L#bvGN`S}8Ie0oymPU+1`MYn* z;flzP9N^!w*p3{q*hDADTdB!~I@D8}Z5zD~@T8rMDd)(HWD=o-43#By4;DLIGTBqJ zo9Mp3ISs%FZXuK z!i!C{azj~50pf$b@Sf|ej7}jM50xE5F885kmc^u>kbh9)w=Bjd(iU$wFQE z5@em@VF(*xK10&*i;axyZACH*r4ABGneb&6f@D3?tp z2f1*Eh~+-i%(9r?&7S|(1U2_%F~qhc`&LCSi&Y-sFN@U$0ZAcQf_9E9=X>~K6GchX z8&L5HDj3^VW*Y79p~a+zY*cN#;UmiGkX$JEPN*;0 zpk=4Un7@Y>(}iYlNnfDJj0rq?l|dCYii!ne>W12gL-mrg)XcJ&6?$@W9;U?{oMJfp z-f;y_lEzZAkPXw+kGGhttAuvYeq0Xx(TJR~UjF7~IYr3(Bz(SJFQ1(wu3x=)zS&%y z?0#|5otdU`u~}VC4L1RKmWC#@=PjBlFuT-psanpvYoNdQ*^3`zVT-5#`q@jhptVt8 zK3d#PwVPm*qXxgmP)`=0ZKCK@iAduO;ZSmDMn2})PaX`)3@ZbjU6izsPG2Mn-Tm-m zkfYHF4(y$x4J^QVI9syL#b$00(<2nNGP{JA?4zPHBO26ccjBxL=$O7Un30c(9l)gahar%3yl!{`Se2uvY$R(#G;xb$Ib2oOHH)6|OeV z#f>>969XEl;|sK1+jSRKQt5txm=bMh`xgfuHDGh-<(-e0l7d@@Xi6ebgF_#S=WuEa z&oRjup==9vojBn5-ihKFxlxQyG#s|wK|Zks9Zxn~@j%i8La&54l6u{EUpeD2zX==w zCtMWgs>rgc8Xkl68HoVtW?~iuVyVtuvG7{>#0b)d(M~10QVE*9nW(3`miP-I#i$*1 zSt z7BJPAsvol3x6Rn?NuOkNZ}b~ube4=^GW&wCO(v_Pc2!b4SVbe;Wr6X|%GE=`?VU)U zWprs;ugdnN;s{WvgGGB1@j%+Ef<{N!oM|k#h2t$WR6AX_nc_W-mQF$PJ*QxNc9c$6 z=|z0CDX&95TT$Eii%oZBubxcw_<)sQx@{gvYOJ4-?VOQKIsDh2j=p*z>vvDj7fpjV zvTBqvuwE=TixSpd&o{DZ&!|J=qWhY~KZnioWm$y0Uc4Vyo9Bxk{FWwmuKR-P{4$)U zlD|VATP;3Wt~b_Z_}^JGuY)nvf>lXIU83N4Dkn5BYzJ>2 zgWQaO07BP#P^1pK;Dj98_R#$;g^=b|3TmUJYF3GPIOohec&8}^s2?F=aVk?|=KI?b zgyCg5|NQE8IA5N1856_IhMR0BxwPCjY}d`G>f3{I$J;(izrXw50WkhUDoh4u!>{{1 zj*lO25EHD#dSM^*(iDV!+Ea0oH-PrHYpz7@CRn5s4(W}hRLUQ7o;1LO?QHF*YP#X~eYF-_cfcua&+$BzXD}<=& zQ0^af+HkUO$J6&8+xkXr(K(c{WNM$Ji6GhAIm0HV;T}m6b1fv*|t! z=ON6dgoNWH0*pTudZ8b3hg>NPWt{$Y}CK$Yvb=7i1^m0zxvguUE|Qj@Iu$0X6)-e87=njZeQ&5 zQg=hV#!HoblbOd|>bBASH`}G&4yoMr)ccz;r2PyI1h{_WWpDRfNMoV%sk=6vIT)x; z>@&?@3e?;;I?ibZ-FP6{cW+zUVS%JYO5S+JwD0{QxtSPe5kfFBSQb5Vq3E2n)Vi=} zsW&G4K2u@B@ZYl=MLTH^HfYJkLKp)v(llZlG)9HXKMYSLvPJmQx9IUu*JaCURAZQOWshgfuS zbF)L37)U&XP&6_rf#V2D9VzRN>FT|#dfe@E+}KKPHm}(E>t|tex;%e&vUz^FtmBd5 z?N&pOjhwirf!nJ4W~_?0V{89#{|STQx$)cG!8+qHaZ`mW!bTOjt&v|JO&%p^pdX-6*+ah(UK;SV$x>`t`B44oB(trGiIQZ_mWnB)u@Fj)nul2azi zd((E9y@kDRzwGQ=6_g zXuVvmH=i#r%j;jCF5_l(Nta6}pD)kz>T_!SEhx&DC%^b;!ni2K%x*};D6xs#e)79Q z+zQ`gXu5b!*q`kldNO+GK;J(-U93M}KI^(EUf+FnX7T#HRGLFA=(<{@H8oEDA${e) z;wyL8Vgd*YQ=l?jLExVP6&o6zVZ)$}c@WM7!$Z@8avG5{ctz{q-U^7YZlV(}x5JrM zr&7KwKwQa1YDs5YT_-w)Fk1)*B)nC$bSA6yd&5{hJPZhU@alFv=>B2~kA8Nnrg^MP zeMxwLJG*fvNjmL(5JtKxLe?jbBVBhGk8NYt-#YVu()fd0fH9s=qy$59 z`td6GkA}#= zDu_kdmxM}T$#Gqs4;H-Qb#fv|o3za|l~7t|OEj*Ilc4PFsD#V2+qp$EJCO!YV$`=X zWgcF>{gQA=Nz()lp(NA?JOxhk+Z5%Wa%kQVy@)pYy}8>*a0_s`6%}FRw6YygfrDwk zEM;4B$+Z+7C8P5)RZ1|C<{i?|AfKUfRFpA~D-6DK5S3ezfGVFTJO>h{Kcb<5kBw*e z#QlTnM102mUV`ag5+vpFbh#<%`RhWIA85=Vz45M{*VLsS z53#%Dt$2K;`_6&V|M+zASwE9`@$~0ES^RL@4SAFSif?h58a#)PV}|RabtyH|EK5!k z8o3kD2JhXtHJzm3Fk=%bt~rg>!+d*6MYF7plkP@JphJlobM|!mOLtFIQMQeWj46r> zA-m)w9YxAvjsz*5HCZJ@N^jLXbF59OyBjIo21*>^RHO&A?Bvj7%W@fMsw9%8w#tp0E7G zI4Y3Bw|v#=xx0!8*Ck~k6oW}YoRD(nl&n)=a(Swm36W%KZu_W}&FXirFHWz{%1K?G zmhDUfB8r_{rnZ#>oMO*+N6puB4YZNH<_2gJa}9n@k68Q=k68SCJlEhKpDs45)#;1n zhLT9u8|tk?3t3YOiyStgKa4)li>_l7Wt?;u?mzA3Qtv{iM5m4xjtm6A!o4wxR~w1i2eFdYU!de&?x0MPxUYj0(%zW-!|z>oTe3=sVJr{O$2 z+mhWcU|H7JXWx`VT1z)ohjVx>If{~eOi5T8UJd^Z;m}xT$YW_cD1byH9Oy|R`)mnl z_%_e%-bA{ta6Tc+U(B~ZPMdU%z?1z*(W9^ z-j~V(ue;FH9GdSNYAu2znq?`JC`s{i9W1tYoH+6AX)3!eSMxjy!#lNoeJ-#xQ)jb( zG$QPy>q$9}Bclc~C<`Ps3TJ3SAN~`S+|3Lj`KMIH)E*CHRSr=XS@G@L3S6AyHKN9al5PkID{)4nyzglm~*{-TBGM%e-*@y&T;MuuYwPe(y#X;LEDg`uZTv_tn z29w={`SqSDp8`fO!5d(VVEqN6B(LNqFn`f6{rVw`i?K2P+fOMgZ~QWaUIQO(otE8Y zWQmA79sGFZt;Qw^Lp8{Bw;o-vmHML9{T2>S50iWHn=7c{ygohob;oEY&#smU*5Gpa zyWgF@ngN0D(qc}|X!X}$xdUVEM8XnCh9qXTT=6O2Sj zqB8Gwitw6LrjDt`FjL0&Am5uo>-jR4%k!`)$MToir9^&kh`(GH0z!~m_F|KO{dl{G zgNUhvh|PTVIt^A?Z%oWVW~)+^(%CF4>AgU`sZyx&#o z6@Mv!d71;MX;L7M*=5d!lNR2Xt2`L10)qQc_+G(Er@~@ft=C=mgY^@j_H22+e%<}< zr2pvzraxcg`dZU5+!Hf#ex>Qe(zJ((%nm1Tg0f7Tpyf}e9<%MVu-mXj|M~~?`iFSK z@bm5fg{r%#h%?fOiL2gJC?mLu@Ym^IT`eo#s+)@F9%LV6la78rP5;pH4^ekJ6Z0|X z_aXGnCLMPv(?L=&x-h3%5ULo%3(LW>W+>=A=sy^!5dEGv;aW$3r&hG$w#|fn9Qv6A zk5xK!U{DE_P93OqO@$vyT}ULIl@~S6V75omf4X|6em&3hR5#I<;q)mQl#C zKI6_5Yr$FVs>Y=YIR@&Y6l=^PK>nGig4%D_u}}C<_o8@?-yP>omVHNhpRXfr>j*vq z>4Bq0#q|dRswxXcO_TzLU8C#6@UR3X^Cf{Wv}`zFb=oGw|DO-Qu&4!Kto)#;BwI#aSratMNGzL^qGepxsdhXIDI_S#rvoELhI4 zFhaqZ@d0`l+%P^)`G=!u-!0%4ZdYyBcOu*Nw%quM6o@~ce$ZV>2WvBHSSc{52ncHO zS><5xX#8O$ygQdoE#sq=kMB+TEZ3`v%VCoEJ`A;rw{7Mg34@Zk7t&CfSX5pGtFsG; zy%Wod6?izQfCct$_wJ9uEc@&BAil$(uZ@EcOmsnd91Id1cU3+77P#=91{^a4({OGT z*W5+{Gw+4=WAXnlM`2J-!+Nt!>q5cFEn;B#r1TrrH|9W4+law84nOR!5J*OSNQ?^f?08}ZB1^6Md#ikyqd@>Q)Gyg zbAfji2r!SzNNR_s$4LUmIRiH-o)rOSr#yb%UrRzsOMqtDIKnFU#d-J8f*9|Am~~{l1LMTChjkrR%_x?n*pZOJWh)CZm$e zqEgjdg(GAubH$gCQ=oK|5%E8`Kk>6NAj~8R!+<$!eS5I?SSXa_m=IQY!&Q!mfxILO ztf+FlC@6kd{j%S#GUd>MOa;YxLlsZ1=`wzBd67OSFDd=| zgIL1($#2h2>GF0NPM5#y8uxS=E33uo{0a3z``(8ie*XFAdn^DfcBPxL$n2af0*Ges zi%~Hc$qQWhAYf#iU|P7bTA8w#J53~sy%U($lwf2F0+}Ma4CkZ; z0%8h&OO3`jnr@++jG`9Pm*sSomYY}e60hV$Ln9!`hCU_`k+wC5^DCXwtU+!?`bYkl5!BxwW`-6^|LWwxeJ z|B)Pxkh)Tv#aMJHTBv$wB(@ zX;lQJmPD1B0nSIDIV<08Vx$_6_2cwzxT63=q;_;vyRA`hw z!Hw5;tStZj5S;NMoX;OfS$arYjYv^YKiJ1G-bnb@_rCwFL@}CbiinXpI6Ov%V7;Yc zxk^Ltw1?fH>(1EBw>$>LIT<&4Vonml*_X+|A!@zJcK}XVgwB?6roeIGdIgxqM`92IwP4xRnAnHb^v4&dn&)ufhKlncdV4qub{8&MT|b-E@S zj4-7(1y3!W>(zXkm9>Jm-9!PQ8m!Jl+V*eMPPsqJV7j&3Z#jzaB89O+M&W$KAEm+xPl`udf>Xvv z2sZP3X8R}<=fs(MPfuw_y=_R~-Z>aK9Zv=bF&XF}=swl??#z;UgD@Kf4Of?ANj`9> zwocDWzB;|dURyUYuMrUTUHT=RR~$N1+dkl}#4#k5=<+F7YP>^(+NmQ^kgC*>g0Mlr zjSOsjh<@M%XadJs$@Z+di|X`a&y&thv|D}`0EN>{$(?{0G$XRd|o0Ds&cgd!E7Q1h;Mfpw*7rx~fRuhUUiiUz{xIKy$uw#|*%6)(thth=M*}Jhl z2E#c~c80f|O$bBY_ru^5a|PdS5VI)KSf!*F4x+0=4Uxx?jkoxtnyjO!cCQib$ux-9 z3!N8cFGO?8PZ;+1-cHhlk4BpR_~tX-N-)8H%6lnI<-x)6Hq|OCA}`hy>a!rb$-H|l z3d|kAoRe;k*l-HfzPTbCO+S%4@ou16tEFJtNNa*GTGT8(;=}}(Ji;r<)J|Sj@9&A~ zoV1u+hFQ;$HHc`lMpUItB}PY$u0+^E?RAvYF#i^zM? zwh{7H^sO|sftnVFf^K~ITM3^}Ap|9?juvWPGnyNcW3pc9EDUwUGaN4;5iah-H!I}V zP2cu#?8~Gzr}W`N@#5QxV~$xMCS=|yABteSI{Xwl&8(9&ZoYaRWw+FK4Jb^muE3P-*9LT0QA%ASj0jsUkM0%B!sIO2Yro;54bj+wSpkpMKk zA0)JH57EAQ{pD{Ze$a zbC~N%REM^)aLNw4=5ITymKo}eTV2cu-7?I$^+6-rafMN~n#hRO**M}kaOM5Htf>*- zEmH4U(`$i{9HJZ}ee0cneee6y%2!Y@bFvc{$TX&ZzY1BhI2SyWTtMYfr2-XRD@xMb4}C1ef8ChQ~&sJ2+m2j&~EB3 zLhybzfi!Yr8tK~(B`*QqIahR&rgdOd@dV8oz4t6Lf;ri2qq{qlbCNBlPt%8XW=<*H z9$CKiP#VRgla-NWiL%sKpr~{0 zql+7^G^~q~Q7br(Fwz#BT9nHs>%2E*^MFL(S`O``^HV_$@6#n|@#e02s(Spg^(J4jtk0l(}QZx$%yQWIYOk5FR7+UmQ$sm-1Th*@Ro^Yk#9Sain>-Q zpG{z3yyT)nx@m1#d&^uTTBJUXWBL}!k-9!VWxJX5B+7nzHV zEU{Rk%*@iHXJ?d1+}5U;DO`s0XR91vZ~t;a(4FMV<;!w;64tNI(`)raJW;K5TgH8x ztJV+u>OvXed0Rd5jl&Nbfc=}N-8(-1{^BY9_W9-Nocir|Q@%d#-hS=oF}Mr`v9C!~ z4v>YHT6*tX^Xbw}zCOA%2o+lEd={czGRoNv9|$0Xmdh{#eG9>MEg!>f{7 z6lvjI1s9DpF^X*UIA#6sZzcaQuS2>T{Yxcien=xU+_#<0{&eaY1EqhuqjZ9}Agu9R z_#6>cz*PjWvA7&Wa&U8^gg0qrN#k=!c`R|WJgrru8;Q!HgC7~2_OR#PR2mvT7z@{k z#Y`x*WWlw83S&{kl7nQ~a74uSp>mdYwQGukyS?nGgipyQ#xvfVOyNbWEJawJlwztB z(!)UrqA)P8D%K=;l6$QwyQ7hChP}R8zh3vpJ|~yu;xwdkMiD7{q9*v18m}?qg_M~uM&W#{%1l=yMT9uyLS__~epKE!=j4oOZ~ z!#(dR!~qfrO9NYyRE9{V9Eyn6GA-!VNqFjj!uOgAu_GaVP7(0|gm-78-x?!qhuS}; zjA&0u-&Kemb0zjILUn@kVj?xL%3hOxD4YkMbtz?B5onHs_}6`g$EwTj{@wDT1zPNe zh